summaryrefslogtreecommitdiffstats
path: root/sys/sys/mbuf.h
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2016-03-24 20:06:52 +0000
committerglebius <glebius@FreeBSD.org>2016-03-24 20:06:52 +0000
commitfa5cb70a2d7e615f386e5cd26d5e0de7cd9740ae (patch)
tree8479fb3f21380aa1c8ee6b27e772286f640aa234 /sys/sys/mbuf.h
parentd4d16ecba26c5867cff9778c3902fd4428a34987 (diff)
downloadFreeBSD-src-fa5cb70a2d7e615f386e5cd26d5e0de7cd9740ae.zip
FreeBSD-src-fa5cb70a2d7e615f386e5cd26d5e0de7cd9740ae.tar.gz
Space and style(9) corrections for recent mbuf changes.
Diffstat (limited to 'sys/sys/mbuf.h')
-rw-r--r--sys/sys/mbuf.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h
index 1df3e10..4a48d47 100644
--- a/sys/sys/mbuf.h
+++ b/sys/sys/mbuf.h
@@ -51,11 +51,11 @@
SDT_PROBE1(sdt, , , probe, arg0)
#define MBUF_PROBE2(probe, arg0, arg1) \
SDT_PROBE2(sdt, , , probe, arg0, arg1)
-#define MBUF_PROBE3(probe, arg0, arg1, arg2) \
+#define MBUF_PROBE3(probe, arg0, arg1, arg2) \
SDT_PROBE3(sdt, , , probe, arg0, arg1, arg2)
-#define MBUF_PROBE4(probe, arg0, arg1, arg2, arg3) \
+#define MBUF_PROBE4(probe, arg0, arg1, arg2, arg3) \
SDT_PROBE4(sdt, , , probe, arg0, arg1, arg2, arg3)
-#define MBUF_PROBE5(probe, arg0, arg1, arg2, arg3, arg4) \
+#define MBUF_PROBE5(probe, arg0, arg1, arg2, arg3, arg4) \
SDT_PROBE5(sdt, , , probe, arg0, arg1, arg2, arg3, arg4)
SDT_PROBE_DECLARE(sdt, , , m__init);
@@ -690,7 +690,7 @@ m_getzone(int size)
static __inline int
m_init(struct mbuf *m, int how, short type, int flags)
{
- int error = 0;
+ int error;
m->m_next = NULL;
m->m_nextpkt = NULL;
@@ -700,6 +700,8 @@ m_init(struct mbuf *m, int how, short type, int flags)
m->m_type = type;
if (flags & M_PKTHDR)
error = m_pkthdr_init(m, how);
+ else
+ error = 0;
MBUF_PROBE5(m__init, m, how, type, flags, error);
return (error);
OpenPOWER on IntegriCloud