diff options
author | Dave Hansen <dave.hansen@linux.intel.com> | 2014-11-17 16:36:08 -0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2014-11-18 02:01:40 +0100 |
commit | abe1e395f6171cb2d07330c690fe0285f7f859e6 (patch) | |
tree | 70d7a8d52164c76215b9fe0a042e2cd46d345325 /fs/exec.c | |
parent | 5776563648f6437ede91c91cbad85862ca682b0b (diff) | |
download | linux-abe1e395f6171cb2d07330c690fe0285f7f859e6.tar.gz linux-abe1e395f6171cb2d07330c690fe0285f7f859e6.tar.bz2 linux-abe1e395f6171cb2d07330c690fe0285f7f859e6.zip |
fs: Do not include mpx.h in exec.c
We no longer need mpx.h in exec.c. This will obviously also
break the build for non-x86 builds. We get the MPX includes that
we need from mmu_context.h now.
Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Dave Hansen <dave@sr71.net>
Link: http://lkml.kernel.org/r/20141118003608.837015B3@viggo.jf.intel.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'fs/exec.c')
-rw-r--r-- | fs/exec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/exec.c b/fs/exec.c index 65d4f5c70ef4..01aebe300200 100644 --- a/fs/exec.c +++ b/fs/exec.c @@ -60,7 +60,6 @@ #include <asm/uaccess.h> #include <asm/mmu_context.h> #include <asm/tlb.h> -#include <asm/mpx.h> #include <trace/events/task.h> #include "internal.h" |