Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
826eba4d
Commit
826eba4d
authored
Aug 03, 2012
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
the only place that needs to include asm/exec.h is linux/binfmts.h
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
ddd03a1f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
4 deletions
+1
-4
arch/arm/include/asm/system.h
arch/arm/include/asm/system.h
+0
-1
fs/binfmt_elf.c
fs/binfmt_elf.c
+0
-1
fs/binfmt_elf_fdpic.c
fs/binfmt_elf_fdpic.c
+0
-1
fs/exec.c
fs/exec.c
+0
-1
include/linux/binfmts.h
include/linux/binfmts.h
+1
-0
No files found.
arch/arm/include/asm/system.h
View file @
826eba4d
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <asm/barrier.h>
#include <asm/barrier.h>
#include <asm/compiler.h>
#include <asm/compiler.h>
#include <asm/cmpxchg.h>
#include <asm/cmpxchg.h>
#include <asm/exec.h>
#include <asm/switch_to.h>
#include <asm/switch_to.h>
#include <asm/system_info.h>
#include <asm/system_info.h>
#include <asm/system_misc.h>
#include <asm/system_misc.h>
fs/binfmt_elf.c
View file @
826eba4d
...
@@ -35,7 +35,6 @@
...
@@ -35,7 +35,6 @@
#include <asm/uaccess.h>
#include <asm/uaccess.h>
#include <asm/param.h>
#include <asm/param.h>
#include <asm/page.h>
#include <asm/page.h>
#include <asm/exec.h>
static
int
load_elf_binary
(
struct
linux_binprm
*
bprm
,
struct
pt_regs
*
regs
);
static
int
load_elf_binary
(
struct
linux_binprm
*
bprm
,
struct
pt_regs
*
regs
);
static
int
load_elf_library
(
struct
file
*
);
static
int
load_elf_library
(
struct
file
*
);
...
...
fs/binfmt_elf_fdpic.c
View file @
826eba4d
...
@@ -39,7 +39,6 @@
...
@@ -39,7 +39,6 @@
#include <asm/uaccess.h>
#include <asm/uaccess.h>
#include <asm/param.h>
#include <asm/param.h>
#include <asm/pgalloc.h>
#include <asm/pgalloc.h>
#include <asm/exec.h>
typedef
char
*
elf_caddr_t
;
typedef
char
*
elf_caddr_t
;
...
...
fs/exec.c
View file @
826eba4d
...
@@ -59,7 +59,6 @@
...
@@ -59,7 +59,6 @@
#include <asm/uaccess.h>
#include <asm/uaccess.h>
#include <asm/mmu_context.h>
#include <asm/mmu_context.h>
#include <asm/tlb.h>
#include <asm/tlb.h>
#include <asm/exec.h>
#include <trace/events/task.h>
#include <trace/events/task.h>
#include "internal.h"
#include "internal.h"
...
...
include/linux/binfmts.h
View file @
826eba4d
...
@@ -19,6 +19,7 @@ struct pt_regs;
...
@@ -19,6 +19,7 @@ struct pt_regs;
#ifdef __KERNEL__
#ifdef __KERNEL__
#include <linux/sched.h>
#include <linux/sched.h>
#include <asm/exec.h>
#define CORENAME_MAX_SIZE 128
#define CORENAME_MAX_SIZE 128
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment