The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH 0/5] Rate limited printing for Rust
@ 2026-06-23 15:38 Alice Ryhl
  2026-06-23 15:38 ` [PATCH 1/5] rust: sync: move lockdep types to rust/kernel/sync/lockdep.rs Alice Ryhl
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Alice Ryhl @ 2026-06-23 15:38 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Carlos Llamas, Boqun Feng, Gary Guo
  Cc: Onur Özkan, Andreas Hindborg, Benno Lossin,
	Björn Roy Baron, Daniel Almeida, Danilo Krummrich,
	Ingo Molnar, Lyude Paul, Miguel Ojeda, Peter Zijlstra,
	Trevor Gross, Waiman Long, Will Deacon, linux-kernel,
	rust-for-linux, Alice Ryhl

To avoid DoS on the kernel log, the Rust Binder driver is being switched
to rate limited printing. But before we can do that, we must first
implement rate limited printing for Rust. Thus, do that.

However, it turns out that before we can implement rate limited
printing, we must first implement the ability declare a raw_spinlock_t
in a global variable. Thus, do that too.

The core Rust part of the series applies on top of 7.1-rc6, but the
Binder patches require some other Binder changes. I'll be resending a
more useful and easier to apply series after the merge window.

Signed-off-by: Alice Ryhl <aliceryhl@google.com>
---
Alice Ryhl (5):
      rust: sync: move lockdep types to rust/kernel/sync/lockdep.rs
      rust: sync: add const constructor for raw_spinlock_t
      rust: add pr_*_ratelimit! macros for printing
      rust_binder: consolidate transaction failure prints
      rust_binder: use pr_*_ratelimited! for printing

 drivers/android/binder/allocation.rs  |   4 +-
 drivers/android/binder/context.rs     |   6 +-
 drivers/android/binder/error.rs       |   4 -
 drivers/android/binder/freeze.rs      |  22 ++--
 drivers/android/binder/node.rs        |   8 +-
 drivers/android/binder/page_range.rs  |  12 +-
 drivers/android/binder/process.rs     |  36 +++---
 drivers/android/binder/thread.rs      | 133 ++++++++++++----------
 drivers/android/binder/transaction.rs |  25 +----
 include/linux/spinlock_types_raw.h    |   4 +
 rust/bindings/lib.rs                  |  24 ++++
 rust/helpers/helpers.c                |   1 +
 rust/helpers/ratelimit.c              |  14 +++
 rust/kernel/error.rs                  |   2 +-
 rust/kernel/lib.rs                    |   1 +
 rust/kernel/prelude.rs                |   8 ++
 rust/kernel/ratelimit.rs              | 202 ++++++++++++++++++++++++++++++++++
 rust/kernel/sync.rs                   | 135 +----------------------
 rust/kernel/sync/lock/spinlock.rs     |  29 +++++
 rust/kernel/sync/lockdep.rs           | 161 +++++++++++++++++++++++++++
 20 files changed, 574 insertions(+), 257 deletions(-)
---
base-commit: 242689558c681ab2df283c54ed7b9dee8db0904d
change-id: 20260619-pr-ratelimited-6e20fa89bd5b

Best regards,
-- 
Alice Ryhl <aliceryhl@google.com>


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

end of thread, other threads:[~2026-06-23 20:06 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-23 15:38 [PATCH 0/5] Rate limited printing for Rust Alice Ryhl
2026-06-23 15:38 ` [PATCH 1/5] rust: sync: move lockdep types to rust/kernel/sync/lockdep.rs Alice Ryhl
2026-06-23 15:38 ` [PATCH 2/5] rust: sync: add const constructor for raw_spinlock_t Alice Ryhl
2026-06-23 15:38 ` [PATCH 3/5] rust: add pr_*_ratelimit! macros for printing Alice Ryhl
2026-06-23 15:55   ` Gary Guo
2026-06-23 19:11     ` Alice Ryhl
2026-06-23 19:53     ` Miguel Ojeda
2026-06-23 20:06       ` Gary Guo
2026-06-23 19:31   ` Miguel Ojeda
2026-06-23 20:05     ` Alice Ryhl
2026-06-23 15:38 ` [PATCH 4/5] rust_binder: consolidate transaction failure prints Alice Ryhl
2026-06-23 15:38 ` [PATCH 5/5] rust_binder: use pr_*_ratelimited! for printing Alice Ryhl

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