aboutsummaryrefslogtreecommitdiff
path: root/block/parallels.c
AgeCommit message (Expand)AuthorFilesLines
2023-11-08block: Protect bs->file with graph_lockKevin Wolf1-2/+4
2023-11-08block: Take graph lock for most of .bdrv_openKevin Wolf1-2/+2
2023-11-08block: Add missing GRAPH_RDLOCK annotationsKevin Wolf1-8/+4
2023-11-01cpr: relax blockdev migration blockersSteve Sistare1-1/+1
2023-10-20migration: simplify blockersSteve Sistare1-6/+3
2023-10-12block: Mark bdrv_get_parent_name() and callers GRAPH_RDLOCKKevin Wolf1-0/+3
2023-09-21parallels: naive implementation of parallels_co_pwrite_zeroesDenis V. Lunev1-0/+14
2023-09-21parallels: naive implementation of parallels_co_pdiscardDenis V. Lunev1-0/+46
2023-09-21parallels: improve readability of allocate_clustersDenis V. Lunev1-8/+5
2023-09-21parallels: naive implementation of allocate_clusters with used bitmapDenis V. Lunev1-12/+39
2023-09-21parallels: update used bitmap in allocate_clusterDenis V. Lunev1-0/+14
2023-09-21parallels: accept multiple clusters in mark_used()Denis V. Lunev1-8/+10
2023-09-21parallels: collect bitmap of used clusters at openDenis V. Lunev1-0/+73
2023-09-21parallels: fix broken parallels_check_data_off()Denis V. Lunev1-0/+1
2023-09-21parallels: create mark_used() helper which sets bit in used bitmapDenis V. Lunev1-9/+25
2023-09-21parallels: refactor path when we need to re-check image in parallels_openDenis V. Lunev1-11/+10
2023-09-21parallels: return earlier from parallels_open() function on errorDenis V. Lunev1-9/+5
2023-09-21parallels: return earler in fail_format branch in parallels_open()Denis V. Lunev1-1/+2
2023-09-21parallels: invent parallels_opts_prealloc() helper to parse prealloc optsDenis V. Lunev1-28/+44
2023-09-21parallels: fix memory leak in parallels_open()Denis V. Lunev1-0/+1
2023-09-21parallels: mark driver as supporting CBTDenis V. Lunev1-0/+6
2023-09-21parallels: fix formatting in bdrv_parallels initializationDenis V. Lunev1-17/+19
2023-09-06parallels: Add data_off repairing to parallels_open()Alexander Ivanov1-13/+16
2023-09-06parallels: Add data_off checkAlexander Ivanov1-0/+80
2023-09-06parallels: Use bdrv_co_getlength() in parallels_check_outside_image()Alexander Ivanov1-1/+1
2023-09-06parallels: Image repairing in parallels_open()Alexander Ivanov1-32/+38
2023-09-06parallels: Add checking and repairing duplicate offsets in BATAlexander Ivanov1-0/+144
2023-09-06parallels: Add data_start field to BDRVParallelsStateAlexander Ivanov1-3/+4
2023-09-06parallels: Add "explicit" argument to parallels_check_leak()Alexander Ivanov1-7/+12
2023-09-06parallels: Check if data_end greater than the file sizeAlexander Ivanov1-0/+5
2023-09-06parallels: Incorrect data end calculation in parallels_open()Alexander Ivanov1-2/+2
2023-09-06parallels: Fix comments formatting inside parallels driverAlexander Ivanov1-6/+12
2023-06-28block: use bdrv_co_getlength in coroutine contextPaolo Bonzini1-2/+2
2023-06-05parallels: Incorrect condition in out-of-image checkAlexander Ivanov1-1/+1
2023-06-05parallels: Replace qemu_co_mutex_lock by WITH_QEMU_LOCK_GUARDAlexander Ivanov1-19/+14
2023-06-05parallels: Move statistic collection to a separate functionAlexander Ivanov1-22/+30
2023-06-05parallels: Move check of leaks to a separate functionAlexander Ivanov1-29/+45
2023-06-05parallels: Fix statistics calculationAlexander Ivanov1-1/+5
2023-06-05parallels: Move check of cluster outside image to a separate functionAlexander Ivanov1-26/+49
2023-06-05parallels: Move check of unclean image to a separate functionAlexander Ivanov1-10/+21
2023-06-05parallels: Use generic infrastructure for BAT writing in parallels_co_check()Alexander Ivanov1-13/+10
2023-06-05parallels: create parallels_set_bat_entry_helper() to assign BAT valueAlexander Ivanov1-3/+8
2023-06-05parallels: Fix image_end_offset and data_end after out-of-image checkAlexander Ivanov1-1/+7
2023-06-05parallels: Fix high_off calculation in parallels_co_check()Alexander Ivanov1-2/+2
2023-06-05parallels: Out of image offset in BAT leads to image inflationAlexander Ivanov1-0/+17
2023-05-19block: Call .bdrv_co_create(_opts) unlockedKevin Wolf1-3/+3
2023-05-10block: bdrv/blk_co_unref() for calls in coroutine contextKevin Wolf1-3/+3
2023-02-23block: Mark bdrv_co_create() and callers GRAPH_RDLOCKKevin Wolf1-4/+3
2023-02-23block: Mark public read/write functions GRAPH_RDLOCKKevin Wolf1-3/+5
2023-02-23block: Mark read/write in block/io.c GRAPH_RDLOCKKevin Wolf1-5/+3