rust: block: use kernel::{fmt,prelude::fmt!}
Reduce coupling to implementation details of the formatting machinery by avoiding direct use for `core`'s formatting traits and macros. Suggested-by: Alice Ryhl <aliceryhl@google.com> Link: https://rust-for-linux.zulipchat.com/#narrow/channel/288089-General/topic/Custom.20formatting/with/516476467 Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Alice Ryhl <aliceryhl@google.com> Reviewed-by: Benno Lossin <lossin@kernel.org> Signed-off-by: Tamir Duberstein <tamird@gmail.com> Acked-by: Andreas Hindborg <a.hindborg@kernel.org> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
This commit is contained in:
committed by
Miguel Ojeda
parent
1f96115f50
commit
e0be3d34f1
@@ -51,7 +51,7 @@ impl kernel::InPlaceModule for NullBlkModule {
|
||||
.logical_block_size(4096)?
|
||||
.physical_block_size(4096)?
|
||||
.rotational(false)
|
||||
.build(format_args!("rnullb{}", 0), tagset)
|
||||
.build(fmt!("rnullb{}", 0), tagset)
|
||||
})();
|
||||
|
||||
try_pin_init!(Self {
|
||||
|
||||
@@ -82,7 +82,7 @@
|
||||
//! Arc::pin_init(TagSet::new(1, 256, 1), flags::GFP_KERNEL)?;
|
||||
//! let mut disk = gen_disk::GenDiskBuilder::new()
|
||||
//! .capacity_sectors(4096)
|
||||
//! .build(format_args!("myblk"), tagset)?;
|
||||
//! .build(fmt!("myblk"), tagset)?;
|
||||
//!
|
||||
//! # Ok::<(), kernel::error::Error>(())
|
||||
//! ```
|
||||
|
||||
@@ -6,9 +6,9 @@
|
||||
//! C header: [`include/linux/blk-mq.h`](srctree/include/linux/blk-mq.h)
|
||||
|
||||
use crate::block::mq::{raw_writer::RawWriter, Operations, TagSet};
|
||||
use crate::fmt::{self, Write};
|
||||
use crate::{bindings, error::from_err_ptr, error::Result, sync::Arc};
|
||||
use crate::{error, static_lock_class};
|
||||
use core::fmt::{self, Write};
|
||||
|
||||
/// A builder for [`GenDisk`].
|
||||
///
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
use core::fmt::{self, Write};
|
||||
|
||||
use crate::error::Result;
|
||||
use crate::fmt::{self, Write};
|
||||
use crate::prelude::EINVAL;
|
||||
|
||||
/// A mutable reference to a byte buffer where a string can be written into.
|
||||
|
||||
Reference in New Issue
Block a user