Searched refs:GFP_KERNEL_ACCOUNT (Results 1 - 25 of 165) sorted by relevance

1234567

/linux-master/arch/x86/kvm/
H A Dkvm_onhyperv.h26 *p_hv_pa_pg = kzalloc(PAGE_SIZE, GFP_KERNEL_ACCOUNT);
/linux-master/security/landlock/
H A Dobject.c28 new_object = kzalloc(sizeof(*new_object), GFP_KERNEL_ACCOUNT);
/linux-master/fs/
H A Dmnt_idmapping.c233 GFP_KERNEL_ACCOUNT);
239 GFP_KERNEL_ACCOUNT);
274 idmap = kzalloc(sizeof(struct mnt_idmap), GFP_KERNEL_ACCOUNT);
/linux-master/ipc/
H A Dmsgutil.c53 msg = kmalloc(sizeof(*msg) + alen, GFP_KERNEL_ACCOUNT);
68 seg = kmalloc(sizeof(*seg) + alen, GFP_KERNEL_ACCOUNT);
/linux-master/virt/kvm/
H A Dcoalesced_mmio.c114 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
147 GFP_KERNEL_ACCOUNT);
H A Dirqchip.c186 new = kzalloc(struct_size(new, map, nr_rt_entries), GFP_KERNEL_ACCOUNT);
197 e = kzalloc(sizeof(*e), GFP_KERNEL_ACCOUNT);
/linux-master/io_uring/
H A Dfiletable.c42 GFP_KERNEL_ACCOUNT);
46 table->bitmap = bitmap_zalloc(nr_files, GFP_KERNEL_ACCOUNT);
/linux-master/drivers/vfio/fsl-mc/
H A Dvfio_fsl_mc_intr.c32 mc_irq = kcalloc(irq_count, sizeof(*mc_irq), GFP_KERNEL_ACCOUNT);
80 irq->name = kasprintf(GFP_KERNEL_ACCOUNT, "vfio-irq[%d](%s)",
/linux-master/arch/mips/include/asm/
H A Dpgalloc.h70 ptdesc = pagetable_alloc(GFP_KERNEL_ACCOUNT, PMD_TABLE_ORDER);
/linux-master/arch/loongarch/include/asm/
H A Dpgalloc.h60 ptdesc = pagetable_alloc(GFP_KERNEL_ACCOUNT, 0);
/linux-master/arch/arm64/kvm/
H A Dpkvm.c144 pgd = alloc_pages_exact(pgd_sz, GFP_KERNEL_ACCOUNT);
152 hyp_vm = alloc_pages_exact(hyp_vm_sz, GFP_KERNEL_ACCOUNT);
178 hyp_vcpu = alloc_pages_exact(hyp_vcpu_sz, GFP_KERNEL_ACCOUNT);
H A Dhypercalls.c148 GFP_KERNEL_ACCOUNT);
155 GFP_KERNEL_ACCOUNT);
203 xa_mk_value(filter.action), GFP_KERNEL_ACCOUNT);
/linux-master/arch/powerpc/platforms/pseries/
H A Dpapr-vpd.c160 kvrealloc(old_ptr, old_len, new_len, GFP_KERNEL_ACCOUNT) :
161 kvmalloc(len, GFP_KERNEL_ACCOUNT);
193 blob = kzalloc(sizeof(*blob), GFP_KERNEL_ACCOUNT);
/linux-master/fs/notify/
H A Dgroup.c159 gfp_t gfp = (flags & FSNOTIFY_GROUP_USER) ? GFP_KERNEL_ACCOUNT :
/linux-master/drivers/iommu/iommufd/
H A Dmain.c39 obj = kzalloc(size, GFP_KERNEL_ACCOUNT);
55 xa_limit_31b, GFP_KERNEL_ACCOUNT);
237 ictx = kzalloc(sizeof(*ictx), GFP_KERNEL_ACCOUNT);
/linux-master/arch/x86/kernel/
H A Dldt.c157 new_ldt = kmalloc(sizeof(struct ldt_struct), GFP_KERNEL_ACCOUNT);
171 new_ldt->entries = __vmalloc(alloc_size, GFP_KERNEL_ACCOUNT | __GFP_ZERO);
173 new_ldt->entries = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT);
/linux-master/net/netfilter/
H A Dnft_last.c33 last = kzalloc(sizeof(*last), GFP_KERNEL_ACCOUNT);
/linux-master/fs/notify/inotify/
H A Dinotify_fsnotify.c96 event = kmalloc(alloc_len, GFP_KERNEL_ACCOUNT | __GFP_RETRY_MAYFAIL);
/linux-master/kernel/cgroup/
H A Dnamespace.c27 new_ns = kzalloc(sizeof(struct cgroup_namespace), GFP_KERNEL_ACCOUNT);
/linux-master/arch/arm64/kvm/vgic/
H A Dvgic-irqfd.c142 entries = kcalloc(nr, sizeof(*entries), GFP_KERNEL_ACCOUNT);
/linux-master/arch/s390/kvm/
H A Dguestdbg.c187 wp_info->old_data = kmalloc(bp_data->len, GFP_KERNEL_ACCOUNT);
237 GFP_KERNEL_ACCOUNT);
246 GFP_KERNEL_ACCOUNT);
352 temp = kmalloc(wp_info->len, GFP_KERNEL_ACCOUNT);
/linux-master/drivers/vfio/
H A Dvirqfd.c122 virqfd = kzalloc(sizeof(*virqfd), GFP_KERNEL_ACCOUNT);
/linux-master/drivers/vfio/pci/
H A Dvfio_pci_intrs.c71 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL_ACCOUNT);
75 ret = xa_insert(&vdev->ctx, index, ctx, GFP_KERNEL_ACCOUNT);
275 name = kasprintf(GFP_KERNEL_ACCOUNT, "vfio-intx(%s)", pci_name(pdev));
484 ctx->name = kasprintf(GFP_KERNEL_ACCOUNT, "vfio-msi%s[%d](%s)",
/linux-master/include/linux/
H A Dgfp_types.h309 * %GFP_KERNEL_ACCOUNT is the same as GFP_KERNEL, except the allocation is
364 #define GFP_KERNEL_ACCOUNT (GFP_KERNEL | __GFP_ACCOUNT) macro
/linux-master/kernel/time/
H A Dnamespace.c91 ns = kmalloc(sizeof(*ns), GFP_KERNEL_ACCOUNT);
97 ns->vvar_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);

Completed in 305 milliseconds

1234567