Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

rust_binder: drop startup init log message

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>
Acked-by: Carlos Llamas <cmllamas@google.com>
Acked-by: Alice Ryhl <aliceryhl@google.com>
Link: https://patch.msgid.link/20260328010250.249131-2-pedro.montes.alcalde@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Pedro Montes Alcalde and committed by
Greg Kroah-Hartman
f698a253 fc74559e

-2
-2
drivers/android/binder/rust_binder_main.rs
··· 292 292 // SAFETY: The module initializer never runs twice, so we only call this once. 293 293 unsafe { crate::context::CONTEXTS.init() }; 294 294 295 - pr_warn!("Loaded Rust Binder."); 296 - 297 295 BINDER_SHRINKER.register(c"android-binder")?; 298 296 299 297 // SAFETY: The module is being loaded, so we can initialize binderfs.