From 1db64f511efb8e06e6734860e6716408317cb865 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 24 Mar 2026 17:09:05 +0100 Subject: [PATCH] block: vhd: impl Geometry for FixedVhdDiskAsync Use default DiskTopology with 512 byte sectors. Signed-off-by: Anatol Belski --- block/src/fixed_vhd_async.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/block/src/fixed_vhd_async.rs b/block/src/fixed_vhd_async.rs index b5b622e7e..3ce44e8db 100644 --- a/block/src/fixed_vhd_async.rs +++ b/block/src/fixed_vhd_async.rs @@ -74,6 +74,8 @@ impl disk_file::DiskFd for FixedVhdDiskAsync { } } +impl disk_file::Geometry for FixedVhdDiskAsync {} + pub struct FixedVhdAsync { raw_file_async: RawFileAsync, size: u64,