On Sat, Sep 28, 2024 at 8:50 AM Masahiro Yamada <masahiroy@xxxxxxxxxx> wrote: > > I CC'ed rust ML because Ack for the following patches are appreciated. > > [07/23] kbuild: remove unnecessary prune of rust/alloc for rustfmt > [08/23] kbuild: simplify find command for rustfmt > [11/23] kbuild: check the presence of include/generated/rustc_cfg Sorry, it was in my backlog after the conferences. I am not sure what the base of the series was, but ran my usual tests on top of v6.11 and then on top of `rust-fixes` after some manual adjustment in both cases, and things appear to still work fine (i.e. what I usually build, without taking advantage of the separate build directory support). Moreover, I tested the separate build directory support (`MO=`), for a trivial Rust out-of-tree module, with a subdir as well as with a directory outside the out-of-tree source code. I also tested the new approach suggested for the out-of-tree `Makefile` (i.e. `export KBUILD_EXTMOD` and `include $(KDIR)/Makefile`), and it all worked as expected, so: Tested-by: Miguel Ojeda <ojeda@xxxxxxxxxx> ...except for arm64, where I found that I needed this bit: diff --git a/arch/arm64/Makefile b/arch/arm64/Makefile index b058c4803efb..4cd9a1f2ec3d 100644 --- a/arch/arm64/Makefile +++ b/arch/arm64/Makefile @@ -71,7 +71,7 @@ stack_protector_prepare: prepare0 -mstack-protector-guard-reg=sp_el0 \ -mstack-protector-guard-offset=$(shell \ awk '{if ($$2 == "TSK_STACK_CANARY") print $$3;}' \ - include/generated/asm-offsets.h)) + $(objtree)/include/generated/asm-offsets.h)) endif ifeq ($(CONFIG_ARM64_BTI_KERNEL),y) Cheers, Miguel