| /linux/drivers/net/wireguard/ |
| H A D | peerlookup.c | 10 static struct hlist_head *pubkey_bucket(struct pubkey_hashtable *table, in pubkey_bucket() argument 17 const u64 hash = siphash(pubkey, NOISE_PUBLIC_KEY_LEN, &table->key); in pubkey_bucket() 19 return &table->hashtable[hash & (HASH_SIZE(table->hashtable) - 1)]; in pubkey_bucket() 24 struct pubkey_hashtable *table = kvmalloc(sizeof(*table), GFP_KERNEL); in wg_pubkey_hashtable_alloc() local 26 if (!table) in wg_pubkey_hashtable_alloc() 29 get_random_bytes(&table->key, sizeof(table->key)); in wg_pubkey_hashtable_alloc() 30 hash_init(table->hashtable); in wg_pubkey_hashtable_alloc() 31 mutex_init(&table->lock); in wg_pubkey_hashtable_alloc() 32 return table; in wg_pubkey_hashtable_alloc() 35 void wg_pubkey_hashtable_add(struct pubkey_hashtable *table, in wg_pubkey_hashtable_add() argument [all …]
|
| /linux/tools/power/acpi/tools/acpidump/ |
| H A D | apdump.c | 15 ap_dump_table_buffer(struct acpi_table_header *table, 30 u8 ap_is_valid_header(struct acpi_table_header *table) in ap_is_valid_header() argument 33 if (!ACPI_VALIDATE_RSDP_SIG(table->signature)) { in ap_is_valid_header() 37 if (!acpi_ut_valid_nameseg(table->signature)) { in ap_is_valid_header() 40 *(u32 *)table->signature); in ap_is_valid_header() 46 if (table->length < sizeof(struct acpi_table_header)) { in ap_is_valid_header() 48 table->length); in ap_is_valid_header() 68 u8 ap_is_valid_checksum(struct acpi_table_header *table) in ap_is_valid_checksum() argument 73 if (ACPI_VALIDATE_RSDP_SIG(table->signature)) { in ap_is_valid_checksum() 78 rsdp = ACPI_CAST_PTR(struct acpi_table_rsdp, table); in ap_is_valid_checksum() [all …]
|
| /linux/drivers/md/dm-vdo/ |
| H A D | priority-table.c | 56 struct priority_table *table; in vdo_make_priority_table() local 64 struct bucket, __func__, &table); in vdo_make_priority_table() 69 struct bucket *bucket = &table->buckets[priority]; in vdo_make_priority_table() 75 table->max_priority = max_priority; in vdo_make_priority_table() 76 table->search_vector = 0; in vdo_make_priority_table() 78 *table_ptr = table; in vdo_make_priority_table() 88 void vdo_free_priority_table(struct priority_table *table) in vdo_free_priority_table() argument 90 if (table == NULL) in vdo_free_priority_table() 97 vdo_reset_priority_table(table); in vdo_free_priority_table() 99 vdo_free(table); in vdo_free_priority_table() [all …]
|
| /linux/drivers/net/ethernet/mellanox/mlx4/ |
| H A D | icm.c | 258 int mlx4_table_get(struct mlx4_dev *dev, struct mlx4_icm_table *table, u32 obj) in mlx4_table_get() argument 260 u32 i = (obj & (table->num_obj - 1)) / in mlx4_table_get() 261 (MLX4_TABLE_CHUNK_SIZE / table->obj_size); in mlx4_table_get() 264 mutex_lock(&table->mutex); in mlx4_table_get() 266 if (table->icm[i]) { in mlx4_table_get() 267 ++table->icm[i]->refcount; in mlx4_table_get() 271 table->icm[i] = mlx4_alloc_icm(dev, MLX4_TABLE_CHUNK_SIZE >> PAGE_SHIFT, in mlx4_table_get() 272 (table->lowmem ? GFP_KERNEL : GFP_HIGHUSER) | in mlx4_table_get() 273 __GFP_NOWARN, table->coherent); in mlx4_table_get() 274 if (!table->icm[i]) { in mlx4_table_get() [all …]
|
| /linux/arch/x86/lib/ |
| H A D | inat.c | 29 const insn_attr_t *table; in inat_get_escape_attribute() local 34 table = inat_escape_tables[n][0]; in inat_get_escape_attribute() 35 if (!table) in inat_get_escape_attribute() 37 if (inat_has_variant(table[opcode]) && lpfx_id) { in inat_get_escape_attribute() 38 table = inat_escape_tables[n][lpfx_id]; in inat_get_escape_attribute() 39 if (!table) in inat_get_escape_attribute() 42 return table[opcode]; in inat_get_escape_attribute() 48 const insn_attr_t *table; in inat_get_group_attribute() local 53 table = inat_group_tables[n][0]; in inat_get_group_attribute() 54 if (!table) in inat_get_group_attribute() [all …]
|
| /linux/tools/arch/x86/lib/ |
| H A D | inat.c | 29 const insn_attr_t *table; in inat_get_escape_attribute() local 34 table = inat_escape_tables[n][0]; in inat_get_escape_attribute() 35 if (!table) in inat_get_escape_attribute() 37 if (inat_has_variant(table[opcode]) && lpfx_id) { in inat_get_escape_attribute() 38 table = inat_escape_tables[n][lpfx_id]; in inat_get_escape_attribute() 39 if (!table) in inat_get_escape_attribute() 42 return table[opcode]; in inat_get_escape_attribute() 48 const insn_attr_t *table; in inat_get_group_attribute() local 53 table = inat_group_tables[n][0]; in inat_get_group_attribute() 54 if (!table) in inat_get_group_attribute() [all …]
|
| /linux/drivers/infiniband/core/ |
| H A D | cache.c | 49 u16 table[] __counted_by(table_len); 170 static bool is_gid_index_default(const struct ib_gid_table *table, in is_gid_index_default() argument 173 return index < 32 && (BIT(index) & table->default_gid_indices); in is_gid_index_default() 241 struct ib_gid_table *table = rdma_gid_table(device, port_num); in free_gid_entry_locked() local 246 write_lock_irq(&table->rwlock); in free_gid_entry_locked() 254 if (entry == table->data_vec[entry->attr.index]) in free_gid_entry_locked() 255 table->data_vec[entry->attr.index] = NULL; in free_gid_entry_locked() 257 write_unlock_irq(&table->rwlock); in free_gid_entry_locked() 286 struct ib_gid_table *table = rdma_gid_table(device, port_num); in free_gid_work() local 288 mutex_lock(&table->lock); in free_gid_work() [all …]
|
| /linux/drivers/media/i2c/ |
| H A D | ks0127.c | 200 u8 *table = reg_defaults; in init_reg_defaults() local 206 table[KS_CMDA] = 0x2c; /* VSE=0, CCIR 601, autodetect standard */ in init_reg_defaults() 207 table[KS_CMDB] = 0x12; /* VALIGN=0, AGC control and input */ in init_reg_defaults() 208 table[KS_CMDC] = 0x00; /* Test options */ in init_reg_defaults() 210 table[KS_CMDD] = 0x01; in init_reg_defaults() 211 table[KS_HAVB] = 0x00; /* HAV Start Control */ in init_reg_defaults() 212 table[KS_HAVE] = 0x00; /* HAV End Control */ in init_reg_defaults() 213 table[KS_HS1B] = 0x10; /* HS1 Start Control */ in init_reg_defaults() 214 table[KS_HS1E] = 0x00; /* HS1 End Control */ in init_reg_defaults() 215 table[KS_HS2B] = 0x00; /* HS2 Start Control */ in init_reg_defaults() [all …]
|
| /linux/drivers/net/ethernet/marvell/octeontx2/af/ |
| H A D | rvu_npc_hash.c | 429 struct npc_exact_table *table = rvu->hw->table; in rvu_exact_calculate_hash() local 448 hash &= table->mem_table.hash_mask; in rvu_exact_calculate_hash() 449 hash += table->mem_table.hash_offset; in rvu_exact_calculate_hash() 468 struct npc_exact_table *table; in rvu_npc_exact_alloc_mem_table_entry() local 471 table = rvu->hw->table; in rvu_npc_exact_alloc_mem_table_entry() 472 depth = table->mem_table.depth; in rvu_npc_exact_alloc_mem_table_entry() 475 mutex_lock(&table->lock); in rvu_npc_exact_alloc_mem_table_entry() 476 for (i = 0; i < table->mem_table.ways; i++) { in rvu_npc_exact_alloc_mem_table_entry() 477 if (test_bit(hash + i * depth, table->mem_table.bmap)) in rvu_npc_exact_alloc_mem_table_entry() 480 set_bit(hash + i * depth, table->mem_table.bmap); in rvu_npc_exact_alloc_mem_table_entry() [all …]
|
| /linux/arch/powerpc/boot/ |
| H A D | planetcore.c | 26 void planetcore_prepare_table(char *table) in planetcore_prepare_table() argument 29 if (*table == '\n') in planetcore_prepare_table() 30 *table = 0; in planetcore_prepare_table() 32 table++; in planetcore_prepare_table() 33 } while (*(table - 1) || *table != '\n'); in planetcore_prepare_table() 35 *table = 0; in planetcore_prepare_table() 38 const char *planetcore_get_key(const char *table, const char *key) in planetcore_get_key() argument 43 if (!strncmp(table, key, keylen) && table[keylen] == '=') in planetcore_get_key() 44 return table + keylen + 1; in planetcore_get_key() 46 table += strlen(table) + 1; in planetcore_get_key() [all …]
|
| /linux/net/sched/ |
| H A D | sch_gred.c | 62 static inline int gred_wred_mode(struct gred_sched *table) in gred_wred_mode() argument 64 return test_bit(GRED_WRED_MODE, &table->flags); in gred_wred_mode() 67 static inline void gred_enable_wred_mode(struct gred_sched *table) in gred_enable_wred_mode() argument 69 __set_bit(GRED_WRED_MODE, &table->flags); in gred_enable_wred_mode() 72 static inline void gred_disable_wred_mode(struct gred_sched *table) in gred_disable_wred_mode() argument 74 __clear_bit(GRED_WRED_MODE, &table->flags); in gred_disable_wred_mode() 77 static inline int gred_rio_mode(struct gred_sched *table) in gred_rio_mode() argument 79 return test_bit(GRED_RIO_MODE, &table->flags); in gred_rio_mode() 82 static inline void gred_enable_rio_mode(struct gred_sched *table) in gred_enable_rio_mode() argument 84 __set_bit(GRED_RIO_MODE, &table->flags); in gred_enable_rio_mode() [all …]
|
| /linux/kernel/ |
| H A D | sysctl.c | 138 static void warn_sysctl_write(const struct ctl_table *table) in warn_sysctl_write() argument 143 current->comm, table->procname); in warn_sysctl_write() 156 const struct ctl_table *table) in proc_first_pos_non_zero_ignore() argument 165 warn_sysctl_write(table); in proc_first_pos_non_zero_ignore() 189 int proc_dostring(const struct ctl_table *table, int dir, in proc_dostring() argument 193 proc_first_pos_non_zero_ignore(ppos, table); in proc_dostring() 195 return _proc_do_string(table->data, table->maxlen, dir, buffer, lenp, in proc_dostring() 383 static int do_proc_dointvec(const struct ctl_table *table, int dir, in do_proc_dointvec() argument 386 int dir, const struct ctl_table *table)) in do_proc_dointvec() 392 if (!table->data || !table->maxlen || !*lenp || in do_proc_dointvec() [all …]
|
| /linux/drivers/clk/ |
| H A D | clk-divider.c | 45 static unsigned int _get_table_maxdiv(const struct clk_div_table *table, in _get_table_maxdiv() argument 51 for (clkt = table; clkt->div; clkt++) in _get_table_maxdiv() 57 static unsigned int _get_table_mindiv(const struct clk_div_table *table) in _get_table_mindiv() argument 62 for (clkt = table; clkt->div; clkt++) in _get_table_mindiv() 68 static unsigned int _get_maxdiv(const struct clk_div_table *table, u8 width, in _get_maxdiv() argument 77 if (table) in _get_maxdiv() 78 return _get_table_maxdiv(table, width); in _get_maxdiv() 82 static unsigned int _get_table_div(const struct clk_div_table *table, in _get_table_div() argument 87 for (clkt = table; clkt->div; clkt++) in _get_table_div() 93 static unsigned int _get_div(const struct clk_div_table *table, in _get_div() argument [all …]
|
| /linux/scripts/mod/ |
| H A D | symsearch.c | 27 struct syminfo table[]; member 69 struct syminfo *table, in symsearch_populate() argument 78 table->symbol_index = sym - elf->symtab_start; in symsearch_populate() 79 table->section_index = get_secindex(elf, sym); in symsearch_populate() 80 table->addr = sym->st_value; in symsearch_populate() 88 table->addr &= ~1; in symsearch_populate() 90 table++; in symsearch_populate() 113 static void symsearch_fixup(struct syminfo *table, unsigned int table_size) in symsearch_fixup() argument 117 if (table[i].addr == table[i - 1].addr && in symsearch_fixup() 118 table[i].section_index == table[i - 1].section_index) { in symsearch_fixup() [all …]
|
| /linux/drivers/gpu/drm/amd/pm/powerplay/smumgr/ |
| H A D | vegam_smumgr.c | 449 SMU75_Discrete_DpmTable *table) in vegam_populate_smc_mvdd_table() argument 459 table->SmioTable2.Pattern[level].Voltage = PP_HOST_TO_SMC_US( in vegam_populate_smc_mvdd_table() 462 table->SmioTable2.Pattern[level].Smio = in vegam_populate_smc_mvdd_table() 464 table->Smio[level] |= in vegam_populate_smc_mvdd_table() 467 table->SmioMask2 = data->mvdd_voltage_table.mask_low; in vegam_populate_smc_mvdd_table() 469 table->MvddLevelCount = (uint32_t) PP_HOST_TO_SMC_UL(count); in vegam_populate_smc_mvdd_table() 476 struct SMU75_Discrete_DpmTable *table) in vegam_populate_smc_vddci_table() argument 487 table->SmioTable1.Pattern[level].Voltage = PP_HOST_TO_SMC_US( in vegam_populate_smc_vddci_table() 489 table->SmioTable1.Pattern[level].Smio = (uint8_t) level; in vegam_populate_smc_vddci_table() 491 table->Smio[level] |= data->vddci_voltage_table.entries[level].smio_low; in vegam_populate_smc_vddci_table() [all …]
|
| H A D | ci_smumgr.c | 842 SMU7_Discrete_DpmTable *table) in ci_populate_smc_vddc_table() argument 848 table->VddcLevelCount = data->vddc_voltage_table.count; in ci_populate_smc_vddc_table() 849 for (count = 0; count < table->VddcLevelCount; count++) { in ci_populate_smc_vddc_table() 852 &(table->VddcLevel[count])); in ci_populate_smc_vddc_table() 857 table->VddcLevel[count].Smio = (uint8_t) count; in ci_populate_smc_vddc_table() 858 table->Smio[count] |= data->vddc_voltage_table.entries[count].smio_low; in ci_populate_smc_vddc_table() 859 table->SmioMaskVddcVid |= data->vddc_voltage_table.entries[count].smio_low; in ci_populate_smc_vddc_table() 861 table->VddcLevel[count].Smio = 0; in ci_populate_smc_vddc_table() 865 CONVERT_FROM_HOST_TO_SMC_UL(table->VddcLevelCount); in ci_populate_smc_vddc_table() 871 SMU7_Discrete_DpmTable *table) in ci_populate_smc_vdd_ci_table() argument [all …]
|
| H A D | iceland_smumgr.c | 618 SMU71_Discrete_DpmTable *table) in iceland_populate_smc_vddc_table() argument 624 table->VddcLevelCount = data->vddc_voltage_table.count; in iceland_populate_smc_vddc_table() 625 for (count = 0; count < table->VddcLevelCount; count++) { in iceland_populate_smc_vddc_table() 628 &(table->VddcLevel[count])); in iceland_populate_smc_vddc_table() 633 table->VddcLevel[count].Smio |= data->vddc_voltage_table.entries[count].smio_low; in iceland_populate_smc_vddc_table() 635 table->VddcLevel[count].Smio = 0; in iceland_populate_smc_vddc_table() 638 CONVERT_FROM_HOST_TO_SMC_UL(table->VddcLevelCount); in iceland_populate_smc_vddc_table() 644 SMU71_Discrete_DpmTable *table) in iceland_populate_smc_vdd_ci_table() argument 650 table->VddciLevelCount = data->vddci_voltage_table.count; in iceland_populate_smc_vdd_ci_table() 652 for (count = 0; count < table->VddciLevelCount; count++) { in iceland_populate_smc_vdd_ci_table() [all …]
|
| /linux/drivers/net/ethernet/sfc/ |
| H A D | mcdi_filters.c | 27 efx_mcdi_filter_entry_spec(const struct efx_mcdi_filter_table *table, in efx_mcdi_filter_entry_spec() argument 30 return (struct efx_filter_spec *)(table->entry[filter_idx].spec & in efx_mcdi_filter_entry_spec() 35 efx_mcdi_filter_entry_flags(const struct efx_mcdi_filter_table *table, in efx_mcdi_filter_entry_flags() argument 38 return table->entry[filter_idx].spec & EFX_EF10_FILTER_FLAGS; in efx_mcdi_filter_entry_flags() 84 efx_mcdi_filter_set_entry(struct efx_mcdi_filter_table *table, in efx_mcdi_filter_set_entry() argument 89 table->entry[filter_idx].spec = (unsigned long)spec | flags; in efx_mcdi_filter_set_entry() 328 static int efx_mcdi_filter_pri(struct efx_mcdi_filter_table *table, in efx_mcdi_filter_pri() argument 335 match_pri < table->rx_match_count; in efx_mcdi_filter_pri() 337 if (table->rx_match_mcdi_flags[match_pri] == mcdi_flags) in efx_mcdi_filter_pri() 349 struct efx_mcdi_filter_table *table; in efx_mcdi_filter_insert_locked() local [all …]
|
| /linux/scripts/include/ |
| H A D | hashtable.h | 16 #define hash_head(table, key) (&(table)[(key) % HASH_SIZE(table)]) argument 33 #define hash_init(table) __hash_init(table, HASH_SIZE(table)) argument 41 #define hash_add(table, node, key) \ argument 42 hlist_add_head(node, hash_head(table, key)) 59 #define hash_for_each(table, obj, member) \ argument 60 for (int _bkt = 0; _bkt < HASH_SIZE(table); _bkt++) \ 61 hlist_for_each_entry(obj, &table[_bkt], member) 71 #define hash_for_each_safe(table, obj, tmp, member) \ argument 72 for (int _bkt = 0; _bkt < HASH_SIZE(table); _bkt++) \ 73 hlist_for_each_entry_safe(obj, tmp, &table[_bkt], member) [all …]
|
| /linux/drivers/infiniband/hw/mthca/ |
| H A D | mthca_memfree.c | 222 int mthca_table_get(struct mthca_dev *dev, struct mthca_icm_table *table, int obj) in mthca_table_get() argument 224 int i = (obj & (table->num_obj - 1)) * table->obj_size / MTHCA_TABLE_CHUNK_SIZE; in mthca_table_get() 227 mutex_lock(&table->mutex); in mthca_table_get() 229 if (table->icm[i]) { in mthca_table_get() 230 ++table->icm[i]->refcount; in mthca_table_get() 234 table->icm[i] = mthca_alloc_icm(dev, MTHCA_TABLE_CHUNK_SIZE >> PAGE_SHIFT, in mthca_table_get() 235 (table->lowmem ? GFP_KERNEL : GFP_HIGHUSER) | in mthca_table_get() 236 __GFP_NOWARN, table->coherent); in mthca_table_get() 237 if (!table->icm[i]) { in mthca_table_get() 242 if (mthca_MAP_ICM(dev, table->icm[i], in mthca_table_get() [all …]
|
| /linux/drivers/gpu/drm/radeon/ |
| H A D | rv730_dpm.c | 227 RV770_SMC_STATETABLE *table) in rv730_populate_smc_acpi_state() argument 239 table->ACPIState = table->initialState; in rv730_populate_smc_acpi_state() 240 table->ACPIState.flags &= ~PPSMC_SWSTATE_FLAG_DC; in rv730_populate_smc_acpi_state() 244 &table->ACPIState.levels[0].vddc); in rv730_populate_smc_acpi_state() 245 table->ACPIState.levels[0].gen2PCIE = pi->pcie_gen2 ? in rv730_populate_smc_acpi_state() 247 table->ACPIState.levels[0].gen2XSP = in rv730_populate_smc_acpi_state() 251 &table->ACPIState.levels[0].vddc); in rv730_populate_smc_acpi_state() 252 table->ACPIState.levels[0].gen2PCIE = 0; in rv730_populate_smc_acpi_state() 294 table->ACPIState.levels[0].mclk.mclk730.vMPLL_FUNC_CNTL = cpu_to_be32(mpll_func_cntl); in rv730_populate_smc_acpi_state() 295 table->ACPIState.levels[0].mclk.mclk730.vMPLL_FUNC_CNTL2 = cpu_to_be32(mpll_func_cntl_2); in rv730_populate_smc_acpi_state() [all …]
|
| /linux/mm/ |
| H A D | swap_table.h | 88 atomic_long_t *table = rcu_dereference_protected(ci->table, true); in __swap_table_set() local 92 atomic_long_set(&table[off], swp_tb); in __swap_table_set() 98 atomic_long_t *table = rcu_dereference_protected(ci->table, true); in __swap_table_xchg() local 103 return atomic_long_xchg_relaxed(&table[off], swp_tb); in __swap_table_xchg() 109 atomic_long_t *table; in __swap_table_get() local 112 table = rcu_dereference_check(ci->table, lockdep_is_held(&ci->lock)); in __swap_table_get() 114 return atomic_long_read(&table[off]); in __swap_table_get() 120 atomic_long_t *table; in swap_table_get() local 124 table = rcu_dereference(ci->table); in swap_table_get() 125 swp_tb = table ? atomic_long_read(&table[off]) : null_to_swp_tb(); in swap_table_get()
|
| /linux/drivers/net/ethernet/sfc/siena/ |
| H A D | farch.c | 1884 struct efx_farch_filter_table table[EFX_FARCH_FILTER_TABLE_COUNT]; member 1889 struct efx_farch_filter_table *table, 1938 struct efx_farch_filter_table *table; in efx_farch_filter_push_rx_config() local 1943 table = &state->table[EFX_FARCH_FILTER_TABLE_RX_IP]; in efx_farch_filter_push_rx_config() 1945 table->search_limit[EFX_FARCH_FILTER_TCP_FULL] + in efx_farch_filter_push_rx_config() 1948 table->search_limit[EFX_FARCH_FILTER_TCP_WILD] + in efx_farch_filter_push_rx_config() 1951 table->search_limit[EFX_FARCH_FILTER_UDP_FULL] + in efx_farch_filter_push_rx_config() 1954 table->search_limit[EFX_FARCH_FILTER_UDP_WILD] + in efx_farch_filter_push_rx_config() 1957 table = &state->table[EFX_FARCH_FILTER_TABLE_RX_MAC]; in efx_farch_filter_push_rx_config() 1958 if (table->size) { in efx_farch_filter_push_rx_config() [all …]
|
| /linux/arch/s390/mm/ |
| H A D | gmap.c | 63 unsigned long *table; in gmap_alloc() local 96 table = page_to_virt(page); in gmap_alloc() 97 crst_table_init(table, etype); in gmap_alloc() 98 gmap->table = table; in gmap_alloc() 100 _ASCE_USER_BITS | __pa(table); in gmap_alloc() 195 static void gmap_free_crst(unsigned long *table, bool free_ptes) in gmap_free_crst() argument 197 bool is_segment = (table[0] & _SEGMENT_ENTRY_TYPE_MASK) == 0; in gmap_free_crst() 204 if (!(table[i] & _SEGMENT_ENTRY_INVALID)) in gmap_free_crst() 205 page_table_free_pgste(page_ptdesc(phys_to_page(table[i]))); in gmap_free_crst() 208 if (!(table[i] & _REGION_ENTRY_INVALID)) in gmap_free_crst() [all …]
|
| /linux/arch/s390/include/asm/ |
| H A D | pgalloc.h | 57 unsigned long *table = crst_table_alloc_noprof(mm); in p4d_alloc_one_noprof() local 59 if (!table) in p4d_alloc_one_noprof() 61 crst_table_init(table, _REGION2_ENTRY_EMPTY); in p4d_alloc_one_noprof() 62 pagetable_p4d_ctor(virt_to_ptdesc(table)); in p4d_alloc_one_noprof() 64 return (p4d_t *) table; in p4d_alloc_one_noprof() 79 unsigned long *table = crst_table_alloc_noprof(mm); in pud_alloc_one_noprof() local 81 if (!table) in pud_alloc_one_noprof() 83 crst_table_init(table, _REGION3_ENTRY_EMPTY); in pud_alloc_one_noprof() 84 pagetable_pud_ctor(virt_to_ptdesc(table)); in pud_alloc_one_noprof() 86 return (pud_t *) table; in pud_alloc_one_noprof() [all …]
|