diff options
author | Alexander Aring | 2021-11-02 15:17:13 -0400 |
---|---|---|
committer | David Teigland | 2021-11-02 14:39:20 -0500 |
commit | e10249b1902d3b0b71e99f518a695c2c39ab4fe6 (patch) | |
tree | 25b5c0d58b18c3563e32ec4f28facb9c1c566797 /fs/dlm/dir.c | |
parent | 3e9736713d0cb2877b11ec7185b231bba7b21936 (diff) |
fs: dlm: use dlm_recovery_stopped in condition
This patch will change to evaluate the dlm_recovery_stopped() in the
condition of the if branch instead fetch it before evaluating the
condition. As this is an atomic test-set operation it should be
evaluated in the condition itself.
Reported-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/dir.c')
-rw-r--r-- | fs/dlm/dir.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/dlm/dir.c b/fs/dlm/dir.c index 45ebbe602bbf..b6692f81ec83 100644 --- a/fs/dlm/dir.c +++ b/fs/dlm/dir.c @@ -84,8 +84,7 @@ int dlm_recover_directory(struct dlm_ls *ls) for (;;) { int left; - error = dlm_recovery_stopped(ls); - if (error) { + if (dlm_recovery_stopped(ls)) { error = -EINTR; goto out_free; } |