This is a note to let you know that I've just added the patch titled rust: error: fix the description for `ECHILD` to the 6.5-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: rust-error-fix-the-description-for-echild.patch and it can be found in the queue-6.5 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 17bfcd6a81535d7d580ddafb6e54806890aaca6c Mon Sep 17 00:00:00 2001 From: Wedson Almeida Filho <walmeida@xxxxxxxxxxxxx> Date: Sat, 30 Sep 2023 11:49:58 -0300 Subject: rust: error: fix the description for `ECHILD` From: Wedson Almeida Filho <walmeida@xxxxxxxxxxxxx> commit 17bfcd6a81535d7d580ddafb6e54806890aaca6c upstream. A mistake was made and the description of `ECHILD` is wrong (it reuses the description of `ENOEXEC`). This fixes it to reflect what's in `errno-base.h`. Signed-off-by: Wedson Almeida Filho <walmeida@xxxxxxxxxxxxx> Reviewed-by: Martin Rodriguez Reboredo <yakoyoku@xxxxxxxxx> Reviewed-by: Trevor Gross <tmgross@xxxxxxxxx> Reviewed-by: Finn Behrens <me@xxxxxxxxxx> Reviewed-by: Alice Ryhl <aliceryhl@xxxxxxxxxx> Fixes: 266def2a0f5b ("rust: error: add codes from `errno-base.h`") Cc: stable@xxxxxxxxxxxxxxx Link: https://lore.kernel.org/r/20230930144958.46051-1-wedsonaf@xxxxxxxxx [ Use the plural, as noticed by Benno. ] Signed-off-by: Miguel Ojeda <ojeda@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- rust/kernel/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/kernel/error.rs b/rust/kernel/error.rs index 05fcab6abfe6..0f29e7b2194c 100644 --- a/rust/kernel/error.rs +++ b/rust/kernel/error.rs @@ -37,7 +37,7 @@ macro_rules! declare_err { declare_err!(E2BIG, "Argument list too long."); declare_err!(ENOEXEC, "Exec format error."); declare_err!(EBADF, "Bad file number."); - declare_err!(ECHILD, "Exec format error."); + declare_err!(ECHILD, "No child processes."); declare_err!(EAGAIN, "Try again."); declare_err!(ENOMEM, "Out of memory."); declare_err!(EACCES, "Permission denied."); -- 2.42.0 Patches currently in stable-queue which might be from walmeida@xxxxxxxxxxxxx are queue-6.5/rust-error-fix-the-description-for-echild.patch