Lines Matching defs:lspace
1950 m_uiotombuf(struct uio *uio, int how, int len, int lspace, int flags)
1954 /* XXX: 'lspace' magically becomes maxseg! */
1955 return (m_uiotombuf_nomap(uio, how, len, lspace, flags));
1969 m->m_data += lspace;
1975 error = mc_uiotomc(&mc, uio, len, lspace, how, flags);
1991 * @param lspace Provide leading space in the first mbuf in the chain.
1994 mc_uiotomc(struct mchain *mc, struct uio *uio, u_int length, u_int lspace,
2001 MPASS(lspace < MHLEN);
2002 MPASS(UINT_MAX - lspace >= length);
2012 } else if (__predict_false(uio->uio_resid + lspace > UINT_MAX))
2017 if (__predict_false(total + lspace == 0)) {
2022 error = mc_get(mc, total + lspace, how, MT_DATA, flags);
2025 mc_first(mc)->m_data += lspace;