From 11bacdee46f96e6e54605a98ef45edc3879b34e8 Mon Sep 17 00:00:00 2001 From: Henry Hrvoje Tonkovac Date: Tue, 16 Jun 2026 12:01:37 +0200 Subject: [PATCH] vhost_user_block: trim qualified paths Import the std modules used in the crate instead of spelling the full paths at every use site. Signed-off-by: Henry Hrvoje Tonkovac Assisted-by: Claude:Opus-4.8 --- vhost_user_block/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vhost_user_block/src/lib.rs b/vhost_user_block/src/lib.rs index d9a907aa9..31fdbf17c 100644 --- a/vhost_user_block/src/lib.rs +++ b/vhost_user_block/src/lib.rs @@ -48,8 +48,8 @@ const BLK_SIZE: u32 = 512; // and the overhead of the emulation layer. const POLL_QUEUE_US: u128 = 50; -type Result = std::result::Result; -type VhostUserBackendResult = std::result::Result; +type Result = result::Result; +type VhostUserBackendResult = io::Result; #[derive(Error, Debug)] enum Error {