diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-05 19:26:26 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-05 19:26:26 -0500 |
| commit | 933425fb0010bd02bd459b41e63082756818ffce (patch) | |
| tree | 1cbc6c2035b9dcff8cb265c9ac562cbee7c6bb82 /Makefile | |
| parent | a3e7531535a0c6e5acbaa5436f37933bb471aa95 (diff) | |
| parent | a3eaa8649e4c6a6afdafaa04b9114fb230617bb1 (diff) | |
Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
Pull KVM updates from Paolo Bonzini:
"First batch of KVM changes for 4.4.
s390:
A bunch of fixes and optimizations for interrupt and time handling.
PPC:
Mostly bug fixes.
ARM:
No big features, but many small fixes and prerequisites including:
- a number of fixes for the arch-timer
- introducing proper level-triggered semantics for the arch-timers
- a series of patches to synchronously halt a guest (prerequisite
for IRQ forwarding)
- some tracepoint improvements
- a tweak for the EL2 panic handlers
- some more VGIC cleanups getting rid of redundant state
x86:
Quite a few changes:
- support for VT-d posted interrupts (i.e. PCI devices can inject
interrupts directly into vCPUs). This introduces a new
component (in virt/lib/) that connects VFIO and KVM together.
The same infrastructure will be used for ARM interrupt
forwarding as well.
- more Hyper-V features, though the main one Hyper-V synthetic
interrupt controller will have to wait for 4.5. These will let
KVM expose Hyper-V devices.
- nested virtualization now supports VPID (same as PCID but for
vCPUs) which makes it quite a bit faster
- for future hardware that supports NVDIMM, there is support for
clflushopt, clwb, pcommit
- support for "split irqchip", i.e. LAPIC in kernel +
IOAPIC/PIC/PIT in userspace, which reduces the attack surface of
the hypervisor
- obligatory smattering of SMM fixes
- on the guest side, stable scheduler clock support was rewritten
to not require help from the hypervisor"
* tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm: (123 commits)
KVM: VMX: Fix commit which broke PML
KVM: x86: obey KVM_X86_QUIRK_CD_NW_CLEARED in kvm_set_cr0()
KVM: x86: allow RSM from 64-bit mode
KVM: VMX: fix SMEP and SMAP without EPT
KVM: x86: move kvm_set_irq_inatomic to legacy device assignment
KVM: device assignment: remove pointless #ifdefs
KVM: x86: merge kvm_arch_set_irq with kvm_set_msi_inatomic
KVM: x86: zero apic_arb_prio on reset
drivers/hv: share Hyper-V SynIC constants with userspace
KVM: x86: handle SMBASE as physical address in RSM
KVM: x86: add read_phys to x86_emulate_ops
KVM: x86: removing unused variable
KVM: don't pointlessly leave KVM_COMPAT=y in non-KVM configs
KVM: arm/arm64: Merge vgic_set_lr() and vgic_sync_lr_elrsr()
KVM: arm/arm64: Clean up vgic_retire_lr() and surroundings
KVM: arm/arm64: Optimize away redundant LR tracking
KVM: s390: use simple switch statement as multiplexer
KVM: s390: drop useless newline in debugging data
KVM: s390: SCA must not cross page boundaries
KVM: arm: Do not indent the arguments of DECLARE_BITMAP
...
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
| @@ -550,6 +550,7 @@ drivers-y := drivers/ sound/ firmware/ | |||
| 550 | net-y := net/ | 550 | net-y := net/ |
| 551 | libs-y := lib/ | 551 | libs-y := lib/ |
| 552 | core-y := usr/ | 552 | core-y := usr/ |
| 553 | virt-y := virt/ | ||
| 553 | endif # KBUILD_EXTMOD | 554 | endif # KBUILD_EXTMOD |
| 554 | 555 | ||
| 555 | ifeq ($(dot-config),1) | 556 | ifeq ($(dot-config),1) |
| @@ -882,10 +883,10 @@ core-y += kernel/ certs/ mm/ fs/ ipc/ security/ crypto/ block/ | |||
| 882 | 883 | ||
| 883 | vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \ | 884 | vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \ |
| 884 | $(core-y) $(core-m) $(drivers-y) $(drivers-m) \ | 885 | $(core-y) $(core-m) $(drivers-y) $(drivers-m) \ |
| 885 | $(net-y) $(net-m) $(libs-y) $(libs-m))) | 886 | $(net-y) $(net-m) $(libs-y) $(libs-m) $(virt-y))) |
| 886 | 887 | ||
| 887 | vmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \ | 888 | vmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \ |
| 888 | $(init-) $(core-) $(drivers-) $(net-) $(libs-)))) | 889 | $(init-) $(core-) $(drivers-) $(net-) $(libs-) $(virt-)))) |
| 889 | 890 | ||
| 890 | init-y := $(patsubst %/, %/built-in.o, $(init-y)) | 891 | init-y := $(patsubst %/, %/built-in.o, $(init-y)) |
| 891 | core-y := $(patsubst %/, %/built-in.o, $(core-y)) | 892 | core-y := $(patsubst %/, %/built-in.o, $(core-y)) |
| @@ -894,14 +895,15 @@ net-y := $(patsubst %/, %/built-in.o, $(net-y)) | |||
| 894 | libs-y1 := $(patsubst %/, %/lib.a, $(libs-y)) | 895 | libs-y1 := $(patsubst %/, %/lib.a, $(libs-y)) |
| 895 | libs-y2 := $(patsubst %/, %/built-in.o, $(libs-y)) | 896 | libs-y2 := $(patsubst %/, %/built-in.o, $(libs-y)) |
| 896 | libs-y := $(libs-y1) $(libs-y2) | 897 | libs-y := $(libs-y1) $(libs-y2) |
| 898 | virt-y := $(patsubst %/, %/built-in.o, $(virt-y)) | ||
| 897 | 899 | ||
| 898 | # Externally visible symbols (used by link-vmlinux.sh) | 900 | # Externally visible symbols (used by link-vmlinux.sh) |
| 899 | export KBUILD_VMLINUX_INIT := $(head-y) $(init-y) | 901 | export KBUILD_VMLINUX_INIT := $(head-y) $(init-y) |
| 900 | export KBUILD_VMLINUX_MAIN := $(core-y) $(libs-y) $(drivers-y) $(net-y) | 902 | export KBUILD_VMLINUX_MAIN := $(core-y) $(libs-y) $(drivers-y) $(net-y) $(virt-y) |
| 901 | export KBUILD_LDS := arch/$(SRCARCH)/kernel/vmlinux.lds | 903 | export KBUILD_LDS := arch/$(SRCARCH)/kernel/vmlinux.lds |
| 902 | export LDFLAGS_vmlinux | 904 | export LDFLAGS_vmlinux |
| 903 | # used by scripts/pacmage/Makefile | 905 | # used by scripts/pacmage/Makefile |
| 904 | export KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) arch Documentation include samples scripts tools virt) | 906 | export KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) arch Documentation include samples scripts tools) |
| 905 | 907 | ||
| 906 | vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_INIT) $(KBUILD_VMLINUX_MAIN) | 908 | vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_INIT) $(KBUILD_VMLINUX_MAIN) |
| 907 | 909 | ||
