Searched refs:MAXBSIZE (Results 1 - 25 of 76) sorted by relevance

1234

/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Ddefs.h74 * The file system is made out of blocks of at most MAXBSIZE units,
76 * MAXBSIZE primarily determines the size of buffers in the buffer
84 #define MAXBSIZE 8192 macro
/illumos-gate/usr/src/uts/common/sys/
H A Dfilep.h73 char fi_buf[MAXBSIZE];
H A Dparam.h227 * The file system is made out of blocks of at most MAXBSIZE units,
229 * MAXBSIZE primarily determines the size of buffers in the buffer
237 #define MAXBSIZE 8192 macro
/illumos-gate/usr/src/uts/common/os/
H A Dfbio.c61 * have the offset cross a MAXBSIZE boundary over len bytes.
76 if (o + len > MAXBSIZE)
81 MAXBSIZE, SM_LOCKPROTO, rw);
84 off & (offset_t)MAXBMASK, MAXBSIZE, 0, rw);
120 if (o + len > MAXBSIZE)
125 MAXBSIZE, SM_PAGECREATE, S_WRITE) + o;
140 if (zlen < len || (o + zlen > MAXBSIZE))
H A Dvm_meter.c60 #define UsefulPagesPerIO nz((MAXBSIZE/PAGESIZE)/2)
125 * in units of MAXBSIZE bytes, which is a dubious assumption to
/illumos-gate/usr/src/lib/libast/common/features/
H A Dmode.c199 #ifdef MAXBSIZE
200 n = MAXBSIZE;
/illumos-gate/usr/src/boot/sys/sys/
H A Dparam.h231 * MAXBSIZE - Filesystems are made out of blocks of at most MAXBSIZE bytes
232 * per block. MAXBSIZE may be made larger without effecting
235 * filesystems which require a block size exceeding MAXBSIZE.
238 * be >= MAXBSIZE and can be set differently for different
260 #define MAXBSIZE 65536 /* must be power of 2 */ macro
262 #define MAXBCACHEBUF MAXBSIZE /* must be a power of 2 >= MAXBSIZE */
273 * and must be less than or equal to MAXBSIZE. MAXSYMLINKS defines the
/illumos-gate/usr/src/uts/common/vm/
H A Dseg_map.c317 panic("segkmap not MAXBSIZE aligned");
572 #define MAXPPB (MAXBSIZE/4096) /* assumes minimum page size of 4k */
648 if (addroff + len > MAXBSIZE)
649 panic("segmap_fault: endaddr %p exceeds MAXBSIZE chunk",
688 if (addroff + len > MAXBSIZE) {
690 "exceeds MAXBSIZE chunk", (void *)(addr + len));
705 err = VOP_GETPAGE(vp, (offset_t)off, len, &prot, pl, MAXBSIZE,
734 pp->p_offset >= sm_off + MAXBSIZE) {
1099 for (pgoff = off; pgoff < off + MAXBSIZE; pgoff += PAGESIZE) {
1169 ((smp - smd_smap) * MAXBSIZE),
[all...]
H A Dseg_map.h70 * Each smap struct represents a MAXBSIZE sized mapping to the
203 * scheme w/o a major segmap interface change for MAXBSIZE == PAGESIZE
204 * (which is required to enable segkpm for MAXBSIZE > PAGESIZE).
252 #define MAXBSHIFT 13 /* log2(MAXBSIZE) */
254 #define MAXBOFFSET (MAXBSIZE - 1)
/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dparam.h128 * The file system is made out of blocks of at most MAXBSIZE units,
130 * MAXBSIZE primarily determines the size of buffers in the buffer
138 #define MAXBSIZE 8192 macro
/illumos-gate/usr/src/uts/i86pc/sys/
H A Dmachparam.h259 * needs to be MAXBSIZE aligned.
261 #define KERNEL_REDZONE_SIZE MAXBSIZE
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_srv_readdir.c547 if (args->maxcount < MAXBSIZE)
548 mpcount = MAXBSIZE;
567 if (mpcount > MAXBSIZE)
568 args->maxcount = mpcount = MAXBSIZE;
607 dircount = (args->dircount < MAXBSIZE) ? MAXBSIZE : args->dircount;
611 if (args->maxcount <= MAXBSIZE) {
628 if (rddir_data_len > MAXBSIZE)
629 rddir_data_len = dircount = MAXBSIZE;
/illumos-gate/usr/src/cmd/fs.d/udfs/fsck/
H A Dsetup.c78 char avdbuf[MAXBSIZE]; /* buffer for anchor volume descriptor */
367 for (fsbsize = 512; fsbsize <= MAXBSIZE; fsbsize <<= 1) {
378 if (fsbsize > MAXBSIZE)
H A Dfsck.h43 #define MAXBSIZE 8192 /* maximum allowed block size */ macro
/illumos-gate/usr/src/cmd/fs.d/ufs/clri/
H A Dclri.c59 #define NI (MAXBSIZE/ISIZE)
/illumos-gate/usr/src/ucbhead/sys/
H A Dparam.h189 * The file system is made out of blocks of at most MAXBSIZE units,
191 * MAXBSIZE primarily determines the size of buffers in the buffer
199 #define MAXBSIZE 8192 macro
/illumos-gate/usr/src/cmd/backup/dump/
H A Ddump.h47 #include <sys/param.h> /* for MAXBSIZE */
71 #define MAXINOPB (MAXBSIZE / sizeof (struct dinode))
72 #define MAXNINDIR (MAXBSIZE / sizeof (daddr32_t))
/illumos-gate/usr/src/cmd/fs.d/udfs/mkfs/
H A Dmkfs.c157 static char buf[MAXBSIZE];
158 static char buf2[MAXBSIZE];
159 static char lvid[MAXBSIZE];
457 (sectorsize > MAXBSIZE)) {
632 bzero(buf, MAXBSIZE);
635 * Starting from MAXBSIZE, clear out till 256 sectors.
637 for (i = MAXBSIZE / sectorsize; i < FIRSTAVDP; i++) {
669 bzero(buf, MAXBSIZE);
/illumos-gate/usr/src/cmd/backup/restore/
H A Dtape.c33 static size_t fssize = MAXBSIZE; /* preferred size of writes to filesystem */
306 if (stbuf.st_blksize >= tp_bsize && stbuf.st_blksize <= MAXBSIZE) {
310 fssize = MAXBSIZE;
397 if (stbuf.st_blksize >= tp_bsize && stbuf.st_blksize <= MAXBSIZE) {
401 fssize = MAXBSIZE;
1042 static char clearedbuf[MAXBSIZE];
1047 assert(MAXBSIZE >= tp_bsize);
1703 char buffy[MAXBSIZE];
/illumos-gate/usr/src/ucbcmd/install.d/
H A Dinstall.c274 char buf[MAXBSIZE];
/illumos-gate/usr/src/cmd/fs.d/ufs/ff/
H A Dff.c41 #define MAXNINDIR (MAXBSIZE / sizeof (daddr32_t))
98 char dbuf[MAXBSIZE];
/illumos-gate/usr/src/cmd/fs.d/ufs/ncheck/
H A Dncheck.c45 #define MAXNINDIR (MAXBSIZE / sizeof (daddr_t))
108 char dbuf[MAXBSIZE];
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dufsread.c260 fs.fs_bsize <= MAXBSIZE &&
/illumos-gate/usr/src/cmd/fs.d/ufs/fstyp/
H A Dfstyp.c72 char pad[MAXBSIZE];
77 char pad[MAXBSIZE];
80 char eg[MAXBSIZE];
/illumos-gate/usr/src/uts/common/fs/specfs/
H A Dspecvnops.c1031 n = (size_t)MIN(MAXBSIZE - on, uiop->uio_resid);
1054 if (n + on == MAXBSIZE)
1136 n = (size_t)MIN(MAXBSIZE - on, uiop->uio_resid);
1154 if (n == MAXBSIZE || (on == 0 && (off + n) == bdevsize))
1205 if (nzero < 0 || (on + nmoved + nzero > MAXBSIZE)) {
1228 else if (n + on == MAXBSIZE || IS_SWAPVP(vp)) {
1359 vap->va_blksize = MAXBSIZE;
2010 * len == MAXBSIZE (from segmap_release actions), and len == PAGESIZE

Completed in 129 milliseconds

1234