Commit 1fea7c25 authored by Steven Whitehouse's avatar Steven Whitehouse

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: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent 7b5e3d5f
...@@ -42,9 +42,9 @@ static void gdlm_ast(void *arg) ...@@ -42,9 +42,9 @@ static void gdlm_ast(void *arg)
ret |= LM_OUT_CANCELED; ret |= LM_OUT_CANCELED;
goto out; goto out;
case -EAGAIN: /* Try lock fails */ case -EAGAIN: /* Try lock fails */
case -EDEADLK: /* Deadlock detected */
goto out; goto out;
case -EINVAL: /* Invalid */ case -ETIMEDOUT: /* Canceled due to timeout */
case -ENOMEM: /* Out of memory */
ret |= LM_OUT_ERROR; ret |= LM_OUT_ERROR;
goto out; goto out;
case 0: /* Success */ case 0: /* Success */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment