Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1198254
| From | jakeo@microsoft.com |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 0/4] New Paravirtual front-end for PCI in a Hyper-V VM |
| Date | 2015-08-02 03:10 +0200 |
| Message-ID | <pSPWN-543-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Jake Oshins <jakeo@microsoft.com>
This patch series exposes the primitives necessary for an interrupt domain
in a module and then introduces a new driver. This driver exposes a root
PCI bus when running in a Hyper-V VM for each device which is passed through
to the VM from the physical host.
This patch series differs from an earlier patch series in that the way
interrupts are managed for the devices has been rewritten, this time to use
IRQ domains, which allows the patches to be applied to the linux-next tree.
Jake Oshins (4):
drivers:hv: Export a function that maps Linux CPU num onto Hyper-V
proc num
drivers:hv: Define the channel type for Hyper-V PCI Express
pass-through
drivers:x86:pci: Make it possible to implement a PCI MSI IRQ Domain in
a module.
drivers:pci:hv: New paravirtual PCI front-end for Hyper-V VMs
MAINTAINERS | 1 +
arch/x86/kernel/apic/vector.c | 2 +
drivers/hv/vmbus_drv.c | 17 +
drivers/pci/Kconfig | 7 +
drivers/pci/host/Makefile | 1 +
drivers/pci/host/hv_pcifront.c | 2228 ++++++++++++++++++++++++++++++++++++++++
drivers/pci/msi.c | 1 +
include/linux/hyperv.h | 13 +
kernel/irq/chip.c | 1 +
9 files changed, 2271 insertions(+)
create mode 100644 drivers/pci/host/hv_pcifront.c
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 0/4] New Paravirtual front-end for PCI in a Hyper-V VM jakeo@microsoft.com - 2015-08-02 03:10 +0200
[PATCH 3/4] drivers:x86:pci: Make it possible to implement a PCI MSI IRQ Domain in a module. jakeo@microsoft.com - 2015-08-02 03:10 +0200
[PATCH 2/4] drivers:hv: Define the channel type for Hyper-V PCI Express pass-through jakeo@microsoft.com - 2015-08-02 03:10 +0200
[PATCH 1/4] drivers:hv: Export a function that maps Linux CPU num onto Hyper-V proc num jakeo@microsoft.com - 2015-08-02 03:10 +0200
[PATCH 4/4] drivers:pci:hv: New paravirtual PCI front-end for Hyper-V VMs jakeo@microsoft.com - 2015-08-02 03:10 +0200
Re: [PATCH 4/4] drivers:pci:hv: New paravirtual PCI front-end for Hyper-V VMs Thomas Gleixner <tglx@linutronix.de> - 2015-08-02 10:50 +0200
RE: [PATCH 4/4] drivers:pci:hv: New paravirtual PCI front-end for Hyper-V VMs Jake Oshins <jakeo@microsoft.com> - 2015-08-03 21:30 +0200
RE: [PATCH 4/4] drivers:pci:hv: New paravirtual PCI front-end for Hyper-V VMs Thomas Gleixner <tglx@linutronix.de> - 2015-08-03 21:50 +0200
Re: [PATCH 4/4] drivers:pci:hv: New paravirtual PCI front-end for Hyper-V VMs Paul Bolle <pebolle@tiscali.nl> - 2015-08-03 11:20 +0200
Re: [PATCH 4/4] drivers:pci:hv: New paravirtual PCI front-end for Hyper-V VMs Dan Carpenter <dan.carpenter@oracle.com> - 2015-08-03 12:00 +0200
csiph-web