Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86/fpu: Rename XFEATURES_NR_MAX

This is a logcal followon to the last patch. It makes the
XFEATURE_MAX naming consistent with the other enum values.
This is what Ingo suggested.

Signed-off-by: Dave 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/20150902233127.A541448F@viggo.jf.intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by

Dave Hansen and committed by
Ingo Molnar
dad8c4fe d91cab78

+3 -3
+1 -1
arch/x86/include/asm/fpu/types.h
··· 109 109 XFEATURE_ZMM_Hi256, 110 110 XFEATURE_Hi16_ZMM, 111 111 112 - XFEATURES_NR_MAX, 112 + XFEATURE_MAX, 113 113 }; 114 114 115 115 #define XFEATURE_MASK_FP (1 << XFEATURE_FP)
+2 -2
arch/x86/kernel/fpu/xstate.c
··· 31 31 */ 32 32 u64 xfeatures_mask __read_mostly; 33 33 34 - static unsigned int xstate_offsets[XFEATURES_NR_MAX] = { [ 0 ... XFEATURES_NR_MAX - 1] = -1}; 35 - static unsigned int xstate_sizes[XFEATURES_NR_MAX] = { [ 0 ... XFEATURES_NR_MAX - 1] = -1}; 34 + static unsigned int xstate_offsets[XFEATURE_MAX] = { [ 0 ... XFEATURE_MAX - 1] = -1}; 35 + static unsigned int xstate_sizes[XFEATURE_MAX] = { [ 0 ... XFEATURE_MAX - 1] = -1}; 36 36 static unsigned int xstate_comp_offsets[sizeof(xfeatures_mask)*8]; 37 37 38 38 /* The number of supported xfeatures in xfeatures_mask: */