1
0
Fork 0

dcb: use nlmsg_free() instead of kfree()

These sk_buff structs were allocated with nlmsg_new() so they should
be freed with nlmsg_free().

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
wifi-calibration
Dan Carpenter 2011-06-23 03:14:42 -07:00 committed by David S. Miller
parent 655f8919d5
commit 4d054f2f14
1 changed files with 2 additions and 2 deletions

View File

@ -1329,7 +1329,7 @@ int dcbnl_notify(struct net_device *dev, int event, int cmd,
nlh = nlmsg_put(skb, pid, 0, event, sizeof(*dcb), 0);
if (nlh == NULL) {
kfree(skb);
nlmsg_free(skb);
return -EMSGSIZE;
}
@ -1434,7 +1434,7 @@ static int dcbnl_ieee_get(struct net_device *netdev, struct nlattr **tb,
nlh = nlmsg_put(skb, pid, seq, RTM_GETDCB, sizeof(*dcb), flags);
if (nlh == NULL) {
kfree(skb);
nlmsg_free(skb);
return -EMSGSIZE;
}