| /linux/drivers/acpi/acpica/ |
| A 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/drivers/dma-buf/heaps/ |
| A D | system_heap.c | 60 struct sg_table *new_table; in dup_sg_table() local 64 new_table = kzalloc(sizeof(*new_table), GFP_KERNEL); in dup_sg_table() 65 if (!new_table) in dup_sg_table() 68 ret = sg_alloc_table(new_table, table->orig_nents, GFP_KERNEL); in dup_sg_table() 70 kfree(new_table); in dup_sg_table() 74 new_sg = new_table->sgl; in dup_sg_table() 80 return new_table; in dup_sg_table()
|
| /linux/kernel/events/ |
| A D | callchain.c | 241 struct ctl_table new_table = *table; in perf_event_max_stack_handler() local 243 new_table.data = &new_value; in perf_event_max_stack_handler() 244 ret = proc_dointvec_minmax(&new_table, write, buffer, lenp, ppos); in perf_event_max_stack_handler()
|
| /linux/tools/power/acpi/os_specific/service_layers/ |
| A 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/drivers/acpi/ |
| A D | tables.c | 774 struct acpi_table_header **new_table) in acpi_os_table_override() argument 776 if (!existing_table || !new_table) in acpi_os_table_override() 779 *new_table = NULL; in acpi_os_table_override() 783 *new_table = (struct acpi_table_header *)&amlcode; in acpi_os_table_override() 784 if (!(*new_table)) in acpi_os_table_override() 785 *new_table = (struct acpi_table_header *)&dsdt_amlcode; in acpi_os_table_override() 788 if (*new_table != NULL) in acpi_os_table_override()
|
| /linux/drivers/opp/ |
| A D | of.c | 330 struct opp_table *new_table, int index) in lazy_link_required_opps() argument 340 opp->required_opps[index] = _find_opp_of_np(new_table, required_np); in lazy_link_required_opps() 354 static void lazy_link_required_opp_table(struct opp_table *new_table) in lazy_link_required_opp_table() argument 387 if (required_table_np != new_table->np) { in lazy_link_required_opp_table() 392 required_opp_tables[i] = new_table; in lazy_link_required_opp_table() 393 _get_opp_table_kref(new_table); in lazy_link_required_opp_table() 396 ret = lazy_link_required_opps(opp_table, new_table, i); in lazy_link_required_opp_table()
|
| /linux/fs/ |
| A 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/net/ipv4/netfilter/ |
| A D | arp_tables.c | 1511 struct xt_table *new_table; in arpt_register_table() local 1526 new_table = xt_register_table(net, table, &bootstrap, newinfo); in arpt_register_table() 1527 if (IS_ERR(new_table)) { in arpt_register_table() 1529 return PTR_ERR(new_table); in arpt_register_table() 1545 ops[i].priv = new_table; in arpt_register_table() 1547 new_table->ops = ops; in arpt_register_table() 1556 __arpt_unregister_table(net, new_table); in arpt_register_table()
|
| A D | ip_tables.c | 1728 struct xt_table *new_table; in ipt_register_table() local 1743 new_table = xt_register_table(net, table, &bootstrap, newinfo); in ipt_register_table() 1744 if (IS_ERR(new_table)) { in ipt_register_table() 1746 return PTR_ERR(new_table); in ipt_register_table() 1768 ops[i].priv = new_table; in ipt_register_table() 1770 new_table->ops = ops; in ipt_register_table() 1779 __ipt_unregister_table(net, new_table); in ipt_register_table()
|
| /linux/net/ipv6/netfilter/ |
| A D | ip6_tables.c | 1737 struct xt_table *new_table; in ip6t_register_table() local 1752 new_table = xt_register_table(net, table, &bootstrap, newinfo); in ip6t_register_table() 1753 if (IS_ERR(new_table)) { in ip6t_register_table() 1755 return PTR_ERR(new_table); in ip6t_register_table() 1774 ops[i].priv = new_table; in ip6t_register_table() 1776 new_table->ops = ops; in ip6t_register_table() 1785 __ip6t_unregister_table(net, new_table); in ip6t_register_table()
|
| /linux/drivers/iommu/amd/ |
| A D | iommu.c | 2715 struct irq_remap_table *new_table = NULL; in alloc_irq_table() local 2739 new_table = __alloc_irq_table(); in alloc_irq_table() 2740 if (!new_table) in alloc_irq_table() 2755 table = new_table; in alloc_irq_table() 2756 new_table = NULL; in alloc_irq_table() 2773 if (new_table) { in alloc_irq_table() 2774 kmem_cache_free(amd_iommu_irq_cache, new_table->table); in alloc_irq_table() 2775 kfree(new_table); in alloc_irq_table()
|
| /linux/include/acpi/ |
| A D | acpiosxf.h | 71 struct acpi_table_header **new_table);
|
| /linux/drivers/net/vmxnet3/ |
| A D | vmxnet3_drv.c | 2392 u8 *new_table = NULL; in vmxnet3_set_mc() local 2413 new_table = vmxnet3_copy_mc(netdev); in vmxnet3_set_mc() 2414 if (new_table) { in vmxnet3_set_mc() 2420 new_table, in vmxnet3_set_mc() 2459 kfree(new_table); in vmxnet3_set_mc()
|