Re: [PATCH] Extend list debugging to cover hlists

From: Andrew Morton
Date: Fri May 02 2008 - 19:40:30 EST


On Fri, 2 May 2008 17:17:27 -0600
Matthew Wilcox <matthew@xxxxxx> wrote:

> On Fri, May 02, 2008 at 04:14:03PM -0700, Andrew Morton wrote:
> > linux-next is a better tree against which to prepare 2.6.x+1 patches.
>
> Is there a reason to wait for 2.6.x+1? People are having problems today
> with corrupt hlists.

dunno, really. Merging it would bust git-sched and linux-next, which is of
course solveable, but a hassle. If there are bugs in there then linux-next
and -mm testing will pick up some of them. Mainline testing would pick up
more. Is that delta worth it? dunno, really.

Experience tells us that decent testing of new debug infrastructure
(especially that which goes BUG) before it goes mainline is a good idea.

<looks at the patch>

diff --git a/include/linux/list.h b/include/linux/list.h
> index 08cf4f6..a325d9f 100644
> --- a/include/linux/list.h
> +++ b/include/linux/list.h
> @@ -714,10 +714,17 @@ static inline int hlist_empty(const struct hlist_head *h)
> return !h->first;
> }
>
> +#ifdef CONFIG_DEBUG_LIST
> +extern void hlist_check(struct hlist_node *n);
> +#else
> +#define hlist_check(n) do { } while (0)

a static inline would be better.

- It matches the other version, which is aesthetically pleasing

- It provides type-checking when CONFIG_DEBUG_LIST=n


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/