forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-12-09 95099d4622f8cb224d94e314c7a8e0df60b13f87
kernel/include/net/netns/nftables.h
....@@ -3,14 +3,19 @@
33 #define _NETNS_NFTABLES_H_
44
55 #include <linux/list.h>
6
+#include <linux/android_kabi.h>
67
78 struct netns_nftables {
89 struct list_head tables;
910 struct list_head commit_list;
11
+ struct list_head module_list;
12
+ struct list_head notify_list;
1013 struct mutex commit_mutex;
1114 unsigned int base_seq;
1215 u8 gencursor;
1316 u8 validate_state;
17
+
18
+ ANDROID_KABI_RESERVE(1);
1419 };
1520
1621 #endif