D | test_overflow.c | 490 #define alloc010(alloc, arg, sz) alloc(sz, alloc_GFP) argument 491 #define alloc011(alloc, arg, sz) alloc(sz, alloc_GFP, NUMA_NO_NODE) argument 492 #define alloc000(alloc, arg, sz) alloc(sz) argument 493 #define alloc001(alloc, arg, sz) alloc(sz, NUMA_NO_NODE) argument 494 #define alloc110(alloc, arg, sz) alloc(arg, sz, alloc_GFP) argument 495 #define free0(free, arg, ptr) free(ptr) argument 496 #define free1(free, arg, ptr) free(arg, ptr) argument 502 static int __init test_ ## func (void *arg) \ 509 ptr = alloc ## want_arg ## want_gfp ## want_node (func, arg, 1);\ 514 free ## want_arg (free_func, arg, ptr); \ [all …]
|