| To: | xfs@xxxxxxxxxxx |
|---|---|
| Subject: | [PATCH 3/3] quota: make Q_XQUOTASYNC a noop |
| From: | Christoph Hellwig <hch@xxxxxxxxxxxxx> |
| Date: | Thu, 02 Feb 2012 11:14:12 -0500 |
| Cc: | arekm@xxxxxxxx, jack@xxxxxxx |
| References: | <20120202161409.303465214@xxxxxxxxxxxxxxxxxxxxxx> |
| User-agent: | quilt/0.48-1 |
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.
Signed-off-by: Christoph Hellwig <hch@xxxxxx>
Index: xfs/fs/quota/quota.c
===================================================================
--- xfs.orig/fs/quota/quota.c 2012-02-02 13:06:30.693396524 +0100
+++ xfs/fs/quota/quota.c 2012-02-02 13:23:23.181244741 +0100
@@ -282,10 +282,9 @@ static int do_quotactl(struct super_bloc
case Q_XGETQUOTA:
return quota_getxquota(sb, type, id, addr);
case Q_XQUOTASYNC:
- /* caller already holds s_umount */
if (sb->s_flags & MS_RDONLY)
return -EROFS;
- writeback_inodes_sb(sb, WB_REASON_SYNC);
+ /* XFS quotas are fully coherent now, making this call a noop */
return 0;
default:
return -EINVAL;
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 3/3] xfs: cleanup quota check on disk blocks and inodes reservations, Christoph Hellwig |
|---|---|
| Next by Date: | [PATCH 0/3] include reservations in quota reporting, Christoph Hellwig |
| Previous by Thread: | [PATCH 0/3] include reservations in quota reporting, Christoph Hellwig |
| Next by Thread: | Re: [PATCH 3/3] quota: make Q_XQUOTASYNC a noop, Jan Kara |
| Indexes: | [Date] [Thread] [Top] [All Lists] |