X-Git-Url: https://gitweb.dragonflybsd.org/~josepht/dragonfly.git/blobdiff_plain/fddeaa50bc9aff477b2eed48101a9183b4de4db4..33dbeae810812d056db4c1a65d540b9dceeccede:/sys/sys/mbuf.h diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index a78eecb010..689c159628 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -324,6 +324,7 @@ struct mbstat { u_long m_mpfail; /* times m_pullup failed */ u_long m_msize; /* length of an mbuf */ u_long m_mclbytes; /* length of an mbuf cluster */ + u_long m_mjumpagesize; /* length of a jumbo mbuf cluster */ u_long m_minclsize; /* min length of data to allocate a cluster */ u_long m_mlen; /* length of data in an mbuf */ u_long m_mhlen; /* length of data in a header mbuf */ @@ -508,6 +509,7 @@ void m_freem(struct mbuf *); struct mbuf *m_get(int, int); struct mbuf *m_getc(int len, int how, int type); struct mbuf *m_getcl(int how, short type, int flags); +struct mbuf *m_getjcl(int how, short type, int flags, uint size); struct mbuf *m_getclr(int, int); struct mbuf *m_gethdr(int, int); struct mbuf *m_getm(struct mbuf *, int, int, int);