From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [RESEND PATCH 1/3] x86: Adding structs to reflect cpuid fields Date: Fri, 19 Sep 2014 15:40:29 +0200 Message-ID: <541C324D.2080608@redhat.com> References: <20140917124501.GC5358@nazgul.tnic> <1410958454-7501-1-git-send-email-namit@cs.technion.ac.il> <1410958454-7501-2-git-send-email-namit@cs.technion.ac.il> <20140917132141.GD5358@nazgul.tnic> <20140917140601.GE5358@nazgul.tnic> <541AD8F3.5010700@redhat.com> <20140918132635.GB27008@nazgul.tnic> <541ADFEB.6030801@redhat.com> <20140919075814.GA30491@nazgul.tnic> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Nadav Amit , Ingo Molnar , "H. Peter Anvin" , Ingo Molnar , Thomas Gleixner , the arch/x86 maintainers , kvm , Linux Kernel Mailing List , Linus Torvalds , Andrew Morton , Peter Zijlstra To: Borislav Petkov Return-path: Received: from mx1.redhat.com ([209.132.183.28]:43463 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754306AbaISNlI (ORCPT ); Fri, 19 Sep 2014 09:41:08 -0400 In-Reply-To: <20140919075814.GA30491@nazgul.tnic> Sender: kvm-owner@vger.kernel.org List-ID: Il 19/09/2014 09:58, Borislav Petkov ha scritto: >> > The trivial example is feature bits like XSAVE. We query them all the >> > time without checking the family when they were first introduced, >> > don't we? > The feature bits would obviously be 0 if features are not supported. And similarly, Intel would not extend a bit from 16 to 17 bits if it weren't zero on all older processors. > However, even there > > "16 - Reserved - Do not count on the value." > > I'm quoting Intel's CPUID doc 241618-037 from 2011 (there might be a > newer one though), the CPUID(1).ECX description. Once that bit gets a meaning in newer processors, the same meaning will work retroactively for existing processors. That's just how CPUID is used. Nobody checks families before testing bits, Intel/AMD do not even suggest that. > Do you have a guarantee that this won't happen in the future and break > all your fancy bitfields assumptions? No guarantee, but were that to happen, I'd expect tar and feathers spectacles around Intel's engineering headquarters. Paolo