From 21c5f3f3833e49167d5ed580786d56c2eca6c7e0 Mon Sep 17 00:00:00 2001 From: Kip Macy Date: Sat, 14 Apr 2007 20:31:05 +0000 Subject: [PATCH] hide static declaration remove extra white space --- sys/sys/mbuf.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 3d8857ce4ce8..04273982beb1 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -341,9 +341,11 @@ extern uma_zone_t zone_jumbo9; extern uma_zone_t zone_jumbo16; extern uma_zone_t zone_ext_refcnt; +#ifndef MBUF_PACKET_ZONE_DISABLE +static __inline struct mbuf *m_getcl(int how, short type, int flags); +#endif static __inline struct mbuf *m_get(int how, short type); static __inline struct mbuf *m_gethdr(int how, short type); -static __inline struct mbuf *m_getcl(int how, short type, int flags); static __inline struct mbuf *m_getjcl(int how, short type, int flags, int size); static __inline struct mbuf *m_getclr(int how, short type); /* XXX */ @@ -451,7 +453,7 @@ m_gethdr(int how, short type) return ((struct mbuf *)(uma_zalloc_arg(zone_mbuf, &args, how))); } -#ifndef MBUF_PACKET_ZONE_DISABLE +#ifndef MBUF_PACKET_ZONE_DISABLE static __inline struct mbuf * m_getcl(int how, short type, int flags) {