提交 b08d5840 编写于 作者: P Patrick McHardy 提交者: David S. Miller

[NET]: Fix kfree(skb)

Signed-off-by: NPatrick McHardy <kaber@trash.net>
Acked-by: NPaul Moore <paul.moore@hp.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 4498121c
...@@ -2037,7 +2037,7 @@ struct sk_buff *skb_segment(struct sk_buff *skb, int features) ...@@ -2037,7 +2037,7 @@ struct sk_buff *skb_segment(struct sk_buff *skb, int features)
err: err:
while ((skb = segs)) { while ((skb = segs)) {
segs = skb->next; segs = skb->next;
kfree(skb); kfree_skb(skb);
} }
return ERR_PTR(err); return ERR_PTR(err);
} }
......
...@@ -269,7 +269,7 @@ void dccp_write_xmit(struct sock *sk, int block) ...@@ -269,7 +269,7 @@ void dccp_write_xmit(struct sock *sk, int block)
err); err);
} else { } else {
dccp_pr_debug("packet discarded\n"); dccp_pr_debug("packet discarded\n");
kfree(skb); kfree_skb(skb);
} }
} }
} }
......
...@@ -173,7 +173,7 @@ static int netlbl_unlabel_list(struct sk_buff *skb, struct genl_info *info) ...@@ -173,7 +173,7 @@ static int netlbl_unlabel_list(struct sk_buff *skb, struct genl_info *info)
return 0; return 0;
list_failure: list_failure:
kfree(ans_skb); kfree_skb(ans_skb);
return ret_val; return ret_val;
} }
......
...@@ -1401,7 +1401,7 @@ static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh, ...@@ -1401,7 +1401,7 @@ static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
x = xfrm_state_lookup(&id->daddr, id->spi, id->proto, id->family); x = xfrm_state_lookup(&id->daddr, id->spi, id->proto, id->family);
if (x == NULL) { if (x == NULL) {
kfree(r_skb); kfree_skb(r_skb);
return -ESRCH; return -ESRCH;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册