mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-03 15:55:38 +00:00
quota: make Q_XQUOTASYNC a noop
Now that XFS takes quota reservations into account there is no need to flush anything before reporting quotas - in addition to beeing fully transactional all quota information is also 100% coherent with the rest of the filesystem now. Reviewed-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Ben Myers <bpm@sgi.com>
This commit is contained in:
parent
8960501191
commit
4b217ed9e3
1 changed files with 1 additions and 2 deletions
|
@ -282,10 +282,9 @@ static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
|
||||||
case Q_XGETQUOTA:
|
case Q_XGETQUOTA:
|
||||||
return quota_getxquota(sb, type, id, addr);
|
return quota_getxquota(sb, type, id, addr);
|
||||||
case Q_XQUOTASYNC:
|
case Q_XQUOTASYNC:
|
||||||
/* caller already holds s_umount */
|
|
||||||
if (sb->s_flags & MS_RDONLY)
|
if (sb->s_flags & MS_RDONLY)
|
||||||
return -EROFS;
|
return -EROFS;
|
||||||
writeback_inodes_sb(sb, WB_REASON_SYNC);
|
/* XFS quotas are fully coherent now, making this call a noop */
|
||||||
return 0;
|
return 0;
|
||||||
default:
|
default:
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
Loading…
Add table
Reference in a new issue