Add M_FLOWID to M_COPYFLAGS
The M_FLOWID flag should be propagated to the new mbuf pkthdr in m_move_pkthdr() and m_dup_pkthdr(). The new mbuf already got the existing flowid value, but would be ignored since the flag was not set. Phabricator: https://reviews.freebsd.org/D914 Reviewed by: adrian Obtained from: NetApp MFC after: 1 week
This commit is contained in:
parent
383f423be1
commit
1298fd9af4
@ -248,7 +248,7 @@ struct mbuf {
|
||||
* Flags preserved when copying m_pkthdr.
|
||||
*/
|
||||
#define M_COPYFLAGS \
|
||||
(M_PKTHDR|M_EOR|M_RDONLY|M_BCAST|M_MCAST|M_VLANTAG|M_PROMISC| \
|
||||
(M_PKTHDR|M_EOR|M_RDONLY|M_BCAST|M_MCAST|M_PROMISC|M_VLANTAG|M_FLOWID| \
|
||||
M_PROTOFLAGS)
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user