/Linux-v6.6/drivers/comedi/drivers/ |
D | ni_routes.h | 79 struct ni_route_tables *tables); 108 * @tables: pointer to relevant set of routing tables. 133 const struct ni_route_tables *tables); 146 * @tables: pointer to relevant set of routing tables. 151 const struct ni_route_tables *tables); 158 * @tables: pointer to relevant set of routing tables. 163 const struct ni_route_tables *tables) in route_is_valid() argument 165 return ni_route_to_register(src, dest, tables) >= 0; in route_is_valid() 193 * @tables: Routing tables for which to count all valid routes. 195 unsigned int ni_count_valid_routes(const struct ni_route_tables *tables); [all …]
|
D | ni_routes.c | 86 * Find the proper route_values and ni_device_routes tables for this particular 95 struct ni_route_tables *tables) in ni_find_device_routes() argument 108 tables->route_values = rv; in ni_find_device_routes() 109 tables->valid_routes = dr; in ni_find_device_routes() 123 * @tables: Pointer to assigned routing information. 137 struct ni_route_tables *tables) in ni_assign_device_routes() argument 139 memset(tables, 0, sizeof(struct ni_route_tables)); in ni_assign_device_routes() 141 tables); in ni_assign_device_routes() 147 * @tables: Routing tables for which to count all valid routes. 149 unsigned int ni_count_valid_routes(const struct ni_route_tables *tables) in ni_count_valid_routes() argument [all …]
|
/Linux-v6.6/tools/perf/pmu-events/ |
D | empty-pmu-events.c | 385 for (const struct pmu_events_map *tables = &pmu_events_map[0]; in find_core_events_table() local 386 tables->arch; in find_core_events_table() 387 tables++) { in find_core_events_table() 388 if (!strcmp(tables->arch, arch) && !strcmp_cpuid_str(tables->cpuid, cpuid)) in find_core_events_table() 389 return &tables->event_table; in find_core_events_table() 396 for (const struct pmu_events_map *tables = &pmu_events_map[0]; in find_core_metrics_table() local 397 tables->arch; in find_core_metrics_table() 398 tables++) { in find_core_metrics_table() 399 if (!strcmp(tables->arch, arch) && !strcmp_cpuid_str(tables->cpuid, cpuid)) in find_core_metrics_table() 400 return &tables->metric_table; in find_core_metrics_table() [all …]
|
D | jevents.py | 16 # List of regular event tables. 18 # List of event tables generated from "/sys" directories. 20 # List of regular metric tables. 22 # List of metric tables generated from "/sys" directories. 733 """C struct mapping table array for tables from /sys directories.""" 1036 for (const struct pmu_events_map *tables = &pmu_events_map[0]; 1037 tables->arch; 1038 tables++) { 1039 if (!strcmp(tables->arch, arch) && !strcmp_cpuid_str(tables->cpuid, cpuid)) 1040 return &tables->event_table; [all …]
|
/Linux-v6.6/Documentation/admin-guide/acpi/ |
D | initrd_table_override.rst | 4 Upgrading ACPI tables via initrd 11 upgrade the ACPI execution environment that is defined by the ACPI tables 12 via upgrading the ACPI tables provided by the BIOS with an instrumented, 13 modified, more recent version one, or installing brand new ACPI tables. 19 For a full list of ACPI tables that can be upgraded/installed, take a look 21 drivers/acpi/tables.c. 23 All ACPI tables iasl (Intel's ACPI compiler and disassembler) knows should 37 allows you to upgrade the buggy tables before your platform/BIOS vendor 45 platform provided ACPI tables or inserting new ACPI tables. 55 # Extract the machine's ACPI tables: [all …]
|
/Linux-v6.6/drivers/staging/media/sunxi/sun6i-isp/ |
D | sun6i_isp.c | 30 u32 *data = (u32 *)(isp_dev->tables.load.data + offset); in sun6i_isp_load_read() 38 u32 *data = (u32 *)(isp_dev->tables.load.data + offset); in sun6i_isp_load_write() 92 /* Tables */ 117 SUN6I_ISP_ADDR_VALUE(isp_dev->tables.load.address)); in sun6i_isp_tables_configure() 120 SUN6I_ISP_ADDR_VALUE(isp_dev->tables.save.address)); in sun6i_isp_tables_configure() 123 SUN6I_ISP_ADDR_VALUE(isp_dev->tables.lut.address)); in sun6i_isp_tables_configure() 126 SUN6I_ISP_ADDR_VALUE(isp_dev->tables.drc.address)); in sun6i_isp_tables_configure() 129 SUN6I_ISP_ADDR_VALUE(isp_dev->tables.stats.address)); in sun6i_isp_tables_configure() 135 struct sun6i_isp_tables *tables = &isp_dev->tables; in sun6i_isp_tables_setup() local 138 tables->load.size = variant->table_load_save_size; in sun6i_isp_tables_setup() [all …]
|
/Linux-v6.6/security/apparmor/include/ |
D | match.h | 21 * The format used for transition tables is based on the GNU flex table 22 * file format (--tables-file option; see Table File Format in the flex 25 * new tables have been defined and others YY_ID_CHK (check) and YY_ID_DEF 26 * (default) tables are used slightly differently (see the apparmor-parser 30 * The data in the packed dfa is stored in network byte order, and the tables 35 * tables. 73 /* ACCEPT & ACCEPT2 tables gets 6 dedicated flags, YYTD_DATAX define the 90 #define DEFAULT_TABLE(DFA) ((u16 *)((DFA)->tables[YYTD_ID_DEF]->td_data)) 91 #define BASE_TABLE(DFA) ((u32 *)((DFA)->tables[YYTD_ID_BASE]->td_data)) 92 #define NEXT_TABLE(DFA) ((u16 *)((DFA)->tables[YYTD_ID_NXT]->td_data)) [all …]
|
/Linux-v6.6/tools/perf/util/scripting-engines/ |
D | trace-event-python.c | 108 struct tables { struct 126 static struct tables tables_global; argument 1136 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_evsel() local 1144 call_object(tables->evsel_handler, t, "evsel_table"); in python_export_evsel() 1154 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_machine() local 1163 call_object(tables->machine_handler, t, "machine_table"); in python_export_machine() 1173 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_thread() local 1184 call_object(tables->thread_handler, t, "thread_table"); in python_export_thread() 1194 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm() local 1205 call_object(tables->comm_handler, t, "comm_table"); in python_export_comm() [all …]
|
/Linux-v6.6/security/apparmor/ |
D | match.c | 123 /* if table was vmalloced make sure the page tables are synced in unpack_table() 138 * verify_table_headers - verify that the tables headers are as expected 139 * @tables - array of dfa tables to check (NOT NULL) 147 static int verify_table_headers(struct table_header **tables, int flags) in verify_table_headers() argument 152 /* check that required tables exist */ in verify_table_headers() 153 if (!(tables[YYTD_ID_DEF] && tables[YYTD_ID_BASE] && in verify_table_headers() 154 tables[YYTD_ID_NXT] && tables[YYTD_ID_CHK])) in verify_table_headers() 158 state_count = tables[YYTD_ID_BASE]->td_lolen; in verify_table_headers() 160 if (!tables[YYTD_ID_ACCEPT]) in verify_table_headers() 162 if (state_count != tables[YYTD_ID_ACCEPT]->td_lolen) in verify_table_headers() [all …]
|
/Linux-v6.6/Documentation/arch/x86/ |
D | pti.rst | 15 page tables for use only when running userspace applications. When 17 page tables are switched to the full "kernel" copy. When the system 20 The userspace page tables contain only a minimal amount of kernel 36 When PTI is enabled, the kernel manages two sets of page tables. 41 Although _complete_, the user portion of the kernel page tables is 46 The userspace page tables map only the kernel data needed to enter 52 page tables like normal. The only difference is when the kernel 55 userspace page tables' PGD. 58 layers of the page tables. This leaves a single, shared set of 59 userspace page tables to manage. One PTE to lock, one set of [all …]
|
/Linux-v6.6/Documentation/ABI/testing/ |
D | sysfs-firmware-dmi-tables | 1 What: /sys/firmware/dmi/tables/ 13 The dmi/tables provides raw SMBIOS entry point and DMI tables 18 /sys/firmware/dmi/tables/smbios_entry_point 19 /sys/firmware/dmi/tables/DMI 22 tables.
|
/Linux-v6.6/tools/power/acpi/man/ |
D | acpidump.8 | 3 acpidump \- dump a system's ACPI tables to an ASCII file 12 dumps the systems ACPI tables to an ASCII file appropriate for 23 Dump tables to binary files 32 Dump tables from specified RSDP 64 Invocation without parameters dumps all available tables. 106 /sys/firmware/acpi/tables/* 107 /sys/firmware/acpi/tables/dynamic/*
|
/Linux-v6.6/Documentation/crypto/ |
D | descore-readme.rst | 62 - 30us per encryption (options: 64k tables, no IP/FP) 63 - 33us per encryption (options: 64k tables, FIPS standard bit ordering) 64 - 45us per encryption (options: 2k tables, no IP/FP) 65 - 48us per encryption (options: 2k tables, FIPS standard bit ordering) 66 - 275us to set a new key (uses 1k of key tables) 80 - 53us per encryption (uses 2k of tables) 81 - 96us to set a new key (uses 2.25k of key tables) 106 - 68us per encryption (uses 2k of tables) 107 - 96us to set a new key (uses 2.25k of key tables) 126 he claims to use 280k of tables but the iteration calculation seems [all …]
|
/Linux-v6.6/drivers/iio/ |
D | industrialio-gts-helper.c | 153 * iio_gts_purge_avail_scale_table - free-up the available scale tables 189 * Sort the tables for nice output and for easier finding of in gain_to_scaletables() 273 * iio_gts_build_avail_scale_table - create tables of available scales 276 * Build the tables which can represent the available scales based on the 277 * originally given gain and time tables. When both time and gain tables are 279 * 1. A set of tables representing available scales for each supported 284 * NOTE: Space allocated for the tables must be freed using 285 * iio_gts_purge_avail_scale_table() when the tables are no longer needed. 358 * NOTE: Space allocated for the tables must be freed using 359 * iio_gts_purge_avail_time_table() when the tables are no longer needed. [all …]
|
/Linux-v6.6/drivers/net/ipa/ |
D | ipa_table.h | 23 * ipa_table_hash_support() - Return true if hashed tables are supported 32 * ipa_table_reset() - Reset filter and route tables entries to "none" 45 * ipa_table_setup() - Set up filter and route tables 53 * ipa_table_config() - Configure filter and route tables 61 * ipa_table_init() - Do early initialization of filter and route tables 75 * @filter: Whether to check filter or routing tables
|
/Linux-v6.6/Documentation/firmware-guide/acpi/ |
D | acpi-lid.rst | 15 using a control method lid device. To implement this, the AML tables issue 31 However the word of "current" has ambiguity, some buggy AML tables return 35 initial returning value. When the AML tables implement this control method 42 There are buggy AML tables never notifying when the lid device state is 44 it is guaranteed that the AML tables always notify "closed" when the lid 47 tested, it is reliable from all AML tables. 85 isn't ready to handle the buggy AML tables. 107 opens given that some AML tables do not send "opened" notifications 114 handle the buggy AML tables.
|
/Linux-v6.6/net/ipv4/ |
D | udp_tunnel_nic.c | 35 * @n_tables: number of tables under @entries 36 * @missed: bitmap of tables which overflown 37 * @entries: table of tables of ports currently offloaded 136 for (j = 0; j < info->tables[i].n_entries; j++) in udp_tunnel_nic_is_empty() 152 table = &dev->udp_tunnel_nic_info->tables[i]; in udp_tunnel_nic_should_replay() 245 for (j = 0; j < info->tables[i].n_entries; j++) in udp_tunnel_nic_device_sync_by_port() 259 for (j = 0; j < info->tables[i].n_entries; j++) in udp_tunnel_nic_device_sync_by_table() 262 if (j == info->tables[i].n_entries) in udp_tunnel_nic_device_sync_by_table() 270 for (j = 0; j < info->tables[i].n_entries; j++) { in udp_tunnel_nic_device_sync_by_table() 339 if (udp_tunnel_nic_table_is_capable(&info->tables[i], ti)) in udp_tunnel_nic_is_capable() [all …]
|
/Linux-v6.6/drivers/acpi/acpica/ |
D | tbxfload.c | 29 * DESCRIPTION: Load the ACPI tables from the RSDT/XSDT 57 /* Load the namespace from the tables */ in acpi_load_tables() 69 "While loading namespace from ACPI tables")); in acpi_load_tables() 116 * PSDT tables are optional. Verify the DSDT. in ACPI_EXPORT_SYMBOL_INIT() 118 table = &acpi_gbl_root_table_list.tables[acpi_gbl_dsdt_index]; in ACPI_EXPORT_SYMBOL_INIT() 129 * address. We must take care here because the address of the .Tables in ACPI_EXPORT_SYMBOL_INIT() 130 * array can change dynamically as tables are loaded at run-time. Note: in ACPI_EXPORT_SYMBOL_INIT() 155 /* Load and parse tables */ in ACPI_EXPORT_SYMBOL_INIT() 167 /* Load any SSDT or PSDT tables. Note: Loop leaves tables locked */ in ACPI_EXPORT_SYMBOL_INIT() 170 table = &acpi_gbl_root_table_list.tables[i]; in ACPI_EXPORT_SYMBOL_INIT() [all …]
|
D | tbfind.c | 67 if (memcmp(&(acpi_gbl_root_table_list.tables[i].signature), in acpi_tb_find_table() 77 if (!acpi_gbl_root_table_list.tables[i].pointer) { in acpi_tb_find_table() 83 tables[i]); in acpi_tb_find_table() 88 if (!acpi_gbl_root_table_list.tables[i].pointer) { in acpi_tb_find_table() 96 (acpi_gbl_root_table_list.tables[i].pointer->signature, in acpi_tb_find_table() 101 tables[i]. in acpi_tb_find_table() 106 || !memcmp(acpi_gbl_root_table_list.tables[i].pointer-> in acpi_tb_find_table()
|
D | tbdata.c | 33 * RETURN: TRUE if both tables are identical. 50 acpi_tb_acquire_table(&acpi_gbl_root_table_list.tables[table_index], in acpi_tb_compare_tables() 93 * tables, since the table is not fully mapped at this time. in acpi_tb_init_table_descriptor() 126 * DESCRIPTION: Acquire an ACPI table. It can be used for tables not 412 * DESCRIPTION: Avoid installing duplicated tables. However table override and 430 /* Do not compare with unverified tables */ in acpi_tb_check_duplication() 433 (acpi_gbl_root_table_list.tables[i]. in acpi_tb_check_duplication() 451 * The assumption here is that the number of different tables that in acpi_tb_check_duplication() 456 * machines with many table load/unload operations), tables will in acpi_tb_check_duplication() 460 if (acpi_gbl_root_table_list.tables[i].flags & in acpi_tb_check_duplication() [all …]
|
/Linux-v6.6/Documentation/mm/ |
D | split_page_table_lock.rst | 5 Originally, mm->page_table_lock spinlock protected all page tables of the 12 tables. Access to higher level tables protected by mm->page_table_lock. 36 Split page table lock for PTE tables is enabled compile-time if 38 If split lock is disabled, all tables are guarded by mm->page_table_lock. 40 Split page table lock for PMD tables is enabled, if it's enabled for PTE 41 tables and the architecture supports it (see below).
|
D | page_tables.rst | 4 Page Tables 13 Page tables map virtual addresses as seen by the CPU into physical addresses 16 Linux defines page tables as a hierarchy which is currently five levels in 51 remains unused. By using hierarchical page tables large holes in the virtual 99 page tables were first introduced, so the *pte* is the lowermost page 106 the other levels to handle 4-level page tables. It is potentially unused, 110 handle 5-level page tables after the *pud* was introduced. Now it was clear 113 is only used on systems which actually have 5 levels of page tables, otherwise 147 which means skipped, and all operations performed on page tables will be
|
/Linux-v6.6/Documentation/arch/arm64/ |
D | arm-acpi.rst | 123 Booting using ACPI tables 125 The only defined method for passing ACPI tables to the kernel on Arm 129 When an Arm system boots, it can either have DT information, ACPI tables, 132 present, the kernel will try to use ACPI tables, but only if they are present. 134 on the command line, the kernel will attempt to use ACPI tables first, but 135 fall back to DT if there are no ACPI tables present. The basic idea is that 138 Processing of ACPI tables may be disabled by passing acpi=off on the kernel 141 In order for the kernel to load and use ACPI tables, the UEFI implementation 145 kernel has, in effect, determined that ACPI tables are not present at that 151 The ACPI core will then locate and map in all other ACPI tables provided by [all …]
|
/Linux-v6.6/Documentation/networking/devlink/ |
D | devlink-dpipe.rst | 46 modeled as a graph of match/action tables. Each table represents a specific 62 filter new tables should be created describing those regions. 70 * tables 80 Drivers can register and unregister tables at run time, in order to support 120 different Virtual Routing and Forwarding (VRF) tables can be mapped to 155 match/action values and specific counter. By dumping the tables content the 156 interactions between tables can be resolved. 169 The LPM algorithm can be implemented as a list of hash tables. Each hash 177 The ``meta.lpm_prefix`` field is used to connect two LPM tables. 237 tables this table does multiple operations like TTL decrease and MTU check.
|
/Linux-v6.6/Documentation/admin-guide/pm/ |
D | intel_idle.rst | 58 ``intel_idle`` can use two sources of information: static tables of idle states 59 for different processor models included in the driver itself and the ACPI tables 65 tables with any processor model recognized by it; see 68 If the ACPI tables are going to be used for building the list of available idle 82 coming from the ACPI tables. [This step is skipped if ``intel_idle`` is 83 configured to ignore the ACPI tables; see `below <intel-idle-parameters_>`_.] 94 using the ACPI tables for the enumeration of idle states is not required 99 preliminary list of idle states coming from the ACPI tables. In that case user 105 not been exposed by the platform firmware (through the ACPI tables). 109 tables is used for building the final list that will be supplied to the [all …]
|