diff options
Diffstat (limited to 'tools/testing/radix-tree/linux')
| -rw-r--r-- | tools/testing/radix-tree/linux/compiler_types.h | 0 | ||||
| -rw-r--r-- | tools/testing/radix-tree/linux/gfp.h | 1 | ||||
| -rw-r--r-- | tools/testing/radix-tree/linux/slab.h | 6 | 
3 files changed, 7 insertions, 0 deletions
| diff --git a/tools/testing/radix-tree/linux/compiler_types.h b/tools/testing/radix-tree/linux/compiler_types.h new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/tools/testing/radix-tree/linux/compiler_types.h diff --git a/tools/testing/radix-tree/linux/gfp.h b/tools/testing/radix-tree/linux/gfp.h index e9fff59dfd8a..e3201ccf54c3 100644 --- a/tools/testing/radix-tree/linux/gfp.h +++ b/tools/testing/radix-tree/linux/gfp.h @@ -11,6 +11,7 @@  #define __GFP_IO		0x40u  #define __GFP_FS		0x80u  #define __GFP_NOWARN		0x200u +#define __GFP_ZERO		0x8000u  #define __GFP_ATOMIC		0x80000u  #define __GFP_ACCOUNT		0x100000u  #define __GFP_DIRECT_RECLAIM	0x400000u diff --git a/tools/testing/radix-tree/linux/slab.h b/tools/testing/radix-tree/linux/slab.h index 979baeec7e70..a037def0dec6 100644 --- a/tools/testing/radix-tree/linux/slab.h +++ b/tools/testing/radix-tree/linux/slab.h @@ -3,6 +3,7 @@  #define SLAB_H  #include <linux/types.h> +#include <linux/gfp.h>  #define SLAB_HWCACHE_ALIGN 1  #define SLAB_PANIC 2 @@ -11,6 +12,11 @@  void *kmalloc(size_t size, gfp_t);  void kfree(void *); +static inline void *kzalloc(size_t size, gfp_t gfp) +{ +        return kmalloc(size, gfp | __GFP_ZERO); +} +  void *kmem_cache_alloc(struct kmem_cache *cachep, int flags);  void kmem_cache_free(struct kmem_cache *cachep, void *objp); |