From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57152) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9ZyF-0002BB-RA for qemu-devel@nongnu.org; Thu, 17 Dec 2015 09:55:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a9ZyC-0003YW-K3 for qemu-devel@nongnu.org; Thu, 17 Dec 2015 09:55:55 -0500 Received: from mail-wm0-x22d.google.com ([2a00:1450:400c:c09::22d]:33167) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9ZyC-0003YJ-Dz for qemu-devel@nongnu.org; Thu, 17 Dec 2015 09:55:52 -0500 Received: by mail-wm0-x22d.google.com with SMTP id p187so26712515wmp.0 for ; Thu, 17 Dec 2015 06:55:52 -0800 (PST) Sender: Paolo Bonzini References: <1449592610-10646-1-git-send-email-asmetanin@virtuozzo.com> <5671B298.6030802@openvz.org> From: Paolo Bonzini Message-ID: <5672CCF4.7060708@redhat.com> Date: Thu, 17 Dec 2015 15:55:48 +0100 MIME-Version: 1.0 In-Reply-To: <5671B298.6030802@openvz.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 0/3] KVM-UNIT-TESTS: Hyper-V SynIC timers test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Denis V. Lunev" , Andrey Smetanin , kvm@vger.kernel.org Cc: Marcelo Tosatti , Roman Kagan , qemu-devel@nongnu.org On 16/12/2015 19:51, Denis V. Lunev wrote: > On 12/08/2015 07:36 PM, Andrey Smetanin wrote: >> The test checks Hyper-V SynIC timers functionality. >> The test runs on every vCPU and performs start/stop >> of periodic/one-shot timers (with period=1ms) and checks >> validity of received expiration messages in appropriate >> ISR's. >> >> Changes v2: >> * Share generic Hyper-V tests code >> * Hyper-V SynIC timers test fixes to improve >> readability and output >> >> Signed-off-by: Andrey Smetanin >> Reviewed-by: Roman Kagan >> CC: Paolo Bonzini >> CC: Marcelo Tosatti >> CC: Roman Kagan >> CC: Denis V. Lunev >> CC: qemu-devel@nongnu.org >> >> Andrey Smetanin (3): >> lib/x86: Make free_page() available to call >> x86/hyperv: Move Hyper-V generic code into hyperv.h/hyperv.c >> x86: Hyper-V SynIC timers test >> >> config/config-x86-common.mak | 8 +- >> lib/x86/msr.h | 23 --- >> lib/x86/vm.h | 1 + >> x86/hyperv.c | 24 +++ >> x86/hyperv.h | 183 +++++++++++++++++++++ >> x86/hyperv_stimer.c | 376 >> +++++++++++++++++++++++++++++++++++++++++++ >> x86/hyperv_synic.c | 42 +---- >> x86/unittests.cfg | 5 + >> 8 files changed, 603 insertions(+), 59 deletions(-) >> create mode 100644 x86/hyperv.c >> create mode 100644 x86/hyperv.h >> create mode 100644 x86/hyperv_stimer.c >> > ping :) I was waiting for the QEMU 2.5 release so that I can merge the support patches first. Paolo