From 3a7878065829683373d2ffa456f8afb361d06fb1 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 11 Jun 2025 10:29:10 +0200 Subject: [PATCH] system-dummy: add missing vrf functions Signed-off-by: Felix Fietkau --- system-dummy.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/system-dummy.c b/system-dummy.c index c698361..59411c4 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -389,3 +389,31 @@ int system_vlandev_del(struct device *vlandev) { return 0; } + +int system_vrf_addvrf(struct device *vrf, unsigned int table) +{ + return 0; +} + +int system_vrf_delvrf(struct device *vrf) +{ + return 0; +} + +int system_vrf_addif(struct device *vrf, struct device *dev) +{ + return 0; +} + +int system_vrf_delif(struct device *vrf, struct device *dev) +{ + return 0; +} + +void system_tcp_l3mdev(bool enable) +{ +} + +void system_udp_l3mdev(bool enable) +{ +} -- 2.30.2