# # Configuration for 802.1Q VLAN support # config VLAN_8021Q tristate "802.1Q/802.1ad VLAN Support" ---help--- Select this and you will be able to create 802.1Q VLAN interfaces on your Ethernet interfaces. 802.1Q VLAN supports almost everything a regular Ethernet interface does, including firewalling, bridging, and of course IP traffic. You will need the 'ip' utility in order to effectively use VLANs. See the VLAN web page for more information: To compile this code as a module, choose M here: the module will be called 8021q. If unsure, say N. config VLAN_8021Q_GVRP bool "GVRP (GARP VLAN Registration Protocol) support" depends on VLAN_8021Q select GARP help Select this to enable GVRP end-system support. GVRP is used for automatic propagation of registered VLANs to switches. If unsure, say N. config VLAN_8021Q_MVRP bool "MVRP (Multiple VLAN Registration Protocol) support" depends on VLAN_8021Q select MRP help Select this to enable MVRP end-system support. MVRP is used for automatic propagation of registered VLANs to switches; it supersedes GVRP and is not backwards-compatible. If unsure, say N. ct> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2016-12-12 11:20:09 +0100
committerTobias Klauser <tklauser@distanz.ch>2016-12-12 11:20:09 +0100
commit50b030a676a9945611de1dc329a7dfb14d7aaceb (patch)
treeba3578af262776c5bacaa3fb08ab0efa933df8a3
parent88311602452e16d2b3a55b1434122d93ec10a388 (diff)
net: xilinx: emaclite: Remove net_device pointer from struct net_localemaclite-cleanup
There's only a few places left where the net_device back-pointer from struct net_local is used, so we can reduce the private struct size by removing it. Remove it entirely by using the net_device already passed to the function in question and by storing the net_device pointer instead of the net_local pointer in mii_bus->priv. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r--drivers/net/ethernet/xilinx/xilinx_emaclite.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/drivers/net/ethernet/xilinx/xilinx_emaclite.c b/drivers/net/ethernet/xilinx/xilinx_emaclite.c