Searched refs:MAXPHYS (Results 76 - 100 of 106) sorted by relevance

12345

/freebsd-11-stable/sys/dev/mrsas/
H A Dmrsas.c1932 MAXPHYS, /* maxsize */
1934 MAXPHYS, /* maxsegsize */
2164 MAXPHYS,
2166 MAXPHYS,
/freebsd-11-stable/sys/dev/nvme/
H A Dnvme_ctrlr.c969 * pages. Ensure this request has fewer than MAXPHYS bytes when
975 if (end - addr > MAXPHYS)
/freebsd-11-stable/sys/cam/ata/
H A Data_da.c3356 else if (maxio > MAXPHYS)
3357 maxio = MAXPHYS; /* for safety */
/freebsd-11-stable/sys/ufs/ffs/
H A Dffs_vfsops.c819 if (mp->mnt_iosize_max > MAXPHYS)
820 mp->mnt_iosize_max = MAXPHYS;
/freebsd-11-stable/sys/kern/
H A Dvfs_aio.c1256 if (cb->aio_nbytes > MAXPHYS) {
1263 if (cb->aio_nbytes > MAXPHYS - poff) {
/freebsd-11-stable/usr.sbin/makefs/
H A Dffs.c350 MAX(1, MIN(MAXPHYS, FFS_MAXBSIZE) / ffs_opts->bsize);
/freebsd-11-stable/sbin/newfs/
H A Dmkfs.c243 maxcontig = MAX(1, MAXPHYS / bsize);
/freebsd-11-stable/sys/dev/ata/
H A Data-all.c139 ch->user[i].bytecount = MAXPHYS;
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_da.c2618 else if (cpi.maxio > MAXPHYS)
2619 softc->maxio = MAXPHYS; /* for safety */
4445 if (block_size >= MAXPHYS) {
H A Dscsi_cd.c675 else if (cpi.maxio > MAXPHYS)
676 softc->disk->d_maxsize = MAXPHYS; /* for safety */
H A Dscsi_sa.c2456 * the smaller of cpi.maxio or MAXPHYS.
2460 else if (cpi.maxio > MAXPHYS)
2461 softc->maxio = MAXPHYS;
/freebsd-11-stable/sys/dev/virtio/scsi/
H A Dvirtio_scsi.c452 nsegs += MIN(seg_max, MAXPHYS / PAGE_SIZE + 1);
/freebsd-11-stable/sys/vm/
H A Dswap_pager.c492 * array (MAXPHYS/PAGE_SIZE) and our locally defined
507 nsw_cluster_max = min((MAXPHYS/PAGE_SIZE), MAX_PAGEOUT_CLUSTER);
/freebsd-11-stable/sys/geom/mirror/
H A Dg_mirror.c2054 bp->bio_length = MIN(MAXPHYS,
2112 bp->bio_data = malloc(MAXPHYS, M_MIRROR, M_WAITOK);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzvol.c727 zv->zv_dev->si_iosize_max = MAXPHYS;
3023 zv->zv_dev->si_iosize_max = MAXPHYS;
/freebsd-11-stable/sys/dev/usb/storage/
H A Dumass.c2338 cpi->maxio = MAXPHYS;
/freebsd-11-stable/sys/geom/journal/
H A Dg_journal.c1046 if (pbp->bio_length + cbp->bio_length > MAXPHYS) {
/freebsd-11-stable/sys/dev/siis/
H A Dsiis.c1966 cpi->maxio = MAXPHYS;
/freebsd-11-stable/sys/dev/iscsi/
H A Discsi.c2369 cpi->maxio = MAXPHYS;
/freebsd-11-stable/sys/dev/mpr/
H A Dmpr.c1323 nsegs = (MAXPHYS / PAGE_SIZE) + 1;
/freebsd-11-stable/sys/dev/mps/
H A Dmps.c1266 nsegs = (MAXPHYS / PAGE_SIZE) + 1;
/freebsd-11-stable/sys/dev/mpt/
H A Dmpt.c2696 mpt->max_cam_seg_cnt = min(mpt->max_seg_cnt, (MAXPHYS / PAGE_SIZE) + 1);
/freebsd-11-stable/sys/dev/xen/blkback/
H A Dblkback.c146 MIN(MAXPHYS, BLKIF_MAX_SEGMENTS_PER_REQUEST * PAGE_SIZE)
/freebsd-11-stable/sys/dev/firewire/
H A Dsbp.c72 #define SBP_MAXPHYS MIN(MAXPHYS, (512*1024) /* 512KB */)
/freebsd-11-stable/sys/dev/mvs/
H A Dmvs.c2424 cpi->maxio = MAXPHYS;

Completed in 460 milliseconds

12345