From 1a56cb3d0e7fdd896a80baedf1149ae92f7b4f50 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 24 Mar 2026 13:53:34 +0100 Subject: [PATCH] block: vhd: impl Geometry for FixedVhdDiskSync Use default DiskTopology with 512byte sectors. Signed-off-by: Anatol Belski --- block/src/fixed_vhd_sync.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/block/src/fixed_vhd_sync.rs b/block/src/fixed_vhd_sync.rs index 778ab1653..056c79818 100644 --- a/block/src/fixed_vhd_sync.rs +++ b/block/src/fixed_vhd_sync.rs @@ -76,6 +76,8 @@ impl disk_file::DiskFd for FixedVhdDiskSync { } } +impl disk_file::Geometry for FixedVhdDiskSync {} + pub struct FixedVhdSync { raw_file_sync: RawFileSync, size: u64,