aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/stackprotector.h
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2009-02-09 08:17:39 -0500
committerIngo Molnar <mingo@elte.hu>2009-02-09 18:41:29 -0500
commit76397f72fb9f4c9a96dfe05462887811c81b0e17 (patch)
tree764a20005ed1efeb7b459ae030495c7e709bc3da /arch/x86/include/asm/stackprotector.h
parent6cd61c0baa8bce32271226198b46c67a7a05d108 (diff)
x86: stackprotector.h misc update
Impact: misc udpate * wrap content with CONFIG_CC_STACK_PROTECTOR so that other arch files can include it directly * add missing includes This will help future changes. Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/stackprotector.h')
-rw-r--r--arch/x86/include/asm/stackprotector.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/include/asm/stackprotector.h b/arch/x86/include/asm/stackprotector.h
index 36a700acaf2b..ee275e9f48ab 100644
--- a/arch/x86/include/asm/stackprotector.h
+++ b/arch/x86/include/asm/stackprotector.h
@@ -1,8 +1,12 @@
1#ifndef _ASM_STACKPROTECTOR_H 1#ifndef _ASM_STACKPROTECTOR_H
2#define _ASM_STACKPROTECTOR_H 1 2#define _ASM_STACKPROTECTOR_H 1
3 3
4#ifdef CONFIG_CC_STACKPROTECTOR
5
4#include <asm/tsc.h> 6#include <asm/tsc.h>
5#include <asm/processor.h> 7#include <asm/processor.h>
8#include <asm/percpu.h>
9#include <linux/random.h>
6 10
7/* 11/*
8 * Initialize the stackprotector canary value. 12 * Initialize the stackprotector canary value.
@@ -35,4 +39,5 @@ static __always_inline void boot_init_stack_canary(void)
35 percpu_write(irq_stack_union.stack_canary, canary); 39 percpu_write(irq_stack_union.stack_canary, canary);
36} 40}
37 41
38#endif 42#endif /* CC_STACKPROTECTOR */
43#endif /* _ASM_STACKPROTECTOR_H */