Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
c78e0643
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c78e0643
编写于
9月 27, 2012
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sparc32: switch to generic kernel_thread()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
32942bc7
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
56 addition
and
81 deletion
+56
-81
arch/sparc/Kconfig
arch/sparc/Kconfig
+1
-1
arch/sparc/include/asm/processor_32.h
arch/sparc/include/asm/processor_32.h
+0
-1
arch/sparc/kernel/entry.S
arch/sparc/kernel/entry.S
+10
-0
arch/sparc/kernel/process_32.c
arch/sparc/kernel/process_32.c
+45
-79
未找到文件。
arch/sparc/Kconfig
浏览文件 @
c78e0643
...
...
@@ -40,6 +40,7 @@ config SPARC
select GENERIC_STRNCPY_FROM_USER
select GENERIC_STRNLEN_USER
select MODULES_USE_ELF_RELA
select GENERIC_KERNEL_THREAD
config SPARC32
def_bool !64BIT
...
...
@@ -74,7 +75,6 @@ config SPARC64
select ARCH_HAVE_NMI_SAFE_CMPXCHG
select HAVE_C_RECORDMCOUNT
select NO_BOOTMEM
select GENERIC_KERNEL_THREAD
select GENERIC_KERNEL_EXECVE
config ARCH_DEFCONFIG
...
...
arch/sparc/include/asm/processor_32.h
浏览文件 @
c78e0643
...
...
@@ -106,7 +106,6 @@ static inline void start_thread(struct pt_regs * regs, unsigned long pc,
/* Free all resources held by a thread. */
#define release_thread(tsk) do { } while(0)
extern
pid_t
kernel_thread
(
int
(
*
fn
)(
void
*
),
void
*
arg
,
unsigned
long
flags
);
extern
unsigned
long
get_wchan
(
struct
task_struct
*
);
...
...
arch/sparc/kernel/entry.S
浏览文件 @
c78e0643
...
...
@@ -983,6 +983,16 @@ ret_from_fork:
b
ret_sys_call
ld
[%
sp
+
STACKFRAME_SZ
+
PT_I0
],
%
o0
.
globl
ret_from_kernel_thread
ret_from_kernel_thread
:
call
schedule_tail
ld
[%
g3
+
TI_TASK
],
%
o0
ld
[%
sp
+
STACKFRAME_SZ
+
PT_G1
],
%
l0
call
%
l0
ld
[%
sp
+
STACKFRAME_SZ
+
PT_G2
],
%
o0
call
do_exit
/*
won
't return */
clr
%
o0
/
*
Linux
native
system
calls
enter
here
...
*/
.
align
4
.
globl
linux_sparc_syscall
...
...
arch/sparc/kernel/process_32.c
浏览文件 @
c78e0643
...
...
@@ -316,9 +316,10 @@ asmlinkage int sparc_do_fork(unsigned long clone_flags,
* XXX See comment above sys_vfork in sparc64. todo.
*/
extern
void
ret_from_fork
(
void
);
extern
void
ret_from_kernel_thread
(
void
);
int
copy_thread
(
unsigned
long
clone_flags
,
unsigned
long
sp
,
unsigned
long
unused
,
unsigned
long
arg
,
struct
task_struct
*
p
,
struct
pt_regs
*
regs
)
{
struct
thread_info
*
ti
=
task_thread_info
(
p
);
...
...
@@ -336,16 +337,13 @@ int copy_thread(unsigned long clone_flags, unsigned long sp,
}
/*
* p->thread_info new_stack childregs
* ! ! !
{if(PSR_PS) }
* V V (stk.fr.) V (pt_regs)
{ (stk.fr.) }
* +----- - - - - - ------+===========+=============
{+==========}
+
* p->thread_info new_stack childregs
stack bottom
* ! ! !
!
* V V (stk.fr.) V (pt_regs)
V
* +----- - - - - - ------+===========+=============+
*/
new_stack
=
task_stack_page
(
p
)
+
THREAD_SIZE
;
if
(
regs
->
psr
&
PSR_PS
)
new_stack
-=
STACKFRAME_SZ
;
new_stack
-=
STACKFRAME_SZ
+
TRACEREG_SZ
;
memcpy
(
new_stack
,
(
char
*
)
regs
-
STACKFRAME_SZ
,
STACKFRAME_SZ
+
TRACEREG_SZ
);
childregs
=
(
struct
pt_regs
*
)
(
new_stack
+
STACKFRAME_SZ
);
/*
...
...
@@ -356,55 +354,58 @@ int copy_thread(unsigned long clone_flags, unsigned long sp,
* Thus, kpsr|=PSR_PIL.
*/
ti
->
ksp
=
(
unsigned
long
)
new_stack
;
p
->
thread
.
kregs
=
childregs
;
if
(
unlikely
(
p
->
flags
&
PF_KTHREAD
))
{
extern
int
nwindows
;
unsigned
long
psr
;
memset
(
new_stack
,
0
,
STACKFRAME_SZ
+
TRACEREG_SZ
);
p
->
thread
.
flags
|=
SPARC_FLAG_KTHREAD
;
p
->
thread
.
current_ds
=
KERNEL_DS
;
ti
->
kpc
=
(((
unsigned
long
)
ret_from_kernel_thread
)
-
0x8
);
childregs
->
u_regs
[
UREG_G1
]
=
sp
;
/* function */
childregs
->
u_regs
[
UREG_G2
]
=
arg
;
psr
=
childregs
->
psr
=
get_psr
();
ti
->
kpsr
=
psr
|
PSR_PIL
;
ti
->
kwim
=
1
<<
(((
psr
&
PSR_CWP
)
+
1
)
%
nwindows
);
return
0
;
}
memcpy
(
new_stack
,
(
char
*
)
regs
-
STACKFRAME_SZ
,
STACKFRAME_SZ
+
TRACEREG_SZ
);
childregs
->
u_regs
[
UREG_FP
]
=
sp
;
p
->
thread
.
flags
&=
~
SPARC_FLAG_KTHREAD
;
p
->
thread
.
current_ds
=
USER_DS
;
ti
->
kpc
=
(((
unsigned
long
)
ret_from_fork
)
-
0x8
);
ti
->
kpsr
=
current
->
thread
.
fork_kpsr
|
PSR_PIL
;
ti
->
kwim
=
current
->
thread
.
fork_kwim
;
if
(
regs
->
psr
&
PSR_PS
)
{
extern
struct
pt_regs
fake_swapper_regs
;
if
(
sp
!=
regs
->
u_regs
[
UREG_FP
])
{
struct
sparc_stackf
__user
*
childstack
;
struct
sparc_stackf
__user
*
parentstack
;
p
->
thread
.
kregs
=
&
fake_swapper_regs
;
new_stack
+=
STACKFRAME_SZ
+
TRACEREG_SZ
;
childregs
->
u_regs
[
UREG_FP
]
=
(
unsigned
long
)
new_stack
;
p
->
thread
.
flags
|=
SPARC_FLAG_KTHREAD
;
p
->
thread
.
current_ds
=
KERNEL_DS
;
memcpy
(
new_stack
,
(
void
*
)
regs
->
u_regs
[
UREG_FP
],
STACKFRAME_SZ
);
childregs
->
u_regs
[
UREG_G6
]
=
(
unsigned
long
)
ti
;
}
else
{
p
->
thread
.
kregs
=
childregs
;
childregs
->
u_regs
[
UREG_FP
]
=
sp
;
p
->
thread
.
flags
&=
~
SPARC_FLAG_KTHREAD
;
p
->
thread
.
current_ds
=
USER_DS
;
if
(
sp
!=
regs
->
u_regs
[
UREG_FP
])
{
struct
sparc_stackf
__user
*
childstack
;
struct
sparc_stackf
__user
*
parentstack
;
/*
* This is a clone() call with supplied user stack.
* Set some valid stack frames to give to the child.
*/
childstack
=
(
struct
sparc_stackf
__user
*
)
(
sp
&
~
0xfUL
);
parentstack
=
(
struct
sparc_stackf
__user
*
)
regs
->
u_regs
[
UREG_FP
];
/*
* This is a clone() call with supplied user stack.
* Set some valid stack frames to give to the child.
*/
childstack
=
(
struct
sparc_stackf
__user
*
)
(
sp
&
~
0xfUL
);
parentstack
=
(
struct
sparc_stackf
__user
*
)
regs
->
u_regs
[
UREG_FP
];
#if 0
printk("clone: parent stack:\n");
show_stackframe(parentstack);
printk("clone: parent stack:\n");
show_stackframe(parentstack);
#endif
childstack
=
clone_stackframe
(
childstack
,
parentstack
);
if
(
!
childstack
)
return
-
EFAULT
;
childstack
=
clone_stackframe
(
childstack
,
parentstack
);
if
(
!
childstack
)
return
-
EFAULT
;
#if 0
printk("clone: child stack:\n");
show_stackframe(childstack);
printk("clone: child stack:\n");
show_stackframe(childstack);
#endif
childregs
->
u_regs
[
UREG_FP
]
=
(
unsigned
long
)
childstack
;
}
childregs
->
u_regs
[
UREG_FP
]
=
(
unsigned
long
)
childstack
;
}
#ifdef CONFIG_SMP
...
...
@@ -503,41 +504,6 @@ asmlinkage int sparc_execve(struct pt_regs *regs)
return
error
;
}
/*
* This is the mechanism for creating a new kernel thread.
*
* NOTE! Only a kernel-only process(ie the swapper or direct descendants
* who haven't done an "execve()") should use this: it will work within
* a system call from a "real" process, but the process memory space will
* not be freed until both the parent and the child have exited.
*/
pid_t
kernel_thread
(
int
(
*
fn
)(
void
*
),
void
*
arg
,
unsigned
long
flags
)
{
long
retval
;
__asm__
__volatile__
(
"mov %4, %%g2
\n\t
"
/* Set aside fn ptr... */
"mov %5, %%g3
\n\t
"
/* and arg. */
"mov %1, %%g1
\n\t
"
"mov %2, %%o0
\n\t
"
/* Clone flags. */
"mov 0, %%o1
\n\t
"
/* usp arg == 0 */
"t 0x10
\n\t
"
/* Linux/Sparc clone(). */
"cmp %%o1, 0
\n\t
"
"be 1f
\n\t
"
/* The parent, just return. */
" nop
\n\t
"
/* Delay slot. */
"jmpl %%g2, %%o7
\n\t
"
/* Call the function. */
" mov %%g3, %%o0
\n\t
"
/* Get back the arg in delay. */
"mov %3, %%g1
\n\t
"
"t 0x10
\n\t
"
/* Linux/Sparc exit(). */
/* Notreached by child. */
"1: mov %%o0, %0
\n\t
"
:
"=r"
(
retval
)
:
"i"
(
__NR_clone
),
"r"
(
flags
|
CLONE_VM
|
CLONE_UNTRACED
),
"i"
(
__NR_exit
),
"r"
(
fn
),
"r"
(
arg
)
:
"g1"
,
"g2"
,
"g3"
,
"o0"
,
"o1"
,
"memory"
,
"cc"
);
return
retval
;
}
EXPORT_SYMBOL
(
kernel_thread
);
unsigned
long
get_wchan
(
struct
task_struct
*
task
)
{
unsigned
long
pc
,
fp
,
bias
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录