Commit b3d30f4a authored by Hannes Reinecke's avatar Hannes Reinecke Committed by Martin K. Petersen

fcoe: Rename 'fip_frame' to 'fip_vn2vn_notify_frame'

Do not use a generic name to avoid confusions with other usages.
Signed-off-by: default avatarHannes Reinecke <hare@suse.com>
Acked-by: default avatarJohannes Thumshirn <jth@kernel.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 31979008
...@@ -1989,7 +1989,7 @@ static void fcoe_ctlr_vn_send(struct fcoe_ctlr *fip, ...@@ -1989,7 +1989,7 @@ static void fcoe_ctlr_vn_send(struct fcoe_ctlr *fip,
const u8 *dest, size_t min_len) const u8 *dest, size_t min_len)
{ {
struct sk_buff *skb; struct sk_buff *skb;
struct fip_frame { struct fip_vn2vn_probe_frame {
struct ethhdr eth; struct ethhdr eth;
struct fip_header fip; struct fip_header fip;
struct fip_mac_desc mac; struct fip_mac_desc mac;
...@@ -2016,7 +2016,7 @@ static void fcoe_ctlr_vn_send(struct fcoe_ctlr *fip, ...@@ -2016,7 +2016,7 @@ static void fcoe_ctlr_vn_send(struct fcoe_ctlr *fip,
if (!skb) if (!skb)
return; return;
frame = (struct fip_frame *)skb->data; frame = (struct fip_vn2vn_probe_frame *)skb->data;
memset(frame, 0, len); memset(frame, 0, len);
memcpy(frame->eth.h_dest, dest, ETH_ALEN); memcpy(frame->eth.h_dest, dest, ETH_ALEN);
......
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