diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-07-25 20:49:34 +0000 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2010-07-26 13:39:40 +0200 |
commit | 199630b62ec7cc5efd6f860ff545b449c7b5cdb8 (patch) | |
tree | d795207bfcc0327f4f7c032bfdf5262725a9e187 /block.c | |
parent | c98ac35d87fbd41618c1f02c64bcd4019e42513e (diff) | |
download | qemu-199630b62ec7cc5efd6f860ff545b449c7b5cdb8.zip |
Fix -snapshot deleting images on disk change
Block device change command did not copy BDRV_O_SNAPSHOT flag. Thus
the new image did not have this flag and the file got deleted during
opening.
Fix by copying BDRV_O_SNAPSHOT flag.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1811,6 +1811,11 @@ int bdrv_can_snapshot(BlockDriverState *bs) return 1; } +int bdrv_is_snapshot(BlockDriverState *bs) +{ + return !!(bs->open_flags & BDRV_O_SNAPSHOT); +} + BlockDriverState *bdrv_snapshots(void) { BlockDriverState *bs; |