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
65504a47
Commit
65504a47
authored
May 26, 2009
by
Michal Simek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
microblaze_mmu_v2: Enable fork syscall for MMU and add fork as vfork for noMMU
Signed-off-by:
Michal Simek
<
monstr@monstr.eu
>
parent
d4c1285e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
arch/microblaze/kernel/entry-nommu.S
arch/microblaze/kernel/entry-nommu.S
+1
-1
arch/microblaze/kernel/syscall_table.S
arch/microblaze/kernel/syscall_table.S
+5
-1
No files found.
arch/microblaze/kernel/entry-nommu.S
View file @
65504a47
...
...
@@ -10,7 +10,7 @@
#include <linux/linkage.h>
#include <asm/thread_info.h>
#include <
asm
/errno.h>
#include <
linux
/errno.h>
#include <asm/entry.h>
#include <asm/asm-offsets.h>
#include <asm/registers.h>
...
...
arch/microblaze/kernel/syscall_table.S
View file @
65504a47
...
...
@@ -2,7 +2,11 @@ ENTRY(sys_call_table)
.
long
sys_restart_syscall
/*
0
-
old
"setup()"
system
call
,
*
used
for
restarting
*/
.
long
sys_exit
.
long
sys_ni_syscall
/*
was
fork
*/
#ifdef CONFIG_MMU
.
long
sys_fork_wrapper
#else
.
long
sys_ni_syscall
#endif
.
long
sys_read
.
long
sys_write
.
long
sys_open
/*
5
*/
...
...
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