qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH V15 0/5] enhancement for qmp/hmp interfaces of block info
@ 2013-06-06  4:27 Wenchao Xia
  2013-06-06  4:27 ` [Qemu-devel] [PATCH V15 1/5] block: add snapshot info query function bdrv_query_snapshot_info_list() Wenchao Xia
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Wenchao Xia @ 2013-06-06  4:27 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, armbru, lcapitulino, stefanha, pbonzini, Wenchao Xia

  This series lets qmp interface show delaied info, including internal snapshot
/backing chain on all block device at runtime, which helps management stack and
human user, by retrieving exactly the same info of what qemu sees.

Example:
-> { "execute": "query-block" }
<- {
      "return":[
         {
            "io-status": "ok",
            "device":"ide0-hd0",
            "locked":false,
            "removable":false,
            "inserted":{
               "ro":false,
               "drv":"qcow2",
               "encrypted":false,
               "file":"disks/test.qcow2",
               "backing_file_depth":1,
               "bps":1000000,
               "bps_rd":0,
               "bps_wr":0,
               "iops":1000000,
               "iops_rd":0,
               "iops_wr":0,
               "image":{
                  "filename":"disks/test.qcow2",
                  "format":"qcow2",
                  "virtual-size":2048000,
                  "backing_file":"base.qcow2",
                  "full-backing-filename":"disks/base.qcow2",
                  "backing-filename-format:"qcow2",
                  "snapshots":[
                     {
                        "id": "1",
                        "name": "snapshot1",
                        "vm-state-size": 0,
                        "date-sec": 10000200,
                        "date-nsec": 12,
                        "vm-clock-sec": 206,
                        "vm-clock-nsec": 30
                     }
                  ],
                  "backing-image":{
                      "filename":"disks/base.qcow2",
                      "format":"qcow2",
                      "virtual-size":2048000
                  }
               }
            },
            "type":"unknown"
         },
         {
            "io-status": "ok",
            "device":"ide1-cd0",
            "locked":false,
            "removable":true,
            "type":"unknown"
         },
         {
            "device":"floppy0",
            "locked":false,
            "removable":true,
            "type":"unknown"
         },
         {
            "device":"sd0",
            "locked":false,
            "removable":true,
            "type":"unknown"
         }
      ]
   }

  These patches follows the rule that use qmp to retrieve information,
hmp layer just does a translation from qmp object it got. To make code
graceful, snapshot and image info retrieving code in qemu and qemu-img are
merged into block layer, and some function names were adjusted to describe
them better. For the part touched by the series, it works as:

   qemu          qemu-img

dump_monitor    dump_stdout
     |--------------| 
            |
       block/qapi.c

  This series requires following series applied:
"[PATCH V3 0/4] qapi and snapshot code clean up in block layer",
https://lists.gnu.org/archive/html/qemu-devel/2013-05/msg03539.html

  Special thanks for Markus, Stefan, Kevin, Eric reviewing many times.

V15:
  Squash "add recursive member in ImageInfo" patch into 3/6.
  Address Stefan's comments:
  5/5: use bool instead of int for variable "verbose".

Wenchao Xia (5):
  1 block: add snapshot info query function bdrv_query_snapshot_info_list()
  2 block: add image info query function bdrv_query_image_info()
  3 qmp: add ImageInfo in BlockDeviceInfo used by query-block
  4 hmp: show ImageInfo in 'info block'
  5 hmp: add parameters device and -v for info block

 block/qapi.c         |  148 ++++++++++++++++++++++++++++++++++++++++++--------
 hmp.c                |   21 +++++++
 include/block/qapi.h |   14 +++--
 monitor.c            |    7 ++-
 qapi-schema.json     |   10 +++-
 qemu-img.c           |   10 +++-
 qmp-commands.hx      |   69 +++++++++++++++++++++++-
 7 files changed, 242 insertions(+), 37 deletions(-)

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-06-07 11:46 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-06  4:27 [Qemu-devel] [PATCH V15 0/5] enhancement for qmp/hmp interfaces of block info Wenchao Xia
2013-06-06  4:27 ` [Qemu-devel] [PATCH V15 1/5] block: add snapshot info query function bdrv_query_snapshot_info_list() Wenchao Xia
2013-06-06  4:27 ` [Qemu-devel] [PATCH V15 2/5] block: add image info query function bdrv_query_image_info() Wenchao Xia
2013-06-06  4:27 ` [Qemu-devel] [PATCH V15 3/5] qmp: add ImageInfo in BlockDeviceInfo used by query-block Wenchao Xia
2013-06-06  4:28 ` [Qemu-devel] [PATCH V15 4/5] hmp: show ImageInfo in 'info block' Wenchao Xia
2013-06-06  4:28 ` [Qemu-devel] [PATCH V15 5/5] hmp: add parameters device and -v for info block Wenchao Xia
2013-06-06  6:42 ` [Qemu-devel] [PATCH V15 0/5] enhancement for qmp/hmp interfaces of block info Fam Zheng
2013-06-06  8:44   ` Wenchao Xia
2013-06-07 11:46 ` Stefan Hajnoczi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).