Commit 50036bba authored by Joe Eykholt's avatar Joe Eykholt Committed by James Bottomley

[SCSI] fcoe: remove an unused variable in fcoe_recv_frame()

Remove an unused variable, mac, in fcoe_recv_frame().
Signed-off-by: default avatarJoe Eykholt <jeykholt@cisco.com>
Signed-off-by: default avatarRobert Love <robert.w.love@intel.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@suse.de>
parent ccfc3098
...@@ -1565,7 +1565,6 @@ static void fcoe_recv_frame(struct sk_buff *skb) ...@@ -1565,7 +1565,6 @@ static void fcoe_recv_frame(struct sk_buff *skb)
struct fc_frame_header *fh; struct fc_frame_header *fh;
struct fcoe_crc_eof crc_eof; struct fcoe_crc_eof crc_eof;
struct fc_frame *fp; struct fc_frame *fp;
u8 *mac = NULL;
struct fcoe_port *port; struct fcoe_port *port;
struct fcoe_hdr *hp; struct fcoe_hdr *hp;
...@@ -1585,13 +1584,9 @@ static void fcoe_recv_frame(struct sk_buff *skb) ...@@ -1585,13 +1584,9 @@ static void fcoe_recv_frame(struct sk_buff *skb)
skb_end_pointer(skb), skb->csum, skb_end_pointer(skb), skb->csum,
skb->dev ? skb->dev->name : "<NULL>"); skb->dev ? skb->dev->name : "<NULL>");
/*
* Save source MAC address before discarding header.
*/
port = lport_priv(lport); port = lport_priv(lport);
if (skb_is_nonlinear(skb)) if (skb_is_nonlinear(skb))
skb_linearize(skb); /* not ideal */ skb_linearize(skb); /* not ideal */
mac = eth_hdr(skb)->h_source;
/* /*
* Frame length checks and setting up the header pointers * Frame length checks and setting up the header pointers
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment