[openib-general] Re: [PATCH 8 of 13] ipath - fix a number of RC protocol bugs
Andrew Morton
akpm at osdl.org
Tue Apr 25 00:56:54 PDT 2006
"Bryan O'Sullivan" <bos at pathscale.com> wrote:
>
> + BUG_ON(qp->timerwait.next != LIST_POISON1);
> + list_add_tail(&qp->timerwait, &dev->pending[dev->pending_index]);
Please don't play around with list_head internals like this - some
speedfreak might legitimately choose to remove the list_head poisoning
debug code, or make it Kconfigurable.
One option would be to always do list_del_init() on this thing, then do
BUG_ON(!list_empty()).
More information about the general
mailing list