diff options
author | Tobias Jungel <Tobias.Jungel@gmail.com> | 2017-05-29 17:20:01 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-05-29 17:20:01 +0200 |
commit | 0d6c68eba3188c3fea9731ba0828f04416ab7c04 (patch) | |
tree | 448fcb3f27feb6cc44b840a6834b4b9544ffb7c9 /src/network/netdev/netdev-gperf.gperf | |
parent | defdbbb6dc62b7985072bfb68e7f8ef3f4c75246 (diff) | |
download | systemd-0d6c68eba3188c3fea9731ba0828f04416ab7c04.tar.gz |
network: bridge vlan without PVID (#5899)
this patch makes it possible to configure a vlan aware bridge without the
PVID. To configure no PVID set DefaultPVID=none in the [BridgeVLAN] section.
fixes #5716
Diffstat (limited to 'src/network/netdev/netdev-gperf.gperf')
-rw-r--r-- | src/network/netdev/netdev-gperf.gperf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/netdev/netdev-gperf.gperf b/src/network/netdev/netdev-gperf.gperf index 766e7cf9fa..8b235a4857 100644 --- a/src/network/netdev/netdev-gperf.gperf +++ b/src/network/netdev/netdev-gperf.gperf @@ -128,7 +128,7 @@ Bridge.MaxAgeSec, config_parse_sec, 0, Bridge.AgeingTimeSec, config_parse_sec, 0, offsetof(Bridge, ageing_time) Bridge.ForwardDelaySec, config_parse_sec, 0, offsetof(Bridge, forward_delay) Bridge.Priority, config_parse_uint16, 0, offsetof(Bridge, priority) -Bridge.DefaultPVID, config_parse_vlanid, 0, offsetof(Bridge, default_pvid) +Bridge.DefaultPVID, config_parse_default_port_vlanid, 0, offsetof(Bridge, default_pvid) Bridge.MulticastQuerier, config_parse_tristate, 0, offsetof(Bridge, mcast_querier) Bridge.MulticastSnooping, config_parse_tristate, 0, offsetof(Bridge, mcast_snooping) Bridge.VLANFiltering, config_parse_tristate, 0, offsetof(Bridge, vlan_filtering) |