summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_mbuf.c
diff options
context:
space:
mode:
authoremaste <emaste@FreeBSD.org>2014-04-04 21:09:06 +0000
committeremaste <emaste@FreeBSD.org>2014-04-04 21:09:06 +0000
commit18755bc3d66030cca9fe9e3539841ab5d8df891c (patch)
treeccc5fc4aa2f575bef4e4c2c9ac3c34fa4b43efa4 /sys/kern/kern_mbuf.c
parent62cc224e61388b4bd3b001e7294f1d4c109283ca (diff)
downloadFreeBSD-src-18755bc3d66030cca9fe9e3539841ab5d8df891c.zip
FreeBSD-src-18755bc3d66030cca9fe9e3539841ab5d8df891c.tar.gz
Initialise m_pkthdr via bzero instead of explicitly zeroing each member
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/kern/kern_mbuf.c')
-rw-r--r--sys/kern/kern_mbuf.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/kern/kern_mbuf.c b/sys/kern/kern_mbuf.c
index e7b8016..119e4b8 100644
--- a/sys/kern/kern_mbuf.c
+++ b/sys/kern/kern_mbuf.c
@@ -647,20 +647,7 @@ m_pkthdr_init(struct mbuf *m, int how)
int error;
#endif
m->m_data = m->m_pktdat;
- m->m_pkthdr.rcvif = NULL;
- SLIST_INIT(&m->m_pkthdr.tags);
- m->m_pkthdr.len = 0;
- m->m_pkthdr.flowid = 0;
- m->m_pkthdr.csum_flags = 0;
- m->m_pkthdr.fibnum = 0;
- m->m_pkthdr.cosqos = 0;
- m->m_pkthdr.rsstype = 0;
- m->m_pkthdr.l2hlen = 0;
- m->m_pkthdr.l3hlen = 0;
- m->m_pkthdr.l4hlen = 0;
- m->m_pkthdr.l5hlen = 0;
- m->m_pkthdr.PH_per.sixtyfour[0] = 0;
- m->m_pkthdr.PH_loc.sixtyfour[0] = 0;
+ bzero(&m->m_pkthdr, sizeof(m->m_pkthdr));
#ifdef MAC
/* If the label init fails, fail the alloc */
error = mac_mbuf_init(m, how);
OpenPOWER on IntegriCloud