diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2009-08-09 12:51:09 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2009-08-09 12:51:09 +0000 |
commit | 16e34d08f79a5b46ae067e69486abbb32606b2c5 (patch) | |
tree | c98f53de9c715c2d7c21833bdf7c586459aa0aa5 /sys | |
parent | 0e8942341818ecca77a176152f29e70c7319aadd (diff) |
16 bits are enough for tagsset
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mbuf.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 2a21c83412a..cce9ea458bd 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.127 2009/08/09 12:50:09 henning Exp $ */ +/* $OpenBSD: mbuf.h,v 1.128 2009/08/09 12:51:08 henning Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -96,7 +96,8 @@ struct pkthdr { struct ifnet *rcvif; /* rcv interface */ SLIST_HEAD(packet_tags, m_tag) tags; /* list of packet tags */ int len; /* total packet length */ - u_int32_t tagsset; /* mtags attached */ + u_int16_t tagsset; /* mtags attached */ + u_int16_t pad; u_int16_t csum_flags; /* checksum flags */ u_int16_t ether_vtag; /* Ethernet 802.1p+Q vlan tag */ u_int rdomain; /* routing domain id */ |