Lines Matching defs:sc_size_max
169 uint32_t sc_size_max; /* max size of single seg */
274 /*maxsegsz*/sc->sc_size_max,
366 sc->sc_size_max = virtio_read_device_config_4(vsc,
368 if (sc->sc_size_max < MAXPHYS/sc->sc_seg_max) {
371 sc->sc_size_max, MAXPHYS/sc->sc_seg_max);
373 sc->sc_size_max = MAXPHYS/sc->sc_seg_max;
374 } else if (sc->sc_size_max > MAXPHYS) {
377 sc->sc_size_max, MAXPHYS);
378 sc->sc_size_max = MAXPHYS;
381 sc->sc_size_max = MAXPHYS;
384 sc->sc_size_max);
389 sc->sc_seg_max, sc->sc_size_max);
394 if (virtio_alloc_vq(vsc, &sc->sc_vq, sc->sc_size_max,
413 ld->sc_maxxfer = MIN(MAXPHYS, sc->sc_size_max * sc->sc_seg_max);