Age | Commit message (Expand) | Author | Files | Lines |
2023-11-08 | qcow2: Take locks for accessing bs->file | Kevin Wolf | 1 | -12/+13 |
2023-11-06 | qcow2: keep reference on zeroize with discard-no-unref enabled | Jean-Louis Dupond | 1 | -4/+18 |
2023-10-12 | qcow2: Mark qcow2_signal_corruption() and callers GRAPH_RDLOCK | Kevin Wolf | 1 | -31/+31 |
2023-06-28 | block: use bdrv_co_debug_event in coroutine context | Paolo Bonzini | 1 | -6/+6 |
2023-06-28 | qcow2: mark more functions as coroutine_fns and GRAPH_RDLOCK | Paolo Bonzini | 1 | -6/+6 |
2023-06-05 | qcow2: add discard-no-unref option | Jean-Louis Dupond | 1 | -4/+28 |
2023-04-25 | qcow2: mark various functions as coroutine_fn and GRAPH_RDLOCK | Paolo Bonzini | 1 | -8/+13 |
2023-02-23 | block: Mark public read/write functions GRAPH_RDLOCK | Kevin Wolf | 1 | -4/+3 |
2023-02-23 | block: Mark read/write in block/io.c GRAPH_RDLOCK | Kevin Wolf | 1 | -5/+5 |
2023-01-20 | include/block: Untangle inclusion loops | Markus Armbruster | 1 | -0/+1 |
2022-10-27 | qcow2: switch to *_co_* functions | Alberto Faria | 1 | -4/+4 |
2022-10-27 | qcow2: manually add more coroutine_fn annotations | Paolo Bonzini | 1 | -9/+12 |
2022-10-07 | qcow2: add missing coroutine_fn annotations | Paolo Bonzini | 1 | -9/+12 |
2022-07-12 | block: Change bdrv_{pread,pwrite,pwrite_sync}() param order | Alberto Faria | 1 | -11/+11 |
2022-07-12 | block: Add a 'flags' param to bdrv_{pread,pwrite,pwrite_sync}() | Alberto Faria | 1 | -10/+11 |
2022-03-07 | osdep: Move memalign-related functions to their own header | Peter Maydell | 1 | -0/+1 |
2021-10-15 | qcow2: Silence clang -m32 compiler warning | Hanna Reitz | 1 | -1/+2 |
2021-09-29 | block: use int64_t instead of uint64_t in driver read handlers | Vladimir Sementsov-Ogievskiy | 1 | -1/+13 |
2021-09-15 | qcow2: introduce qcow2_parse_compressed_l2_entry() helper | Vladimir Sementsov-Ogievskiy | 1 | -0/+15 |
2021-09-15 | qcow2: compressed read: simplify cluster descriptor passing | Vladimir Sementsov-Ogievskiy | 1 | -3/+2 |
2021-09-15 | qcow2: handle_dependencies(): relax conflict detection | Vladimir Sementsov-Ogievskiy | 1 | -0/+11 |
2021-09-15 | qcow2: refactor handle_dependencies() loop body | Vladimir Sementsov-Ogievskiy | 1 | -21/+28 |
2020-11-24 | qcow2: Fix corruption on write_zeroes with MAY_UNMAP | Maxim Levitsky | 1 | -3/+6 |
2020-11-09 | qcow2: Document and enforce the QCowL2Meta invariants | Alberto Garcia | 1 | -2/+3 |
2020-10-02 | qcow2: Use L1E_SIZE in qcow2_write_l1_entry() | Alberto Garcia | 1 | -2/+2 |
2020-09-15 | qcow2: Convert qcow2_alloc_cluster_offset() into qcow2_alloc_host_offset() | Alberto Garcia | 1 | -4/+10 |
2020-09-15 | qcow2: Make qcow2_free_any_clusters() free only one cluster | Alberto Garcia | 1 | -3/+3 |
2020-09-15 | qcow2: Rewrite the documentation of qcow2_alloc_cluster_offset() | Alberto Garcia | 1 | -10/+14 |
2020-09-15 | qcow2: Fix removal of list members from BDRVQcow2State.cluster_allocs | Alberto Garcia | 1 | -3/+0 |
2020-09-15 | qcow2: Use macros for the L1, refcount and bitmap table entry sizes | Alberto Garcia | 1 | -12/+12 |
2020-09-10 | block/qcow2-cluster: Add missing "fallthrough" annotation | Thomas Huth | 1 | -0/+1 |
2020-08-25 | qcow2: Assert that expand_zero_clusters_in_l1() does not support subclusters | Alberto Garcia | 1 | -2/+12 |
2020-08-25 | qcow2: Add prealloc field to QCowL2Meta | Alberto Garcia | 1 | -1/+1 |
2020-08-25 | qcow2: Add subcluster support to qcow2_co_pwrite_zeroes() | Alberto Garcia | 1 | -6/+75 |
2020-08-25 | qcow2: Clear the L2 bitmap when allocating a compressed cluster | Alberto Garcia | 1 | -0/+3 |
2020-08-25 | qcow2: Update L2 bitmap in qcow2_alloc_cluster_link_l2() | Alberto Garcia | 1 | -0/+18 |
2020-08-25 | qcow2: Add subcluster support to discard_in_l2_slice() | Alberto Garcia | 1 | -29/+23 |
2020-08-25 | qcow2: Add subcluster support to zero_in_l2_slice() | Alberto Garcia | 1 | -18/+20 |
2020-08-25 | qcow2: Add subcluster support to qcow2_get_host_offset() | Alberto Garcia | 1 | -72/+78 |
2020-08-25 | qcow2: Add subcluster support to calculate_l2_meta() | Alberto Garcia | 1 | -34/+133 |
2020-08-25 | qcow2: Replace QCOW2_CLUSTER_* with QCOW2_SUBCLUSTER_* | Alberto Garcia | 1 | -5/+5 |
2020-08-25 | qcow2: Add cluster type parameter to qcow2_get_host_offset() | Alberto Garcia | 1 | -4/+7 |
2020-08-25 | qcow2: Add qcow2_get_subcluster_range_type() | Alberto Garcia | 1 | -0/+51 |
2020-08-25 | qcow2: Add l2_entry_size() | Alberto Garcia | 1 | -6/+6 |
2020-08-25 | qcow2: Add get_l2_entry() and set_l2_entry() | Alberto Garcia | 1 | -30/+33 |
2020-08-25 | qcow2: Process QCOW2_CLUSTER_ZERO_ALLOC clusters in handle_copied() | Alberto Garcia | 1 | -113/+139 |
2020-08-25 | qcow2: Split cluster_needs_cow() out of count_cow_clusters() | Alberto Garcia | 1 | -15/+19 |
2020-08-25 | qcow2: Add calculate_l2_meta() | Alberto Garcia | 1 | -24/+53 |
2020-08-25 | qcow2: Convert qcow2_get_cluster_offset() into qcow2_get_host_offset() | Alberto Garcia | 1 | -18/+23 |
2020-08-05 | qcow2-cluster: Fix integer left shift error in qcow2_alloc_cluster_link_l2() | Tuguoyi | 1 | -1/+1 |