diff options
author | Kevin Wolf <kwolf@redhat.com> | 2010-08-31 15:08:03 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2010-09-08 12:39:22 +0200 |
commit | abed0762b6a20c968a4e08dff859feda36a594a1 (patch) | |
tree | 2571803e53c98d221a7201d7af9745a450e17483 /block.h | |
parent | 737f1fbd1d02bfb79e7b7e63659fb06d211a1a24 (diff) | |
download | qemu-abed0762b6a20c968a4e08dff859feda36a594a1.tar.gz qemu-abed0762b6a20c968a4e08dff859feda36a594a1.tar.bz2 qemu-abed0762b6a20c968a4e08dff859feda36a594a1.zip |
block: Fix BDRV_O_CACHE_MASK
BDRV_O_CACHE_MASK should have been extended when cache=unsafe introduced a new
flag BDRV_O_NO_FLUSH. There are currently no users that would change their
behaviour because of this, but let's clean it up before things break.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block.h')
-rw-r--r-- | block.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ typedef struct QEMUSnapshotInfo { #define BDRV_O_NO_BACKING 0x0100 /* don't open the backing file */ #define BDRV_O_NO_FLUSH 0x0200 /* disable flushing on this disk */ -#define BDRV_O_CACHE_MASK (BDRV_O_NOCACHE | BDRV_O_CACHE_WB) +#define BDRV_O_CACHE_MASK (BDRV_O_NOCACHE | BDRV_O_CACHE_WB | BDRV_O_NO_FLUSH) #define BDRV_SECTOR_BITS 9 #define BDRV_SECTOR_SIZE (1ULL << BDRV_SECTOR_BITS) |