Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df5c7945 authored by Yi Zou's avatar Yi Zou Committed by David S. Miller
Browse files

net: Add ndo_fcoe_get_wwn to net_device_ops



Add ndo_fcoe_get_wwn so Fiber Channel over Ethernet (FCoE) can make use of
the provided World Wide Port Name (WWPN) and World Wide Node Name (WWNN)
from the underlying network interface driver.

Signed-off-by: default avatarYi Zou <yi.zou@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 383ff34b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -635,6 +635,10 @@ struct net_device_ops {
						      unsigned int sgc);
	int			(*ndo_fcoe_ddp_done)(struct net_device *dev,
						     u16 xid);
#define NETDEV_FCOE_WWNN 0
#define NETDEV_FCOE_WWPN 1
	int			(*ndo_fcoe_get_wwn)(struct net_device *dev,
						    u64 *wwn, int type);
#endif
};