[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen stable-4.10] Merge branch 'merge-comet-staging-4.10-v1' into staging-4.10
commit 0d2f9c89f77ad0342d38c88377ef97b3a1337c7d Merge: a1189f93ef677a6aec8c99c8611a4cb61acf314d 083bd8335453925821bc5210f7033a5930bdcb5b Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Tue Mar 6 16:34:26 2018 +0000 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Tue Mar 6 16:34:26 2018 +0000 Merge branch 'merge-comet-staging-4.10-v1' into staging-4.10 .gitignore | 5 + .hgignore | 5 + docs/man/xl.cfg.pod.5.in | 35 ++ docs/misc/xen-command-line.markdown | 36 +- stubdom/grub/kexec.c | 7 +- tools/firmware/Makefile | 15 + tools/firmware/xen-dir/Makefile | 61 +++ tools/firmware/xen-dir/shim.config | 84 +++ tools/helpers/init-xenstore-domain.c | 4 +- tools/libxc/include/xc_dom.h | 48 +- tools/libxc/include/xenctrl.h | 1 + tools/libxc/xc_dom_arm.c | 10 +- tools/libxc/xc_dom_compat_linux.c | 2 +- tools/libxc/xc_dom_core.c | 154 ++++-- tools/libxc/xc_dom_x86.c | 65 +-- tools/libxc/xc_domain.c | 1 + tools/libxl/libxl.h | 8 + tools/libxl/libxl_arm.c | 6 +- tools/libxl/libxl_create.c | 18 + tools/libxl/libxl_dm.c | 2 +- tools/libxl/libxl_dom.c | 65 ++- tools/libxl/libxl_internal.h | 4 + tools/libxl/libxl_types.idl | 6 +- tools/ocaml/libs/xc/xenctrl.ml | 31 +- tools/ocaml/libs/xc/xenctrl.mli | 30 +- tools/ocaml/libs/xc/xenctrl_stubs.c | 48 +- tools/xl/xl_parse.c | 14 + xen/Makefile | 2 +- xen/arch/x86/Kconfig | 40 +- xen/arch/x86/Makefile | 5 +- xen/arch/x86/acpi/lib.c | 2 +- xen/arch/x86/apic.c | 38 +- xen/arch/x86/boot/Makefile | 3 +- xen/arch/x86/boot/build32.mk | 1 + xen/arch/x86/boot/cmdline.c | 5 +- xen/arch/x86/boot/defs.h | 3 + xen/arch/x86/boot/head.S | 65 ++- xen/arch/x86/boot/reloc.c | 60 ++- xen/arch/x86/boot/trampoline.S | 7 + xen/arch/x86/boot/x86_64.S | 2 +- xen/arch/x86/compat.c | 4 +- xen/arch/x86/cpu/amd.c | 16 +- xen/arch/x86/cpu/common.c | 76 ++- xen/arch/x86/cpu/intel.c | 82 +-- xen/arch/x86/dom0_build.c | 47 +- xen/arch/x86/domctl.c | 2 + xen/arch/x86/e820.c | 7 +- xen/arch/x86/efi/efi-boot.h | 4 + xen/arch/x86/guest/Makefile | 4 + xen/arch/x86/guest/hypercall_page.S | 79 +++ xen/arch/x86/guest/pvh-boot.c | 142 +++++ xen/arch/x86/guest/xen.c | 388 ++++++++++++++ xen/arch/x86/hvm/dom0_build.c | 4 - xen/arch/x86/mm.c | 18 +- xen/arch/x86/mpparse.c | 2 +- xen/arch/x86/msi.c | 3 +- xen/arch/x86/platform_hypercall.c | 2 + xen/arch/x86/pv/Makefile | 1 + xen/arch/x86/pv/dom0_build.c | 58 ++- xen/arch/x86/pv/hypercall.c | 17 + xen/arch/x86/pv/shim.c | 957 ++++++++++++++++++++++++++++++++++ xen/arch/x86/setup.c | 84 ++- xen/arch/x86/shutdown.c | 39 +- xen/arch/x86/smpboot.c | 4 + xen/arch/x86/tboot.c | 4 +- xen/arch/x86/time.c | 124 ++++- xen/arch/x86/xen.lds.S | 82 ++- xen/common/domain.c | 53 +- xen/common/event_channel.c | 99 ++-- xen/common/libelf/libelf-dominfo.c | 9 +- xen/common/memory.c | 21 + xen/common/page_alloc.c | 15 + xen/common/rangeset.c | 52 ++ xen/common/schedule.c | 3 +- xen/drivers/acpi/apei/apei-io.c | 2 +- xen/drivers/acpi/osl.c | 5 + xen/drivers/acpi/tables/tbfadt.c | 5 +- xen/drivers/char/Makefile | 2 + xen/drivers/char/console.c | 72 +++ xen/drivers/char/consoled.c | 148 ++++++ xen/drivers/char/ehci-dbgp.c | 2 +- xen/drivers/char/ns16550.c | 2 +- xen/drivers/char/xen_pv_console.c | 208 ++++++++ xen/drivers/video/Kconfig | 8 +- xen/include/asm-x86/apicdef.h | 2 +- xen/include/asm-x86/asm_defns.h | 12 + xen/include/asm-x86/cpuid.h | 3 - xen/include/asm-x86/dom0_build.h | 4 + xen/include/asm-x86/e820.h | 1 + xen/include/asm-x86/fixmap.h | 6 +- xen/include/asm-x86/guest.h | 37 ++ xen/include/asm-x86/guest/hypercall.h | 206 ++++++++ xen/include/asm-x86/guest/pvh-boot.h | 57 ++ xen/include/asm-x86/guest/xen.h | 85 +++ xen/include/asm-x86/hypercall.h | 3 + xen/include/asm-x86/processor.h | 4 +- xen/include/asm-x86/pv/shim.h | 107 ++++ xen/include/asm-x86/setup.h | 6 + xen/include/public/domctl.h | 3 +- xen/include/xen/acpi.h | 2 + xen/include/xen/consoled.h | 27 + xen/include/xen/domain.h | 1 + xen/include/xen/event.h | 15 + xen/include/xen/pv_console.h | 38 ++ xen/include/xen/rangeset.h | 4 +- xen/include/xen/sched.h | 4 +- 106 files changed, 4152 insertions(+), 429 deletions(-) -- generated by git-patchbot for /home/xen/git/xen.git#stable-4.10 _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |