summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2026-01-30 15:21:10 +0200
committerGitHub <noreply@github.com>2026-01-30 15:21:10 +0200
commitff57a67e853272f14c7c3bc5e086b915d00b3511 (patch)
tree4791a7357712603bf5b5421cd87ffd1cc84e6da9 /python
parent1af4e423a17064e3e6d87b0c5df1c01688b6551a (diff)
parent04962c8683000d293aad5460144f3c10111beeb8 (diff)
downloadvyos-1x-ff57a67e853272f14c7c3bc5e086b915d00b3511.tar.gz
vyos-1x-ff57a67e853272f14c7c3bc5e086b915d00b3511.zip
Merge pull request #4955 from natali-rs1985/T8202
vpp: T8202: Remove XDP driver and options from CLI and config
Diffstat (limited to 'python')
-rw-r--r--python/vyos/vpp/config_verify.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/python/vyos/vpp/config_verify.py b/python/vyos/vpp/config_verify.py
index d051ef359..823443be5 100644
--- a/python/vyos/vpp/config_verify.py
+++ b/python/vyos/vpp/config_verify.py
@@ -169,9 +169,14 @@ def verify_dev_driver(driver_type: str, driver: str) -> bool:
if driver_type == 'dpdk':
if driver in drivers_dpdk:
return True
- elif driver_type == 'xdp':
- if driver in drivers_xdp:
- return True
+ # XDP support is intentionally disabled (T8202).
+ # XDP is no longer configurable via the CLI.
+ # This logic is kept commented out to make it easy
+ # to reintroduce XDP if there is a clear need in the future.
+ #
+ # elif driver_type == 'xdp':
+ # if driver in drivers_xdp:
+ # return True
else:
raise ConfigError(f'"Driver type {driver_type} is wrong')