Home
last modified time | relevance | path

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

/fs/jfs/
Dsuper.c655 size_t toread; in jfs_quota_read() local
664 toread = len; in jfs_quota_read()
665 while (toread > 0) { in jfs_quota_read()
666 tocopy = sb->s_blocksize - offset < toread ? in jfs_quota_read()
667 sb->s_blocksize - offset : toread; in jfs_quota_read()
684 toread -= tocopy; in jfs_quota_read()
/fs/ocfs2/
Dquota_global.c171 size_t toread, tocopy; in ocfs2_quota_read() local
178 toread = len; in ocfs2_quota_read()
179 while (toread > 0) { in ocfs2_quota_read()
180 tocopy = min_t(size_t, (sb->s_blocksize - offset), toread); in ocfs2_quota_read()
201 toread -= tocopy; in ocfs2_quota_read()
/fs/ext2/
Dsuper.c1395 size_t toread; in ext2_quota_read() local
1404 toread = len; in ext2_quota_read()
1405 while (toread > 0) { in ext2_quota_read()
1406 tocopy = sb->s_blocksize - offset < toread ? in ext2_quota_read()
1407 sb->s_blocksize - offset : toread; in ext2_quota_read()
1424 toread -= tocopy; in ext2_quota_read()
/fs/reiserfs/
Dsuper.c2246 size_t toread; in reiserfs_quota_read() local
2254 toread = len; in reiserfs_quota_read()
2255 while (toread > 0) { in reiserfs_quota_read()
2258 toread ? sb->s_blocksize - offset : toread; in reiserfs_quota_read()
2276 toread -= tocopy; in reiserfs_quota_read()
/fs/ext3/
Dsuper.c2944 size_t toread; in ext3_quota_read() local
2952 toread = len; in ext3_quota_read()
2953 while (toread > 0) { in ext3_quota_read()
2954 tocopy = sb->s_blocksize - offset < toread ? in ext3_quota_read()
2955 sb->s_blocksize - offset : toread; in ext3_quota_read()
2965 toread -= tocopy; in ext3_quota_read()
/fs/ext4/
Dsuper.c4792 size_t toread; in ext4_quota_read() local
4800 toread = len; in ext4_quota_read()
4801 while (toread > 0) { in ext4_quota_read()
4802 tocopy = sb->s_blocksize - offset < toread ? in ext4_quota_read()
4803 sb->s_blocksize - offset : toread; in ext4_quota_read()
4813 toread -= tocopy; in ext4_quota_read()