aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/radix-tree/linux.c
diff options
context:
space:
mode:
authorMatthew Wilcox <willy@infradead.org>2016-12-14 18:08:02 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2016-12-14 19:04:09 -0500
commit847d357635ce4c63b8901ab81333586a0f115fa5 (patch)
tree512d5cb1f6aa8f44a07dbfe8e501297e5b8aebb7 /tools/testing/radix-tree/linux.c
parent31023cd66468359790beb046b6808fe0444672a2 (diff)
radix tree test suite: track preempt_count
Rather than simply NOP out preempt_enable() and preempt_disable(), keep track of preempt_count and display it regularly in case either the test suite or the code under test is forgetting to balance the enables & disables. Only found a test-case that was forgetting to re-enable preemption, but it's a possibility worth checking. Link: http://lkml.kernel.org/r/1480369871-5271-39-git-send-email-mawilcox@linuxonhyperv.com Signed-off-by: Matthew Wilcox <willy@infradead.org> 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>
Diffstat (limited to 'tools/testing/radix-tree/linux.c')
-rw-r--r--tools/testing/radix-tree/linux.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/radix-tree/linux.c b/tools/testing/radix-tree/linux.c
index 3cfb04e98e2f..1f32a16a3848 100644
--- a/tools/testing/radix-tree/linux.c
+++ b/tools/testing/radix-tree/linux.c
@@ -9,6 +9,7 @@
9#include <urcu/uatomic.h> 9#include <urcu/uatomic.h>
10 10
11int nr_allocated; 11int nr_allocated;
12int preempt_count;
12 13
13void *mempool_alloc(mempool_t *pool, int gfp_mask) 14void *mempool_alloc(mempool_t *pool, int gfp_mask)
14{ 15{