Symbol: alloc_info
arch/powerpc/boot/simple_alloc.c
136
tbl_size = tbl_entries * sizeof(struct alloc_info);
arch/powerpc/boot/simple_alloc.c
138
alloc_tbl = (struct alloc_info *)_ALIGN_UP((unsigned long)base, 8);
arch/powerpc/boot/simple_alloc.c
38
struct alloc_info *p = alloc_tbl;
arch/powerpc/boot/simple_alloc.c
66
static struct alloc_info *simple_find_entry(void *ptr)
arch/powerpc/boot/simple_alloc.c
69
struct alloc_info *p = alloc_tbl;
arch/powerpc/boot/simple_alloc.c
83
struct alloc_info *p = simple_find_entry(ptr);
arch/powerpc/boot/simple_alloc.c
97
struct alloc_info *p;
drivers/irqchip/irq-gic-v5-iwb.c
130
static void gicv5_iwb_domain_set_desc(msi_alloc_info_t *alloc_info, struct msi_desc *desc)
drivers/irqchip/irq-gic-v5-iwb.c
132
alloc_info->desc = desc;
drivers/irqchip/irq-gic-v5-iwb.c
133
alloc_info->hwirq = (u32)desc->data.icookie.value;
drivers/irqchip/irq-gic-v5-iwb.c
199
.alloc_info = {
drivers/misc/vmw_vmci/vmci_host.c
461
struct vmci_qp_alloc_info_vmvm alloc_info;
drivers/misc/vmw_vmci/vmci_host.c
464
if (copy_from_user(&alloc_info, uptr, sizeof(alloc_info)))
drivers/misc/vmw_vmci/vmci_host.c
467
handle = alloc_info.handle;
drivers/misc/vmw_vmci/vmci_host.c
470
vmci_status = vmci_qp_broker_alloc(alloc_info.handle,
drivers/misc/vmw_vmci/vmci_host.c
471
alloc_info.peer,
drivers/misc/vmw_vmci/vmci_host.c
472
alloc_info.flags,
drivers/misc/vmw_vmci/vmci_host.c
474
alloc_info.produce_size,
drivers/misc/vmw_vmci/vmci_host.c
475
alloc_info.consume_size,
drivers/misc/vmw_vmci/vmci_host.c
482
struct vmci_qp_alloc_info alloc_info;
drivers/misc/vmw_vmci/vmci_host.c
486
if (copy_from_user(&alloc_info, uptr, sizeof(alloc_info)))
drivers/misc/vmw_vmci/vmci_host.c
489
handle = alloc_info.handle;
drivers/misc/vmw_vmci/vmci_host.c
492
page_store.pages = alloc_info.ppn_va;
drivers/misc/vmw_vmci/vmci_host.c
493
page_store.len = alloc_info.num_ppns;
drivers/misc/vmw_vmci/vmci_host.c
495
vmci_status = vmci_qp_broker_alloc(alloc_info.handle,
drivers/misc/vmw_vmci/vmci_host.c
496
alloc_info.peer,
drivers/misc/vmw_vmci/vmci_host.c
497
alloc_info.flags,
drivers/misc/vmw_vmci/vmci_host.c
499
alloc_info.produce_size,
drivers/misc/vmw_vmci/vmci_host.c
500
alloc_info.consume_size,
include/linux/msi.h
525
msi_alloc_info_t alloc_info;
kernel/irq/msi.c
1054
bundle->info.alloc_data = &bundle->alloc_info;
kernel/irq/msi.c
1096
if (msi_domain_prepare_irqs(domain, dev, hwsize, &bundle->alloc_info)) {