summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2009-08-09 13:53:04 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2009-08-09 13:53:04 +0000
commiteec6ea2b9d6bbf132513c8f48a6efc7a9667bc8e (patch)
tree56662986be21c9c87de6a1b269091472956b3daa /sys
parenteb0d2a087b7cead01a7c16628518e9e1a18d6314 (diff)
no point in clearing/re-initing packet header fields in a non-packet-header
mbuf. ok claudio theo
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/mbuf.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h
index cce9ea458bd..13be3783a52 100644
--- a/sys/sys/mbuf.h
+++ b/sys/sys/mbuf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mbuf.h,v 1.128 2009/08/09 12:51:08 henning Exp $ */
+/* $OpenBSD: mbuf.h,v 1.129 2009/08/09 13:53:03 henning Exp $ */
/* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */
/*
@@ -287,7 +287,6 @@ struct mbuf {
#define M_MOVE_HDR(to, from) do { \
(to)->m_pkthdr = (from)->m_pkthdr; \
(from)->m_flags &= ~M_PKTHDR; \
- SLIST_INIT(&(from)->m_pkthdr.tags); \
} while (/* CONSTCOND */ 0)
/*