qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] docs: qcow2 compat=1.1 is now the default
@ 2014-01-06  4:39 Stefan Hajnoczi
  2014-01-06 13:17 ` Eric Blake
  0 siblings, 1 reply; 3+ messages in thread
From: Stefan Hajnoczi @ 2014-01-06  4:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf

Commit 9117b47717ad208b12786ce88eacb013f9b3dd1c ("qcow2: Change default
for new images to compat=1.1") changed the default qcow2 image format
version but forgot to update qemu-doc.texi and qemu-img.texi.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 qemu-doc.texi | 8 ++++----
 qemu-img.texi | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/qemu-doc.texi b/qemu-doc.texi
index 185dd47..94681e1 100644
--- a/qemu-doc.texi
+++ b/qemu-doc.texi
@@ -536,11 +536,11 @@ support of multiple VM snapshots.
 Supported options:
 @table @code
 @item compat
-Determines the qcow2 version to use. @code{compat=0.10} uses the traditional
-image format that can be read by any QEMU since 0.10 (this is the default).
+Determines the qcow2 version to use. @code{compat=0.10} uses the
+traditional image format that can be read by any QEMU since 0.10.
 @code{compat=1.1} enables image format extensions that only QEMU 1.1 and
-newer understand. Amongst others, this includes zero clusters, which allow
-efficient copy-on-read for sparse images.
+newer understand (this is the default). Amongst others, this includes
+zero clusters, which allow efficient copy-on-read for sparse images.
 
 @item backing_file
 File name of a base image (see @option{create} subcommand)
diff --git a/qemu-img.texi b/qemu-img.texi
index be31191..62ed58c 100644
--- a/qemu-img.texi
+++ b/qemu-img.texi
@@ -391,11 +391,11 @@ support of multiple VM snapshots.
 Supported options:
 @table @code
 @item compat
-Determines the qcow2 version to use. @code{compat=0.10} uses the traditional
-image format that can be read by any QEMU since 0.10 (this is the default).
+Determines the qcow2 version to use. @code{compat=0.10} uses the
+traditional image format that can be read by any QEMU since 0.10.
 @code{compat=1.1} enables image format extensions that only QEMU 1.1 and
-newer understand. Amongst others, this includes zero clusters, which allow
-efficient copy-on-read for sparse images.
+newer understand (this is the default). Amongst others, this includes zero
+clusters, which allow efficient copy-on-read for sparse images.
 
 @item backing_file
 File name of a base image (see @option{create} subcommand)
-- 
1.8.4.2

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

* Re: [Qemu-devel] [PATCH] docs: qcow2 compat=1.1 is now the default
  2014-01-06  4:39 [Qemu-devel] [PATCH] docs: qcow2 compat=1.1 is now the default Stefan Hajnoczi
@ 2014-01-06 13:17 ` Eric Blake
  2014-01-07 17:09   ` Kevin Wolf
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Blake @ 2014-01-06 13:17 UTC (permalink / raw)
  To: Stefan Hajnoczi, qemu-devel; +Cc: Kevin Wolf

[-- Attachment #1: Type: text/plain, Size: 601 bytes --]

On 01/05/2014 09:39 PM, Stefan Hajnoczi wrote:
> Commit 9117b47717ad208b12786ce88eacb013f9b3dd1c ("qcow2: Change default
> for new images to compat=1.1") changed the default qcow2 image format
> version but forgot to update qemu-doc.texi and qemu-img.texi.
> 
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> ---
>  qemu-doc.texi | 8 ++++----
>  qemu-img.texi | 8 ++++----
>  2 files changed, 8 insertions(+), 8 deletions(-)

Reviewed-by: Eric Blake <eblake@redhat.com>

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]

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

* Re: [Qemu-devel] [PATCH] docs: qcow2 compat=1.1 is now the default
  2014-01-06 13:17 ` Eric Blake
@ 2014-01-07 17:09   ` Kevin Wolf
  0 siblings, 0 replies; 3+ messages in thread
From: Kevin Wolf @ 2014-01-07 17:09 UTC (permalink / raw)
  To: Eric Blake; +Cc: qemu-devel, Stefan Hajnoczi

[-- Attachment #1: Type: text/plain, Size: 615 bytes --]

Am 06.01.2014 um 14:17 hat Eric Blake geschrieben:
> On 01/05/2014 09:39 PM, Stefan Hajnoczi wrote:
> > Commit 9117b47717ad208b12786ce88eacb013f9b3dd1c ("qcow2: Change default
> > for new images to compat=1.1") changed the default qcow2 image format
> > version but forgot to update qemu-doc.texi and qemu-img.texi.
> > 
> > Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> > ---
> >  qemu-doc.texi | 8 ++++----
> >  qemu-img.texi | 8 ++++----
> >  2 files changed, 8 insertions(+), 8 deletions(-)
> 
> Reviewed-by: Eric Blake <eblake@redhat.com>

Thanks, applied to the block branch.

Kevin

[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]

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

end of thread, other threads:[~2014-01-07 17:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-06  4:39 [Qemu-devel] [PATCH] docs: qcow2 compat=1.1 is now the default Stefan Hajnoczi
2014-01-06 13:17 ` Eric Blake
2014-01-07 17:09   ` Kevin Wolf

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).