diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-02-14 09:41:09 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-26 16:15:32 +0200 |
commit | 9b5609fd773e6ac0b1d6d6e1bf68f32cca64e06b (patch) | |
tree | 8165d977065811518e7e0abc166ccb45f622146f | |
parent | 72370f2a5b227bd3817593a6b15ea3f53f51dfcb (diff) | |
download | op-kernel-dev-9b5609fd773e6ac0b1d6d6e1bf68f32cca64e06b.zip op-kernel-dev-9b5609fd773e6ac0b1d6d6e1bf68f32cca64e06b.tar.gz |
stackprotector: include files
create <linux/stackprotector.h> for core kernel files to include.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | include/asm-x86/stackprotector.h | 4 | ||||
-rw-r--r-- | include/linux/stackprotector.h | 8 | ||||
-rw-r--r-- | init/main.c | 1 |
3 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-x86/stackprotector.h b/include/asm-x86/stackprotector.h new file mode 100644 index 0000000..dcac7a6 --- /dev/null +++ b/include/asm-x86/stackprotector.h @@ -0,0 +1,4 @@ +#ifndef _ASM_STACKPROTECTOR_H +#define _ASM_STACKPROTECTOR_H 1 + +#endif diff --git a/include/linux/stackprotector.h b/include/linux/stackprotector.h new file mode 100644 index 0000000..d3e8bbe --- /dev/null +++ b/include/linux/stackprotector.h @@ -0,0 +1,8 @@ +#ifndef _LINUX_STACKPROTECTOR_H +#define _LINUX_STACKPROTECTOR_H 1 + +#ifdef CONFIG_CC_STACKPROTECTOR +# include <asm/stackprotector.h> +#endif + +#endif diff --git a/init/main.c b/init/main.c index f7fb200..a84322c 100644 --- a/init/main.c +++ b/init/main.c @@ -14,6 +14,7 @@ #include <linux/proc_fs.h> #include <linux/kernel.h> #include <linux/syscalls.h> +#include <linux/stackprotector.h> #include <linux/string.h> #include <linux/ctype.h> #include <linux/delay.h> |