Searched refs:max_nsegs (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.1-release/sys/dev/cxgbe/tom/
H A Dt4_cpl_io.c577 u_int plen, nsegs, credits, max_imm, max_nsegs, max_nsegs_1mbuf; local
607 max_nsegs = max_dsgl_nsegs(tx_credits);
627 if (plen > max_imm && nsegs > max_nsegs) {
647 /* This mbuf put us right at the max_nsegs limit */
648 if (plen > max_imm && nsegs == max_nsegs) {
785 unsigned int plen, nsegs, credits, max_imm, max_nsegs, max_nsegs_1mbuf; local
820 max_nsegs = max_dsgl_nsegs(tx_credits);
838 if (plen > max_imm && nsegs > max_nsegs) {
846 /* This mbuf put us right at the max_nsegs limit */
847 if (plen > max_imm && nsegs == max_nsegs) {
[all...]
/freebsd-10.1-release/sys/dev/virtio/block/
H A Dvirtio_blk.c565 int nsegs, max_nsegs; local
568 max_nsegs = sc->vtblk_max_nsegs - VTBLK_MIN_SEGMENTS;
570 KASSERT(nsegs <= max_nsegs,
572 __func__, bp, nsegs, max_nsegs));

Completed in 49 milliseconds