[Qemu-devel] [PATCH v2 0/2] block/vhdx: Use IEC binary prefixes from "qemu/units.h"

Stefano Garzarella posted 2 patches 5 years ago
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test asan passed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190327095634.53038-1-sgarzare@redhat.com
Maintainers: Jeff Cody <codyprime@gmail.com>, Max Reitz <mreitz@redhat.com>, Kevin Wolf <kwolf@redhat.com>
block/vhdx-log.c |  2 +-
block/vhdx.c     |  7 ++++---
block/vhdx.h     | 16 +++++++---------
3 files changed, 12 insertions(+), 13 deletions(-)
[Qemu-devel] [PATCH v2 0/2] block/vhdx: Use IEC binary prefixes from "qemu/units.h"
Posted by Stefano Garzarella 5 years ago
v2:
- Included units.h directly in the vhdx.h header file (John, Philippe)
- Added a comment next to DEFAULT_LOG_SIZE definition (Kevin)
- Added a second patch where I fixed some size constants using IEC
  binary prefixes.
  Note: checkpatch is not happy about a change in vhdx.h but all the comments
  in that file doesn't respect the new coding style so I left the comment as is

Stefano Garzarella (2):
  block/vhdx: Remove redundant IEC binary prefixes definition
  block/vhdx: Use IEC binary prefixes for size constants

 block/vhdx-log.c |  2 +-
 block/vhdx.c     |  7 ++++---
 block/vhdx.h     | 16 +++++++---------
 3 files changed, 12 insertions(+), 13 deletions(-)

-- 
2.20.1


Re: [Qemu-devel] [PATCH v2 0/2] block/vhdx: Use IEC binary prefixes from "qemu/units.h"
Posted by Kevin Wolf 5 years ago
Am 27.03.2019 um 10:56 hat Stefano Garzarella geschrieben:
> v2:
> - Included units.h directly in the vhdx.h header file (John, Philippe)
> - Added a comment next to DEFAULT_LOG_SIZE definition (Kevin)
> - Added a second patch where I fixed some size constants using IEC
>   binary prefixes.
>   Note: checkpatch is not happy about a change in vhdx.h but all the comments
>   in that file doesn't respect the new coding style so I left the comment as is

Thanks, applied to the block-next branch for 4.1.

Kevin