public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rust_binder: Downgrade startup warning to info
@ 2026-03-26 22:06 Pedro Montes Alcalde
  2026-03-26 22:52 ` Carlos Llamas
  2026-03-26 23:07 ` [PATCH v2] " Carlos Llamas
  0 siblings, 2 replies; 5+ messages in thread
From: Pedro Montes Alcalde @ 2026-03-26 22:06 UTC (permalink / raw)
  To: linux-kernel; +Cc: aliceryhl, gregkh, arve, tkjos, christian, cmllamas

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

Logging it as a warning creates unnecessary noise and may
mislead developers when inspecting logs. Log it as info instead

Signed-off-by: Pedro Montes Alcalde <pedro.montes.alcalde@gmail.com>
---
  drivers/android/binder/rust_binder_main.rs | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/android/binder/rust_binder_main.rs 
b/drivers/android/binder/rust_binder_main.rs
index aa5f2a75adb4..3907291a33c9 100644
--- a/drivers/android/binder/rust_binder_main.rs
+++ b/drivers/android/binder/rust_binder_main.rs
@@ -292,7 +292,7 @@ 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.");
+        pr_info!("Loaded Rust Binder.");

          BINDER_SHRINKER.register(c"android-binder")?;

-- 
2.53.0



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

end of thread, other threads:[~2026-03-27  9:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-26 22:06 [PATCH] rust_binder: Downgrade startup warning to info Pedro Montes Alcalde
2026-03-26 22:52 ` Carlos Llamas
2026-03-26 23:07 ` [PATCH v2] " Carlos Llamas
2026-03-27  6:24   ` Greg KH
2026-03-27  9:34     ` Alice Ryhl

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