diff options
author | Max Reitz <mreitz@redhat.com> | 2014-09-03 00:25:07 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2014-10-23 15:34:02 +0200 |
commit | 17bd5f472754acd2458b53dc02a30d5651e6dd79 (patch) | |
tree | d8e77d116346cf9f284134985a9947e5840da0f0 /block/qcow2.h | |
parent | 234764eed1aab56a657a161e9a0c65730442e6f8 (diff) |
qcow2: Drop REFCOUNT_SHIFT
With BDRVQcowState.refcount_block_bits, we don't need REFCOUNT_SHIFT
anymore.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/qcow2.h')
-rw-r--r-- | block/qcow2.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/block/qcow2.h b/block/qcow2.h index 47cd4b3f76..577ccd1bf0 100644 --- a/block/qcow2.h +++ b/block/qcow2.h @@ -59,8 +59,6 @@ /* The cluster reads as all zeros */ #define QCOW_OFLAG_ZERO (1ULL << 0) -#define REFCOUNT_SHIFT 1 /* refcount size is 2 bytes */ - #define MIN_CLUSTER_BITS 9 #define MAX_CLUSTER_BITS 21 |