All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch] fcoe: use kfree_skb() to free an skb
@ 2016-08-04  5:27 ` Dan Carpenter
  0 siblings, 0 replies; 4+ messages in thread
From: Dan Carpenter @ 2016-08-04  5:27 UTC (permalink / raw)
  To: Johannes Thumshirn, Hannes Reinecke
  Cc: James E.J. Bottomley, Martin K. Petersen, fcoe-devel, linux-scsi,
	kernel-janitors

This should be doing kfree_skb() instead of kfree().

Fixes: 9a6cf881df02 ('fcoe: implement FIP VLAN responder')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/drivers/scsi/fcoe/fcoe_ctlr.c b/drivers/scsi/fcoe/fcoe_ctlr.c
index a569c65..dcf3653 100644
--- a/drivers/scsi/fcoe/fcoe_ctlr.c
+++ b/drivers/scsi/fcoe/fcoe_ctlr.c
@@ -2923,7 +2923,7 @@ static int fcoe_ctlr_vlan_recv(struct fcoe_ctlr *fip, struct sk_buff *skb)
 	mutex_unlock(&fip->ctlr_mutex);
 
 drop:
-	kfree(skb);
+	kfree_skb(skb);
 	return rc;
 }
 

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-08-04  8:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-04  5:27 [patch] fcoe: use kfree_skb() to free an skb Dan Carpenter
2016-08-04  5:27 ` Dan Carpenter
2016-08-04  8:12 ` Johannes Thumshirn
2016-08-04  8:12   ` Johannes Thumshirn

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.