summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_mbuf.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2009-01-01 20:03:01 +0000
committerrwatson <rwatson@FreeBSD.org>2009-01-01 20:03:01 +0000
commitc049b2b5fe03004b83628a879fcc810e55dc3068 (patch)
treef94973134a45d822452c4bfb7ef0460eaa3762d1 /sys/kern/kern_mbuf.c
parent78ee2961aaa4bb0c734b924a9edf64aa2aef50fe (diff)
downloadFreeBSD-src-c049b2b5fe03004b83628a879fcc810e55dc3068.zip
FreeBSD-src-c049b2b5fe03004b83628a879fcc810e55dc3068.tar.gz
Temporary workaround for the limitations of the mbuf flowid field: zero
the field in the mbuf constructors, since otherwise we have no way to tell if they are valid. In the future, Kip has plans to add a flag specifically to indicate validity, which is the preferred model.
Diffstat (limited to 'sys/kern/kern_mbuf.c')
-rw-r--r--sys/kern/kern_mbuf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/kern/kern_mbuf.c b/sys/kern/kern_mbuf.c
index a7810ef..26b0250 100644
--- a/sys/kern/kern_mbuf.c
+++ b/sys/kern/kern_mbuf.c
@@ -420,6 +420,7 @@ mb_ctor_mbuf(void *mem, int size, void *arg, int how)
m->m_pkthdr.csum_data = 0;
m->m_pkthdr.tso_segsz = 0;
m->m_pkthdr.ether_vtag = 0;
+ m->m_pkthdr.flowid = 0;
SLIST_INIT(&m->m_pkthdr.tags);
#ifdef MAC
/* If the label init fails, fail the alloc */
@@ -644,6 +645,7 @@ mb_ctor_pack(void *mem, int size, void *arg, int how)
m->m_pkthdr.csum_data = 0;
m->m_pkthdr.tso_segsz = 0;
m->m_pkthdr.ether_vtag = 0;
+ m->m_pkthdr.flowid = 0;
SLIST_INIT(&m->m_pkthdr.tags);
#ifdef MAC
/* If the label init fails, fail the alloc */
OpenPOWER on IntegriCloud