aboutsummaryrefslogtreecommitdiff
path: root/fs/xfs/quota/xfs_dquot.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2010-01-13 22:05:48 +0000
committerAlex Elder <aelder@sgi.com>2010-01-21 13:44:10 -0600
commit512dd1abd9539a474f2792eeaf6783c59ad7778a (patch)
tree24508eb59f5786131abf0c3e2bca4a1e125bdd69 /fs/xfs/quota/xfs_dquot.c
parent587aa0feb74ffe3239b5e26ff5d017ba9f5daec9 (diff)
xfs: kill XFS_QMOPT_ASYNC
The option is unused and one of the few remaining users of xfs_bawrite, so let's get rid of it. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Dave Chinner <david@fromorbit.com> Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/quota/xfs_dquot.c')
-rw-r--r--fs/xfs/quota/xfs_dquot.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/xfs/quota/xfs_dquot.c b/fs/xfs/quota/xfs_dquot.c
index d7c7eea09fc..a447493690e 100644
--- a/fs/xfs/quota/xfs_dquot.c
+++ b/fs/xfs/quota/xfs_dquot.c
@@ -1253,8 +1253,6 @@ xfs_qm_dqflush(
if (flags & XFS_QMOPT_DELWRI) {
xfs_bdwrite(mp, bp);
- } else if (flags & XFS_QMOPT_ASYNC) {
- error = xfs_bawrite(mp, bp);
} else {
error = xfs_bwrite(mp, bp);
}