Symbol: MAXPHYS
bin/cat/cat.c
412
bsize = MIN(BUFSIZE_MAX, MAXPHYS * 8);
bin/cat/cat.c
93
#define BUFSIZE_SMALL (MAXPHYS)
bin/cp/utils.c
64
#define BUFSIZE_SMALL (MAXPHYS)
bin/cp/utils.c
81
bufsize = MIN(BUFSIZE_MAX, MAXPHYS * 8);
bin/mv/mv.c
261
static size_t blen = MAXPHYS;
lib/geom/raid3/geom_raid3.c
216
if (md.md_sectorsize > MAXPHYS) {
lib/libproc/proc_sym.c
70
char buf[MAXPHYS];
sbin/ggate/shared/ggate.c
233
#define MAX_SEND_SIZE MAXPHYS
sbin/hastd/activemap.c
127
return (((amp->am_extentsize - 1) / MAXPHYS) + 1);
sbin/hastd/activemap.c
133
return (((left - 1) / MAXPHYS) + 1);
sbin/hastd/activemap.c
598
(amp->am_syncoff + MAXPHYS >= amp->am_mediasize ||
sbin/hastd/activemap.c
600
off2ext(amp, amp->am_syncoff + MAXPHYS))) {
sbin/hastd/activemap.c
624
amp->am_syncoff += MAXPHYS;
sbin/hastd/activemap.c
636
if (left > MAXPHYS)
sbin/hastd/activemap.c
637
left = MAXPHYS;
sbin/hastd/activemap.c
639
PJDLOG_ASSERT(left >= 0 && left <= MAXPHYS);
sbin/hastd/primary.c
1236
ggio->gctl_length = MAXPHYS;
sbin/hastd/primary.c
490
hio->hio_ggio.gctl_data = malloc(MAXPHYS);
sbin/hastd/primary.c
494
MAXPHYS);
sbin/hastd/primary.c
496
hio->hio_ggio.gctl_length = MAXPHYS;
sbin/hastd/secondary.c
196
hio->hio_data = malloc(MAXPHYS);
sbin/hastd/secondary.c
200
(size_t)MAXPHYS);
sbin/hastd/secondary.c
597
if (hio->hio_cmd != HIO_DELETE && hio->hio_length > MAXPHYS) {
sbin/hastd/secondary.c
599
(uintmax_t)hio->hio_length, (uintmax_t)MAXPHYS);
sbin/hastd/secondary.c
705
hio->hio_data, MAXPHYS) == -1) {
sbin/newfs/mkfs.c
246
maxcontig = MAX(1, MAXPHYS / bsize);
sbin/newfs_msdos/mkfs_msdos.c
865
warn("sysctl: KERN_MAXPHYS, using %zu", (size_t)MAXPHYS);
sbin/newfs_msdos/mkfs_msdos.c
870
chunksize = MAXPHYS;
share/examples/scsi_target/scsi_target.c
57
#define MAX_XFER MAXPHYS
stand/libofw/ofw_net.c
242
OF_call_method("dma-free", netinstance, 2, 0, dmabuf, MAXPHYS);
sys/kern/subr_param.c
338
maxphys = MAXPHYS;
sys/kern/subr_param.c
341
maxphys = MAXPHYS;
sys/kern/subr_param.c
344
maxphys = MAXPHYS;
sys/kern/subr_param.c
349
maxphys = MAXPHYS;
sys/sys/_maxphys.h
4
#ifndef MAXPHYS
sys/ufs/ffs/ffs_subr.c
51
#define maxphys MAXPHYS
tools/build/cross-build/include/common/sys/param.h
49
#ifndef MAXPHYS
usr.bin/dpv/dpv.c
132
bsize = MIN(BUFSIZE_MAX, MAXPHYS * 8);
usr.bin/dpv/dpv.c
139
bsize = MIN(BUFSIZE_MAX, MAXPHYS * 8);
usr.bin/dpv/dpv_util.h
33
#ifndef MAXPHYS
usr.bin/dpv/dpv_util.h
48
#define BUFSIZE_SMALL (MAXPHYS)
usr.bin/mkuzip/mkuzip.c
250
if (cfs.cbound_blksz > MAXPHYS)
usr.bin/mkuzip/mkuzip.c
252
cfs.cbound_blksz, (size_t)MAXPHYS);
usr.bin/xinstall/xinstall.c
1110
bufsize = MIN(BUFSIZE_MAX, MAXPHYS * 8);
usr.bin/xinstall/xinstall.c
1222
bufsize = MIN(BUFSIZE_MAX, MAXPHYS * 8);
usr.bin/xinstall/xinstall.c
77
#define BUFSIZE_SMALL (MAXPHYS)
usr.sbin/bhyve/ahci.h
307
#if MAXPHYS < 512 * 1024
usr.sbin/bhyve/ahci.h
312
#define AHCI_SG_ENTRIES (roundup(btoc(MAXPHYS) + 1, 8))
usr.sbin/bhyve/block_if.c
258
len = MIN(br->br_resid, MAXPHYS);
usr.sbin/bhyve/block_if.c
299
len = MIN(br->br_resid, MAXPHYS);
usr.sbin/bhyve/block_if.c
381
buf = malloc(MAXPHYS);
usr.sbin/makefs/ffs.c
361
MAX(1, MIN(MAXPHYS, FFS_MAXBSIZE) / ffs_opts->bsize);