From 04962c8683000d293aad5460144f3c10111beeb8 Mon Sep 17 00:00:00 2001 From: Nataliia Solomko Date: Mon, 26 Jan 2026 14:01:45 +0200 Subject: vpp: T8202: Remove XDP driver and options from CLI and config - Migration script removes 'driver' and 'xdp-options' nodes. - XDP logic is commented out in config verification and CLI tests, preserving code for future use. - The rest of XDP-related code remains untouched --- python/vyos/vpp/config_verify.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'python') 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') -- cgit v1.2.3