forked from aliguori/qemu
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into…
… staging * QOM interface fix (Eduardo) * RTC fixes (Gaohuai, Igor) * Memory leak fixes (Li Qiang, me) * Ctrl-a b regression (Marc-André) * Stubs cleanups and fixes (Leif, me) * hxtool tweak (me) * HAX support (Vincent) * QemuThread, exec.c and SCSI fixes (Roman, Xinhua, me) * PC_COMPAT_2_8 fix (Marcelo) * stronger bitmap assertions (Peter) # gpg: Signature made Fri 20 Jan 2017 12:49:01 GMT # gpg: using RSA key 0xBFFBD25F78C7AE83 # gpg: Good signature from "Paolo Bonzini <[email protected]>" # gpg: aka "Paolo Bonzini <[email protected]>" # Primary key fingerprint: 46F5 9FBD 57D6 12E7 BFD4 E2F7 7E15 100C CD36 69B1 # Subkey fingerprint: F133 3857 4B66 2389 866C 7682 BFFB D25F 78C7 AE83 * remotes/bonzini/tags/for-upstream: (35 commits) pc.h: move x-mach-use-reliable-get-clock compat entry to PC_COMPAT_2_8 bitmap: assert that start and nr are non negative Revert "win32: don't run subprocess tests on Mingw32 platform" hax: add Darwin support Plumb the HAXM-based hardware acceleration support target/i386: Add Intel HAX files kvm: move cpu synchronization code KVM: PPC: eliminate unnecessary duplicate constants ramblock-notifier: new char: fix ctrl-a b not working exec: Add missing rcu_read_unlock x86: ioapic: fix fail migration when irqchip=split x86: ioapic: dump version for "info ioapic" x86: ioapic: add traces for ioapic hxtool: emit Texinfo headings as @subsection qemu-thread: fix qemu_thread_set_name() race in qemu_thread_create() serial: fix memory leak in serial exit scsi-block: fix direction of BYTCHK test for VERIFY commands pc: fix crash in rtc_set_memory() if initial cpu is marked as hotplugged acpi: filter based on CONFIG_ACPI_X86 rather than TARGET ... # Conflicts: # include/hw/i386/pc.h
- Loading branch information
Showing
110 changed files
with
3,728 additions
and
468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1501,6 +1501,7 @@ M: Riku Voipio <[email protected]> | |
S: Maintained | ||
F: thunk.c | ||
F: user-exec.c | ||
F: user-exec-stub.c | ||
|
||
BSD user | ||
S: Orphan | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* QEMU HAXM support | ||
* | ||
* Copyright (c) 2015, Intel Corporation | ||
* | ||
* Copyright 2016 Google, Inc. | ||
* | ||
* This software is licensed under the terms of the GNU General Public | ||
* License version 2, as published by the Free Software Foundation, and | ||
* may be copied, distributed, and modified under those terms. | ||
* | ||
* See the COPYING file in the top-level directory. | ||
* | ||
*/ | ||
|
||
#include "qemu/osdep.h" | ||
#include "qemu-common.h" | ||
#include "cpu.h" | ||
#include "sysemu/hax.h" | ||
|
||
int hax_sync_vcpus(void) | ||
{ | ||
return 0; | ||
} | ||
|
||
int hax_init_vcpu(CPUState *cpu) | ||
{ | ||
return -ENOSYS; | ||
} | ||
|
||
int hax_smp_cpu_exec(CPUState *cpu) | ||
{ | ||
return -ENOSYS; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
ifeq ($(CONFIG_ACPI),y) | ||
common-obj-$(CONFIG_ACPI_X86) += core.o piix4.o pcihp.o | ||
common-obj-$(CONFIG_ACPI_X86_ICH) += ich9.o tco.o | ||
common-obj-$(CONFIG_ACPI_CPU_HOTPLUG) += cpu_hotplug.o | ||
common-obj-$(CONFIG_ACPI_MEMORY_HOTPLUG) += memory_hotplug.o | ||
common-obj-$(CONFIG_ACPI_CPU_HOTPLUG) += cpu.o | ||
common-obj-$(CONFIG_ACPI_NVDIMM) += nvdimm.o | ||
common-obj-$(CONFIG_ACPI) += acpi_interface.o | ||
common-obj-$(CONFIG_ACPI) += bios-linker-loader.o | ||
common-obj-$(CONFIG_ACPI) += aml-build.o | ||
common-obj-$(call land,$(CONFIG_ACPI),$(CONFIG_IPMI)) += ipmi.o | ||
common-obj-$(call lnot,$(CONFIG_ACPI_X86)) += acpi-stub.o | ||
|
||
common-obj-y += acpi_interface.o | ||
common-obj-y += bios-linker-loader.o | ||
common-obj-y += aml-build.o | ||
|
||
common-obj-$(CONFIG_IPMI) += ipmi.o | ||
common-obj-$(call lnot,$(CONFIG_IPMI)) += ipmi-stub.o | ||
else | ||
common-obj-y += acpi-stub.o | ||
endif | ||
common-obj-$(CONFIG_ALL) += acpi-stub.o ipmi-stub.o |
Oops, something went wrong.