rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rust: Implement fmt::Display for kernel Box<T, A>
@ 2024-10-28 14:52 JCKeep
  2024-10-28 15:03 ` Tamir Duberstein
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: JCKeep @ 2024-10-28 14:52 UTC (permalink / raw)
  To: Miguel Ojeda, Alex Gaynor
  Cc: Boqun Feng, Gary Guo, Björn Roy Baron, Benno Lossin,
	Andreas Hindborg, Alice Ryhl, Trevor Gross, rust-for-linux,
	JCKeep

Currently fmt::Display is not implemented for Box<T, A>. We can
make the following code work by implementing fmt::Display.

let v = KBox::new(42, GFP_KERNEL)?;
pr_info!("{}", v);

Link: https://github.com/Rust-for-Linux/linux/issues/1126
Signed-off-by: JCKeep <2407018371@qq.com>
---
 rust/kernel/alloc/kbox.rs | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/rust/kernel/alloc/kbox.rs b/rust/kernel/alloc/kbox.rs
index d69c32496..5f4765800 100644
--- a/rust/kernel/alloc/kbox.rs
+++ b/rust/kernel/alloc/kbox.rs
@@ -427,6 +427,16 @@ fn deref_mut(&mut self) -> &mut T {
     }
 }
 
+impl<T, A> fmt::Display for Box<T, A>
+where
+    T: ?Sized + fmt::Display,
+    A: Allocator,
+{
+    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
+        fmt::Display::fmt(&**self, f)
+    }
+}
+
 impl<T, A> fmt::Debug for Box<T, A>
 where
     T: ?Sized + fmt::Debug,
-- 
2.34.1


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

end of thread, other threads:[~2024-10-28 17:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-28 14:52 [PATCH] rust: Implement fmt::Display for kernel Box<T, A> JCKeep
2024-10-28 15:03 ` Tamir Duberstein
2024-10-28 15:58 ` Miguel Ojeda
2024-10-28 16:43 ` Boqun Feng
2024-10-28 16:52   ` Miguel Ojeda
2024-10-28 17:39     ` Boqun Feng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).