Searched refs:maxio (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-10.0-release/sys/cam/
H A Dcam_compat.h106 u_int maxio; /* Max supported I/O size, in bytes. */ member in struct:ccb_pathinq_0x17
H A Dcam_compat.c194 cpi17->maxio = cpi->maxio;
H A Dcam_ccb.h634 u_int maxio; /* Max supported I/O size, in bytes. */ member in struct:ccb_pathinq
/freebsd-10.0-release/sys/dev/aac/
H A Daac_disk.c227 * Send out one command at a time with up to maxio of data.
235 size_t len, maxio; local
264 maxio = sc->aac_max_sectors << 9;
265 len = (length > maxio) ? maxio : length;
/freebsd-10.0-release/usr.sbin/dumpcis/
H A Dcardinfo.h171 int maxio; /* Max allowed I/O windows */ member in struct:slotstate
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dvdev_geom.c195 off_t off, maxio; local
205 maxio = MAXPHYS - (MAXPHYS % cp->provider->sectorsize);
208 for (; off < offset; off += maxio, p += maxio, size -= maxio) {
213 bp->bio_length = MIN(size, maxio);
/freebsd-10.0-release/sys/cam/ata/
H A Data_da.c1137 u_int maxio; local
1246 maxio = cpi.maxio; /* Honor max I/O size of SIM */
1247 if (maxio == 0)
1248 maxio = DFLTPHYS; /* traditional default */
1249 else if (maxio > MAXPHYS)
1250 maxio = MAXPHYS; /* for safety */
1252 maxio = min(maxio, 65536 * softc->params.secsize);
1254 maxio
[all...]
/freebsd-10.0-release/sys/fs/nfsclient/
H A Dnfs_clvfsops.c184 int iosize, maxio; local
188 maxio = NFS_MAXBSIZE;
191 maxio = NFS_MAXDGRAMDATA;
193 maxio = NFS_MAXBSIZE;
195 maxio = NFS_V2MAXDATA;
197 if (nmp->nm_rsize > maxio || nmp->nm_rsize == 0)
198 nmp->nm_rsize = maxio;
201 if (nmp->nm_readdirsize > maxio || nmp->nm_readdirsize == 0)
202 nmp->nm_readdirsize = maxio;
205 if (nmp->nm_wsize > maxio || nm
[all...]
/freebsd-10.0-release/sys/nfsclient/
H A Dnfs_vfsops.c595 int maxio; local
661 maxio = NFS_MAXDGRAMDATA;
663 maxio = NFS_MAXDATA;
665 maxio = NFS_V2MAXDATA;
674 if (nmp->nm_wsize > maxio)
675 nmp->nm_wsize = maxio;
686 if (nmp->nm_rsize > maxio)
687 nmp->nm_rsize = maxio;
694 if (nmp->nm_readdirsize > maxio)
695 nmp->nm_readdirsize = maxio;
[all...]
/freebsd-10.0-release/sys/cam/scsi/
H A Dscsi_sa.c227 u_int32_t maxio; member in struct:sa_softc
1501 OID_AUTO, "maxio", CTLTYPE_INT | CTLFLAG_RD,
1502 &softc->maxio, 0, "Maximum I/O size");
1590 * If maxio isn't set, we fall back to DFLTPHYS. Otherwise we take
1591 * the smaller of cpi.maxio or MAXPHYS.
1593 if (cpi.maxio == 0)
1594 softc->maxio = DFLTPHYS;
1595 else if (cpi.maxio > MAXPHYS)
1596 softc->maxio = MAXPHYS;
1598 softc->maxio
[all...]
H A Dscsi_da.c2129 if (cpi.maxio == 0)
2131 else if (cpi.maxio > MAXPHYS)
2134 softc->disk->d_maxsize = cpi.maxio;
H A Dscsi_cd.c803 if (cpi.maxio == 0)
805 else if (cpi.maxio > MAXPHYS)
808 softc->disk->d_maxsize = cpi.maxio;
/freebsd-10.0-release/sys/dev/twa/
H A Dtw_osl_cam.c432 path_inq->maxio = TW_CL_MAX_IO_SIZE;
/freebsd-10.0-release/sys/fs/msdosfs/
H A Dmsdosfs_vnops.c1856 int bnpercn, error, maxio, maxrun, run; local
1877 maxio = mp->mnt_iosize_max / mp->mnt_stat.f_iosize;
1880 maxrun = ulmin(maxio - 1, pmp->pm_maxcluster - cn);
1889 maxrun = ulmin(maxio - 1, cn);
/freebsd-10.0-release/sys/dev/ahci/
H A Dahciem.c587 cpi->maxio = MAXPHYS;
H A Dahci.c2980 cpi->maxio = MAXPHYS;
2983 cpi->maxio = min(cpi->maxio, 128 * 512);
/freebsd-10.0-release/sys/dev/isci/
H A Disci_controller.c682 cpi->maxio = isci_io_request_get_max_io_size();
/freebsd-10.0-release/sys/powerpc/ps3/
H A Dps3cdrom.c431 cpi->maxio = PAGE_SIZE;
/freebsd-10.0-release/sys/cam/ctl/
H A Dctl_frontend_cam_sim.c837 cpi->maxio = 1024 * 1024;
/freebsd-10.0-release/sys/dev/ata/
H A Data-all.c1106 cpi->maxio = ch->dma.max_iosize ? ch->dma.max_iosize : DFLTPHYS;
/freebsd-10.0-release/sys/dev/tws/
H A Dtws_cam.c320 ccb->cpi.maxio = TWS_MAX_IO_SIZE;
/freebsd-10.0-release/sys/dev/aacraid/
H A Daacraid_cam.c1012 cpi->maxio = sc->aac_max_sectors << 9;
/freebsd-10.0-release/sys/dev/iscsi/
H A Discsi.c2050 cpi->maxio = MAXPHYS;
/freebsd-10.0-release/sys/dev/virtio/scsi/
H A Dvirtio_scsi.c904 cpi->maxio = (sc->vtscsi_max_nsegs - VTSCSI_MIN_SEGMENTS - 1) *
1002 * This should never happen unless maxio was incorrectly set.
/freebsd-10.0-release/sys/dev/esp/
H A Dncr53c9x.c1026 cpi->maxio = sc->sc_maxxfer;

Completed in 198 milliseconds

12