On 03/21/2013 07:37 PM, Rymarkiewicz Waldemar wrote: > Hi, > >> Use kfree_skb() instead of kfree() to free sk_buff. >> >> Signed-off-by: Wei Yongjun <yongjun_wei@xxxxxxxxxxxxxxxxx> >> --- >> drivers/nfc/microread/mei.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/nfc/microread/mei.c b/drivers/nfc/microread/mei.c >> index eef38cf..da8264c 100644 >> --- a/drivers/nfc/microread/mei.c >> +++ b/drivers/nfc/microread/mei.c >> @@ -130,7 +130,7 @@ static void microread_event_cb(struct mei_device *device, u32 events, >> >> reply_size = mei_recv(device, skb->data, MEI_NFC_MAX_READ); >> if (reply_size < MEI_NFC_HEADER_SIZE) { >> - kfree(skb); >> + kfree_skb(skb); >> return; >> } > > kfree_skb call is used internally by the kernel. A driver should use dev_kfree_skb instead, I guess. It seems that dev_kfree_skb() call when dev_alloc_skb() is used, and kfree_skb() use to free skb malloced by alloc_skb(). Regards, Yongjun Wei -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html