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
aa18e4a6
Commit
aa18e4a6
authored
Aug 03, 2003
by
Andrew Morton
Committed by
Linus Torvalds
Aug 03, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] fix 64-bit architectures for the binprm change
Various 32-bit emulators need to fill in linux_binprm.interp
parent
2fd68d96
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
0 deletions
+4
-0
arch/mips/kernel/linux32.c
arch/mips/kernel/linux32.c
+1
-0
arch/parisc/kernel/sys_parisc32.c
arch/parisc/kernel/sys_parisc32.c
+1
-0
arch/ppc64/kernel/sys_ppc32.c
arch/ppc64/kernel/sys_ppc32.c
+1
-0
arch/s390/kernel/compat_linux.c
arch/s390/kernel/compat_linux.c
+1
-0
No files found.
arch/mips/kernel/linux32.c
View file @
aa18e4a6
...
@@ -253,6 +253,7 @@ do_execve32(char * filename, u32 * argv, u32 * envp, struct pt_regs * regs)
...
@@ -253,6 +253,7 @@ do_execve32(char * filename, u32 * argv, u32 * envp, struct pt_regs * regs)
bprm
.
file
=
file
;
bprm
.
file
=
file
;
bprm
.
filename
=
filename
;
bprm
.
filename
=
filename
;
bprm
.
interp
=
filename
;
bprm
.
sh_bang
=
0
;
bprm
.
sh_bang
=
0
;
bprm
.
loader
=
0
;
bprm
.
loader
=
0
;
bprm
.
exec
=
0
;
bprm
.
exec
=
0
;
...
...
arch/parisc/kernel/sys_parisc32.c
View file @
aa18e4a6
...
@@ -183,6 +183,7 @@ do_execve32(char * filename, u32 * argv, u32 * envp, struct pt_regs * regs)
...
@@ -183,6 +183,7 @@ do_execve32(char * filename, u32 * argv, u32 * envp, struct pt_regs * regs)
bprm
.
file
=
file
;
bprm
.
file
=
file
;
bprm
.
filename
=
filename
;
bprm
.
filename
=
filename
;
bprm
.
interp
=
filename
;
bprm
.
sh_bang
=
0
;
bprm
.
sh_bang
=
0
;
bprm
.
loader
=
0
;
bprm
.
loader
=
0
;
bprm
.
exec
=
0
;
bprm
.
exec
=
0
;
...
...
arch/ppc64/kernel/sys_ppc32.c
View file @
aa18e4a6
...
@@ -1998,6 +1998,7 @@ static int do_execve32(char * filename, u32 * argv, u32 * envp, struct pt_regs *
...
@@ -1998,6 +1998,7 @@ static int do_execve32(char * filename, u32 * argv, u32 * envp, struct pt_regs *
bprm
.
file
=
file
;
bprm
.
file
=
file
;
bprm
.
filename
=
filename
;
bprm
.
filename
=
filename
;
bprm
.
interp
=
filename
;
bprm
.
sh_bang
=
0
;
bprm
.
sh_bang
=
0
;
bprm
.
loader
=
0
;
bprm
.
loader
=
0
;
bprm
.
exec
=
0
;
bprm
.
exec
=
0
;
...
...
arch/s390/kernel/compat_linux.c
View file @
aa18e4a6
...
@@ -1873,6 +1873,7 @@ do_execve32(char * filename, u32 * argv, u32 * envp, struct pt_regs * regs)
...
@@ -1873,6 +1873,7 @@ do_execve32(char * filename, u32 * argv, u32 * envp, struct pt_regs * regs)
bprm
.
file
=
file
;
bprm
.
file
=
file
;
bprm
.
filename
=
filename
;
bprm
.
filename
=
filename
;
bprm
.
interp
=
filename
;
bprm
.
sh_bang
=
0
;
bprm
.
sh_bang
=
0
;
bprm
.
loader
=
0
;
bprm
.
loader
=
0
;
bprm
.
exec
=
0
;
bprm
.
exec
=
0
;
...
...
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