mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
qcow2: Add get_l2_entry() and set_l2_entry()
The size of an L2 entry is 64 bits, but if we want to have subclusters we need extended L2 entries. This means that we have to access L2 tables and slices differently depending on whether an image has extended L2 entries or not. This patch replaces all l2_slice[] accesses with calls to get_l2_entry() and set_l2_entry(). Signed-off-by: Alberto Garcia <berto@igalia.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <9586363531fec125ba1386e561762d3e4224e9fc.1594396418.git.berto@igalia.com> Signed-off-by: Max Reitz <mreitz@redhat.com>
This commit is contained in:
parent
57538c864f
commit
12c6aebedf
3 changed files with 54 additions and 38 deletions
|
@ -510,6 +510,18 @@ typedef enum QCow2MetadataOverlap {
|
|||
|
||||
#define INV_OFFSET (-1ULL)
|
||||
|
||||
static inline uint64_t get_l2_entry(BDRVQcow2State *s, uint64_t *l2_slice,
|
||||
int idx)
|
||||
{
|
||||
return be64_to_cpu(l2_slice[idx]);
|
||||
}
|
||||
|
||||
static inline void set_l2_entry(BDRVQcow2State *s, uint64_t *l2_slice,
|
||||
int idx, uint64_t entry)
|
||||
{
|
||||
l2_slice[idx] = cpu_to_be64(entry);
|
||||
}
|
||||
|
||||
static inline bool has_data_file(BlockDriverState *bs)
|
||||
{
|
||||
BDRVQcow2State *s = bs->opaque;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue