]> git.baikalelectronics.ru Git - kernel.git/commit
vlan: conditional inclusion of FCoE hooks to match netdevice.h and bnx2x
authorChris Leech <cleech@redhat.com>
Tue, 2 Apr 2019 22:06:12 +0000 (15:06 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 5 Apr 2019 00:18:34 +0000 (17:18 -0700)
commit2e4df5a05d9e759dcbd6fde2ba0c4f54087a72f8
treedfee9349f6c5377e78f0ba286af068d80f523a65
parent8947c5ec32b2007d763342a3e37b6ddc937cd636
vlan: conditional inclusion of FCoE hooks to match netdevice.h and bnx2x

Way back in f951c03cbd2b5103847a365924341b1686217f8f the
ndo_fcoe_get_wwn pointer was switched from depending on CONFIG_FCOE to
CONFIG_LIBFCOE in order to allow building FCoE support into the bnx2x
driver and used by bnx2fc without including the generic software fcoe
module.

But, FCoE is generally used over an 802.1q VLAN, and the implementation
of ndo_fcoe_get_wwn in the 8021q module was not similarly changed.  The
result is that if CONFIG_FCOE is disabled, then bnz2fc cannot make a
call to ndo_fcoe_get_wwn through the 8021q interface to the underlying
bnx2x interface.  The bnx2fc driver then falls back to a potentially
different mapping of Ethernet MAC to Fibre Channel WWN, creating an
incompatibility with the fabric and target configurations when compared
to the WWNs used by pre-boot firmware and differently-configured
kernels.

So make the conditional inclusion of FCoE code in 8021q match the
conditional inclusion in netdevice.h

Signed-off-by: Chris Leech <cleech@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/8021q/vlan_dev.c