diff options
author | Vasu Dev <vasu.dev@intel.com> | 2009-05-06 13:52:46 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-06-08 14:29:16 -0400 |
commit | 4e57e1cbbd1435b523b9cedb949728e9fdcfb5d4 (patch) | |
tree | 691339538848a618713cae0a579ddf7cd40f7a52 /drivers/scsi/fcoe | |
parent | 1047f22108bd9bfedefd3ff014cb56691dfbaa3f (diff) |
[SCSI] fcoe: removes reserving memory for vlan_ethdr on tx path
This is not required as VLAN header is added by device
interface driver, this was causing bad FC_CRC in FCoE pkts when
using VLAN interface.
Signed-off-by: Vasu Dev <vasu.dev@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/fcoe')
-rw-r--r-- | drivers/scsi/fcoe/fcoe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c index 6e7a700f5d54..e606b4829d44 100644 --- a/drivers/scsi/fcoe/fcoe.c +++ b/drivers/scsi/fcoe/fcoe.c | |||
@@ -1037,8 +1037,7 @@ int fcoe_xmit(struct fc_lport *lp, struct fc_frame *fp) | |||
1037 | sof = fr_sof(fp); | 1037 | sof = fr_sof(fp); |
1038 | eof = fr_eof(fp); | 1038 | eof = fr_eof(fp); |
1039 | 1039 | ||
1040 | elen = (fc->real_dev->priv_flags & IFF_802_1Q_VLAN) ? | 1040 | elen = sizeof(struct ethhdr); |
1041 | sizeof(struct vlan_ethhdr) : sizeof(struct ethhdr); | ||
1042 | hlen = sizeof(struct fcoe_hdr); | 1041 | hlen = sizeof(struct fcoe_hdr); |
1043 | tlen = sizeof(struct fcoe_crc_eof); | 1042 | tlen = sizeof(struct fcoe_crc_eof); |
1044 | wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE; | 1043 | wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE; |