diff options
author | Yi Zou <yi.zou@intel.com> | 2009-02-27 17:06:37 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-03-13 16:09:00 -0400 |
commit | 211c738d86f3f423f1b218ab3a356c9538e38047 (patch) | |
tree | b94677af2975bd2a455beb9ad3056e86d73cba70 /drivers/scsi/fcoe | |
parent | 7687fb9209422d35334995b8ace38de92e595d16 (diff) |
[SCSI] net, fcoe: add ETH_P_FCOE for Fibre Channel over Ethernet (FCoE)
This adds eth type ETH_P_FCOE for Fibre Channel over Ethernet (FCoE),
consequently, the ETH_P_FCOE from fc_fcoe.h and fcoe skb->protocol
is not set as ETH_P_FCOE.
Signed-off-by: Yi Zou <yi.zou@intel.com>
Acked-by: David Miller <davem@davemloft.net>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/fcoe')
-rw-r--r-- | drivers/scsi/fcoe/libfcoe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fcoe/libfcoe.c b/drivers/scsi/fcoe/libfcoe.c index 5548bf3bb58b..a99a42807b38 100644 --- a/drivers/scsi/fcoe/libfcoe.c +++ b/drivers/scsi/fcoe/libfcoe.c | |||
@@ -460,7 +460,7 @@ int fcoe_xmit(struct fc_lport *lp, struct fc_frame *fp) | |||
460 | skb_reset_mac_header(skb); | 460 | skb_reset_mac_header(skb); |
461 | skb_reset_network_header(skb); | 461 | skb_reset_network_header(skb); |
462 | skb->mac_len = elen; | 462 | skb->mac_len = elen; |
463 | skb->protocol = htons(ETH_P_802_3); | 463 | skb->protocol = htons(ETH_P_FCOE); |
464 | skb->dev = fc->real_dev; | 464 | skb->dev = fc->real_dev; |
465 | 465 | ||
466 | /* fill up mac and fcoe headers */ | 466 | /* fill up mac and fcoe headers */ |