diff options
| author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-05-12 14:16:34 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-05-12 14:16:34 +0200 |
| commit | f27ae3a6cebc18a864e1dbee98c9e6c12e72b526 (patch) | |
| tree | d849692ee9521805b43bbec9df395d26b72848e0 /rust/kernel/alloc | |
| parent | firmware_loader: use SHA-256 library API instead of crypto_shash API (diff) | |
| parent | Linux 6.15-rc6 (diff) | |
| download | linux-f27ae3a6cebc18a864e1dbee98c9e6c12e72b526.tar.gz linux-f27ae3a6cebc18a864e1dbee98c9e6c12e72b526.zip | |
Merge 6.15-rc6 into driver-core-next
We need the driver core fix in here as well for testing
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'rust/kernel/alloc')
| -rw-r--r-- | rust/kernel/alloc/kvec.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rust/kernel/alloc/kvec.rs b/rust/kernel/alloc/kvec.rs index ae9d072741ce..87a71fd40c3c 100644 --- a/rust/kernel/alloc/kvec.rs +++ b/rust/kernel/alloc/kvec.rs @@ -2,6 +2,9 @@ //! Implementation of [`Vec`]. +// May not be needed in Rust 1.87.0 (pending beta backport). +#![allow(clippy::ptr_eq)] + use super::{ allocator::{KVmalloc, Kmalloc, Vmalloc}, layout::ArrayLayout, |
