From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60250) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1egbgH-0006ZL-7Y for qemu-devel@nongnu.org; Tue, 30 Jan 2018 14:36:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1egbff-0001i1-T1 for qemu-devel@nongnu.org; Tue, 30 Jan 2018 14:34:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:38412) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1egbff-0001h6-GF for qemu-devel@nongnu.org; Tue, 30 Jan 2018 14:34:19 -0500 References: <1516655269-1785-1-git-send-email-juterry@microsoft.com> From: Paolo Bonzini Message-ID: Date: Tue, 30 Jan 2018 14:34:13 -0500 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 0/4] Updates based on feedback. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Justin Terry (VM)" , "qemu-devel@nongnu.org" Cc: "crosthwaite.peter@gmail.com" , "rth@twiddle.net" , "ehabkost@redhat.com" On 29/01/2018 14:58, Justin Terry (VM) wrote: > Hi All, > > Is there any additional feedback I can address here to help out the process? Please let me know. Nothing specifically (it didn't help that most of last week I was sick!). From my point of view, I just need to review the changes you made and include these patches in a pull request. Thanks, Paolo > Thanks again, > Justin > >> -----Original Message----- >> From: Justin Terry (VM) >> Sent: Monday, January 22, 2018 1:08 PM >> To: qemu-devel@nongnu.org >> Cc: pbonzini@redhat.com; crosthwaite.peter@gmail.com; rth@twiddle.net; >> ehabkost@redhat.com; Justin Terry (VM) >> Subject: [PATCH v2 0/4] Updates based on feedback. >> >> Updates based on review feedback. >> >> 1. Fixes style issues and properly ran the scripts/checkpatch pre submission. >> 2. Added migration blockers for CPUID, dirty memory tracking, and >> XSAVE/XRSTOR. >> 3. Fixed some bugs around register states when using bios vs efi. >> >> Justin Terry (VM) (4): >> Add the Windows Hypervisor Platform accelerator. >> Add the WHPX vcpu API >> Introduce the WHPX impl >> Add the WHPX acceleration enlightenments >> >> accel/stubs/Makefile.objs | 9 +- >> accel/stubs/whpx-stub.c | 48 ++ >> configure | 48 +- >> cpus.c | 66 ++- >> include/sysemu/hw_accel.h | 13 + >> include/sysemu/whpx.h | 40 ++ >> qemu-options.hx | 8 +- >> target/i386/Makefile.objs | 1 + >> target/i386/helper.c | 2 +- >> target/i386/whpx-all.c | 1366 >> +++++++++++++++++++++++++++++++++++++++++++++ >> 10 files changed, 1590 insertions(+), 11 deletions(-) create mode 100644 >> accel/stubs/whpx-stub.c create mode 100644 include/sysemu/whpx.h >> create mode 100644 target/i386/whpx-all.c >> >> -- >> 2.7.4 >