* [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper
@ 2025-10-31 2:32 chenmiao
2025-12-17 1:54 ` Chen Miao
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: chenmiao @ 2025-10-31 2:32 UTC (permalink / raw)
To: miguel.ojeda.sandonis, tamird, da.gomez
Cc: hust-os-kernel-patches, linux-kernel, rust-for-linux
When I enabled Rust compilation, I wanted to clean up its output, so I
used make clean and make mrproper. However, I was still able to find that
libpin_init_internal.so in the rust directory was not deleted, while
all other corresponding outputs were cleared.
Dongliang Mu <dzm91@hust.edu.cn>
Signed-off-by: chenmiao <chenmiao@openatom.club>
---
Changes in V2:
- Add the `.dylib` to mrproper files.
---
Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index b34a1f4c03967..b38b2895e1e4a 100644
--- a/Makefile
+++ b/Makefile
@@ -1590,7 +1590,8 @@ MRPROPER_FILES += include/config include/generated \
certs/x509.genkey \
vmlinux-gdb.py \
rpmbuild \
- rust/libmacros.so rust/libmacros.dylib
+ rust/libmacros.so rust/libmacros.dylib \
+ rust/libpin_init_internal.so rust/libpin_init_internal.dylib
# clean - Delete most, but leave enough to build external modules
#
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper 2025-10-31 2:32 [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper chenmiao @ 2025-12-17 1:54 ` Chen Miao 2026-01-18 22:30 ` Miguel Ojeda 2026-01-23 10:01 ` Miguel Ojeda 2 siblings, 0 replies; 7+ messages in thread From: Chen Miao @ 2025-12-17 1:54 UTC (permalink / raw) To: miguel.ojeda.sandonis, tamird, da.gomez Cc: hust-os-kernel-patches, linux-kernel, rust-for-linux PING? On 10/31/2025 10:32 AM, chenmiao wrote: > When I enabled Rust compilation, I wanted to clean up its output, so I > used make clean and make mrproper. However, I was still able to find that > libpin_init_internal.so in the rust directory was not deleted, while > all other corresponding outputs were cleared. > > Dongliang Mu <dzm91@hust.edu.cn> > Signed-off-by: chenmiao <chenmiao@openatom.club> > --- > Changes in V2: > - Add the `.dylib` to mrproper files. > --- > Makefile | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/Makefile b/Makefile > index b34a1f4c03967..b38b2895e1e4a 100644 > --- a/Makefile > +++ b/Makefile > @@ -1590,7 +1590,8 @@ MRPROPER_FILES += include/config include/generated \ > certs/x509.genkey \ > vmlinux-gdb.py \ > rpmbuild \ > - rust/libmacros.so rust/libmacros.dylib > + rust/libmacros.so rust/libmacros.dylib \ > + rust/libpin_init_internal.so rust/libpin_init_internal.dylib > > # clean - Delete most, but leave enough to build external modules > # ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper 2025-10-31 2:32 [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper chenmiao 2025-12-17 1:54 ` Chen Miao @ 2026-01-18 22:30 ` Miguel Ojeda 2026-01-19 13:30 ` Chen Miao ` (2 more replies) 2026-01-23 10:01 ` Miguel Ojeda 2 siblings, 3 replies; 7+ messages in thread From: Miguel Ojeda @ 2026-01-18 22:30 UTC (permalink / raw) To: chenmiao, Benno Lossin, Nathan Chancellor, Nicolas Schier, Tamir Duberstein Cc: tamird, da.gomez, hust-os-kernel-patches, linux-kernel, rust-for-linux, Linux Kbuild mailing list, Boqun Feng, Gary Guo, Björn Roy Baron, Andreas Hindborg, Alice Ryhl, Trevor Gross, Danilo Krummrich On Fri, Oct 31, 2025 at 3:32 AM chenmiao <chenmiao@openatom.club> wrote: > > When I enabled Rust compilation, I wanted to clean up its output, so I > used make clean and make mrproper. However, I was still able to find that > libpin_init_internal.so in the rust directory was not deleted, while > all other corresponding outputs were cleared. > > Dongliang Mu <dzm91@hust.edu.cn> This line seems broken. Was this meant to be a Reviewed-by, like in v1? > Signed-off-by: chenmiao <chenmiao@openatom.club> I think in another patch/thread you mentioned this should be "Chen Miao", right? No need for a new patch, I can fix both on apply if you agree. Adding the relevant people to Cc (pin-init, Kbuild and Rust). And Tamir for the `.dylib` side. Also, I guess we could backport this: Fixes: d7659acca7a3 ("rust: add pin-init crate build infrastructure") Cc: stable@vger.kernel.org Cheers, Miguel ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper 2026-01-18 22:30 ` Miguel Ojeda @ 2026-01-19 13:30 ` Chen Miao 2026-01-19 14:16 ` Benno Lossin 2026-01-20 11:13 ` Nicolas Schier 2 siblings, 0 replies; 7+ messages in thread From: Chen Miao @ 2026-01-19 13:30 UTC (permalink / raw) To: Miguel Ojeda, Benno Lossin, Nathan Chancellor, Nicolas Schier, Tamir Duberstein Cc: tamird, da.gomez, hust-os-kernel-patches, linux-kernel, rust-for-linux, Linux Kbuild mailing list, Boqun Feng, Gary Guo, Björn Roy Baron, Andreas Hindborg, Alice Ryhl, Trevor Gross, Danilo Krummrich 在 2026/1/19 06:30, Miguel Ojeda 写道: > On Fri, Oct 31, 2025 at 3:32 AM chenmiao <chenmiao@openatom.club> wrote: >> When I enabled Rust compilation, I wanted to clean up its output, so I >> used make clean and make mrproper. However, I was still able to find that >> libpin_init_internal.so in the rust directory was not deleted, while >> all other corresponding outputs were cleared. >> >> Dongliang Mu <dzm91@hust.edu.cn> > This line seems broken. Was this meant to be a Reviewed-by, like in v1? Yes, it should be `Reviewed-by`. >> Signed-off-by: chenmiao <chenmiao@openatom.club> > I think in another patch/thread you mentioned this should be "Chen Miao", right? Yes, Please modify this to Chen Miao. > > No need for a new patch, I can fix both on apply if you agree. > > Adding the relevant people to Cc (pin-init, Kbuild and Rust). And > Tamir for the `.dylib` side. > > Also, I guess we could backport this: > > Fixes: d7659acca7a3 ("rust: add pin-init crate build infrastructure") > Cc: stable@vger.kernel.org > > Cheers, > Miguel If it’s convenient for you, I think your proposal sounds great and I agree. Thanks for the review. Regards, Chen Miao ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper 2026-01-18 22:30 ` Miguel Ojeda 2026-01-19 13:30 ` Chen Miao @ 2026-01-19 14:16 ` Benno Lossin 2026-01-20 11:13 ` Nicolas Schier 2 siblings, 0 replies; 7+ messages in thread From: Benno Lossin @ 2026-01-19 14:16 UTC (permalink / raw) To: Miguel Ojeda, chenmiao, Nathan Chancellor, Nicolas Schier, Tamir Duberstein Cc: tamird, da.gomez, hust-os-kernel-patches, linux-kernel, rust-for-linux, Linux Kbuild mailing list, Boqun Feng, Gary Guo, Björn Roy Baron, Andreas Hindborg, Alice Ryhl, Trevor Gross, Danilo Krummrich On Sun Jan 18, 2026 at 11:30 PM CET, Miguel Ojeda wrote: > On Fri, Oct 31, 2025 at 3:32 AM chenmiao <chenmiao@openatom.club> wrote: >> >> When I enabled Rust compilation, I wanted to clean up its output, so I >> used make clean and make mrproper. However, I was still able to find that >> libpin_init_internal.so in the rust directory was not deleted, while >> all other corresponding outputs were cleared. >> >> Dongliang Mu <dzm91@hust.edu.cn> > > This line seems broken. Was this meant to be a Reviewed-by, like in v1? > >> Signed-off-by: chenmiao <chenmiao@openatom.club> > > I think in another patch/thread you mentioned this should be "Chen Miao", right? > > No need for a new patch, I can fix both on apply if you agree. > > Adding the relevant people to Cc (pin-init, Kbuild and Rust). And > Tamir for the `.dylib` side. Acked-by: Benno Lossin <lossin@kernel.org> Cheers, Benno ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper 2026-01-18 22:30 ` Miguel Ojeda 2026-01-19 13:30 ` Chen Miao 2026-01-19 14:16 ` Benno Lossin @ 2026-01-20 11:13 ` Nicolas Schier 2 siblings, 0 replies; 7+ messages in thread From: Nicolas Schier @ 2026-01-20 11:13 UTC (permalink / raw) To: Miguel Ojeda Cc: chenmiao, Benno Lossin, Nathan Chancellor, Tamir Duberstein, tamird, da.gomez, hust-os-kernel-patches, linux-kernel, rust-for-linux, Linux Kbuild mailing list, Boqun Feng, Gary Guo, Björn Roy Baron, Andreas Hindborg, Alice Ryhl, Trevor Gross, Danilo Krummrich On Sun, Jan 18, 2026 at 11:30:47PM +0100, Miguel Ojeda wrote: > On Fri, Oct 31, 2025 at 3:32 AM chenmiao <chenmiao@openatom.club> wrote: > > > > When I enabled Rust compilation, I wanted to clean up its output, so I > > used make clean and make mrproper. However, I was still able to find that > > libpin_init_internal.so in the rust directory was not deleted, while > > all other corresponding outputs were cleared. > > > > Dongliang Mu <dzm91@hust.edu.cn> > > This line seems broken. Was this meant to be a Reviewed-by, like in v1? > > > Signed-off-by: chenmiao <chenmiao@openatom.club> > > I think in another patch/thread you mentioned this should be "Chen Miao", right? > > No need for a new patch, I can fix both on apply if you agree. > > Adding the relevant people to Cc (pin-init, Kbuild and Rust). And > Tamir for the `.dylib` side. > > Also, I guess we could backport this: > > Fixes: d7659acca7a3 ("rust: add pin-init crate build infrastructure") > Cc: stable@vger.kernel.org > Can you please update the typo in the subject: - prefix: 'rust' or 'kbuild' - s/mrporper/mrproper/? Thanks! Acked-by: Nicolas Schier <nsc@kernel.org> ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper 2025-10-31 2:32 [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper chenmiao 2025-12-17 1:54 ` Chen Miao 2026-01-18 22:30 ` Miguel Ojeda @ 2026-01-23 10:01 ` Miguel Ojeda 2 siblings, 0 replies; 7+ messages in thread From: Miguel Ojeda @ 2026-01-23 10:01 UTC (permalink / raw) To: chenmiao Cc: tamird, da.gomez, hust-os-kernel-patches, linux-kernel, rust-for-linux On Fri, Oct 31, 2025 at 3:32 AM chenmiao <chenmiao@openatom.club> wrote: > > When I enabled Rust compilation, I wanted to clean up its output, so I > used make clean and make mrproper. However, I was still able to find that > libpin_init_internal.so in the rust directory was not deleted, while > all other corresponding outputs were cleared. > > Dongliang Mu <dzm91@hust.edu.cn> > Signed-off-by: chenmiao <chenmiao@openatom.club> Applied to `rust-fixes` -- thanks everyone! [ Fixed tags as discussed. Reworded slightly. - Miguel ] Cheers, Miguel ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-01-23 10:01 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-10-31 2:32 [PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper chenmiao 2025-12-17 1:54 ` Chen Miao 2026-01-18 22:30 ` Miguel Ojeda 2026-01-19 13:30 ` Chen Miao 2026-01-19 14:16 ` Benno Lossin 2026-01-20 11:13 ` Nicolas Schier 2026-01-23 10:01 ` Miguel Ojeda
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox