Re: [Qemu-block] [PATCH v2 0/5] Remove bdrv_read() and bdrv_write()

2019-05-08 Thread Kevin Wolf
Am 01.05.2019 um 20:13 hat Alberto Garcia geschrieben: > Hi, > > this API only had a few users left so it can be easily removed. Thanks, applied to the block branch. Kevin

[Qemu-block] [PATCH v2 0/5] Remove bdrv_read() and bdrv_write()

2019-05-01 Thread Alberto Garcia
Hi, this API only had a few users left so it can be easily removed. Regards, Berto v2: - Patch 2: Add QEMU_BUILD_BUG_ON(sizeof(VdiHeader) != 512) [Kevin] Correct size parameter in bdrv_pwrite() call [Kevin] Return 0 on success, never a positive number [Kevin] - Patch 3: Ch