diff options
author | Nicholas Mc Guire <der.herr@hofr.at> | 2015-01-09 10:48:58 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2015-01-09 10:48:58 +1100 |
commit | 43fd1fce9643586e0995ee5d11fb40641575348a (patch) | |
tree | 22692e37e33fc05e3bc4319fce68e9ecb886b9f1 /fs/xfs | |
parent | d32057fc84c141af22ddf07b58e52570e52369cd (diff) |
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')
-rw-r--r-- | fs/xfs/xfs_dquot.h | 2 |
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); } |