qemu-img rebase
authorKevin Wolf <kwolf@redhat.com>
Tue, 12 Jan 2010 11:55:18 +0000 (12:55 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Wed, 13 Jan 2010 23:14:15 +0000 (17:14 -0600)
commit8cd7c7d26ce7228a41d8dd9d28153bae3696f093
tree3577bc6f53775f5c690313e29097396887a07ecc
parent3fc8b42d3b9c799c9d1b8211ad60bd63b35c9e9f
qemu-img rebase

This adds a rebase subcommand to qemu-img which allows to change the backing
file of an image.

In default mode, both the current and the new backing file need to exist, and
after the rebase, the COW image is guaranteed to have the same guest visible
content as before. To achieve this, old and new backing file are compared and,
if necessary, data is copied from the old backing file into the COW image.

With -u an unsafe mode is enabled that doesn't require the backing files to
exist. It merely changes the backing file reference in the COW image. This is
useful for renaming or moving the backing file. The user is responsible to make
sure that the new backing file has no changes compared to the old one, or
corruption may occur.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
qemu-img-cmds.hx
qemu-img.c