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

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

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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/ieee8021q.h (Architecture m68k) and /include/net/ieee8021q.h (Architecture sparc)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /* Copyright (c) 2024 Pengutronix, Oleksij Rem      2 /* Copyright (c) 2024 Pengutronix, Oleksij Rempel <kernel@pengutronix.de> */
  3                                                     3 
  4 #ifndef _NET_IEEE8021Q_H                            4 #ifndef _NET_IEEE8021Q_H
  5 #define _NET_IEEE8021Q_H                            5 #define _NET_IEEE8021Q_H
  6                                                     6 
  7 #include <linux/errno.h>                            7 #include <linux/errno.h>
  8                                                     8 
  9 /**                                                 9 /**
 10  * enum ieee8021q_traffic_type - 802.1Q traffi     10  * enum ieee8021q_traffic_type - 802.1Q traffic type priority values (802.1Q-2022)
 11  *                                                 11  *
 12  * @IEEE8021Q_TT_BK: Background                    12  * @IEEE8021Q_TT_BK: Background
 13  * @IEEE8021Q_TT_BE: Best Effort (default). Ac     13  * @IEEE8021Q_TT_BE: Best Effort (default). According to 802.1Q-2022, BE is 0
 14  * but has higher priority than BK which is 1.     14  * but has higher priority than BK which is 1.
 15  * @IEEE8021Q_TT_EE: Excellent Effort              15  * @IEEE8021Q_TT_EE: Excellent Effort
 16  * @IEEE8021Q_TT_CA: Critical Applications         16  * @IEEE8021Q_TT_CA: Critical Applications
 17  * @IEEE8021Q_TT_VI: Video, < 100 ms latency a     17  * @IEEE8021Q_TT_VI: Video, < 100 ms latency and jitter
 18  * @IEEE8021Q_TT_VO: Voice, < 10 ms latency an     18  * @IEEE8021Q_TT_VO: Voice, < 10 ms latency and jitter
 19  * @IEEE8021Q_TT_IC: Internetwork Control          19  * @IEEE8021Q_TT_IC: Internetwork Control
 20  * @IEEE8021Q_TT_NC: Network Control               20  * @IEEE8021Q_TT_NC: Network Control
 21  */                                                21  */
 22 enum ieee8021q_traffic_type {                      22 enum ieee8021q_traffic_type {
 23         IEEE8021Q_TT_BK = 0,                       23         IEEE8021Q_TT_BK = 0,
 24         IEEE8021Q_TT_BE = 1,                       24         IEEE8021Q_TT_BE = 1,
 25         IEEE8021Q_TT_EE = 2,                       25         IEEE8021Q_TT_EE = 2,
 26         IEEE8021Q_TT_CA = 3,                       26         IEEE8021Q_TT_CA = 3,
 27         IEEE8021Q_TT_VI = 4,                       27         IEEE8021Q_TT_VI = 4,
 28         IEEE8021Q_TT_VO = 5,                       28         IEEE8021Q_TT_VO = 5,
 29         IEEE8021Q_TT_IC = 6,                       29         IEEE8021Q_TT_IC = 6,
 30         IEEE8021Q_TT_NC = 7,                       30         IEEE8021Q_TT_NC = 7,
 31                                                    31 
 32         /* private: */                             32         /* private: */
 33         IEEE8021Q_TT_MAX,                          33         IEEE8021Q_TT_MAX,
 34 };                                                 34 };
 35                                                    35 
 36 #define SIMPLE_IETF_DSCP_TO_IEEE8021Q_TT(dscp)     36 #define SIMPLE_IETF_DSCP_TO_IEEE8021Q_TT(dscp)          ((dscp >> 3) & 0x7)
 37                                                    37 
 38 #if IS_ENABLED(CONFIG_NET_IEEE8021Q_HELPERS)       38 #if IS_ENABLED(CONFIG_NET_IEEE8021Q_HELPERS)
 39                                                    39 
 40 int ietf_dscp_to_ieee8021q_tt(u8 dscp);            40 int ietf_dscp_to_ieee8021q_tt(u8 dscp);
 41 int ieee8021q_tt_to_tc(enum ieee8021q_traffic_     41 int ieee8021q_tt_to_tc(enum ieee8021q_traffic_type tt, unsigned int num_queues);
 42                                                    42 
 43 #else                                              43 #else
 44                                                    44 
 45 static inline int ietf_dscp_to_ieee8021q_tt(u8     45 static inline int ietf_dscp_to_ieee8021q_tt(u8 dscp)
 46 {                                                  46 {
 47         return -EOPNOTSUPP;                        47         return -EOPNOTSUPP;
 48 }                                                  48 }
 49                                                    49 
 50 static inline int ieee8021q_tt_to_tc(enum ieee     50 static inline int ieee8021q_tt_to_tc(enum ieee8021q_traffic_type tt,
 51                                      unsigned      51                                      unsigned int num_queues)
 52 {                                                  52 {
 53         return -EOPNOTSUPP;                        53         return -EOPNOTSUPP;
 54 }                                                  54 }
 55                                                    55 
 56 #endif                                             56 #endif
 57 #endif /* _NET_IEEE8021Q_H */                      57 #endif /* _NET_IEEE8021Q_H */
 58                                                    58 

~ [ 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