From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59392) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsaHj-0001UU-GB for qemu-devel@nongnu.org; Fri, 07 Oct 2016 14:54:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bsaHf-00084D-H4 for qemu-devel@nongnu.org; Fri, 07 Oct 2016 14:54:19 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42936) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsaHf-00083X-B6 for qemu-devel@nongnu.org; Fri, 07 Oct 2016 14:54:15 -0400 Date: Fri, 7 Oct 2016 15:54:11 -0300 From: Eduardo Habkost Message-ID: <20161007185411.GG9160@thinpad.lan.raisama.net> References: <1475261386-20211-1-git-send-email-ehabkost@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1475261386-20211-1-git-send-email-ehabkost@redhat.com> Subject: Re: [Qemu-devel] [PATCH v5 00/12] Add runnability info to query-cpu-definitions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Michael Mueller , Christian Borntraeger , libvir-list@redhat.com, Markus Armbruster , dahi@linux.vnet.ibm.com, Paolo Bonzini , Cornelia Huck , Igor Mammedov , Jiri Denemark , Richard Henderson On Fri, Sep 30, 2016 at 03:49:34PM -0300, Eduardo Habkost wrote: [...] > Eduardo Habkost (12): > tests: Add test case for x86 feature parsing compatibility > target-i386: List CPU models using subclass list > target-i386: Disable VME by default with TCG > target-i386: Register aliases for feature names with underscores > target-i386: Make plus_features/minus_features QOM-based > target-i386: Remove underscores from feat_names arrays > target-i386: Register properties for feature aliases manually > target-i386: xsave: Add FP and SSE bits to x86_ext_save_areas Patches 1-8 (above) were applied to x86-next. I will send v6 of 9-12 (below), with a small change. > target-i386: Move warning code outside x86_cpu_filter_features() > target-i386: x86_cpu_load_features() function > qmp: Add runnability information to query-cpu-definitions > target-i386: Return runnability information on query-cpu-definitions > > qapi-schema.json | 23 +- > target-i386/cpu-qom.h | 4 + > target-i386/cpu.c | 510 ++++++++++++++++++++++++++---------------- > tests/test-x86-cpuid-compat.c | 44 ++++ > 4 files changed, 388 insertions(+), 193 deletions(-) > -- Eduardo