Searched refs:__GFP_ZERO (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dslab.h46 #define kvzalloc(size, flags) kmalloc(size, (flags) | __GFP_ZERO)
47 #define kvcalloc(n, size, flags) kvmalloc_array(n, size, (flags) | __GFP_ZERO)
48 #define kzalloc(size, flags) kmalloc(size, (flags) | __GFP_ZERO)
49 #define kzalloc_node(size, flags, node) kmalloc(size, (flags) | __GFP_ZERO)
51 #define vzalloc(size) __vmalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO, 0)
55 #define vmalloc_user(size) __vmalloc(size, GFP_KERNEL | __GFP_ZERO, 0)
117 flags |= __GFP_ZERO;
H A Dgfp.h48 #define __GFP_ZERO M_ZERO macro
140 return (linux_alloc_kmem(flags | __GFP_ZERO, 0));
H A Ddmapool.h84 return (dma_pool_alloc(pool, mem_flags | __GFP_ZERO, handle));
H A Ddma-mapping.h162 return (dma_alloc_coherent(dev, size, dma_handle, flag | __GFP_ZERO));
/freebsd-11-stable/sys/dev/drm2/ttm/
H A Dttm_page_alloc_dma.c885 gfp_flags |= __GFP_ZERO;
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_memfree.c111 * Use __GFP_ZERO because buggy firmware assumes ICM pages are
114 page = alloc_pages(gfp_mask | __GFP_ZERO, order);

Completed in 83 milliseconds