Commit dbf128cb authored by Cody P Schafer's avatar Cody P Schafer Committed by Linus Torvalds
Browse files

rbtree/test: move rb_node to the middle of the test struct



Avoid making the rb_node the first entry to catch some bugs around NULL
checking the rb_node.

Signed-off-by: default avatarCody P Schafer <cody@linux.vnet.ibm.com>
Cc: Michel Lespinasse <walken@google.com>
Cc: Jan Kara <jack@suse.cz>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 56abde72
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@
#define CHECK_LOOPS 100

struct test_node {
	struct rb_node rb;
	u32 key;
	struct rb_node rb;

	/* following fields used for testing augmented rbtree functionality */
	u32 val;