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>
This commit is contained in:
parent
d32057fc84
commit
43fd1fce96
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue