The patch titled KVM: Remove extranous put_cpu() from vcpu_put() has been removed from the -mm tree. Its filename was kvm-remove-extranous-put_cpu-from-vcpu_put.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: KVM: Remove extranous put_cpu() from vcpu_put() From: Avi Kivity <avi@xxxxxxxxxxxx> The arch splitting patchset left an extra put_cpu() in core code, where it can cause trouble for CONFIG_PREEMPT kernels. Reported-by: Huihong Luo <huisinro@xxxxxxxxx> Signed-off-by: Avi Kivity <avi@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/kvm/kvm_main.c | 1 - 1 file changed, 1 deletion(-) diff -puN drivers/kvm/kvm_main.c~kvm-remove-extranous-put_cpu-from-vcpu_put drivers/kvm/kvm_main.c --- a/drivers/kvm/kvm_main.c~kvm-remove-extranous-put_cpu-from-vcpu_put +++ a/drivers/kvm/kvm_main.c @@ -205,7 +205,6 @@ static struct kvm_vcpu *vcpu_load(struct static void vcpu_put(struct kvm_vcpu *vcpu) { kvm_arch_ops->vcpu_put(vcpu); - put_cpu(); mutex_unlock(&vcpu->mutex); } _ Patches currently in -mm which might be from avi@xxxxxxxxxxxx are kvm-add-valid_vcpu-helper.patch kvm-amd-svm-handle-msr_star-in-32-bit-mode.patch kvm-amd-svm-save-and-restore-the-floating-point-unit.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html