diff options
author | Hannes Reinecke <hare@suse.de> | 2016-07-19 07:49:39 -0400 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2016-07-20 19:49:02 -0400 |
commit | b3d30f4a24f0ef9ba04bd9dc84523c6c9d18c11b (patch) | |
tree | 4a27686e86150fb51905e331ad522b8018865e80 /drivers/scsi | |
parent | 31979008fdae72d7441643f3a5b1bdaedf481335 (diff) |
fcoe: Rename 'fip_frame' to 'fip_vn2vn_notify_frame'
Do not use a generic name to avoid confusions with other usages.
Signed-off-by: Hannes Reinecke <hare@suse.com>
Acked-by: Johannes Thumshirn <jth@kernel.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/fcoe/fcoe_ctlr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/fcoe/fcoe_ctlr.c b/drivers/scsi/fcoe/fcoe_ctlr.c index 26a0685c74d1..dd455312de41 100644 --- a/drivers/scsi/fcoe/fcoe_ctlr.c +++ b/drivers/scsi/fcoe/fcoe_ctlr.c | |||
@@ -1989,7 +1989,7 @@ static void fcoe_ctlr_vn_send(struct fcoe_ctlr *fip, | |||
1989 | const u8 *dest, size_t min_len) | 1989 | const u8 *dest, size_t min_len) |
1990 | { | 1990 | { |
1991 | struct sk_buff *skb; | 1991 | struct sk_buff *skb; |
1992 | struct fip_frame { | 1992 | struct fip_vn2vn_probe_frame { |
1993 | struct ethhdr eth; | 1993 | struct ethhdr eth; |
1994 | struct fip_header fip; | 1994 | struct fip_header fip; |
1995 | struct fip_mac_desc mac; | 1995 | struct fip_mac_desc mac; |
@@ -2016,7 +2016,7 @@ static void fcoe_ctlr_vn_send(struct fcoe_ctlr *fip, | |||
2016 | if (!skb) | 2016 | if (!skb) |
2017 | return; | 2017 | return; |
2018 | 2018 | ||
2019 | frame = (struct fip_frame *)skb->data; | 2019 | frame = (struct fip_vn2vn_probe_frame *)skb->data; |
2020 | memset(frame, 0, len); | 2020 | memset(frame, 0, len); |
2021 | memcpy(frame->eth.h_dest, dest, ETH_ALEN); | 2021 | memcpy(frame->eth.h_dest, dest, ETH_ALEN); |
2022 | 2022 | ||