Skip to content

Commit 2bec087

Browse files
LordGoatiusintel-lab-lkp
authored andcommitted
rust: alloc: Add doctest for ArrayLayout
Add a rustdoc example and Kunit test to the `ArrayLayout` struct's `ArrayLayout::new()` function. This patch depends on the first patch in this series in order for the kunit test to compile. Suggested-by: Boqun Feng <[email protected]> Link: Rust-for-Linux#1131 Signed-off-by: Jimmy Ostler <[email protected]>
1 parent 33d805a commit 2bec087

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

rust/kernel/alloc/layout.rs

+19
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,25 @@ impl<T> ArrayLayout<T> {
4343
/// # Errors
4444
///
4545
/// When `len * size_of::<T>()` overflows or when `len * size_of::<T>() > isize::MAX`.
46+
///
47+
/// # Examples
48+
///
49+
/// ```
50+
/// # use kernel::alloc::layout::{ArrayLayout, LayoutError};
51+
/// let layout = ArrayLayout::<i32>::new(15)?;
52+
/// assert_eq!(layout.len(), 15);
53+
///
54+
/// // Errors because `len * size_of::<T>()` overflows
55+
/// let layout = ArrayLayout::<i32>::new(isize::MAX as usize);
56+
/// assert!(layout.is_err());
57+
///
58+
/// // Errors because `len * size_of::<i32>() > isize::MAX`,
59+
/// // even though `len < isize::MAX`
60+
/// let layout = ArrayLayout::<i32>::new(isize::MAX as usize / 2);
61+
/// assert!(layout.is_err());
62+
///
63+
/// # Ok::<(), Error>(())
64+
/// ```
4665
pub const fn new(len: usize) -> Result<Self, LayoutError> {
4766
match len.checked_mul(core::mem::size_of::<T>()) {
4867
Some(size) if size <= ISIZE_MAX => {

0 commit comments

Comments
 (0)