/Linux-v4.19/drivers/acpi/acpica/ |
D | tbutils.c | 122 struct acpi_table_header *new_table; in acpi_tb_copy_dsdt() local 127 new_table = ACPI_ALLOCATE(table_desc->length); in acpi_tb_copy_dsdt() 128 if (!new_table) { in acpi_tb_copy_dsdt() 134 memcpy(new_table, table_desc->pointer, table_desc->length); in acpi_tb_copy_dsdt() 139 ACPI_PTR_TO_PHYSADDR(new_table), in acpi_tb_copy_dsdt() 141 new_table); in acpi_tb_copy_dsdt() 143 …ACPI_INFO(("Forced DSDT copy: length 0x%05X copied locally, original unmapped", new_table->length)… in acpi_tb_copy_dsdt() 145 return (new_table); in acpi_tb_copy_dsdt()
|
/Linux-v4.19/drivers/staging/android/ion/ |
D | ion.c | 168 struct sg_table *new_table; in dup_sg_table() local 172 new_table = kzalloc(sizeof(*new_table), GFP_KERNEL); in dup_sg_table() 173 if (!new_table) in dup_sg_table() 176 ret = sg_alloc_table(new_table, table->nents, GFP_KERNEL); in dup_sg_table() 178 kfree(new_table); in dup_sg_table() 182 new_sg = new_table->sgl; in dup_sg_table() 189 return new_table; in dup_sg_table()
|
/Linux-v4.19/kernel/events/ |
D | callchain.c | 244 struct ctl_table new_table = *table; in perf_event_max_stack_handler() local 246 new_table.data = &new_value; in perf_event_max_stack_handler() 247 ret = proc_dointvec_minmax(&new_table, write, buffer, lenp, ppos); in perf_event_max_stack_handler()
|
/Linux-v4.19/tools/power/acpi/os_specific/service_layers/ |
D | osunixxf.c | 35 struct acpi_table_header **new_table); 241 struct acpi_table_header **new_table) in acpi_os_table_override() argument 244 if (!existing_table || !new_table) { in acpi_os_table_override() 248 *new_table = NULL; in acpi_os_table_override() 252 ae_table_override(existing_table, new_table); in acpi_os_table_override()
|
/Linux-v4.19/drivers/acpi/ |
D | tables.c | 718 struct acpi_table_header **new_table) in acpi_os_table_override() argument 720 if (!existing_table || !new_table) in acpi_os_table_override() 723 *new_table = NULL; in acpi_os_table_override() 727 *new_table = (struct acpi_table_header *)AmlCode; in acpi_os_table_override() 729 if (*new_table != NULL) in acpi_os_table_override()
|
/Linux-v4.19/fs/ |
D | select.c | 168 struct poll_table_page *new_table; in poll_get_entry() local 170 new_table = (struct poll_table_page *) __get_free_page(GFP_KERNEL); in poll_get_entry() 171 if (!new_table) { in poll_get_entry() 175 new_table->entry = new_table->entries; in poll_get_entry() 176 new_table->next = table; in poll_get_entry() 177 p->table = new_table; in poll_get_entry() 178 table = new_table; in poll_get_entry()
|
/Linux-v4.19/net/ipv4/netfilter/ |
D | arp_tables.c | 1539 struct xt_table *new_table; in arpt_register_table() local 1552 new_table = xt_register_table(net, table, &bootstrap, newinfo); in arpt_register_table() 1553 if (IS_ERR(new_table)) { in arpt_register_table() 1554 ret = PTR_ERR(new_table); in arpt_register_table() 1559 WRITE_ONCE(*res, new_table); in arpt_register_table() 1563 __arpt_unregister_table(new_table); in arpt_register_table()
|
D | ip_tables.c | 1766 struct xt_table *new_table; in ipt_register_table() local 1779 new_table = xt_register_table(net, table, &bootstrap, newinfo); in ipt_register_table() 1780 if (IS_ERR(new_table)) { in ipt_register_table() 1781 ret = PTR_ERR(new_table); in ipt_register_table() 1786 WRITE_ONCE(*res, new_table); in ipt_register_table() 1792 __ipt_unregister_table(net, new_table); in ipt_register_table()
|
/Linux-v4.19/net/ipv6/netfilter/ |
D | ip6_tables.c | 1776 struct xt_table *new_table; in ip6t_register_table() local 1789 new_table = xt_register_table(net, table, &bootstrap, newinfo); in ip6t_register_table() 1790 if (IS_ERR(new_table)) { in ip6t_register_table() 1791 ret = PTR_ERR(new_table); in ip6t_register_table() 1796 WRITE_ONCE(*res, new_table); in ip6t_register_table() 1802 __ip6t_unregister_table(net, new_table); in ip6t_register_table()
|
/Linux-v4.19/include/acpi/ |
D | acpiosxf.h | 71 struct acpi_table_header **new_table);
|
/Linux-v4.19/drivers/iommu/ |
D | amd_iommu.c | 3657 struct irq_remap_table *new_table = NULL; in alloc_irq_table() local 3681 new_table = __alloc_irq_table(); in alloc_irq_table() 3682 if (!new_table) in alloc_irq_table() 3697 table = new_table; in alloc_irq_table() 3698 new_table = NULL; in alloc_irq_table() 3710 if (new_table) { in alloc_irq_table() 3711 kmem_cache_free(amd_iommu_irq_cache, new_table->table); in alloc_irq_table() 3712 kfree(new_table); in alloc_irq_table()
|
/Linux-v4.19/drivers/net/vmxnet3/ |
D | vmxnet3_drv.c | 2315 u8 *new_table = NULL; in vmxnet3_set_mc() local 2336 new_table = vmxnet3_copy_mc(netdev); in vmxnet3_set_mc() 2337 if (new_table) { in vmxnet3_set_mc() 2343 new_table, in vmxnet3_set_mc() 2382 kfree(new_table); in vmxnet3_set_mc()
|