This is a note to let you know that I've just added the patch titled fs: dlm: fix log of lowcomms vs midcomms to the 4.19-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: fs-dlm-fix-log-of-lowcomms-vs-midcomms.patch and it can be found in the queue-4.19 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit b569fecd69ead40b00737c8f53506aef842d01ff Author: Alexander Aring <aahringo@xxxxxxxxxx> Date: Thu Oct 27 16:45:26 2022 -0400 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@xxxxxxxxxx> Signed-off-by: David Teigland <teigland@xxxxxxxxxx> Stable-dep-of: aad633dc0cf9 ("fs: dlm: start midcomms before scand") Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/fs/dlm/lockspace.c b/fs/dlm/lockspace.c index 244b87e4dfe7f..7cb72aa84bb01 100644 --- a/fs/dlm/lockspace.c +++ b/fs/dlm/lockspace.c @@ -403,7 +403,7 @@ static int threads_start(void) /* Thread for sending/receiving messages for all lockspace's */ error = dlm_lowcomms_start(); if (error) { - log_print("cannot start dlm lowcomms %d", error); + log_print("cannot start dlm midcomms %d", error); goto scand_fail; }