On Fri, Sep 26, 2008 at 07:27:29AM -0400, Christoph Hellwig wrote:
> > /*
> > - * Cant flush a pinned dquot. Wait for it.
> > + * Cant flush a pinned dquot. If we are not supposed to block,
> > + * don't wait for it.
> > */
> > + if (!(flags & XFS_QMOPT_SYNC) && dqp->q_pincount > 0) {
> > + xfs_dqfunlock(dqp);
> > + return (0);
> > + }
> > xfs_qm_dqunpin_wait(dqp);
>
> Looks good, but please remove the braces around the 0. (And yes, I know
> that the statement just above it does it too..)
No prize for guessing where I copied the code from, then ;)
New version that combines the dirty check with the pin count
check below....
Cheers,
Dave.
--
Dave Chinner
david@xxxxxxxxxxxxx
XFS: don't block in xfs_qm_dqflush() during async writeback
Normally dquots are written back via delayed write mechanisms. They
are flushed to their backing buffer by xfssyncd, which is then
pushed out by either AIL or xfsbufd flushing. The flush from the
xfssyncd is supposed to be non-blocking, but xfs_qm_dqflush() always
waits for pinned duots, which means that it will block for the
length of time it takes to do a synchronous log force. This causes
unnecessary extra log I/O to be issued whenever we try to flush a
busy dquot.
Avoid the log forces and blocking xfssyncd by making xfs_qm_dqflush()
pay attention to what type of sync it is doing when it sees a pinned
dquot and not waiting when doing non-blocking flushes.
Signed-off-by: Dave Chinner <david@xxxxxxxxxxxxx>
---
fs/xfs/quota/xfs_dquot.c | 12 +++++-------
1 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/fs/xfs/quota/xfs_dquot.c b/fs/xfs/quota/xfs_dquot.c
index d738d37..aa72162 100644
--- a/fs/xfs/quota/xfs_dquot.c
+++ b/fs/xfs/quota/xfs_dquot.c
@@ -1221,16 +1221,14 @@ xfs_qm_dqflush(
xfs_dqtrace_entry(dqp, "DQFLUSH");
/*
- * If not dirty, nada.
+ * If not dirty, or it's pinned and we are not supposed to
+ * block, nada.
*/
- if (!XFS_DQ_IS_DIRTY(dqp)) {
+ if (!XFS_DQ_IS_DIRTY(dqp) ||
+ (!(flags & XFS_QMOPT_SYNC) && dqp->q_pincount > 0)) {
xfs_dqfunlock(dqp);
- return (0);
+ return 0;
}
-
- /*
- * Cant flush a pinned dquot. Wait for it.
- */
xfs_qm_dqunpin_wait(dqp);
/*
|