aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_dquot.h
diff options
context:
space:
mode:
authorNicholas Mc Guire <der.herr@hofr.at>2015-01-09 10:48:58 +1100
committerDave Chinner <david@fromorbit.com>2015-01-09 10:48:58 +1100
commit43fd1fce9643586e0995ee5d11fb40641575348a (patch)
tree22692e37e33fc05e3bc4319fce68e9ecb886b9f1 /fs/xfs/xfs_dquot.h
parentxfs: pass a 64-bit count argument to xfs_iomap_write_unwritten (diff)
downloadlinux-dev-43fd1fce9643586e0995ee5d11fb40641575348a.tar.xz
linux-dev-43fd1fce9643586e0995ee5d11fb40641575348a.zip
xfs: fix implicit bool to int conversion
try_wait_for_completion returns bool so the wrapper function xfs_dqflock_nowait should probably also return bool and not int. Signed-off-by: Nicholas Mc Guire <der.herr@hofr.at> Reviewed-by: Brian Foster <bfoster@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_dquot.h')
-rw-r--r--fs/xfs/xfs_dquot.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_dquot.h b/fs/xfs/xfs_dquot.h
index c24c67e22a2a..2f536f33cd26 100644
--- a/fs/xfs/xfs_dquot.h
+++ b/fs/xfs/xfs_dquot.h
@@ -86,7 +86,7 @@ static inline void xfs_dqflock(xfs_dquot_t *dqp)
wait_for_completion(&dqp->q_flush);
}
-static inline int xfs_dqflock_nowait(xfs_dquot_t *dqp)
+static inline bool xfs_dqflock_nowait(xfs_dquot_t *dqp)
{
return try_wait_for_completion(&dqp->q_flush);
}