Home
last modified time | relevance | path

Searched refs:toread (Results 1 – 6 of 6) sorted by relevance

/fs/jfs/
Dsuper.c746 size_t toread; in jfs_quota_read() local
755 toread = len; in jfs_quota_read()
756 while (toread > 0) { in jfs_quota_read()
757 tocopy = sb->s_blocksize - offset < toread ? in jfs_quota_read()
758 sb->s_blocksize - offset : toread; in jfs_quota_read()
775 toread -= tocopy; in jfs_quota_read()
/fs/ocfs2/
Dquota_global.c175 size_t toread, tocopy; in ocfs2_quota_read() local
182 toread = len; in ocfs2_quota_read()
183 while (toread > 0) { in ocfs2_quota_read()
184 tocopy = min_t(size_t, (sb->s_blocksize - offset), toread); in ocfs2_quota_read()
205 toread -= tocopy; in ocfs2_quota_read()
/fs/ext2/
Dsuper.c1480 size_t toread; in ext2_quota_read() local
1489 toread = len; in ext2_quota_read()
1490 while (toread > 0) { in ext2_quota_read()
1491 tocopy = sb->s_blocksize - offset < toread ? in ext2_quota_read()
1492 sb->s_blocksize - offset : toread; in ext2_quota_read()
1509 toread -= tocopy; in ext2_quota_read()
/fs/reiserfs/
Dsuper.c2438 size_t toread; in reiserfs_quota_read() local
2446 toread = len; in reiserfs_quota_read()
2447 while (toread > 0) { in reiserfs_quota_read()
2450 toread ? sb->s_blocksize - offset : toread; in reiserfs_quota_read()
2471 toread -= tocopy; in reiserfs_quota_read()
/fs/f2fs/
Dsuper.c1561 size_t toread; in f2fs_quota_read() local
1571 toread = len; in f2fs_quota_read()
1572 while (toread > 0) { in f2fs_quota_read()
1573 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread); in f2fs_quota_read()
1601 toread -= tocopy; in f2fs_quota_read()
/fs/ext4/
Dsuper.c5333 size_t toread; in ext4_quota_read() local
5341 toread = len; in ext4_quota_read()
5342 while (toread > 0) { in ext4_quota_read()
5343 tocopy = sb->s_blocksize - offset < toread ? in ext4_quota_read()
5344 sb->s_blocksize - offset : toread; in ext4_quota_read()
5354 toread -= tocopy; in ext4_quota_read()