qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/8] VFIO updates 2016-03-09
@ 2016-03-09 19:53 Alex Williamson
  2016-03-09 19:53 ` [Qemu-devel] [PULL 1/8] vfio: Add sysfsdev property for pci & platform Alex Williamson
                   ` (8 more replies)
  0 siblings, 9 replies; 17+ messages in thread
From: Alex Williamson @ 2016-03-09 19:53 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 4ba364b47275fe428723442987b57b260b215dba:

  Merge remote-tracking branch 'remotes/thibault/tags/samuel-thibault' into staging (2016-03-09 05:14:55 +0000)

are available in the git repository at:


  git://github.com/awilliam/qemu-vfio.git tags/vfio-update-20160309.0

for you to fetch changes up to 799f7b98c501e5aec0a539119613787cd5705136:

  MAINTAINERS: Add entry for the include/hw/vfio/ folder (2016-03-09 11:19:14 -0700)

----------------------------------------------------------------
VFIO updates 2016-03-09

 - Allow devices to be specified via sysfs path (Alex Williamson)
 - vfio region helpers and generalization for future device specific regions
   (Alex Williamson)
 - Automatic ROM device ID and checksum fixup (Alex Williamson)
 - Split VGA setup to allow enabling VGA from quirks (Alex Williamson)
 - Remove fixed string limit for ROM MemoryRegion name (Neo Jia)
 - MAINTAINERS update (Thomas Huth)

----------------------------------------------------------------
Alex Williamson (6):
      vfio: Add sysfsdev property for pci & platform
      vfio: Wrap VFIO_DEVICE_GET_REGION_INFO
      vfio: Generalize region support
      vfio/pci: Convert all MemoryRegion to dynamic alloc and consistent functions
      vfio/pci: Fixup PCI option ROMs
      vfio/pci: Split out VGA setup

Neo Jia (1):
      vfio/pci: replace fixed string limit by g_strdup_printf

Thomas Huth (1):
      MAINTAINERS: Add entry for the include/hw/vfio/ folder

 MAINTAINERS                   |   1 +
 hw/arm/sysbus-fdt.c           |   4 +-
 hw/vfio/common.c              | 190 ++++++++++++---
 hw/vfio/pci-quirks.c          |  62 ++---
 hw/vfio/pci.c                 | 528 +++++++++++++++++++++---------------------
 hw/vfio/pci.h                 |  12 +-
 hw/vfio/platform.c            | 126 ++++------
 include/hw/vfio/vfio-common.h |  27 ++-
 trace-events                  |  10 +-
 9 files changed, 545 insertions(+), 415 deletions(-)

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [Qemu-devel] [PULL 0/8] VFIO updates 2016-03-10
@ 2016-03-10 16:55 Alex Williamson
  2016-03-10 16:56 ` [Qemu-devel] [PULL 8/8] MAINTAINERS: Add entry for the include/hw/vfio/ folder Alex Williamson
  0 siblings, 1 reply; 17+ messages in thread
From: Alex Williamson @ 2016-03-10 16:55 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit a648c137383d84bc4f95696e5293978d9541a26e:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20160309-1' into staging (2016-03-10 02:51:14 +0000)

are available in the git repository at:


  git://github.com/awilliam/qemu-vfio.git tags/vfio-update-20160310.1

for you to fetch changes up to f953b1a565c9fa0551c5023056c28fbbe35c8b9d:

  MAINTAINERS: Add entry for the include/hw/vfio/ folder (2016-03-10 09:39:09 -0700)

----------------------------------------------------------------
VFIO updates 2016-03-10

 - Allow devices to be specified via sysfs path (Alex Williamson)
 - vfio region helpers and generalization for future device specific regions
   (Alex Williamson)
 - Automatic ROM device ID and checksum fixup (Alex Williamson)
 - Split VGA setup to allow enabling VGA from quirks (Alex Williamson)
 - Remove fixed string limit for ROM MemoryRegion name (Neo Jia)
 - MAINTAINERS update (Thomas Huth)

----------------------------------------------------------------
Alex Williamson (6):
      vfio: Add sysfsdev property for pci & platform
      vfio: Wrap VFIO_DEVICE_GET_REGION_INFO
      vfio: Generalize region support
      vfio/pci: Convert all MemoryRegion to dynamic alloc and consistent functions
      vfio/pci: Fixup PCI option ROMs
      vfio/pci: Split out VGA setup

Neo Jia (1):
      vfio/pci: replace fixed string limit by g_strdup_printf

Thomas Huth (1):
      MAINTAINERS: Add entry for the include/hw/vfio/ folder

 MAINTAINERS                   |   1 +
 hw/arm/sysbus-fdt.c           |   4 +-
 hw/vfio/common.c              | 190 ++++++++++++---
 hw/vfio/pci-quirks.c          |  62 ++---
 hw/vfio/pci.c                 | 528 +++++++++++++++++++++---------------------
 hw/vfio/pci.h                 |  12 +-
 hw/vfio/platform.c            | 126 ++++------
 include/hw/vfio/vfio-common.h |  27 ++-
 trace-events                  |  10 +-
 9 files changed, 545 insertions(+), 415 deletions(-)

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2016-03-11  4:14 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-09 19:53 [Qemu-devel] [PULL 0/8] VFIO updates 2016-03-09 Alex Williamson
2016-03-09 19:53 ` [Qemu-devel] [PULL 1/8] vfio: Add sysfsdev property for pci & platform Alex Williamson
2016-03-09 19:53 ` [Qemu-devel] [PULL 2/8] vfio: Wrap VFIO_DEVICE_GET_REGION_INFO Alex Williamson
2016-03-09 19:53 ` [Qemu-devel] [PULL 3/8] vfio: Generalize region support Alex Williamson
2016-03-10  0:54   ` Eric Auger
2016-03-10 16:34     ` Alex Williamson
2016-03-10 20:46       ` Eric Blake
2016-03-11  4:14         ` Alex Williamson
2016-03-09 19:53 ` [Qemu-devel] [PULL 4/8] vfio/pci: Convert all MemoryRegion to dynamic alloc and consistent functions Alex Williamson
2016-03-09 19:53 ` [Qemu-devel] [PULL 5/8] vfio/pci: Fixup PCI option ROMs Alex Williamson
2016-03-09 19:53 ` [Qemu-devel] [PULL 6/8] vfio/pci: Split out VGA setup Alex Williamson
2016-03-09 19:53 ` [Qemu-devel] [PULL 7/8] vfio/pci: replace fixed string limit by g_strdup_printf Alex Williamson
2016-03-09 19:53 ` [Qemu-devel] [PULL 8/8] MAINTAINERS: Add entry for the include/hw/vfio/ folder Alex Williamson
2016-03-10  5:03 ` [Qemu-devel] [PULL 0/8] VFIO updates 2016-03-09 Peter Maydell
2016-03-10  5:04   ` Peter Maydell
2016-03-10 15:00   ` Alex Williamson
  -- strict thread matches above, loose matches on Subject: below --
2016-03-10 16:55 [Qemu-devel] [PULL 0/8] VFIO updates 2016-03-10 Alex Williamson
2016-03-10 16:56 ` [Qemu-devel] [PULL 8/8] MAINTAINERS: Add entry for the include/hw/vfio/ folder Alex Williamson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).