If skb buffer was allocated using vmalloc() it will make simple its further deallocation. Signed-off-by: Jan Dakinevich <jan.dakinevich@xxxxxxxxxxxxx> --- net/core/skbuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 0338820..55eac01 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -588,7 +588,7 @@ static void skb_free_head(struct sk_buff *skb) if (skb->head_frag) skb_free_frag(head); else - kfree(head); + kvfree(head); } static void skb_release_data(struct sk_buff *skb) -- 2.1.4