mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
4205942968
Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
16 lines
285 B
C
16 lines
285 B
C
#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
|