From: Alexander Aring Date: Thu, 27 Oct 2022 20:45:26 +0000 (-0400) Subject: fs: dlm: fix log of lowcomms vs midcomms X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3e54c9e80e68b765d8877023d93f1eea1b9d1c54;p=linux.git 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 Signed-off-by: David Teigland --- 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; }