summaryrefslogtreecommitdiff
path: root/block/qcow2-cluster.c
AgeCommit message (Expand)AuthorFilesLines
2018-03-09qcow2: Check L1 table parameters in qcow2_expand_zero_clusters()Alberto Garcia1-7/+17
2018-03-02qcow2: Replace align_offset() with ROUND_UP()Alberto Garcia1-2/+2
2018-02-13qcow2: Rename l2_table in count_cow_clusters()Alberto Garcia1-2/+2
2018-02-13qcow2: Rename l2_table in count_contiguous_clusters_unallocated()Alberto Garcia1-3/+3
2018-02-13qcow2: Rename l2_table in count_contiguous_clusters()Alberto Garcia1-4/+4
2018-02-13qcow2: Rename l2_table in qcow2_alloc_compressed_cluster_offset()Alberto Garcia1-8/+8
2018-02-13qcow2: Update expand_zero_clusters_in_l1() to support L2 slicesAlberto Garcia1-23/+28
2018-02-13qcow2: Prepare expand_zero_clusters_in_l1() for adding L2 slice supportAlberto Garcia1-91/+96
2018-02-13qcow2: Read refcount before L2 table in expand_zero_clusters_in_l1()Alberto Garcia1-6/+6
2018-02-13qcow2: Update zero_single_l2() to support L2 slicesAlberto Garcia1-14/+14
2018-02-13qcow2: Update discard_single_l2() to support L2 slicesAlberto Garcia1-16/+16
2018-02-13qcow2: Update handle_alloc() to support L2 slicesAlberto Garcia1-9/+9
2018-02-13qcow2: Update handle_copied() to support L2 slicesAlberto Garcia1-8/+8
2018-02-13qcow2: Update qcow2_alloc_cluster_link_l2() to support L2 slicesAlberto Garcia1-8/+8
2018-02-13qcow2: Update qcow2_get_cluster_offset() to support L2 slicesAlberto Garcia1-15/+15
2018-02-13qcow2: Update get_cluster_table() to support L2 slicesAlberto Garcia1-8/+8
2018-02-13qcow2: Refactor get_cluster_table()Alberto Garcia1-14/+7
2018-02-13qcow2: Update l2_allocate() to support L2 slicesAlberto Garcia1-22/+34
2018-02-13qcow2: Prepare l2_allocate() for adding L2 slice supportAlberto Garcia1-24/+29
2018-02-13qcow2: Update l2_load() to support L2 slicesAlberto Garcia1-11/+17
2018-02-13qcow2: Add offset_to_l1_index()Alberto Garcia1-2/+2
2018-02-13qcow2: Remove BDS parameter from qcow2_cache_put()Alberto Garcia1-14/+14
2018-02-13qcow2: Remove BDS parameter from qcow2_cache_entry_mark_dirty()Alberto Garcia1-6/+6
2018-02-13qcow2: Fix documentation of get_cluster_table()Alberto Garcia1-2/+1
2018-02-13qcow2: Use g_try_realloc() in qcow2_expand_zero_clusters()Alberto Garcia1-1/+9
2018-02-09Include qapi/error.h exactly where neededMarkus Armbruster1-1/+0
2017-11-17qcow2: Unaligned zero cluster in handle_alloc()Max Reitz1-1/+12
2017-11-14qcow2: Prevent allocating L2 tables at offset 0Alberto Garcia1-0/+8
2017-10-26block: Convert bdrv_get_block_status() to bytesEric Blake1-1/+1
2017-10-06block: convert qcrypto_block_encrypt|decrypt to take bytes offsetDaniel P. Berrange1-5/+3
2017-09-26qcow2: add shrink image supportPavel Butsykin1-0/+50
2017-08-31Merge remote-tracking branch 'remotes/elmarco/tags/tidy-pull-request' into st...Peter Maydell1-1/+1
2017-08-31qcow2: use DIV_ROUND_UPMarc-André Lureau1-1/+1
2017-08-30qcow2: allocate cluster_cache/cluster_data on demandStefan Hajnoczi1-0/+17
2017-07-11qcow2: add support for LUKS encryption formatDaniel P. Berrange1-5/+9
2017-07-11qcow2: convert QCow2 to use QCryptoBlock for encryptionDaniel P. Berrange1-44/+3
2017-07-11qcow2: make qcow2_encrypt_sectors encrypt in placeDaniel P. Berrange1-11/+6
2017-06-26qcow2: Use offset_into_cluster() and offset_to_l2_index()Alberto Garcia1-2/+2
2017-06-26qcow2: Merge the writing of the COW regions with the guest dataAlberto Garcia1-10/+30
2017-06-26qcow2: Pass a QEMUIOVector to do_perform_cow_{read,write}()Alberto Garcia1-27/+24
2017-06-26qcow2: Allow reading both COW regions with only one requestAlberto Garcia1-13/+38
2017-06-26qcow2: Split do_perform_cow() into _read(), _encrypt() and _write()Alberto Garcia1-30/+87
2017-06-26qcow2: Make perform_cow() call do_perform_cow() twiceAlberto Garcia1-14/+22
2017-06-26qcow2: Use unsigned int for both members of Qcow2COWRegionAlberto Garcia1-2/+2
2017-06-26qcow2: Remove unused Error variable in do_perform_cow()Alberto Garcia1-3/+1
2017-05-29block: Tweak error message related to qemu-img amendEric Blake1-1/+2
2017-05-11qcow2: Discard/zero clusters by byte countEric Blake1-20/+22
2017-05-11qcow2: Assert that cluster operations are alignedEric Blake1-4/+11
2017-05-11qcow2: Optimize zero_single_l2() to minimize L2 churnEric Blake1-2/+13
2017-05-11qcow2: Make distinction between zero cluster types obviousEric Blake1-49/+30