From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37810) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQZF0-0003gH-Jn for qemu-devel@nongnu.org; Tue, 02 Feb 2016 06:35:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aQZEw-00037C-JT for qemu-devel@nongnu.org; Tue, 02 Feb 2016 06:35:26 -0500 Received: from mx2.parallels.com ([199.115.105.18]:52482) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQZEw-00036C-DN for qemu-devel@nongnu.org; Tue, 02 Feb 2016 06:35:22 -0500 References: <1453384873-14832-1-git-send-email-asmetanin@virtuozzo.com> From: Andrey Smetanin Message-ID: <56B09445.9030009@virtuozzo.com> Date: Tue, 2 Feb 2016 14:34:29 +0300 MIME-Version: 1.0 In-Reply-To: <1453384873-14832-1-git-send-email-asmetanin@virtuozzo.com> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 0/5] KVM: Hyper-V VMBus hypercalls List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kvm@vger.kernel.org Cc: Gleb Natapov , Joerg Roedel , qemu-devel@nongnu.org, Roman Kagan , "Denis V. Lunev" , Paolo Bonzini , "K. Y. Srinivasan" , Haiyang Zhang ping On 01/21/2016 05:01 PM, Andrey Smetanin wrote: > The patch implements userspace exit 'KVM_EXIT_HYPERV' > for Hyper-V VMBus hypercalls(postmsg, signalevent) > to handle these hypercalls by QEMU. > > Changes v2: > * use KVM_EXIT_HYPERV for hypercalls > > Signed-off-by: Andrey Smetanin > Reviewed-by: Roman Kagan > CC: Gleb Natapov > CC: Paolo Bonzini > CC: Joerg Roedel > CC: "K. Y. Srinivasan" > CC: Haiyang Zhang > CC: Roman Kagan > CC: Denis V. Lunev > CC: qemu-devel@nongnu.org > > Andrey Smetanin (5): > kvm/x86: Rename Hyper-V long spin wait hypercall > drivers/hv: Move VMBus hypercall codes into Hyper-V UAPI header > kvm/x86: Pass return code of kvm_emulate_hypercall > kvm/x86: Reject Hyper-V hypercall continuation > kvm/x86: Hyper-V VMBus hypercall userspace exit > > Documentation/virtual/kvm/api.txt | 6 ++++++ > arch/x86/include/uapi/asm/hyperv.h | 4 +++- > arch/x86/kvm/hyperv.c | 40 +++++++++++++++++++++++++++++--------- > arch/x86/kvm/hyperv.h | 1 + > arch/x86/kvm/svm.c | 3 +-- > arch/x86/kvm/vmx.c | 3 +-- > arch/x86/kvm/x86.c | 5 +++++ > drivers/hv/hv.c | 4 ++-- > drivers/hv/hyperv_vmbus.h | 6 ------ > include/uapi/linux/kvm.h | 6 ++++++ > 10 files changed, 56 insertions(+), 22 deletions(-) >