diff options
author | Andreas Mohr <andi@rhlx01.fht-esslingen.de> | 2006-06-23 11:04:26 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 16:42:57 +0200 |
commit | 7b0c2d92180dbd9c7cd0c4b9bd38b06bb0f12843 (patch) | |
tree | 5157857da98668f9473ba95993a623f604a2a5ab /arch/i386/kernel/i387.c | |
parent | [PATCH] x86: cyrix code CONFIG_PCI fix / add __initdata (diff) | |
download | linux-7b0c2d92180dbd9c7cd0c4b9bd38b06bb0f12843.tar.xz linux-7b0c2d92180dbd9c7cd0c4b9bd38b06bb0f12843.zip |
[PATCH] x86: make i387 mxcsr_feature_mask __read_mostly
Signed-off-by: Andreas Mohr <andi@lisas.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386/kernel/i387.c')
-rw-r--r-- | arch/i386/kernel/i387.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/i387.c b/arch/i386/kernel/i387.c index d75524758daf..c4351972d9af 100644 --- a/arch/i386/kernel/i387.c +++ b/arch/i386/kernel/i387.c @@ -25,7 +25,7 @@ #define HAVE_HWFP 1 #endif -static unsigned long mxcsr_feature_mask = 0xffffffff; +static unsigned long mxcsr_feature_mask __read_mostly = 0xffffffff; void mxcsr_feature_mask_init(void) { |