summaryrefslogtreecommitdiff
path: root/block/parallels.c
AgeCommit message (Expand)AuthorFilesLines
2017-04-03block/parallels: Avoid overflowsMax Reitz1-6/+13
2017-03-28parallels: wrong call to bdrv_truncateDenis V. Lunev1-1/+2
2017-03-21parallels: fix default options parsingEdgar Kaziahmedov1-1/+1
2017-02-28block: Add BDRV_O_RESIZE for blk_new_open()Kevin Wolf1-1/+2
2017-02-28block: Request child permissions in format driversKevin Wolf1-0/+1
2017-02-24block: Attach bs->file only during .bdrv_open()Kevin Wolf1-0/+6
2017-02-24block: Pass BdrvChild to bdrv_truncate()Kevin Wolf1-4/+4
2016-08-05block/parallels: check new image sizeKlim Kireev1-0/+5
2016-07-05block: Convert bdrv_pwrite_zeroes() to BdrvChildKevin Wolf1-1/+1
2016-07-05block: Convert bdrv_pwrite(v/_sync) to BdrvChildKevin Wolf1-3/+3
2016-07-05block: Convert bdrv_pread(v) to BdrvChildKevin Wolf1-2/+2
2016-07-05block: Convert bdrv_co_writev() to BdrvChildKevin Wolf1-1/+1
2016-07-05block: Convert bdrv_co_readv() to BdrvChildKevin Wolf1-1/+1
2016-06-08block: Switch bdrv_write_zeroes() to byte interfaceEric Blake1-1/+3
2016-06-07parallels: Use DIV_ROUND_UPLaurent Vivier1-1/+1
2016-05-25block: Rename blk_write_zeroes()Eric Blake1-2/+2
2016-05-19qemu-common: stop including qemu/bswap.h from qemu-common.hPaolo Bonzini1-0/+1
2016-05-12block: Switch blk_*write_zeroes() to byte interfaceEric Blake1-1/+2
2016-05-12block: Allow BDRV_REQ_FUA through blk_pwrite()Eric Blake1-1/+1
2016-03-30block: Always set writeback mode in blk_new_open()Kevin Wolf1-2/+1
2016-03-22include/qemu/osdep.h: Don't include qapi/error.hMarkus Armbruster1-0/+1
2016-03-17blockdev: Split monitor reference from BB creationMax Reitz1-1/+1
2016-03-14parallels: Use BB functions in .bdrv_create()Kevin Wolf1-11/+14
2016-03-14block: Use writeback in .bdrv_create() implementationsKevin Wolf1-1/+2
2016-02-02parallels: Assign bs->file->bs to file in parallels_co_get_block_statusFam Zheng1-0/+1
2016-02-02block: Add "file" output parameter to block status query functionsFam Zheng1-1/+1
2016-01-20block: Clean up includesPeter Maydell1-0/+1
2015-12-17qapi: Don't let implicit enum MAX member collideEric Blake1-2/+2
2015-11-24parallels: dirty BAT properly for continuous allocationsVladimir Sementsov-Ogievskiy1-1/+1
2015-10-16block: Convert bs->file to BdrvChildKevin Wolf1-18/+20
2015-09-14block: Drop drv parameter from bdrv_open()Max Reitz1-1/+1
2015-05-22block/parallels: improve image writing performance furtherDenis V. Lunev1-20/+23
2015-05-22block/parallels: optimize linear image expansionDenis V. Lunev1-10/+32
2015-05-22block/parallels: add prealloc-mode and prealloc-size open paramemetsDenis V. Lunev1-6/+77
2015-05-22block/parallels: delay writing to BAT till bdrv_co_flush_to_osDenis V. Lunev1-6/+44
2015-05-22block/parallels: create bat_entry_off helperDenis V. Lunev1-6/+9
2015-05-22block/parallels: improve image reading performanceDenis V. Lunev1-5/+31
2015-05-22block/parallels: implement incorrect close detectionDenis V. Lunev1-0/+50
2015-05-22block/parallels: implement parallels_check method of block driverDenis V. Lunev1-0/+85
2015-05-22block/parallels: move parallels_open/probe to the very end of the fileDenis V. Lunev1-93/+98
2015-05-22block/parallels: read parallels image header and BAT into single bufferDenis V. Lunev1-7/+17
2015-05-22block/parallels: keep BAT bitmap data in little endian in memoryDenis V. Lunev1-12/+5
2015-05-22block/parallels: create bat2sect helperDenis V. Lunev1-3/+9
2015-05-22block/parallels: rename catalog_ names to bat_Denis V. Lunev1-28/+30
2015-05-22parallels: change copyright information in the image headerDenis V. Lunev1-1/+5
2015-05-22block/parallels: support parallels image creationDenis V. Lunev1-0/+97
2015-05-22block/parallels: _co_writev callback for Parallels formatDenis V. Lunev1-2/+88
2015-05-22block/parallels: mark parallels format driver as zero initedDenis V. Lunev1-0/+1
2015-05-22block/parallels: replace magic constants 4, 64 with proper sizeofsDenis V. Lunev1-4/+4
2015-05-22block/parallels: provide _co_readv routine for parallels format driverDenis V. Lunev1-21/+33