]> Git Repo - qemu.git/blobdiff - hmp.c
tcg-sparc: Make debug_frame const
[qemu.git] / hmp.c
diff --git a/hmp.c b/hmp.c
index a9d0236cc3b1c194b84c813677c05243c364459d..ccc35d41a1e245e72c77649ceea96407fb011cb8 100644 (file)
--- a/hmp.c
+++ b/hmp.c
@@ -341,6 +341,11 @@ void hmp_info_block(Monitor *mon, const QDict *qdict)
                            info->value->inserted->backing_file_depth);
         }
 
+        if (info->value->inserted->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF) {
+            monitor_printf(mon, "    Detect zeroes:    %s\n",
+                           BlockdevDetectZeroesOptions_lookup[info->value->inserted->detect_zeroes]);
+        }
+
         if (info->value->inserted->bps
             || info->value->inserted->bps_rd
             || info->value->inserted->bps_wr
This page took 0.02264 seconds and 4 git commands to generate.