qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: pl@kamp.de, famz@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2 00/17] Add qemu-img subcommand to dump file metadata
Date: Fri, 19 Jul 2013 18:48:49 +0800	[thread overview]
Message-ID: <51E91991.20000@linux.vnet.ibm.com> (raw)
In-Reply-To: <51E57B61.2040606@redhat.com>

于 2013-7-17 0:57, Paolo Bonzini 写道:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Il 16/07/2013 18:56, Eric Blake ha scritto:
>> On 07/16/2013 10:29 AM, Paolo Bonzini wrote:
>>> This series adds a subcommand to "map" that can dump file
>>> metadata. Metadata that is dumped includes:
>>>
>>> - whether blocks are allocated in bs->file and, if so, where
>>>
>>> - whether blocks are zero
>>>
>>> - whether data is read from bs or bs->backing_hd
>>
>> Is this command only usable from qemu-img, or is there a QMP
>> counterpart for getting at the same information on a live image
>> while qemu is running?
>
> Not yet, we had no use case yet.  It may be exposed later to the
> guests via the SCSI command GET LBA STATUS.
>
> Paolo
>
   I think dump of allocated info in qemu-img in this series, can do
dirty change tracking job for backing chain snapshot now, qemu's QMP
interface is not very needed.
   Only thing not perfect, is that it talks with string. A library would
be better, but I am not selling libqblock:), instead I'd like to form
a better and clean library so want to adjust qemu's block layer first.

>>>
>>> Metadata is dumped for an entire chain of images.  One example
>>> usage is (for non-compressed, non-encrypted images) to transform
>>> the metadata into a Linux device-mapper setup, and make a qcow2
>>> image available (for read only) as a block device.  Another
>>> possible usage is to determine the used areas of a file, and
>>> convert it in place to another format. Alternatively, the richer
>>> data can be used by block jobs to quickly determine if a block is
>>> zero without reading it.
>>
>> Definitely useful information!  I haven't looked at the
>> implementation yet, but there had better be a JSON representation
>> of the output :)
>>
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v2.0.19 (GNU/Linux)
> Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
>
> iQIcBAEBAgAGBQJR5XtfAAoJEBvWZb6bTYbypRUP/jadsxWgkWGbefpIqUL7Iykt
> EiPeQfuwJNrq2uXU5orD11xkJbm5gElg/iLQBfBnpAZTJ9VNKTkGUwwhAPgLfIrT
> LkTwd7Puqbe8q965K7kXqDoxT5fN+5nyyE9TbvlOEkThLRebWGVEgfViKoqnPYFW
> ApejY05zmWrT9+wk984/ELNH0XAv54vITGGzrkgFKpt+h+MZ/1ZQfy3xapczBPTh
> ui+U9Y2zJ3vdE3JxYGxNM0IVAWvrn0prCRpgGF+Id1uaT839UuYU1ukEFxJpynrh
> iXHuryQgI2zNx4IDwSwIXfOLc1P0XR59eOaN+n+mw45faIOEaEOlChSC4SvDCtTT
> 3B1bK7ZqTFy8P8KQ+SjA4NIkl8yb7qLmEGmweJnSxSI1JUz/P3k+uC/FZd/Zxe/r
> nFVdXYQtKVCZW0CMBMdHRE2T/3PFlx2nz/dzW+OrKyweKpDqcYjU+TyyrvXiT5Yv
> E8ttpOzQsNJl+VdEWpfa4StgRgQxmazVM80OyE52cNKAixUyLpJ7pR4fsF1mcswc
> BWdpSe/J8T6LRyTOAKoWoi2w8Mw/DMey4neQ1+py8tWuCqJix3NtyduVtsvrRiYd
> aPcXvGfAvDbzEcMHnwz0SVpTqleK/7H7pYScBdWYnmUG5wJuxfhJHD/5JDQ1wmj0
> jGHmCAddWW+8RrHZGrpX
> =paUV
> -----END PGP SIGNATURE-----
>


-- 
Best Regards

Wenchao Xia

  reply	other threads:[~2013-07-19 10:49 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-16 16:29 [Qemu-devel] [PATCH v2 00/17] Add qemu-img subcommand to dump file metadata Paolo Bonzini
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 01/17] cow: make reads go at a decent speed Paolo Bonzini
2013-07-19 12:31   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 02/17] cow: make writes go at a less indecent speed Paolo Bonzini
2013-07-19 12:40   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 03/17] cow: do not call bdrv_co_is_allocated Paolo Bonzini
2013-07-19 12:42   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 04/17] block: make bdrv_co_is_allocated static Paolo Bonzini
2013-07-19 12:44   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 05/17] block: remove bdrv_is_allocated_above/bdrv_co_is_allocated_above distinction Paolo Bonzini
2013-07-19 12:46   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 06/17] block: expect errors from bdrv_co_is_allocated Paolo Bonzini
2013-07-19 12:57   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 07/17] qemu-img: always probe the input image for allocated sectors Paolo Bonzini
2013-07-19 13:05   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 08/17] block: make bdrv_has_zero_init return false for copy-on-write-images Paolo Bonzini
2013-07-19 13:21   ` Eric Blake
2013-07-19 13:23     ` Paolo Bonzini
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 09/17] block: introduce bdrv_get_block_status API Paolo Bonzini
2013-07-19 13:43   ` Eric Blake
2013-07-25 12:13     ` Paolo Bonzini
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 10/17] block: define get_block_status return value Paolo Bonzini
2013-07-19  6:35   ` Peter Lieven
2013-07-19  9:14     ` Paolo Bonzini
2013-07-19  6:48   ` Peter Lieven
2013-07-19  9:12     ` Paolo Bonzini
2013-07-19  9:58     ` Paolo Bonzini
2013-07-19 10:04       ` Peter Lieven
2013-07-19 12:13         ` Paolo Bonzini
2013-07-19 13:06           ` Peter Lieven
2013-07-20  7:00             ` Paolo Bonzini
2013-07-23 21:18               ` Peter Lieven
2013-07-19 16:52   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 11/17] block: return get_block_status data and flags for formats Paolo Bonzini
2013-07-19 19:25   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 12/17] qemu-img: add a "map" subcommand Paolo Bonzini
2013-07-18  7:25   ` Fam Zheng
2013-07-18  8:55     ` Paolo Bonzini
2013-07-19 19:36   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 13/17] block: use bdrv_has_zero_init to return BDRV_BLOCK_ZERO Paolo Bonzini
2013-07-17 17:50   ` Peter Lieven
2013-07-19 19:37   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 14/17] raw-posix: return get_block_status data and flags Paolo Bonzini
2013-07-19 19:48   ` Eric Blake
2013-07-25 12:16     ` Paolo Bonzini
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 15/17] raw-posix: detect XFS unwritten extents Paolo Bonzini
2013-07-19 20:10   ` Eric Blake
2013-08-02 15:05   ` Christoph Hellwig
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 16/17] block: add default get_block_status implementation for protocols Paolo Bonzini
2013-07-19 20:11   ` Eric Blake
2013-07-16 16:29 ` [Qemu-devel] [PATCH v2 17/17] block: look for zero blocks in bs->file Paolo Bonzini
2013-07-19  7:33   ` Stefan Hajnoczi
2013-07-19 17:07     ` Paolo Bonzini
2013-07-23 21:18       ` Peter Lieven
2013-07-19 20:12   ` Eric Blake
2013-07-16 16:56 ` [Qemu-devel] [PATCH v2 00/17] Add qemu-img subcommand to dump file metadata Eric Blake
2013-07-16 16:57   ` Paolo Bonzini
2013-07-19 10:48     ` Wenchao Xia [this message]
2013-07-19 12:14       ` Paolo Bonzini
2013-07-20  0:19         ` Wenchao Xia
2013-07-18  8:17 ` Peter Lieven
2013-07-18  8:58   ` Paolo Bonzini
2013-07-19  4:45 ` Stefan Hajnoczi
2013-07-19  7:34 ` Stefan Hajnoczi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=51E91991.20000@linux.vnet.ibm.com \
    --to=xiawenc@linux.vnet.ibm.com \
    --cc=famz@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=pl@kamp.de \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).