Lines Matching refs:maxchunks
1414 mbuf_allocpacket(mbuf_how_t how, size_t packetlen, unsigned int *maxchunks, in mbuf_allocpacket() argument
1420 unsigned int numchunks = maxchunks != NULL ? *maxchunks : 0; in mbuf_allocpacket()
1428 maxchunks != NULL ? &numchunks : NULL, how, 1, 0); in mbuf_allocpacket()
1430 if (maxchunks != NULL && *maxchunks && numchunks > *maxchunks) { in mbuf_allocpacket()
1438 if (maxchunks != NULL) { in mbuf_allocpacket()
1439 *maxchunks = numchunks; in mbuf_allocpacket()
1450 unsigned int *maxchunks, mbuf_t *mbuf) in mbuf_allocpacket_list() argument
1454 unsigned int numchunks = maxchunks ? *maxchunks : 0; in mbuf_allocpacket_list()
1465 maxchunks != NULL ? &numchunks : NULL, how, 1, 0); in mbuf_allocpacket_list()
1467 if (maxchunks != NULL && *maxchunks && numchunks > *maxchunks) { in mbuf_allocpacket_list()
1473 if (maxchunks != NULL) { in mbuf_allocpacket_list()
1474 *maxchunks = numchunks; in mbuf_allocpacket_list()