| commit | c13d1b1dfc36e89a825004942490e13b84a9b5be | [log] [tgz] |
|---|---|---|
| author | Kees Cook <keescook@chromium.org> | Tue Jan 02 13:46:39 2018 -0800 |
| committer | Kees Cook <keescook@chromium.org> | Tue Jan 02 13:48:04 2018 -0800 |
| tree | 068586049f5cb8e07c899a5b3db51dc26ef6f526 | |
| parent | 55c85e9ef1085d41241f472c2eab0c0ce7bdf21d [diff] |
KPTI: Fix build when ftrace enabled This adds a missing include for when function tracing is enabled. Signed-off-by: Kees Cook <keescook@chromium.org>
diff --git a/arch/x86/mm/kaiser.c b/arch/x86/mm/kaiser.c index 28e85ec..526288f 100644 --- a/arch/x86/mm/kaiser.c +++ b/arch/x86/mm/kaiser.c
@@ -5,6 +5,7 @@ #include <linux/types.h> #include <linux/bug.h> #include <linux/init.h> +#include <linux/ftrace.h> #include <linux/interrupt.h> #include <linux/spinlock.h> #include <linux/mm.h>