summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-03-14 20:12:34 +0100
committerChristian Poessinger <christian@poessinger.com>2021-03-14 20:12:34 +0100
commit85ff856a32ccb5bc20604bacfb4fa5cb66375487 (patch)
tree9fa6fa4ef84c39dae14accc018187fce57fd91e2 /python
parent59ad580cdea2e66e24470ee3d84f29a8619b7bf9 (diff)
downloadvyos-1x-85ff856a32ccb5bc20604bacfb4fa5cb66375487.tar.gz
vyos-1x-85ff856a32ccb5bc20604bacfb4fa5cb66375487.zip
xdp: T2666: remove entire XDP code for 1.3 LTS image
This is an extension to commit 801c5235 ("xdp: T2666: disable this highly experimental feature in 1.3 LTS") by dropping all XDP references in the equuleus codebase.
Diffstat (limited to 'python')
-rw-r--r--python/vyos/ifconfig/interface.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py
index 59a87dcef..7a63c68d7 100644
--- a/python/vyos/ifconfig/interface.py
+++ b/python/vyos/ifconfig/interface.py
@@ -1049,30 +1049,6 @@ class Interface(Control):
self._popen(mirror_cmd)
- def set_xdp(self, state):
- """
- Enable Kernel XDP support. State can be either True or False.
-
- Example:
- >>> from vyos.ifconfig import Interface
- >>> i = Interface('eth0')
- >>> i.set_xdp(True)
- """
- if not isinstance(state, bool):
- raise ValueError("Value out of range")
-
- ifname = self.config['ifname']
- cmd = f'xdp_loader -d {ifname} -U --auto-mode'
- if state:
- # Using 'xdp' will automatically decide if the driver supports
- # 'xdpdrv' or only 'xdpgeneric'. A user later sees which driver is
- # actually in use by calling 'ip a' or 'show interfaces ethernet'
- cmd = f'xdp_loader -d {ifname} --auto-mode -F --progsec xdp_router ' \
- f'--filename /usr/share/vyos/xdp/xdp_prog_kern.o && ' \
- f'xdp_prog_user -d {ifname}'
-
- return self._cmd(cmd)
-
def update(self, config):
""" General helper function which works on a dictionary retrived by
get_config_dict(). It's main intention is to consolidate the scattered
@@ -1246,9 +1222,6 @@ class Interface(Control):
bridge_dict = config.get('is_bridge_member')
self.add_to_bridge(bridge_dict)
- # eXpress Data Path - highly experimental
- self.set_xdp('xdp' in config)
-
# configure port mirror
self.set_mirror()