The series make Rust modules running under x86_64 UML, as a supplement for the previous work: - https://lore.kernel.org/rust-for-linux/20221217044436.4138642-1-david...@google.com/
The previous work by David (many thanks!) has made the Rust UML compiles, and for the builtin modules, it works as expected. But for loadable modules, the UML will complain 'Unknown rela relocation: 9' when we try to 'insmod rust_print.ko'. That's because the modules are compiled against '-Crelocation-model=pie', makes the LLVM treat the modules as PIE executables, but they are just static modules. Besides, the Rust's code model for x86_64 UML is still 'kernel', leading some relocations "overflowed", we keep it the same as 'KBUILD_CFLAGS' set in UML ('large' here) to address it. Now we can test our Rust modules in UML. Regards, -- Zigit Zigit Zo (2): rust: arch/um: use 'static' relocation model for uml modules rust: arch/um: use 'large' code model for uml arch/um/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) base-commit: 431c1646e1f86b949fa3685efc50b660a364c2b6 -- 2.46.0