diff options
author | Gleb Smirnoff <glebius@FreeBSD.org> | 2021-01-28 20:56:36 +0000 |
---|---|---|
committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2021-01-29 19:46:24 +0000 |
commit | cf6ff85fe847225e7b7ca1c3669cab6412076765 (patch) | |
tree | fb6acd2e6331da750697d988b44be15b808a79f7 /share/man/man9/mbuf.9 | |
parent | 9d4104b214963bb3371ada05cae8006940121634 (diff) | |
download | src-cf6ff85fe847225e7b7ca1c3669cab6412076765.tar.gz src-cf6ff85fe847225e7b7ca1c3669cab6412076765.zip |
Diffstat (limited to 'share/man/man9/mbuf.9')
-rw-r--r-- | share/man/man9/mbuf.9 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 8d5d40da15bf..9089ab56d58c 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd July 23, 2020 +.Dd January 28, 2021 .Dt MBUF 9 .Os .\" @@ -213,12 +213,12 @@ flag bits are defined as follows: #define M_PKTHDR 0x00000002 /* start of record */ #define M_EOR 0x00000004 /* end of record */ #define M_RDONLY 0x00000008 /* associated data marked read-only */ -#define M_NOMAP 0x00000100 /* mbuf data is unmapped */ -#define M_NOFREE 0x00000200 /* do not free mbuf, embedded in cluster */ #define M_BCAST 0x00000010 /* send/received as link-level broadcast */ #define M_MCAST 0x00000020 /* send/received as link-level multicast */ #define M_PROMISC 0x00000040 /* packet was not for us */ #define M_VLANTAG 0x00000080 /* ether_vtag is valid */ +#define M_EXTPG 0x00000100 /* has array of unmapped pages and TLS */ +#define M_NOFREE 0x00000200 /* do not free mbuf, embedded in cluster */ #define M_TSTMP 0x00000400 /* rcv_tstmp field is valid */ #define M_TSTMP_HPREC 0x00000800 /* rcv_tstmp is high-prec, typically hw-stamped on port (useful for IEEE 1588 |