diff options
author | Alexander Aring <aahringo@redhat.com> | 2021-11-02 20:17:09 +0100 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2021-11-02 20:39:20 +0100 |
commit | 1aafd9c231919dea9b10e654107e24d5c553c60d (patch) | |
tree | a516c419124afa1a6cda5bb60a9e9ccbd67321c1 /fs/dlm | |
parent | fs: dlm: fix small lockspace typo (diff) | |
download | linux-1aafd9c231919dea9b10e654107e24d5c553c60d.tar.xz linux-1aafd9c231919dea9b10e654107e24d5c553c60d.zip |
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: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/midcomms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/dlm/midcomms.c b/fs/dlm/midcomms.c index 7ae39ec8d9b0..008078f06813 100644 --- a/fs/dlm/midcomms.c +++ b/fs/dlm/midcomms.c @@ -1231,7 +1231,7 @@ void dlm_midcomms_add_member(int nodeid) } 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); srcu_read_unlock(&nodes_srcu, idx); @@ -1254,7 +1254,7 @@ void dlm_midcomms_remove_member(int nodeid) spin_lock(&node->state_lock); 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 * other side is running dlm_midcomms_stop() |