aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/ixgbe_main.c
diff options
context:
space:
mode:
authorYi Zou <yi.zou@intel.com>2009-10-28 14:24:56 -0400
committerDavid S. Miller <davem@davemloft.net>2009-10-29 04:04:03 -0400
commit61a1fa102ada6d8ee9f2293d126ed9f580ca0751 (patch)
tree24c3b42798131f58486c38d1b22c965c58f7485a /drivers/net/ixgbe/ixgbe_main.c
parentdf5c79452f26f2a3d0883a213102515cfeb7aae9 (diff)
ixgbe: Add support for netdev_ops.ndo_fcoe_get_wwn to 82599
Implements the netdev_ops.ndo_fcoe_get_wwn in 82599 if it finds valid prefix for the World Wide Node Name (WWNN) or World Wide Port Name (WWPN), as well as valid SAN MAC address. 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 'drivers/net/ixgbe/ixgbe_main.c')
-rw-r--r--drivers/net/ixgbe/ixgbe_main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c
index 4c8a44919705..45c5faf0824a 100644
--- a/drivers/net/ixgbe/ixgbe_main.c
+++ b/drivers/net/ixgbe/ixgbe_main.c
@@ -5449,6 +5449,7 @@ static const struct net_device_ops ixgbe_netdev_ops = {
5449 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put, 5449 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
5450 .ndo_fcoe_enable = ixgbe_fcoe_enable, 5450 .ndo_fcoe_enable = ixgbe_fcoe_enable,
5451 .ndo_fcoe_disable = ixgbe_fcoe_disable, 5451 .ndo_fcoe_disable = ixgbe_fcoe_disable,
5452 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
5452#endif /* IXGBE_FCOE */ 5453#endif /* IXGBE_FCOE */
5453}; 5454};
5454 5455