All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4 v6] MSI-X MMIO support in userspace for assigned devices
@ 2010-12-22  9:25 Sheng Yang
  2010-12-22  9:25 ` [PATCH 1/4] qemu-kvm: device assignment: Enabling MSI-X according to the entries' mask bit Sheng Yang
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Sheng Yang @ 2010-12-22  9:25 UTC (permalink / raw)
  To: Avi Kivity, Marcelo Tosatti; +Cc: Michael S. Tsirkin, kvm, Sheng Yang

BTW: the first patch can be applied alone.

Sheng Yang (4):
  qemu-kvm: device assignment: Enabling MSI-X according to the entries'
    mask bit
  qemu-kvm: Ioctl for MSIX MMIO support
  qemu-kvm: Header file update for MSI-X MMIO support
  qemu-kvm: MSI-X MMIO support for assigned device

 hw/device-assignment.c  |  325 +++++++++++++++++++++++++++++++++++++++++------
 hw/device-assignment.h  |    9 +-
 kvm/include/linux/kvm.h |   22 +++
 qemu-kvm.c              |   50 +++++++
 qemu-kvm.h              |   18 +++
 5 files changed, 382 insertions(+), 42 deletions(-)


^ permalink raw reply	[flat|nested] 8+ messages in thread
* [PATCH 0/4 v7] qemu-kvm: MSI-X MMIO support for assigned device
@ 2011-01-06 10:24 Sheng Yang
  2011-01-06 10:24 ` [PATCH 2/4] qemu-kvm: Ioctl for MSIX MMIO support Sheng Yang
  0 siblings, 1 reply; 8+ messages in thread
From: Sheng Yang @ 2011-01-06 10:24 UTC (permalink / raw)
  To: Avi Kivity, Marcelo Tosatti; +Cc: Michael S. Tsirkin, kvm, Sheng Yang

Update with kernel patches v7.

Sheng Yang (4):
  qemu-kvm: device assignment: Enabling MSI-X according to the entries'
    mask bit
  qemu-kvm: Ioctl for MSIX MMIO support
  qemu-kvm: Header file update for MSI-X MMIO support
  qemu-kvm: MSI-X MMIO support for assigned device

 hw/device-assignment.c  |  275 ++++++++++++++++++++++++++++++++++++++++------
 hw/device-assignment.h  |    5 +-
 kvm/include/linux/kvm.h |   21 ++++
 qemu-kvm.c              |   54 +++++++++
 qemu-kvm.h              |   18 +++
 5 files changed, 336 insertions(+), 37 deletions(-)


^ permalink raw reply	[flat|nested] 8+ messages in thread
* [PATCH 0/4 v8] qemu-kvm: MSI-X MMIO support for assigned device
@ 2011-01-30  5:12 Sheng Yang
  2011-01-30  5:12 ` [PATCH 2/4] qemu-kvm: Ioctl for MSIX MMIO support Sheng Yang
  0 siblings, 1 reply; 8+ messages in thread
From: Sheng Yang @ 2011-01-30  5:12 UTC (permalink / raw)
  To: Marcelo Tosatti, Avi Kivity; +Cc: Michael S. Tsirkin, kvm, Sheng Yang

Update with kernel patches v8.

Sheng Yang (4):
  qemu-kvm: device assignment: Enabling MSI-X according to the entries'
    mask bit
  qemu-kvm: Ioctl for MSIX MMIO support
  qemu-kvm: Header file update for MSI-X MMIO support
  qemu-kvm: MSI-X MMIO support for assigned device

 hw/device-assignment.c  |  275 ++++++++++++++++++++++++++++++++++++++++------
 hw/device-assignment.h  |    5 +-
 kvm/include/linux/kvm.h |   21 ++++
 qemu-kvm.c              |   54 +++++++++
 qemu-kvm.h              |   18 +++
 5 files changed, 336 insertions(+), 37 deletions(-)


^ permalink raw reply	[flat|nested] 8+ messages in thread
* [PATCH 0/4 v9] qemu-kvm: MSI-X MMIO support for assigned device
@ 2011-02-18  8:55 Sheng Yang
  2011-02-18  8:55 ` [PATCH 2/4] qemu-kvm: Ioctl for MSIX MMIO support Sheng Yang
  0 siblings, 1 reply; 8+ messages in thread
From: Sheng Yang @ 2011-02-18  8:55 UTC (permalink / raw)
  To: Avi Kivity, Marcelo Tosatti; +Cc: kvm, Michael S. Tsirkin, Sheng Yang

Update with kernel patches v9.

Sheng Yang (4):
  qemu-kvm: device assignment: Enabling MSI-X according to the entries'
    mask bit
  qemu-kvm: Ioctl for MSIX MMIO support
  qemu-kvm: Header file update for MSI-X MMIO support
  qemu-kvm: MSI-X MMIO support for assigned device

 hw/device-assignment.c  |  284 +++++++++++++++++++++++++++++++++++++++++------
 hw/device-assignment.h  |    5 +-
 kvm/include/linux/kvm.h |   28 +++++
 qemu-kvm.c              |   60 ++++++++++
 qemu-kvm.h              |   26 +++++
 5 files changed, 366 insertions(+), 37 deletions(-)


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

end of thread, other threads:[~2011-02-18  8:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-22  9:25 [PATCH 0/4 v6] MSI-X MMIO support in userspace for assigned devices Sheng Yang
2010-12-22  9:25 ` [PATCH 1/4] qemu-kvm: device assignment: Enabling MSI-X according to the entries' mask bit Sheng Yang
2010-12-22  9:25 ` [PATCH 2/4] qemu-kvm: Ioctl for MSIX MMIO support Sheng Yang
2010-12-22  9:25 ` [PATCH 3/4] qemu-kvm: Header file update for MSI-X " Sheng Yang
2010-12-22  9:25 ` [PATCH 4/4] qemu-kvm: MSI-X MMIO support for assigned device Sheng Yang
  -- strict thread matches above, loose matches on Subject: below --
2011-01-06 10:24 [PATCH 0/4 v7] " Sheng Yang
2011-01-06 10:24 ` [PATCH 2/4] qemu-kvm: Ioctl for MSIX MMIO support Sheng Yang
2011-01-30  5:12 [PATCH 0/4 v8] qemu-kvm: MSI-X MMIO support for assigned device Sheng Yang
2011-01-30  5:12 ` [PATCH 2/4] qemu-kvm: Ioctl for MSIX MMIO support Sheng Yang
2011-02-18  8:55 [PATCH 0/4 v9] qemu-kvm: MSI-X MMIO support for assigned device Sheng Yang
2011-02-18  8:55 ` [PATCH 2/4] qemu-kvm: Ioctl for MSIX MMIO support Sheng Yang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.