mbox series

[kvmtool,0/4] kvmtool: clang/GCC9 fixes

Message ID 20190503171544.260901-1-andre.przywara@arm.com (mailing list archive)
Headers show
Series kvmtool: clang/GCC9 fixes | expand

Message

Andre Przywara May 3, 2019, 5:15 p.m. UTC
When compiling kvmtool with clang (works only on aarch64/arm), it turned
up some interesting warnings. One of those is also issued by GCC9.

This series fixes them. More details in each commit message.

Please have look!

Cheers,
Andre.

Andre Przywara (4):
  vfio: remove spurious ampersand
  vfio: remove unneeded test
  vfio: rework vfio_irq_set payload setting
  virtio/blk: Avoid taking pointer to packed struct

 vfio/pci.c   | 28 ++++++++++++++--------------
 virtio/blk.c |  4 ++--
 2 files changed, 16 insertions(+), 16 deletions(-)

Comments

Will Deacon May 29, 2019, 3:02 p.m. UTC | #1
On Fri, May 03, 2019 at 06:15:40PM +0100, Andre Przywara wrote:
> When compiling kvmtool with clang (works only on aarch64/arm), it turned
> up some interesting warnings. One of those is also issued by GCC9.
> 
> This series fixes them. More details in each commit message.

Thanks, pushed out now.

Will