forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
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