Home
last modified time | relevance | path

Searched refs:lspace (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/kern/
H A Duipc_mbuf.c1950 m_uiotombuf(struct uio *uio, int how, int len, int lspace, int flags) in m_uiotombuf() argument
1955 return (m_uiotombuf_nomap(uio, how, len, lspace, flags)); in m_uiotombuf()
1969 m->m_data += lspace; in m_uiotombuf()
1975 error = mc_uiotomc(&mc, uio, len, lspace, how, flags); in m_uiotombuf()
1994 mc_uiotomc(struct mchain *mc, struct uio *uio, u_int length, u_int lspace, in mc_uiotomc() argument
2001 MPASS(lspace < MHLEN); in mc_uiotomc()
2002 MPASS(UINT_MAX - lspace >= length); in mc_uiotomc()
2012 } else if (__predict_false(uio->uio_resid + lspace > UINT_MAX)) in mc_uiotomc()
2017 if (__predict_false(total + lspace == 0)) { in mc_uiotomc()
2022 error = mc_get(mc, total + lspace, how, MT_DATA, flags); in mc_uiotomc()
[all …]