mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-07 14:59:10 +00:00
qcow2: Restore L1 entry on l2_allocate failure
If writing the L1 table to disk failed, we need to restore its old content in memory to avoid inconsistencies. Reported-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
dd5b0d71d6
commit
68dba0bf45
@ -285,6 +285,7 @@ static int l2_allocate(BlockDriverState *bs, int l1_index, uint64_t **table)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
|
s->l1_table[l1_index] = old_l2_offset;
|
||||||
qcow2_l2_cache_reset(bs);
|
qcow2_l2_cache_reset(bs);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user