Home
last modified time | relevance | path

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

/fs/jfs/
Dsuper.c743 size_t toread; in jfs_quota_read() local
752 toread = len; in jfs_quota_read()
753 while (toread > 0) { in jfs_quota_read()
754 tocopy = sb->s_blocksize - offset < toread ? in jfs_quota_read()
755 sb->s_blocksize - offset : toread; in jfs_quota_read()
772 toread -= tocopy; in jfs_quota_read()
/fs/ocfs2/
Dquota_global.c177 size_t toread, tocopy; in ocfs2_quota_read() local
184 toread = len; in ocfs2_quota_read()
185 while (toread > 0) { in ocfs2_quota_read()
186 tocopy = min_t(size_t, (sb->s_blocksize - offset), toread); in ocfs2_quota_read()
207 toread -= tocopy; in ocfs2_quota_read()
/fs/ext2/
Dsuper.c1504 size_t toread; in ext2_quota_read() local
1513 toread = len; in ext2_quota_read()
1514 while (toread > 0) { in ext2_quota_read()
1515 tocopy = sb->s_blocksize - offset < toread ? in ext2_quota_read()
1516 sb->s_blocksize - offset : toread; in ext2_quota_read()
1533 toread -= tocopy; in ext2_quota_read()
/fs/reiserfs/
Dsuper.c2499 size_t toread; in reiserfs_quota_read() local
2507 toread = len; in reiserfs_quota_read()
2508 while (toread > 0) { in reiserfs_quota_read()
2511 toread ? sb->s_blocksize - offset : toread; in reiserfs_quota_read()
2532 toread -= tocopy; in reiserfs_quota_read()
/fs/f2fs/
Dsuper.c2007 size_t toread; in f2fs_quota_read() local
2016 toread = len; in f2fs_quota_read()
2017 while (toread > 0) { in f2fs_quota_read()
2018 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread); in f2fs_quota_read()
2047 toread -= tocopy; in f2fs_quota_read()
/fs/ext4/
Dsuper.c6176 size_t toread; in ext4_quota_read() local
6184 toread = len; in ext4_quota_read()
6185 while (toread > 0) { in ext4_quota_read()
6186 tocopy = sb->s_blocksize - offset < toread ? in ext4_quota_read()
6187 sb->s_blocksize - offset : toread; in ext4_quota_read()
6197 toread -= tocopy; in ext4_quota_read()