diff options
author | 2009-03-23 14:50:03 +0100 | |
---|---|---|
committer | 2009-03-23 21:20:20 +0100 | |
commit | 80c5520811d3805adcb15c570ea5e2d489fa5d0b (patch) | |
tree | ae797a7f4af39f80e77526533d06ac23b439f0ab /include/linux/stackprotector.h | |
parent | Merge branches 'irq/sparseirq' and 'linus' into irq/core (diff) | |
parent | cpumask: remove cpumask allocation from idle_balance, fix (diff) | |
download | linux-dev-80c5520811d3805adcb15c570ea5e2d489fa5d0b.tar.xz linux-dev-80c5520811d3805adcb15c570ea5e2d489fa5d0b.zip |
Merge branch 'cpus4096' into irq/threaded
Conflicts:
arch/parisc/kernel/irq.c
kernel/irq/handle.c
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/stackprotector.h')
-rw-r--r-- | include/linux/stackprotector.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/stackprotector.h b/include/linux/stackprotector.h new file mode 100644 index 000000000000..6f3e54c704c0 --- /dev/null +++ b/include/linux/stackprotector.h @@ -0,0 +1,16 @@ +#ifndef _LINUX_STACKPROTECTOR_H +#define _LINUX_STACKPROTECTOR_H 1 + +#include <linux/compiler.h> +#include <linux/sched.h> +#include <linux/random.h> + +#ifdef CONFIG_CC_STACKPROTECTOR +# include <asm/stackprotector.h> +#else +static inline void boot_init_stack_canary(void) +{ +} +#endif + +#endif |