fs: dlm: fix log of lowcomms vs midcomms
authorAlexander Aring <aahringo@redhat.com>
Thu, 27 Oct 2022 20:45:26 +0000 (16:45 -0400)
committerDavid Teigland <teigland@redhat.com>
Tue, 8 Nov 2022 18:59:41 +0000 (12:59 -0600)
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>
fs/dlm/lockspace.c

index e7135883cf78348af63d287258ad163e152d919e..96fe8f7ca09cd0831af6c66de462161bf626a836 100644 (file)
@@ -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;
        }