public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rust_binder: drop startup init log message
@ 2026-03-28  1:02 EXtremeExploit
  2026-03-28 16:43 ` Carlos Llamas
  2026-03-30  8:07 ` Alice Ryhl
  0 siblings, 2 replies; 3+ messages in thread
From: EXtremeExploit @ 2026-03-28  1:02 UTC (permalink / raw)
  To: linux-kernel
  Cc: gregkh, arve, tkjos, christian, cmllamas, aliceryhl,
	Pedro Montes Alcalde

From: Pedro Montes Alcalde <pedro.montes.alcalde@gmail.com>

The "Loaded Rust Binder." message is logged during normal
initialization and does not indicate an error/warning condition.

Logging it creates unnecessary noise and is inconsistent
with other drivers, so this change fixes that

Signed-off-by: Pedro Montes Alcalde <pedro.montes.alcalde@gmail.com>
---
This time i have SMTP setup with git, so hopefully there arent any formatting issues
 drivers/android/binder/rust_binder_main.rs | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/android/binder/rust_binder_main.rs b/drivers/android/binder/rust_binder_main.rs
index aa5f2a75adb4..dccb7ba3ffc0 100644
--- a/drivers/android/binder/rust_binder_main.rs
+++ b/drivers/android/binder/rust_binder_main.rs
@@ -292,8 +292,6 @@ fn init(_module: &'static kernel::ThisModule) -> Result<Self> {
         // SAFETY: The module initializer never runs twice, so we only call this once.
         unsafe { crate::context::CONTEXTS.init() };
 
-        pr_warn!("Loaded Rust Binder.");
-
         BINDER_SHRINKER.register(c"android-binder")?;
 
         // SAFETY: The module is being loaded, so we can initialize binderfs.
-- 
2.53.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-03-30  8:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-28  1:02 [PATCH] rust_binder: drop startup init log message EXtremeExploit
2026-03-28 16:43 ` Carlos Llamas
2026-03-30  8:07 ` Alice Ryhl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox