summaryrefslogtreecommitdiffstats
path: root/rust/kernel/alloc
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-05-13 08:37:56 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-05-13 08:37:56 +0200
commit3349e275067f94ffb4141989aed9cbae7409429b (patch)
treeb151a326fed988eafcb591eece0d423a5552a20f /rust/kernel/alloc
parent417ce77ef466580c2850fdd4a7bf5f0a97147cb8 (diff)
parent82f2b0b97b36ee3fcddf0f0780a9a0825d52fec3 (diff)
downloadlinux-3349e275067f94ffb4141989aed9cbae7409429b.tar.gz
linux-3349e275067f94ffb4141989aed9cbae7409429b.zip
Merge 6.15-rc6 into staging-next
We need the staging changes in here as well Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'rust/kernel/alloc')
-rw-r--r--rust/kernel/alloc/kvec.rs3
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,