]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
radix tree test suite: add some more functionality
authorMatthew Wilcox <willy@linux.intel.com>
Wed, 14 Dec 2016 23:09:25 +0000 (15:09 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 15 Dec 2016 00:04:10 +0000 (16:04 -0800)
IDR needs more functionality from the kernel: kmalloc()/kfree(), and
xchg().

Link: http://lkml.kernel.org/r/1480369871-5271-67-git-send-email-mawilcox@linuxonhyperv.com
Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
Tested-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Konstantin Khlebnikov <koct9i@gmail.com>
Cc: Ross Zwisler <ross.zwisler@linux.intel.com>
Cc: Matthew Wilcox <mawilcox@microsoft.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
tools/testing/radix-tree/linux.c
tools/testing/radix-tree/linux/kernel.h
tools/testing/radix-tree/linux/slab.h

index 1f32a16a3848c7bc4f30eae6613191e06a0322d3..ff0452e8a0c4522181344cb9d2eb2c56105d481e 100644 (file)
@@ -54,6 +54,21 @@ void kmem_cache_free(struct kmem_cache *cachep, void *objp)
        free(objp);
 }
 
+void *kmalloc(size_t size, gfp_t gfp)
+{
+       void *ret = malloc(size);
+       uatomic_inc(&nr_allocated);
+       return ret;
+}
+
+void kfree(void *p)
+{
+       if (!p)
+               return;
+       uatomic_dec(&nr_allocated);
+       free(p);
+}
+
 struct kmem_cache *
 kmem_cache_create(const char *name, size_t size, size_t offset,
        unsigned long flags, void (*ctor)(void *))
index 23e77f5673ce1b9a3a0df58f11303802c209592f..9b43b4975d832b8c1b682fd5ef0ac0f4d5b5cf6d 100644 (file)
@@ -8,6 +8,7 @@
 #include <limits.h>
 
 #include "../../include/linux/compiler.h"
+#include "../../include/linux/err.h"
 #include "../../../include/linux/kconfig.h"
 
 #ifdef BENCHMARK
@@ -58,4 +59,6 @@ static inline int in_interrupt(void)
 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
 #define round_down(x, y) ((x) & ~__round_mask(x, y))
 
+#define xchg(ptr, x)   uatomic_xchg(ptr, x)
+
 #endif /* _KERNEL_H */
index 452e2bf502e3e4515d34d59adbc68c1c894025ad..446639f78fc1c508a7a1d6f016578028b0bdc870 100644 (file)
@@ -7,6 +7,9 @@
 #define SLAB_PANIC 2
 #define SLAB_RECLAIM_ACCOUNT    0x00020000UL            /* Objects are reclaimable */
 
+void *kmalloc(size_t size, gfp_t);
+void kfree(void *);
+
 struct kmem_cache {
        int size;
        void (*ctor)(void *);