]> git.proxmox.com Git - mirror_qemu.git/commit
qemu-img: fix rebase src_cache option documentation
authorStefan Hajnoczi <stefanha@redhat.com>
Tue, 2 Sep 2014 10:01:03 +0000 (11:01 +0100)
committerStefan Hajnoczi <stefanha@redhat.com>
Mon, 8 Sep 2014 10:12:43 +0000 (11:12 +0100)
commit3ba6796d080a90440573ef29d657e4902be7e238
tree8e49642e402422ed27be414cf482e63552022975
parentbb87fdf871d321895b8f5c481977df7a3f74a765
qemu-img: fix rebase src_cache option documentation

The src_cache option (-T) specifies the cache mode for backing files.
It applies both the image's old backing file as well as the new backing
file:

  ret = bdrv_open(&bs_old_backing, backing_name, NULL, NULL, src_flags,
                  old_backing_drv, &local_err);
  if (ret) {
      ...
  }
  if (out_baseimg[0]) {
      bs_new_backing = bdrv_new("new_backing", &error_abort);
      ret = bdrv_open(&bs_new_backing, out_baseimg, NULL, NULL, src_flags,
                      new_backing_drv, &local_err);
      if (ret) {
          ...
      }
  }

The documentation only mentions the new backing file but it really
applies to both.

Suggested-by: Jeff Nelson <jenelson@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
qemu-img.texi