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
nexedi
linux
Commits
92bbe6cd
Commit
92bbe6cd
authored
Oct 21, 2012
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
m32r: switch to generic fork/vfork/clone
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
27d892fb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
42 deletions
+7
-42
arch/m32r/include/asm/unistd.h
arch/m32r/include/asm/unistd.h
+3
-0
arch/m32r/kernel/process.c
arch/m32r/kernel/process.c
+4
-42
No files found.
arch/m32r/include/asm/unistd.h
View file @
92bbe6cd
...
...
@@ -353,6 +353,9 @@
#define __ARCH_WANT_SYS_RT_SIGACTION
#define __ARCH_WANT_SYS_RT_SIGSUSPEND
#define __ARCH_WANT_SYS_EXECVE
#define __ARCH_WANT_SYS_CLONE
#define __ARCH_WANT_SYS_FORK
#define __ARCH_WANT_SYS_VFORK
#define __IGNORE_lchown
#define __IGNORE_setuid
...
...
arch/m32r/kernel/process.c
View file @
92bbe6cd
...
...
@@ -192,7 +192,7 @@ int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
}
int
copy_thread
(
unsigned
long
clone_flags
,
unsigned
long
spu
,
unsigned
long
arg
,
struct
task_struct
*
tsk
,
struct
pt_regs
*
regs
)
unsigned
long
arg
,
struct
task_struct
*
tsk
,
struct
pt_regs
*
unused
)
{
struct
pt_regs
*
childregs
=
task_pt_regs
(
tsk
);
extern
void
ret_from_fork
(
void
);
...
...
@@ -206,8 +206,9 @@ int copy_thread(unsigned long clone_flags, unsigned long spu,
tsk
->
thread
.
lr
=
(
unsigned
long
)
ret_from_kernel_thread
;
}
else
{
/* Copy registers */
*
childregs
=
*
regs
;
childregs
->
spu
=
spu
;
*
childregs
=
*
current_pt_regs
();
if
(
spu
)
childregs
->
spu
=
spu
;
childregs
->
r0
=
0
;
/* Child gets zero as return value */
tsk
->
thread
.
lr
=
(
unsigned
long
)
ret_from_fork
;
}
...
...
@@ -216,45 +217,6 @@ int copy_thread(unsigned long clone_flags, unsigned long spu,
return
0
;
}
asmlinkage
int
sys_fork
(
void
)
{
#ifdef CONFIG_MMU
struct
pt_regs
*
regs
=
current_pt_regs
();
return
do_fork
(
SIGCHLD
,
regs
->
spu
,
regs
,
0
,
NULL
,
NULL
);
#else
return
-
EINVAL
;
#endif
/* CONFIG_MMU */
}
asmlinkage
int
sys_clone
(
unsigned
long
clone_flags
,
unsigned
long
newsp
,
unsigned
long
parent_tidptr
,
unsigned
long
child_tidptr
)
{
struct
pt_regs
*
regs
=
current_pt_regs
();
if
(
!
newsp
)
newsp
=
regs
->
spu
;
return
do_fork
(
clone_flags
,
newsp
,
regs
,
0
,
(
int
__user
*
)
parent_tidptr
,
(
int
__user
*
)
child_tidptr
);
}
/*
* This is trivial, and on the face of it looks like it
* could equally well be done in user mode.
*
* Not so, for quite unobvious reasons - register pressure.
* In user mode vfork() cannot have a stack frame, and if
* done by calling the "clone()" system call directly, you
* do not have enough call-clobbered registers to hold all
* the information you need.
*/
asmlinkage
int
sys_vfork
(
void
)
{
struct
pt_regs
*
regs
=
current_pt_regs
();
return
do_fork
(
CLONE_VFORK
|
CLONE_VM
|
SIGCHLD
,
regs
->
spu
,
regs
,
0
,
NULL
,
NULL
);
}
/*
* These bracket the sleeping functions..
*/
...
...
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