View | Details | Raw Unified | Return to bug 255557
Collapse All | Expand All

(-)b/sbin/ifconfig/ifconfig.8 (-3 / +3 lines)
Lines 28-34 Link Here
28
.\"     From: @(#)ifconfig.8	8.3 (Berkeley) 1/5/94
28
.\"     From: @(#)ifconfig.8	8.3 (Berkeley) 1/5/94
29
.\" $FreeBSD$
29
.\" $FreeBSD$
30
.\"
30
.\"
31
.Dd January 28, 2021
31
.Dd April 29, 2021
32
.Dt IFCONFIG 8
32
.Dt IFCONFIG 8
33
.Os
33
.Os
34
.Sh NAME
34
.Sh NAME
Lines 2729-2737 Values in order of priority are: Link Here
2729
.Cm 3
2729
.Cm 3
2730
.Pq Dv Critical applications ,
2730
.Pq Dv Critical applications ,
2731
.Cm 4
2731
.Cm 4
2732
.Pq Dv Video, < 100ms latency ,
2732
.Pq Dv Video, < 100ms latency and jitter ,
2733
.Cm 5
2733
.Cm 5
2734
.Pq Dv Video, < 10ms latency ,
2734
.Pq Dv Voice, < 10ms latency and jitter ,
2735
.Cm 6
2735
.Cm 6
2736
.Pq Dv Internetwork control ,
2736
.Pq Dv Internetwork control ,
2737
.Cm 7
2737
.Cm 7
(-)b/sys/net/ethernet.h (-3 / +2 lines)
Lines 416-423 struct ether_vlan_header { Link Here
416
#define	IEEE8021Q_PCP_BE	0	/* Best effort (default) */
416
#define	IEEE8021Q_PCP_BE	0	/* Best effort (default) */
417
#define	IEEE8021Q_PCP_EE	2	/* Excellent effort */
417
#define	IEEE8021Q_PCP_EE	2	/* Excellent effort */
418
#define	IEEE8021Q_PCP_CA	3	/* Critical applications */
418
#define	IEEE8021Q_PCP_CA	3	/* Critical applications */
419
#define	IEEE8021Q_PCP_VI	4	/* Video, < 100ms latency */
419
#define	IEEE8021Q_PCP_VI	4	/* Video, < 100ms latency and jitter */
420
#define	IEEE8021Q_PCP_VO	5	/* Video, < 10ms latency */
420
#define	IEEE8021Q_PCP_VO	5	/* Voice, < 10ms latency and jitter */
421
#define	IEEE8021Q_PCP_IC	6	/* Internetwork control */
421
#define	IEEE8021Q_PCP_IC	6	/* Internetwork control */
422
#define	IEEE8021Q_PCP_NC	7	/* Network control (highest) */
422
#define	IEEE8021Q_PCP_NC	7	/* Network control (highest) */
423
423
424
- 

Return to bug 255557