[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <49BF7DA1.6010805@gmail.com>
Date: Tue, 17 Mar 2009 11:38:25 +0100
From: Roel Kluin <roel.kluin@...il.com>
To: netdev@...r.kernel.org, "David S. Miller" <davem@...emloft.net>
Subject: [PATCH] kfree(napi->skb) => kfree_skb
struct sk_buff pointers should be freed with kfree_skb.
Signed-off-by: Roel Kluin <roel.kluin@...il.com>
---
@@ -2669,11 +2669,11 @@ EXPORT_SYMBOL(netif_napi_add);
void netif_napi_del(struct napi_struct *napi)
{
struct sk_buff *skb, *next;
list_del_init(&napi->dev_list);
- kfree(napi->skb);
+ kfree_skb(napi->skb);
for (skb = napi->gro_list; skb; skb = next) {
next = skb->next;
skb->next = NULL;
kfree_skb(skb);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists