Home | History | Annotate | Download | only in client

Lines Matching defs:bcount

412 	int bcount;
497 /* Note that bcount is *not* DEV_BSIZE aligned. */
498 bcount = biosize;
500 bcount = 0;
502 bcount = nsize - (off_t)lbn * biosize;
504 bp = nfs_getcacheblk(vp, lbn, bcount, td);
528 * bytes we can copy out of the bp. Note that bcount is
535 if (on < bcount)
536 n = MIN((unsigned)(bcount - on), uio->uio_resid);
854 int bcount, noncontig_write, obcount;
1027 bcount = on + n;
1028 allocbuf(bp, bcount);
1039 bcount = on + n;
1040 if ((off_t)lbn * biosize + bcount < np->n_size) {
1042 bcount = biosize;
1044 bcount = np->n_size - (off_t)lbn * biosize;
1047 bp = nfs_getcacheblk(vp, lbn, bcount, td);
1084 if (on == 0 && n == bcount) {
1116 if (bp->b_dirtyend > bcount) {
1119 bp->b_dirtyend - bcount);
1120 bp->b_dirtyend = bcount;