Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) #ifndef _NETNS_NFTABLES_H_
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) #define _NETNS_NFTABLES_H_
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) #include <linux/list.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) #include <linux/android_kabi.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) struct netns_nftables {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 	struct list_head	tables;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) 	struct list_head	commit_list;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) 	struct list_head	module_list;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 	struct list_head	notify_list;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) 	struct mutex		commit_mutex;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 	unsigned int		base_seq;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) 	u8			gencursor;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) 	u8			validate_state;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 	ANDROID_KABI_RESERVE(1);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #endif