system-dummy: add missing vrf functions master
authorFelix Fietkau <nbd@nbd.name>
Wed, 11 Jun 2025 08:29:10 +0000 (10:29 +0200)
committerFelix Fietkau <nbd@nbd.name>
Wed, 11 Jun 2025 08:29:18 +0000 (10:29 +0200)
Signed-off-by: Felix Fietkau <nbd@nbd.name>
system-dummy.c

index c698361ba6a6b033c99ea4d0e4eb80bf0d64808a..59411c4df2b6d4a492ee5c4c49b5943710a5c63c 100644 (file)
@@ -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)
+{
+}