summaryrefslogtreecommitdiff
path: root/xenserver
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2019-10-10 12:07:27 -0700
committerBen Pfaff <blp@ovn.org>2019-10-14 15:34:53 -0700
commit36e5d97f9b09262ccc584ccb45fb06482b0cfc46 (patch)
treee4ea5d57a804c22e84b4c63204ea27c302149986 /xenserver
parent622ea8fd759587a08e7d36075675912cf379aab5 (diff)
downloadopenvswitch-36e5d97f9b09262ccc584ccb45fb06482b0cfc46.tar.gz
ovs-vlan-bug-workaround: Remove.
This workaround only applied to kernels earlier than 2.6.37, but OVS only supports 3.10 and later. As the original author of this code, I won't miss it. Tested-by: Greg Rose <gvrose8192@gmail.com> Reviewed-by: Greg Rose <gvrose8192@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'xenserver')
-rw-r--r--xenserver/openvswitch-xen.spec.in2
-rw-r--r--xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py6
2 files changed, 0 insertions, 8 deletions
diff --git a/xenserver/openvswitch-xen.spec.in b/xenserver/openvswitch-xen.spec.in
index cdc341dcc..4d21c6364 100644
--- a/xenserver/openvswitch-xen.spec.in
+++ b/xenserver/openvswitch-xen.spec.in
@@ -459,7 +459,6 @@ exit 0
/usr/share/openvswitch/vswitch.ovsschema
/usr/share/openvswitch/vtep.ovsschema
/usr/sbin/ovs-bugtool
-/usr/sbin/ovs-vlan-bug-workaround
/usr/sbin/ovs-vswitchd
/usr/sbin/ovsdb-server
/usr/bin/ovs-appctl
@@ -493,7 +492,6 @@ exit 0
/usr/share/man/man8/ovs-parse-backtrace.8.gz
/usr/share/man/man1/ovs-pcap.1.gz
/usr/share/man/man1/ovs-tcpundump.1.gz
-/usr/share/man/man8/ovs-vlan-bug-workaround.8.gz
/usr/share/man/man8/ovs-vlan-test.8.gz
/usr/share/man/man8/ovs-vsctl.8.gz
/usr/share/man/man8/ovs-vswitchd.8.gz
diff --git a/xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py b/xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py
index 53468b706..9ada3776f 100644
--- a/xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py
+++ b/xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py
@@ -632,12 +632,6 @@ class DatapathVswitch(Datapath):
else:
vlan_bug_workaround = netdev_has_vlan_accel(dev)
- if vlan_bug_workaround:
- setting = 'on'
- else:
- setting = 'off'
- run_command(['/usr/sbin/ovs-vlan-bug-workaround', dev, setting])
-
datapath_modify_config(self._vsctl_argv)
if self._bridge_flows:
ofports = []