From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33905) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZqjrS-0007f2-VB for qemu-devel@nongnu.org; Mon, 26 Oct 2015 11:39:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZqjrP-000421-O6 for qemu-devel@nongnu.org; Mon, 26 Oct 2015 11:39:02 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:33876) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZqjrP-00041u-Ii for qemu-devel@nongnu.org; Mon, 26 Oct 2015 11:38:59 -0400 From: Christopher Covington Date: Mon, 26 Oct 2015 11:38:47 -0400 Message-Id: <1445873930-9058-1-git-send-email-cov@codeaurora.org> In-Reply-To: <1444662470-13045-1-git-send-email-cov@codeaurora.org> References: <1444662470-13045-1-git-send-email-cov@codeaurora.org> Subject: [Qemu-devel] [kvm-unit-tests PATCHv5] ARM PMU tests List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: drjones@redhat.com, qemu-devel@nongnu.org, kvm@vger.kernel.org, kvmarm@lists.cs.columbia.edu, wei@redhat.com Cc: alindsay@codeaurora.org, croberts@codeaurora.org, shannon.zhao@linaro.org, alistair.francis@xilinx.com Changes from v4: * Add Drew's Reviewed-by to first patch. * Explain use of 32-bit cycle count values in AArch32. * Zero-initialize pmu_data struct before use in check_cycles_increase and check_cpi. While the insistence on not using memset is entirely my own vanity, I blame the funny syntax on https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53119 (adds extra set of braces) and checkpatch (adds spaces). * Improve formatting of inline assembly and better explain why so much code must be inline assembly.