mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
qcow2: Use int64_t for in-memory reftable size
Use int64_t for the entry count of the in-memory refcount table throughout the check functions. Signed-off-by: Max Reitz <mreitz@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
057a3fe57e
commit
713d9675e0
1 changed files with 3 additions and 3 deletions
|
@ -1084,7 +1084,7 @@ fail:
|
||||||
static void inc_refcounts(BlockDriverState *bs,
|
static void inc_refcounts(BlockDriverState *bs,
|
||||||
BdrvCheckResult *res,
|
BdrvCheckResult *res,
|
||||||
uint16_t *refcount_table,
|
uint16_t *refcount_table,
|
||||||
int refcount_table_size,
|
int64_t refcount_table_size,
|
||||||
int64_t offset, int64_t size)
|
int64_t offset, int64_t size)
|
||||||
{
|
{
|
||||||
BDRVQcowState *s = bs->opaque;
|
BDRVQcowState *s = bs->opaque;
|
||||||
|
@ -1127,7 +1127,7 @@ enum {
|
||||||
* error occurred.
|
* error occurred.
|
||||||
*/
|
*/
|
||||||
static int check_refcounts_l2(BlockDriverState *bs, BdrvCheckResult *res,
|
static int check_refcounts_l2(BlockDriverState *bs, BdrvCheckResult *res,
|
||||||
uint16_t *refcount_table, int refcount_table_size, int64_t l2_offset,
|
uint16_t *refcount_table, int64_t refcount_table_size, int64_t l2_offset,
|
||||||
int flags)
|
int flags)
|
||||||
{
|
{
|
||||||
BDRVQcowState *s = bs->opaque;
|
BDRVQcowState *s = bs->opaque;
|
||||||
|
@ -1237,7 +1237,7 @@ fail:
|
||||||
static int check_refcounts_l1(BlockDriverState *bs,
|
static int check_refcounts_l1(BlockDriverState *bs,
|
||||||
BdrvCheckResult *res,
|
BdrvCheckResult *res,
|
||||||
uint16_t *refcount_table,
|
uint16_t *refcount_table,
|
||||||
int refcount_table_size,
|
int64_t refcount_table_size,
|
||||||
int64_t l1_table_offset, int l1_size,
|
int64_t l1_table_offset, int l1_size,
|
||||||
int flags)
|
int flags)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue