projects
/
project
/
netifd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7901e66
)
system-dummy: add missing vrf functions
author
Felix Fietkau
<
[email protected]
>
Wed, 11 Jun 2025 08:29:10 +0000
(10:29 +0200)
committer
Felix Fietkau
<
[email protected]
>
Wed, 11 Jun 2025 08:29:18 +0000
(10:29 +0200)
Signed-off-by: Felix Fietkau <
[email protected]
>
system-dummy.c
patch
|
blob
|
history
diff --git
a/system-dummy.c
b/system-dummy.c
index c698361ba6a6b033c99ea4d0e4eb80bf0d64808a..59411c4df2b6d4a492ee5c4c49b5943710a5c63c 100644
(file)
--- 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)
+{
+}