Searched refs:dstm (Results 1 – 1 of 1) sorted by relevance
1334 safe_mcopy(struct mbuf *srcm, struct mbuf *dstm, u_int offset) in safe_mcopy() argument1353 while (j >= dstm->m_len) { in safe_mcopy()1354 j -= dstm->m_len; in safe_mcopy()1355 dstm = dstm->m_next; in safe_mcopy()1356 if (dstm == NULL) in safe_mcopy()1359 dptr = mtod(dstm, caddr_t) + j; in safe_mcopy()1360 dlen = dstm->m_len - j; in safe_mcopy()1377 dstm = dstm->m_next; in safe_mcopy()1378 if (dstm == NULL) in safe_mcopy()1380 dptr = dstm->m_data; in safe_mcopy()[all …]