Commit 1aafd9c2 authored by Alexander Aring's avatar Alexander Aring Committed by David Teigland

fs: dlm: debug improvements print nodeid

This patch improves the debug output for midcomms layer by also printing
out the nodeid where users counter belongs to.
Signed-off-by: default avatarAlexander Aring <aahringo@redhat.com>
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent bb6866a5
...@@ -1231,7 +1231,7 @@ void dlm_midcomms_add_member(int nodeid) ...@@ -1231,7 +1231,7 @@ void dlm_midcomms_add_member(int nodeid)
} }
node->users++; node->users++;
pr_debug("users inc count %d\n", node->users); pr_debug("node %d users inc count %d\n", nodeid, node->users);
spin_unlock(&node->state_lock); spin_unlock(&node->state_lock);
srcu_read_unlock(&nodes_srcu, idx); srcu_read_unlock(&nodes_srcu, idx);
...@@ -1254,7 +1254,7 @@ void dlm_midcomms_remove_member(int nodeid) ...@@ -1254,7 +1254,7 @@ void dlm_midcomms_remove_member(int nodeid)
spin_lock(&node->state_lock); spin_lock(&node->state_lock);
node->users--; node->users--;
pr_debug("users dec count %d\n", node->users); pr_debug("node %d users dec count %d\n", nodeid, node->users);
/* hitting users count to zero means the /* hitting users count to zero means the
* other side is running dlm_midcomms_stop() * other side is running dlm_midcomms_stop()
......
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