diff options
author | hselasky <hselasky@FreeBSD.org> | 2015-02-10 13:43:23 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2015-02-10 13:43:23 +0000 |
commit | eaff30fc5d94656eaca0c228a1703df3326e951b (patch) | |
tree | 60c18f3543dc38c89903a93dc6fb503530fe55a6 /sys/netinet/ip_output.c | |
parent | 4d9a35d0313c32e03f0564a23193edc97a1c1c2a (diff) | |
download | FreeBSD-src-eaff30fc5d94656eaca0c228a1703df3326e951b.zip FreeBSD-src-eaff30fc5d94656eaca0c228a1703df3326e951b.tar.gz |
Append to the MFC of r278103 that we also pass along the M_FLOWID flag.
Sponsored by: Mellanox Technologies
Diffstat (limited to 'sys/netinet/ip_output.c')
-rw-r--r-- | sys/netinet/ip_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index 18bb7cd..4a535ae 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -801,8 +801,8 @@ smart_frag_failure: /* make sure the flowid is the same for the fragmented mbufs */ M_HASHTYPE_SET(m, M_HASHTYPE_GET(m0)); m->m_pkthdr.flowid = m0->m_pkthdr.flowid; - /* copy multicast flag, if any */ - m->m_flags |= (m0->m_flags & M_MCAST); + /* copy multicast and flowid flags, if any */ + m->m_flags |= (m0->m_flags & (M_MCAST | M_FLOWID)); /* * In the first mbuf, leave room for the link header, then * copy the original IP header including options. The payload |