~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/net/tun_proto.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/net/tun_proto.h (Version linux-6.11.5) and /include/net/tun_proto.h (Version linux-4.16.18)


  1 #ifndef __NET_TUN_PROTO_H                           1 #ifndef __NET_TUN_PROTO_H
  2 #define __NET_TUN_PROTO_H                           2 #define __NET_TUN_PROTO_H
  3                                                     3 
  4 #include <linux/if_ether.h>                    !!   4 #include <linux/kernel.h>
  5 #include <linux/types.h>                       << 
  6                                                     5 
  7 /* One byte protocol values as defined by VXLA      6 /* One byte protocol values as defined by VXLAN-GPE and NSH. These will
  8  * hopefully get a shared IANA registry.            7  * hopefully get a shared IANA registry.
  9  */                                                 8  */
 10 #define TUN_P_IPV4      0x01                        9 #define TUN_P_IPV4      0x01
 11 #define TUN_P_IPV6      0x02                       10 #define TUN_P_IPV6      0x02
 12 #define TUN_P_ETHERNET  0x03                       11 #define TUN_P_ETHERNET  0x03
 13 #define TUN_P_NSH       0x04                       12 #define TUN_P_NSH       0x04
 14 #define TUN_P_MPLS_UC   0x05                       13 #define TUN_P_MPLS_UC   0x05
 15                                                    14 
 16 static inline __be16 tun_p_to_eth_p(u8 proto)      15 static inline __be16 tun_p_to_eth_p(u8 proto)
 17 {                                                  16 {
 18         switch (proto) {                           17         switch (proto) {
 19         case TUN_P_IPV4:                           18         case TUN_P_IPV4:
 20                 return htons(ETH_P_IP);            19                 return htons(ETH_P_IP);
 21         case TUN_P_IPV6:                           20         case TUN_P_IPV6:
 22                 return htons(ETH_P_IPV6);          21                 return htons(ETH_P_IPV6);
 23         case TUN_P_ETHERNET:                       22         case TUN_P_ETHERNET:
 24                 return htons(ETH_P_TEB);           23                 return htons(ETH_P_TEB);
 25         case TUN_P_NSH:                            24         case TUN_P_NSH:
 26                 return htons(ETH_P_NSH);           25                 return htons(ETH_P_NSH);
 27         case TUN_P_MPLS_UC:                        26         case TUN_P_MPLS_UC:
 28                 return htons(ETH_P_MPLS_UC);       27                 return htons(ETH_P_MPLS_UC);
 29         }                                          28         }
 30         return 0;                                  29         return 0;
 31 }                                                  30 }
 32                                                    31 
 33 static inline u8 tun_p_from_eth_p(__be16 proto     32 static inline u8 tun_p_from_eth_p(__be16 proto)
 34 {                                                  33 {
 35         switch (proto) {                           34         switch (proto) {
 36         case htons(ETH_P_IP):                      35         case htons(ETH_P_IP):
 37                 return TUN_P_IPV4;                 36                 return TUN_P_IPV4;
 38         case htons(ETH_P_IPV6):                    37         case htons(ETH_P_IPV6):
 39                 return TUN_P_IPV6;                 38                 return TUN_P_IPV6;
 40         case htons(ETH_P_TEB):                     39         case htons(ETH_P_TEB):
 41                 return TUN_P_ETHERNET;             40                 return TUN_P_ETHERNET;
 42         case htons(ETH_P_NSH):                     41         case htons(ETH_P_NSH):
 43                 return TUN_P_NSH;                  42                 return TUN_P_NSH;
 44         case htons(ETH_P_MPLS_UC):                 43         case htons(ETH_P_MPLS_UC):
 45                 return TUN_P_MPLS_UC;              44                 return TUN_P_MPLS_UC;
 46         }                                          45         }
 47         return 0;                                  46         return 0;
 48 }                                                  47 }
 49                                                    48 
 50 #endif                                             49 #endif
 51                                                    50 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php