From: Michel Lespinasse Subject: Re: [PATCH v2 02/11] rbtree/test: move rb_node to the middle of the test struct Date: Thu, 7 Nov 2013 03:52:01 -0800 Message-ID: References: <1383788572-25938-1-git-send-email-cody@linux.vnet.ibm.com> <1383788572-25938-3-git-send-email-cody@linux.vnet.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Cc: Andrew Morton , EXT4 , Jan Kara , rostedt@goodmis.org, Davidlohr Bueso , Seth Jennings , LKML To: Cody P Schafer Return-path: In-Reply-To: <1383788572-25938-3-git-send-email-cody@linux.vnet.ibm.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-ext4.vger.kernel.org On Wed, Nov 6, 2013 at 5:42 PM, Cody P Schafer wrote: > Avoid making the rb_node the first entry to catch some bugs around NULL > checking the rb_node. > > Signed-off-by: Cody P Schafer > --- > lib/rbtree_test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c > index 31dd4cc..df6c125 100644 > --- a/lib/rbtree_test.c > +++ b/lib/rbtree_test.c > @@ -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; Acked-by: Michel Lespinasse -- Michel "Walken" Lespinasse A program is never fully debugged until the last user dies.