Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1315292
| From | Boris Ostrovsky <boris.ostrovsky@oracle.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v1 00/12] HVMlite domU support |
| Date | 2016-01-22 22:40 +0100 |
| Message-ID | <qTRB0-1oj-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
This series introduces HVMlite support for unprivileged guests. It has been tested on Intel/AMD, both 32- and 64-bit, including CPU on- and offlining and save/restore. (Restore will result in APIC write warnings which exist now for 32-bit PV guests as well so I didn't address this in this series) Compile-tested on ARM Boris Ostrovsky (12): x86/smp: Make start_secondary() and initial_pg_pmd visible globally xen/hvmlite: Factor out common kernel init code xen/hvmlite: Import hvmlite-related Xen public interfaces xen/hvmlite: Bootstrap HVMlite guest xen/hvmlite: Allow HVMlite guests delay initializing grant table xen/hvmlite: Initialize PCI xen/hvmlite: Prepare cpu_initialize_context() routine for HVMlite SMP xen/hvmlite: Initialize context for secondary VCPUs xen/hvmlite: Extend APIC operations for HVMlite guests xen/hvmlite: Use x86's default timer init for HVMlite guests xen/hvmlite: Boot secondary CPUs xen/hvmlite: Enable CPU on-/offlining arch/x86/include/asm/smp.h | 1 + arch/x86/kernel/head_32.S | 2 +- arch/x86/kernel/smpboot.c | 2 +- arch/x86/pci/xen.c | 2 +- arch/x86/xen/Makefile | 1 + arch/x86/xen/apic.c | 39 ++++- arch/x86/xen/enlighten.c | 318 ++++++++++++++++++++++------------ arch/x86/xen/grant-table.c | 4 +- arch/x86/xen/platform-pci-unplug.c | 4 +- arch/x86/xen/pmu.c | 4 +- arch/x86/xen/smp.c | 248 ++++++++++++++++++-------- arch/x86/xen/smp.h | 4 + arch/x86/xen/time.c | 5 +- arch/x86/xen/xen-hvmlite.S | 173 ++++++++++++++++++ drivers/xen/grant-table.c | 8 +- include/xen/interface/elfnote.h | 12 ++- include/xen/interface/hvm/hvm_vcpu.h | 143 +++++++++++++++ include/xen/interface/xen.h | 24 +++ include/xen/xen.h | 6 + 19 files changed, 801 insertions(+), 199 deletions(-) create mode 100644 arch/x86/xen/xen-hvmlite.S create mode 100644 include/xen/interface/hvm/hvm_vcpu.h
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v1 00/12] HVMlite domU support Boris Ostrovsky <boris.ostrovsky@oracle.com> - 2016-01-22 22:40 +0100
[PATCH v1 11/12] xen/hvmlite: Boot secondary CPUs Boris Ostrovsky <boris.ostrovsky@oracle.com> - 2016-01-22 22:40 +0100
[PATCH v1 08/12] xen/hvmlite: Initialize context for secondary VCPUs Boris Ostrovsky <boris.ostrovsky@oracle.com> - 2016-01-22 22:40 +0100
[PATCH v1 12/12] xen/hvmlite: Enable CPU on-/offlining Boris Ostrovsky <boris.ostrovsky@oracle.com> - 2016-01-22 22:40 +0100
[PATCH v1 03/12] xen/hvmlite: Import hvmlite-related Xen public interfaces Boris Ostrovsky <boris.ostrovsky@oracle.com> - 2016-01-22 22:40 +0100
[PATCH v1 05/12] xen/hvmlite: Allow HVMlite guests delay initializing grant table Boris Ostrovsky <boris.ostrovsky@oracle.com> - 2016-01-22 22:40 +0100
[PATCH v1 07/12] xen/hvmlite: Prepare cpu_initialize_context() routine for HVMlite SMP Boris Ostrovsky <boris.ostrovsky@oracle.com> - 2016-01-22 22:40 +0100
Re: [PATCH v1 00/12] HVMlite domU support David Vrabel <david.vrabel@citrix.com> - 2016-01-25 12:00 +0100
Re: [PATCH v1 00/12] HVMlite domU support Boris Ostrovsky <boris.ostrovsky@oracle.com> - 2016-01-25 16:30 +0100
csiph-web