summaryrefslogtreecommitdiff
path: root/block/qcow2.h
diff options
context:
space:
mode:
authorMax Reitz <mreitz@redhat.com>2013-09-03 10:09:53 +0200
committerKevin Wolf <kwolf@redhat.com>2013-09-12 10:12:46 +0200
commitb6481f376bc65894910dd98db3f299d698817106 (patch)
treeb5c9a01533dac47f1ae3ecd569cc6f41227a719e /block/qcow2.h
parent32b6444d23d0ff618d73e5b766600cd258066169 (diff)
downloadqemu-b6481f376bc65894910dd98db3f299d698817106.tar.gz
qcow2: Save refcount order in BDRVQcowState
Save the image refcount order in BDRVQcowState. This will be relevant for future code supporting different refcount orders than four and also for code that needs to verify a certain refcount order for an opened image. Signed-off-by: Max Reitz <mreitz@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/qcow2.h')
-rw-r--r--block/qcow2.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/block/qcow2.h b/block/qcow2.h
index 48080fdc03..bea6ddb43a 100644
--- a/block/qcow2.h
+++ b/block/qcow2.h
@@ -199,6 +199,7 @@ typedef struct BDRVQcowState {
int flags;
int qcow_version;
bool use_lazy_refcounts;
+ int refcount_order;
bool discard_passthrough[QCOW2_DISCARD_MAX];