aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dlm/lockspace.c
diff options
context:
space:
mode:
authorAlexander Aring <aahringo@redhat.com>2022-10-27 16:45:26 -0400
committerDavid Teigland <teigland@redhat.com>2022-11-08 12:59:41 -0600
commit3e54c9e80e68b765d8877023d93f1eea1b9d1c54 (patch)
tree62c2cb3afae64f56e5976bb6c68f1b51d6c3f496 /fs/dlm/lockspace.c
parent9c693d76abb3956433a28994924046abf1a73ef4 (diff)
downloadlinux-3e54c9e80e68b765d8877023d93f1eea1b9d1c54.tar.gz
fs: dlm: fix log of lowcomms vs midcomms
This patch will fix a small issue when printing out that dlm_midcomms_start() failed to start and it was printing out that the dlm subcomponent lowcomms was failed but lowcomms is behind the midcomms layer. Signed-off-by: Alexander Aring <aahringo@redhat.com> Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/lockspace.c')
-rw-r--r--fs/dlm/lockspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/lockspace.c b/fs/dlm/lockspace.c
index e7135883cf783..96fe8f7ca09cd 100644
--- a/fs/dlm/lockspace.c
+++ b/fs/dlm/lockspace.c
@@ -391,7 +391,7 @@ static int threads_start(void)
/* Thread for sending/receiving messages for all lockspace's */
error = dlm_midcomms_start();
if (error) {
- log_print("cannot start dlm lowcomms %d", error);
+ log_print("cannot start dlm midcomms %d", error);
goto scand_fail;
}