From: Jeremy Fitzhardinge <jeremy@goop.org>
To: Andrew Morton <akpm@linux-foundation.org>, Andi Kleen <ak@suse.de>
Cc: Chris Wright <chrisw@sous-sol.org>,
virtualization@lists.osdl.org,
Xen-devel <xen-devel@lists.xensource.com>,
Linus Torvalds <torvalds@linux-foundation.org>,
lkml <linux-kernel@vger.kernel.org>
Subject: [patch 00/33] xen: Xen paravirt_ops implementation
Date: Tue, 22 May 2007 15:09:41 +0100 [thread overview]
Message-ID: <20070522140941.802382212@goop.org> (raw)
Hi,
This is the Xen implementation for the paravirt_ops interface. The
series is based on 2.6.22-rc1-mm1, and I think its ready to be cooked
in -mm with a view to being merged in 2.6.23.
The first part of the series is some small changes to the core kernel.
Apart from the new code added in "Allocate and free vmalloc areas"
(posted many times before), they are simply a few one-liners around
the place.
paravirt: add an "mm" argument to alloc_pt
paravirt: add a hook for once the allocator is ready
paravirt: increase IRQ limit
paravirt: unstatic leave_mm
paravirt: unstatic smp_store_cpu_info
paravirt: make siblingmap functions visible
paravirt: export __supported_pte_mask
xen: Allocate and free vmalloc areas
arch/i386/kernel/setup.c | 2
arch/i386/kernel/smp.c | 5 -
arch/i386/kernel/smpboot.c | 8 -
arch/i386/kernel/vsyscall-note.S | 28 +++++
arch/i386/mm/init.c | 1
include/asm-i386/mach-default/irq_vectors_limits.h | 2
include/asm-i386/mmu_context.h | 2
include/asm-i386/paravirt.h | 8 +
include/asm-i386/setup.h | 4
include/asm-i386/smp.h | 5 +
include/linux/vmalloc.h | 4
mm/vmalloc.c | 53 +++++++++++
12 files changed, 114 insertions(+), 8 deletions(-)
The rest of the series is the Xen implementation itself. This
includes the core of Xen itself, plus the Xenbus virtual bus, and
virtual console, disk and net drivers. The vast majority of it is new
code, with a few changes to non-Xen files to:
1. Makefile/Kconfig build stuff
2. add a new ELF note to the VDSO to select a Xen-optimised libc
3. a chunk of new code in entry.S, to handle upcalls from Xen,
which in turn need to jump into other entry.S labels
4. Define a proper label for PG_owner_priv_1
5. Define a major for the Xen virtual block device
6. Increate NR_IRQ to 224 when CONFIG_PARAVIRT is enabled, even if
there's no IO APIC.
xen: Add nosegneg capability to the vsyscall page notes
xen: Add Xen interface header files
xen: Core Xen implementation
xen: Xen virtual mmu
xen: xen event channels
xen: xen time implementation
xen: xen configuration
xen: add pinned page flag
xen: Complete pagetable pinning for Xen
xen: ignore RW mapping of RO pages in pagetable_init
xen: Account for time stolen by Xen
xen: Implement xen_sched_clock
xen: Xen SMP guest support
xen: Add support for preemption
xen: lazy-mmu operations
xen: hack to prevent bad segment register reload
xen: Use the hvc console infrastructure for Xen console
xen: Add Xen grant table support
xen: Add the Xenbus sysfs and virtual device hotplug driver.
xen: Add Xen virtual block device driver.
xen: Add the Xen virtual network device driver.
xen: Xen machine operations
xen: handle external requests for shutdown, reboot and sysrq
xen: Place vcpu_info structure into per-cpu memory, if possible
xen: Attempt to patch inline versions of common operations
arch/i386/Kconfig | 2
arch/i386/Makefile | 3
arch/i386/kernel/asm-offsets.c | 7
arch/i386/kernel/entry.S | 71
arch/i386/kernel/head.S | 5
arch/i386/kernel/vmlinux.lds.S | 1
arch/i386/xen/Kconfig | 11
arch/i386/xen/Makefile | 4
arch/i386/xen/enlighten.c | 1134 +++++++++++++
arch/i386/xen/events.c | 588 +++++++
arch/i386/xen/features.c | 29
arch/i386/xen/manage.c | 143 +
arch/i386/xen/mmu.c | 599 +++++++
arch/i386/xen/mmu.h | 60
arch/i386/xen/multicalls.c | 115 +
arch/i386/xen/multicalls.h | 45
arch/i386/xen/setup.c | 93 +
arch/i386/xen/smp.c | 405 ++++
arch/i386/xen/time.c | 585 +++++++
arch/i386/xen/xen-asm.S | 114 +
arch/i386/xen/xen-head.S | 36
arch/i386/xen/xen-ops.h | 70
arch/x86_64/kernel/early_printk.c | 5
drivers/Makefile | 2
drivers/block/Kconfig | 8
drivers/block/Makefile | 1
drivers/block/xen-blkfront.c | 988 +++++++++++
drivers/char/Kconfig | 8
drivers/char/Makefile | 1
drivers/char/hvc_xen.c | 159 +
drivers/net/Kconfig | 12
drivers/net/Makefile | 1
drivers/net/xen-netfront.c | 1995 ++++++++++++++++++++++++
drivers/xen/Makefile | 2
drivers/xen/grant-table.c | 582 +++++++
drivers/xen/xenbus/Makefile | 7
drivers/xen/xenbus/xenbus_client.c | 569 ++++++
drivers/xen/xenbus/xenbus_comms.c | 233 ++
drivers/xen/xenbus/xenbus_comms.h | 46
drivers/xen/xenbus/xenbus_probe.c | 935 +++++++++++
drivers/xen/xenbus/xenbus_probe.h | 74
drivers/xen/xenbus/xenbus_xs.c | 861 ++++++++++
include/asm-i386/irq.h | 1
include/asm-i386/xen/hypercall.h | 431 +++++
include/asm-i386/xen/hypervisor.h | 73
include/asm-i386/xen/interface.h | 187 ++
include/linux/major.h | 2
include/linux/page-flags.h | 5
include/xen/events.h | 48
include/xen/features.h | 23
include/xen/grant_table.h | 107 +
include/xen/hvc-console.h | 6
include/xen/interface/elfnote.h | 133 +
include/xen/interface/event_channel.h | 195 ++
include/xen/interface/features.h | 43
include/xen/interface/grant_table.h | 375 ++++
include/xen/interface/io/blkif.h | 94 +
include/xen/interface/io/console.h | 23
include/xen/interface/io/netif.h | 156 +
include/xen/interface/io/ring.h | 260 +++
include/xen/interface/io/xenbus.h | 42
include/xen/interface/io/xs_wire.h | 87 +
include/xen/interface/memory.h | 145 +
include/xen/interface/physdev.h | 145 +
include/xen/interface/sched.h | 77
include/xen/interface/vcpu.h | 177 ++
include/xen/interface/version.h | 60
include/xen/interface/xen.h | 446 +++++
include/xen/page.h | 178 ++
include/xen/xenbus.h | 234 ++
70 files changed, 14361 insertions(+), 1 deletion(-)
--
next reply other threads:[~2007-05-22 14:09 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-22 14:09 Jeremy Fitzhardinge [this message]
2007-05-22 14:09 ` [patch 01/33] xen: paravirt: add an "mm" argument to alloc_pt Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 02/33] xen: paravirt: add a hook for once the allocator is ready Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 03/33] xen: paravirt: increase IRQ limit Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 04/33] xen: paravirt: unstatic leave_mm Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 05/33] xen: paravirt: unstatic smp_store_cpu_info Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 06/33] xen: paravirt: make siblingmap functions visible Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 07/33] xen: paravirt: export __supported_pte_mask Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 08/33] xen: Allocate and free vmalloc areas Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 09/33] xen: Add nosegneg capability to the vsyscall page notes Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 10/33] xen: Add Xen interface header files Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 11/33] xen: Core Xen implementation Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 12/33] xen: Xen virtual mmu Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 13/33] xen: xen event channels Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 14/33] xen: xen time implementation Jeremy Fitzhardinge
2007-06-06 8:39 ` Jan Beulich
2007-06-06 8:54 ` [Xen-devel] " Keir Fraser
2007-06-06 8:54 ` Keir Fraser
[not found] ` <C28C34EB.101FE%keir@xensource.com>
2007-06-06 9:30 ` Jan Beulich
2007-06-06 9:56 ` [Xen-devel] " Keir Fraser
2007-06-06 9:56 ` Keir Fraser
[not found] ` <C28C4362.1021C%keir@xensource.com>
2007-06-06 11:00 ` Jan Beulich
2007-06-06 11:52 ` [Xen-devel] " Keir Fraser
2007-06-06 11:52 ` Keir Fraser
2007-06-06 10:05 ` Jeremy Fitzhardinge
2007-06-06 10:20 ` Jan Beulich
2007-06-06 10:26 ` Andi Kleen
2007-06-06 14:15 ` [Xen-devel] " Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 15/33] xen: xen configuration Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 16/33] xen: xen: add pinned page flag Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 17/33] xen: Complete pagetable pinning for Xen Jeremy Fitzhardinge
2007-05-22 14:09 ` [patch 18/33] xen: xen: ignore RW mapping of RO pages in pagetable_init Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 19/33] xen: Account for time stolen by Xen Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 20/33] xen: Implement xen_sched_clock Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 21/33] xen: Xen SMP guest support Jeremy Fitzhardinge
2007-06-06 7:34 ` Jan Beulich
2007-06-06 8:33 ` [Xen-devel] " Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 22/33] xen: Add support for preemption Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 23/33] xen: xen: lazy-mmu operations Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 24/33] xen: xen: hack to prevent bad segment register reload Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 25/33] xen: Use the hvc console infrastructure for Xen console Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 26/33] xen: Add Xen grant table support Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 27/33] xen: Add the Xenbus sysfs and virtual device hotplug driver Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 28/33] xen: Add Xen virtual block device driver Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 29/33] xen: Add the Xen virtual network " Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 30/33] xen: Xen machine operations Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 31/33] xen: xen: handle external requests for shutdown, reboot and sysrq Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 32/33] xen: Place vcpu_info structure into per-cpu memory, if possible Jeremy Fitzhardinge
2007-05-22 14:10 ` [patch 33/33] xen: Attempt to patch inline versions of common operations Jeremy Fitzhardinge
2007-05-22 14:57 ` [patch 00/33] xen: Xen paravirt_ops implementation Andi Kleen
2007-05-22 15:06 ` Jeremy Fitzhardinge
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070522140941.802382212@goop.org \
--to=jeremy@goop.org \
--cc=ak@suse.de \
--cc=akpm@linux-foundation.org \
--cc=chrisw@sous-sol.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=virtualization@lists.osdl.org \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).