Home | History | Annotate | Download | only in ext2fs

Lines Matching defs:bsize

358 	int error, delta, bshift, bsize;
362 bsize = 1 << bshift;
364 delta = off & (bsize - 1);
369 bsize = uimin(bsize, len);
370 UVMHIST_LOG(ubchist, "off 0x%x len 0x%x bsize 0x%x",
371 off, len, bsize, 0);
373 error = ext2fs_balloc(ip, ext2_lblkno(fs, off), bsize, cred,
385 if (ext2fs_size(ip) < off + bsize) {
390 (off + bsize) >> 32,
391 (off + bsize) & 0xffffffff);
392 error = ext2fs_setsize(ip, off + bsize);
400 off += bsize;
401 len -= bsize;