aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dlm/member.c
diff options
context:
space:
mode:
authorAlexander Aring <aahringo@redhat.com>2021-11-02 15:17:13 -0400
committerDavid Teigland <teigland@redhat.com>2021-11-02 14:39:20 -0500
commite10249b1902d3b0b71e99f518a695c2c39ab4fe6 (patch)
tree25b5c0d58b18c3563e32ec4f28facb9c1c566797 /fs/dlm/member.c
parent3e9736713d0cb2877b11ec7185b231bba7b21936 (diff)
downloadlinux-e10249b1902d3b0b71e99f518a695c2c39ab4fe6.tar.gz
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/member.c')
-rw-r--r--fs/dlm/member.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/dlm/member.c b/fs/dlm/member.c
index 731d489aa323e..61f906e705db8 100644
--- a/fs/dlm/member.c
+++ b/fs/dlm/member.c
@@ -442,8 +442,7 @@ static int ping_members(struct dlm_ls *ls)
int error = 0;
list_for_each_entry(memb, &ls->ls_nodes, list) {
- error = dlm_recovery_stopped(ls);
- if (error) {
+ if (dlm_recovery_stopped(ls)) {
error = -EINTR;
break;
}