Home
last modified time | relevance | path

Searched refs:default_gfp (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dslab.h55 kzalloc(sizeof(typeof(_p)), default_gfp(__VA_ARGS__))
57 kzalloc(size_mul((_n), sizeof(typeof(_p))), default_gfp(__VA_ARGS__))
64 __p_obj = kzalloc(__psize, default_gfp(__VA_ARGS__)); \
170 kmalloc(sizeof(typeof(_p)), default_gfp(__VA_ARGS__))
173 kmalloc(size_mul((_n) * sizeof(typeof(_p))), default_gfp(__VA_ARGS__))
H A Dgfp.h87 #define default_gfp(...) __default_gfp(, ##__VA_ARGS__, GFP_KERNEL) macro