Commit 90ad918e authored by Alexander Aring's avatar Alexander Aring Committed by David Teigland

dlm: never return invalid nodeid by dlm_our_nodeid()

This patch will remote the return of an invalid nodeid value when
local_comm is not set. This case should never happen as the DLM stack
tries to compare valid nodeids with an invalid nodeid returned by
dlm_our_nodeid(). Instead we let it crash to getting at least recognized
if we running into such state.
Signed-off-by: default avatarAlexander Aring <aahringo@redhat.com>
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent d3b3d2d8
......@@ -928,7 +928,7 @@ int dlm_comm_seq(int nodeid, uint32_t *seq)
int dlm_our_nodeid(void)
{
return local_comm ? local_comm->nodeid : 0;
return local_comm->nodeid;
}
/* num 0 is first addr, num 1 is second addr */
......
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