diff options
author | Yi Zou <yi.zou@intel.com> | 2009-08-14 08:41:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-08-14 19:12:09 -0400 |
commit | bb2af4f54ffa8245d5ce278cae9c66198bc14d8b (patch) | |
tree | 3e35b71afd57fe94e978c85287d0a1f556af4ab0 /include/linux/netdevice.h | |
parent | 36a82236314b5ebd6e3e1eb8bb7b850c83e53c3a (diff) |
net: Add NETIF_F_FCOE_MTU to indicate support for a different MTU for FCoE
Add NETIF_F_FCOE_MTU to indicate that the NIC can support a secondary MTU for
converged traffic of LAN and Fiber Channel over Ethernet (FCoE). The MTU for
FCoE is 2158 = 14 (FCoE header) + 24 (FC header) + 2112 (FC max payload) +
4 (FC CRC) + 4 (FCoE trailer).
Signed-off-by: Yi Zou <yi.zou@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 9f25ab2899de..9192cdf5bd2c 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -701,6 +701,7 @@ struct net_device | |||
701 | /* the GSO_MASK reserves bits 16 through 23 */ | 701 | /* the GSO_MASK reserves bits 16 through 23 */ |
702 | #define NETIF_F_FCOE_CRC (1 << 24) /* FCoE CRC32 */ | 702 | #define NETIF_F_FCOE_CRC (1 << 24) /* FCoE CRC32 */ |
703 | #define NETIF_F_SCTP_CSUM (1 << 25) /* SCTP checksum offload */ | 703 | #define NETIF_F_SCTP_CSUM (1 << 25) /* SCTP checksum offload */ |
704 | #define NETIF_F_FCOE_MTU (1 << 26) /* Supports max FCoE MTU, 2158 bytes*/ | ||
704 | 705 | ||
705 | /* Segmentation offload features */ | 706 | /* Segmentation offload features */ |
706 | #define NETIF_F_GSO_SHIFT 16 | 707 | #define NETIF_F_GSO_SHIFT 16 |