aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/gfs2/lock_dlm.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2010-09-08 10:09:25 +0100
committerSteven Whitehouse <swhiteho@redhat.com>2010-09-20 11:20:12 +0100
commit1fea7c25a05d388c0cdbe02cbdaf3a2e70885581 (patch)
tree4cb485254d7d3eb42b2dc0c3de140a21f586d511 /fs/gfs2/lock_dlm.c
parentGFS2: Don't enforce min hold time when two demotes occur in rapid succession (diff)
downloadwireguard-linux-1fea7c25a05d388c0cdbe02cbdaf3a2e70885581.tar.xz
wireguard-linux-1fea7c25a05d388c0cdbe02cbdaf3a2e70885581.zip
GFS2: Update handling of DLM return codes to match reality
GFS2's idea of which return codes it needs to handle was based upon those listed in dlm.h. Those didn't cover all the possible codes and listed some which never happen. This updates GFS2 to handle all the codes which can actually be returned from the DLM under various circumstances. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/lock_dlm.c')
-rw-r--r--fs/gfs2/lock_dlm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/lock_dlm.c b/fs/gfs2/lock_dlm.c
index 0e0470ed34c2..1c09425b45fd 100644
--- a/fs/gfs2/lock_dlm.c
+++ b/fs/gfs2/lock_dlm.c
@@ -42,9 +42,9 @@ static void gdlm_ast(void *arg)
ret |= LM_OUT_CANCELED;
goto out;
case -EAGAIN: /* Try lock fails */
+ case -EDEADLK: /* Deadlock detected */
goto out;
- case -EINVAL: /* Invalid */
- case -ENOMEM: /* Out of memory */
+ case -ETIMEDOUT: /* Canceled due to timeout */
ret |= LM_OUT_ERROR;
goto out;
case 0: /* Success */