Re: [PATCH V8 2/4 net-next] skbuff: skb supports zero-copy buffers

From: Shirley Ma
Date: Thu Jul 07 2011 - 14:33:04 EST


On Thu, 2011-07-07 at 04:01 -0700, David Miller wrote:
> From: Shirley Ma <mashirle@xxxxxxxxxx>
> Date: Wed, 06 Jul 2011 15:22:12 -0700
>
> > + while (head) {
> > + put_page(head);
> > + head = (struct page *)head->private;
> > + }
>
> Looks like you might be referencing the page after it's
> release here. I think you need something like:
>
> while (head) {
> struct page *next = (struct page
> *)head->private;
> put_page(head);
> head = next;
> }
> --

You are right, will fix it.

Thanks
Shirley


--
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/