Searched refs:writemaxcnt (Results 1 - 2 of 2) sorted by relevance

/xnu-2782.1.97/bsd/vfs/
H A Dvfs_journal.c1562 off_t writemaxcnt=0, tmp_writemaxcnt; local
1608 VNOP_IOCTL(devvp, DKIOCGETMAXBYTECOUNTWRITE, (caddr_t)&writemaxcnt, 0, context);
1612 if (writemaxcnt == 0 || (writeblockcnt > 0 && tmp_writemaxcnt < writemaxcnt)) {
1613 writemaxcnt = tmp_writemaxcnt;
1621 if (writesegcnt > 0 && (writesegcnt * PAGE_SIZE) < writemaxcnt) {
1622 writemaxcnt = writesegcnt * PAGE_SIZE;
1625 if (writemaxcnt == 0) {
1626 writemaxcnt = 128 * 1024;
1627 } else if (writemaxcnt > UINT32_MA
[all...]
H A Dvfs_subr.c3062 off_t writemaxcnt = 0; local
3144 (caddr_t)&writemaxcnt, 0, ctx)))
3182 if (writemaxcnt)
3183 mp->mnt_maxwritecnt = (writemaxcnt > UINT32_MAX) ? UINT32_MAX : writemaxcnt;

Completed in 85 milliseconds