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) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  * mpls in net namespaces
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) #ifndef __NETNS_MPLS_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) #define __NETNS_MPLS_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) struct mpls_route;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) struct ctl_table_header;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) struct netns_mpls {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) 	int ip_ttl_propagate;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 	int default_ttl;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) 	size_t platform_labels;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) 	struct mpls_route __rcu * __rcu *platform_label;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 	struct ctl_table_header *ctl;
^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 /* __NETNS_MPLS_H__ */