public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v10] Repost of PVH patches for Linux.
@ 2013-12-13  2:10 Konrad Rzeszutek Wilk
  2013-12-13  2:10 ` [PATCH V10 01/14] xen/pvh: Support ParaVirtualized Hardware extensions Konrad Rzeszutek Wilk
                   ` (14 more replies)
  0 siblings, 15 replies; 39+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-12-13  2:10 UTC (permalink / raw)
  To: xen-devel, linux-kernel, george.dunlap, ian.jackson,
	mukesh.rathor, tim, jbeulich, boris.ostrovsky, david.vrabel

Hey,

Mukesh had posted them quite a while ago - they got reviewed, acked, etc,
put in #linux-next, got patches to fix some things from folks.

Then everybody focused on the Xen patches .. and now that is mostly
baked this is what is needed on the Linux side to make it work
with PVH. I had them based on v3.6, then merged on v3.11, then..

Decided to rebase all of them on v3.13-rc3 to make it easier.

Couple of things:

a) the patch:
 [PATCH V10 14/14] xen/pvh: vcpu info placement, load CS selector,

could be split in three - and I think Mukesh did have a version like that.
I can do it myself and will - it should be obvious of how it will be done.

b). Regression testing  - I ran this with a Linux kernel dom0 (32 and 64)
    on the latest Xen hypervisor without PVH enabled. It booted all the
    guests I had:
    RHEL5, SLES11, SLES12, F15, F16, F17, F18, F19, OEL5, OEL6, NetBSD PV,
    FreeBSD HVM; and also 32 and 64 PV and PVHVM combination of the same
    kernel (and save/restore on those). Nothing broke.

c). I hadn't tested it all with PVH enabled. Mukesh I believe has one or
    two patches that need to be put on top of this to make it work with
    the hypervisor changes.

These patches are also available on:

 git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git devel/pvh.v10

[but they are out-dated a bit - I messed up on that branch and some
of the authorships are assigned to me instead of Mukesh. I will
provide a stable/pvh.v10 shortly]

 arch/x86/include/asm/xen/interface.h |   11 ++-
 arch/x86/include/asm/xen/page.h      |    3 +
 arch/x86/xen/Kconfig                 |    8 ++
 arch/x86/xen/enlighten.c             |   91 ++++++++++++++++----
 arch/x86/xen/irq.c                   |    5 +-
 arch/x86/xen/mmu.c                   |  155 +++++++++++++++++++++++++++++++---
 arch/x86/xen/mmu.h                   |    2 +
 arch/x86/xen/p2m.c                   |    4 +-
 arch/x86/xen/setup.c                 |   58 ++++++++++---
 arch/x86/xen/smp.c                   |   38 ++++++--
 arch/x86/xen/xen-head.S              |   10 ++-
 drivers/xen/balloon.c                |   37 +++++----
 drivers/xen/cpu_hotplug.c            |    4 +-
 drivers/xen/events.c                 |    9 ++-
 drivers/xen/gntdev.c                 |    3 +-
 drivers/xen/grant-table.c            |   64 +++++++++++++-
 drivers/xen/xenbus/xenbus_client.c   |    3 +-
 17 files changed, 423 insertions(+), 82 deletions(-)

Alexander Duyck (1):
      x86/xen: Use __pa_symbol instead of __pa on C visible symbols

Ian Campbell (2):
      xen: x86 pvh: use XENMEM_add_to_physmap_range for foreign gmfn mappings
      xen: implement updated XENMEM_add_to_physmap_range ABI

Kees Cook (1):
      x86/xen: remove depends on CONFIG_EXPERIMENTAL

Mukesh Rathor (9):
      xen/pvh: Support ParaVirtualized Hardware extensions.
      xen/pvh: Extend vcpu_guest_context, p2m, event, and XenBus.
      xen/pvh: Implement MMU changes for PVH.
      xen/pvh: bootup and setup (E820) related changes.
      xen/pvh: balloon and grant changes.
      xen/pvh: specify xen features strings cleanly for PVH
      xen/pvh: remove code to map iomem from guest
      xen/pvh: Use ballooning to allocate grant table pages [v2]
      xen/pvh: vcpu info placement, load CS selector, and remove debug printk.

Wei Yongjun (1):
      xen/x86: remove duplicated include from enlighten.c


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

end of thread, other threads:[~2013-12-17 21:40 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-13  2:10 [PATCH v10] Repost of PVH patches for Linux Konrad Rzeszutek Wilk
2013-12-13  2:10 ` [PATCH V10 01/14] xen/pvh: Support ParaVirtualized Hardware extensions Konrad Rzeszutek Wilk
2013-12-13 10:44   ` David Vrabel
2013-12-13 14:32     ` Konrad Rzeszutek Wilk
2013-12-13  2:10 ` [PATCH V10 02/14] xen/pvh: Extend vcpu_guest_context, p2m, event, and XenBus Konrad Rzeszutek Wilk
2013-12-13 10:56   ` David Vrabel
2013-12-13 14:26     ` Konrad Rzeszutek Wilk
2013-12-13 14:59       ` Stefano Stabellini
2013-12-13  2:10 ` [PATCH V10 03/14] xen/pvh: Implement MMU changes for PVH Konrad Rzeszutek Wilk
2013-12-13 16:54   ` Boris Ostrovsky
2013-12-13  2:10 ` [PATCH V10 04/14] xen/pvh: bootup and setup (E820) related changes Konrad Rzeszutek Wilk
2013-12-13 17:55   ` Boris Ostrovsky
2013-12-17 21:39     ` Konrad Rzeszutek Wilk
2013-12-13  2:10 ` [PATCH V10 05/14] xen/pvh: balloon and grant changes Konrad Rzeszutek Wilk
2013-12-13 11:02   ` David Vrabel
2013-12-13 11:56   ` Stefano Stabellini
2013-12-13 14:36     ` Konrad Rzeszutek Wilk
2013-12-13 14:49       ` Stefano Stabellini
2013-12-13 14:59         ` Konrad Rzeszutek Wilk
2013-12-13 15:34           ` Stefano Stabellini
2013-12-13 15:47             ` Konrad Rzeszutek Wilk
2013-12-13 15:51               ` Stefano Stabellini
2013-12-13  2:10 ` [PATCH V10 06/14] xen: x86 pvh: use XENMEM_add_to_physmap_range for foreign gmfn mappings Konrad Rzeszutek Wilk
2013-12-13  2:10 ` [PATCH V10 07/14] xen/x86: remove duplicated include from enlighten.c Konrad Rzeszutek Wilk
2013-12-13  2:10 ` [PATCH V10 08/14] x86/xen: Use __pa_symbol instead of __pa on C visible symbols Konrad Rzeszutek Wilk
2013-12-13 11:04   ` David Vrabel
2013-12-13 14:24     ` Konrad Rzeszutek Wilk
2013-12-13  2:10 ` [PATCH V10 09/14] xen: implement updated XENMEM_add_to_physmap_range ABI Konrad Rzeszutek Wilk
2013-12-13 11:35   ` David Vrabel
2013-12-13 14:27     ` Konrad Rzeszutek Wilk
2013-12-13 14:30       ` David Vrabel
2013-12-13  2:10 ` [PATCH V10 10/14] xen/pvh: specify xen features strings cleanly for PVH Konrad Rzeszutek Wilk
2013-12-13  2:10 ` [PATCH V10 11/14] xen/pvh: remove code to map iomem from guest Konrad Rzeszutek Wilk
2013-12-13  2:10 ` [PATCH V10 12/14] xen/pvh: Use ballooning to allocate grant table pages [v2] Konrad Rzeszutek Wilk
2013-12-13  2:10 ` [PATCH V10 13/14] x86/xen: remove depends on CONFIG_EXPERIMENTAL Konrad Rzeszutek Wilk
2013-12-13  2:10 ` [PATCH V10 14/14] xen/pvh: vcpu info placement, load CS selector, and remove debug printk Konrad Rzeszutek Wilk
2013-12-13 11:34   ` David Vrabel
2013-12-13 11:37 ` [PATCH v10] Repost of PVH patches for Linux David Vrabel
2013-12-13 14:30   ` [Xen-devel] " Konrad Rzeszutek Wilk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox