diff options
author | Alexander Aring | 2022-10-27 16:45:26 -0400 |
---|---|---|
committer | Greg Kroah-Hartman | 2023-03-17 08:50:17 +0100 |
commit | e7935f5af4261af501296ec80abab02e5f524261 (patch) | |
tree | 95f11caff6f77b809b98ab92322438ebbe5cc7fb /fs | |
parent | e136e969d268b9b89329c816c002e53f60e82985 (diff) |
fs: dlm: fix log of lowcomms vs midcomms
[ Upstream commit 3e54c9e80e68b765d8877023d93f1eea1b9d1c54 ]
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>
Stable-dep-of: aad633dc0cf9 ("fs: dlm: start midcomms before scand")
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'fs')
-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 bae050df7abf..04e1b4fe366d 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; } |