diff options
author | Ingo Molnar <mingo@kernel.org> | 2015-04-24 03:54:44 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-05-19 16:47:31 +0300 |
commit | 78f7f1e54bac032b98956862a5bcf8c28ed22d07 (patch) | |
tree | 496ec6f2abd7a90a71eb8f2bd1b0f562c7ae8dd3 /arch/x86/include | |
parent | a137fb6bbf4f10b8ef1452e9b190d8bc76c04d0f (diff) | |
download | linux-78f7f1e54bac032b98956862a5bcf8c28ed22d07.tar.xz |
x86/fpu: Rename fpu-internal.h to fpu/internal.h
This unifies all the FPU related header files under a unified, hiearchical
naming scheme:
- asm/fpu/types.h: FPU related data types, needed for 'struct task_struct',
widely included in almost all kernel code, and hence kept
as small as possible.
- asm/fpu/api.h: FPU related 'public' methods exported to other subsystems.
- asm/fpu/internal.h: FPU subsystem internal methods
- asm/fpu/xsave.h: XSAVE support internal methods
(Also standardize the header guard in asm/fpu/internal.h.)
Reviewed-by: Borislav Petkov <bp@alien8.de>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/fpu/internal.h (renamed from arch/x86/include/asm/fpu-internal.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/include/asm/fpu-internal.h b/arch/x86/include/asm/fpu/internal.h index 20690a14c73a..386a8837c358 100644 --- a/arch/x86/include/asm/fpu-internal.h +++ b/arch/x86/include/asm/fpu/internal.h @@ -7,8 +7,8 @@ * x86-64 work by Andi Kleen 2002 */ -#ifndef _FPU_INTERNAL_H -#define _FPU_INTERNAL_H +#ifndef _ASM_X86_FPU_INTERNAL_H +#define _ASM_X86_FPU_INTERNAL_H #include <linux/regset.h> #include <linux/compat.h> @@ -553,4 +553,4 @@ alloc_mathframe(unsigned long sp, int ia32_frame, unsigned long *buf_fx, return sp; } -#endif +#endif /* _ASM_X86_FPU_INTERNAL_H */ |