From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andi Kleen Subject: Re: [PATCH 01/18] kernel: add bl_list Date: Fri, 08 Oct 2010 10:18:40 +0200 Message-ID: <87hbgx5c7z.fsf@basil.nowhere.org> References: <1286515292-15882-1-git-send-email-david@fromorbit.com> <1286515292-15882-2-git-send-email-david@fromorbit.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org To: Dave Chinner Return-path: In-Reply-To: <1286515292-15882-2-git-send-email-david@fromorbit.com> (Dave Chinner's message of "Fri, 8 Oct 2010 16:21:15 +1100") Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org Dave Chinner writes: > +static inline void __hlist_bl_del(struct hlist_bl_node *n) > +{ > + struct hlist_bl_node *next = n->next; > + struct hlist_bl_node **pprev = n->pprev; > + > + LIST_BL_BUG_ON((unsigned long)n & LIST_BL_LOCKMASK); > + > + /* pprev may be `first`, so be careful not to lose the lock bit */ > + *pprev = (struct hlist_bl_node *) > + ((unsigned long)next | > + ((unsigned long)*pprev & LIST_BL_LOCKMASK)); > + if (next) > + next->pprev = pprev; > +} Should this set n->pprev to NULL so that unhashed returns true afterwards? > + > +static inline void hlist_bl_del(struct hlist_bl_node *n) > +{ > + __hlist_bl_del(n); > + n->next = BL_LIST_POISON1; > + n->pprev = BL_LIST_POISON2; > +} Ok so unhashed only works once. Seems unsymmetric. Other than that looks good to me. Reviewed-by: Andi Kleen -Andi -- ak@linux.intel.com -- Speaking for myself only.