From e9fa6e6295a721bc56ac7228d711acad6938c240 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Wed, 3 Jun 2026 14:29:18 +0200 Subject: [PATCH] block: remove unneeded #[allow(dead_code)] On-behalf-of: SAP philipp.schuster@sap.com Signed-off-by: Philipp Schuster --- block/src/io/async_io/guest_memory_target.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/block/src/io/async_io/guest_memory_target.rs b/block/src/io/async_io/guest_memory_target.rs index 748031746..c048f9455 100644 --- a/block/src/io/async_io/guest_memory_target.rs +++ b/block/src/io/async_io/guest_memory_target.rs @@ -104,7 +104,6 @@ impl GuestMemoryTarget { } /// Returns the raw iovecs to be passed to the kernel for asynchronous I/O. - #[allow(dead_code)] pub(super) fn iovecs(&self) -> &[libc::iovec] { &self.iovecs }