• D
    x86/fpu: Remove 'xfeature_nr' · ee9ae257
    Dave Hansen 提交于
    xfeature_nr ended up being initialized too late for me to
    use it in the "xsave size sanity check" patch which is
    later in the series.  I tried to move around its initialization
    but realized that it was just as easy to get rid of it.
    
    We only have 9 XFEATURES.  Instead of dynamically calculating
    and storing the last feature, just use the compile-time max:
    XFEATURES_NR_MAX.  Note that even with 'xfeatures_nr' we can
    had "holes" in the xfeatures_mask that we had to deal with.
    
    We also change a 'leaf' variable to be a plain 'i'.  Although
    it is used to grab a cpuid leaf in this one loop, all of the
    other loops just use an 'i' and I find it much more obvious
    to keep the naming consistent across all the similar loops.
    Signed-off-by: NDave Hansen <dave.hansen@linux.intel.com>
    Cc: Andy Lutomirski <luto@amacapital.net>
    Cc: Borislav Petkov <bp@alien8.de>
    Cc: Brian Gerst <brgerst@gmail.com>
    Cc: Denys Vlasenko <dvlasenk@redhat.com>
    Cc: Fenghua Yu <fenghua.yu@intel.com>
    Cc: H. Peter Anvin <hpa@zytor.com>
    Cc: Linus Torvalds <torvalds@linux-foundation.org>
    Cc: Peter Zijlstra <peterz@infradead.org>
    Cc: Thomas Gleixner <tglx@linutronix.de>
    Cc: Tim Chen <tim.c.chen@linux.intel.com>
    Cc: dave@sr71.net
    Cc: linux-kernel@vger.kernel.org
    Link: http://lkml.kernel.org/r/20150902233128.3F30DF5A@viggo.jf.intel.comSigned-off-by: NIngo Molnar <mingo@kernel.org>
    ee9ae257
xstate.c 13.6 KB