This is a note to let you know that I've just added the patch titled kbuild: remove old Rust docs output path 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: kbuild-remove-old-rust-docs-output-path.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 1db773da58df20772dcc037a47163ce472d39c4d Mon Sep 17 00:00:00 2001 From: Miguel Ojeda <ojeda@xxxxxxxxxx> Date: Wed, 18 Oct 2023 18:01:45 +0200 Subject: kbuild: remove old Rust docs output path From: Miguel Ojeda <ojeda@xxxxxxxxxx> commit 1db773da58df20772dcc037a47163ce472d39c4d upstream. The Rust code documentation output path moved from `rust/doc` to `Documentation/output/rust/rustdoc`. The `make cleandocs` target takes care of cleaning it now since it is integrated with the rest of the documentation. Thus remove the old reference. Fixes: 48fadf440075 ("docs: Move rustdoc output, cross-reference it") Reviewed-by: Benno Lossin <benno.lossin@xxxxxxxxx> Reviewed-by: Alice Ryhl <aliceryhl@xxxxxxxxxx> Reviewed-by: Andreas Hindborg <a.hindborg@xxxxxxxxxxx> Link: https://lore.kernel.org/r/20231018160145.1017340-2-ojeda@xxxxxxxxxx Signed-off-by: Miguel Ojeda <ojeda@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Makefile +++ b/Makefile @@ -1595,7 +1595,7 @@ endif # Directories & files removed with 'make clean' CLEAN_FILES += include/ksym vmlinux.symvers modules-only.symvers \ modules.builtin modules.builtin.modinfo modules.nsdeps \ - compile_commands.json .thinlto-cache rust/test rust/doc \ + compile_commands.json .thinlto-cache rust/test \ rust-project.json .vmlinux.objs .vmlinux.export.c # Directories & files removed with 'make mrproper' Patches currently in stable-queue which might be from ojeda@xxxxxxxxxx are queue-6.5/rust-docs-fix-logo-replacement.patch queue-6.5/kbuild-remove-old-rust-docs-output-path.patch queue-6.5/rust-error-fix-the-description-for-echild.patch queue-6.5/docs-rust-update-rust-docs-output-path.patch