diff options
author | Alexander Aring <aahringo@redhat.com> | 2022-10-27 23:45:26 +0300 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2022-11-08 21:59:41 +0300 |
commit | 3e54c9e80e68b765d8877023d93f1eea1b9d1c54 (patch) | |
tree | 62c2cb3afae64f56e5976bb6c68f1b51d6c3f496 /fs/dlm/lockspace.c | |
parent | 9c693d76abb3956433a28994924046abf1a73ef4 (diff) | |
download | linux-3e54c9e80e68b765d8877023d93f1eea1b9d1c54.tar.xz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/lockspace.c b/fs/dlm/lockspace.c index e7135883cf78..96fe8f7ca09c 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; } |