Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
9e14f828
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
9e14f828
编写于
9月 09, 2012
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
arm: split ret_from_fork, simplify kernel_thread() [based on patch by rmk]
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
38b983b3
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
26 addition
and
67 deletion
+26
-67
arch/arm/Kconfig
arch/arm/Kconfig
+1
-0
arch/arm/include/asm/processor.h
arch/arm/include/asm/processor.h
+0
-5
arch/arm/kernel/entry-common.S
arch/arm/kernel/entry-common.S
+12
-0
arch/arm/kernel/process.c
arch/arm/kernel/process.c
+13
-62
未找到文件。
arch/arm/Kconfig
浏览文件 @
9e14f828
...
...
@@ -49,6 +49,7 @@ config ARM
select GENERIC_STRNCPY_FROM_USER
select GENERIC_STRNLEN_USER
select DCACHE_WORD_ACCESS if (CPU_V6 || CPU_V6K || CPU_V7) && !CPU_BIG_ENDIAN
select GENERIC_KERNEL_THREAD
help
The ARM series is a line of low-power-consumption RISC chip designs
licensed by ARM Ltd and targeted at embedded applications and
...
...
arch/arm/include/asm/processor.h
浏览文件 @
9e14f828
...
...
@@ -85,11 +85,6 @@ unsigned long get_wchan(struct task_struct *p);
#define cpu_relax() barrier()
#endif
/*
* Create a new kernel thread
*/
extern
int
kernel_thread
(
int
(
*
fn
)(
void
*
),
void
*
arg
,
unsigned
long
flags
);
#define task_pt_regs(p) \
((struct pt_regs *)(THREAD_START_SP + task_stack_page(p)) - 1)
...
...
arch/arm/kernel/entry-common.S
浏览文件 @
9e14f828
...
...
@@ -91,6 +91,18 @@ ENTRY(ret_from_fork)
b
ret_slow_syscall
ENDPROC
(
ret_from_fork
)
ENTRY
(
ret_from_kernel_thread
)
UNWIND
(.
fnstart
)
UNWIND
(.
cantunwind
)
bl
schedule_tail
mov
r0
,
r4
adr
lr
,
BSYM
(
1
f
)
@
kernel
threads
should
not
exit
mov
pc
,
r5
1
:
bl
do_exit
nop
UNWIND
(.
fnend
)
ENDPROC
(
ret_from_kernel_thread
)
.
equ
NR_syscalls
,
0
#define CALL(x) .equ NR_syscalls,NR_syscalls+1
#include "calls.S"
...
...
arch/arm/kernel/process.c
浏览文件 @
9e14f828
...
...
@@ -373,6 +373,7 @@ void release_thread(struct task_struct *dead_task)
}
asmlinkage
void
ret_from_fork
(
void
)
__asm__
(
"ret_from_fork"
);
asmlinkage
void
ret_from_kernel_thread
(
void
)
__asm__
(
"ret_from_kernel_thread"
);
int
copy_thread
(
unsigned
long
clone_flags
,
unsigned
long
stack_start
,
...
...
@@ -381,13 +382,20 @@ copy_thread(unsigned long clone_flags, unsigned long stack_start,
struct
thread_info
*
thread
=
task_thread_info
(
p
);
struct
pt_regs
*
childregs
=
task_pt_regs
(
p
);
*
childregs
=
*
regs
;
childregs
->
ARM_r0
=
0
;
childregs
->
ARM_sp
=
stack_start
;
memset
(
&
thread
->
cpu_context
,
0
,
sizeof
(
struct
cpu_context_save
));
if
(
likely
(
regs
))
{
*
childregs
=
*
regs
;
childregs
->
ARM_r0
=
0
;
childregs
->
ARM_sp
=
stack_start
;
thread
->
cpu_context
.
pc
=
(
unsigned
long
)
ret_from_fork
;
}
else
{
thread
->
cpu_context
.
r4
=
stk_sz
;
thread
->
cpu_context
.
r5
=
stack_start
;
thread
->
cpu_context
.
pc
=
(
unsigned
long
)
ret_from_kernel_thread
;
childregs
->
ARM_cpsr
=
SVC_MODE
;
}
thread
->
cpu_context
.
sp
=
(
unsigned
long
)
childregs
;
thread
->
cpu_context
.
pc
=
(
unsigned
long
)
ret_from_fork
;
clear_ptrace_hw_breakpoint
(
p
);
...
...
@@ -423,63 +431,6 @@ int dump_fpu (struct pt_regs *regs, struct user_fp *fp)
}
EXPORT_SYMBOL
(
dump_fpu
);
/*
* Shuffle the argument into the correct register before calling the
* thread function. r4 is the thread argument, r5 is the pointer to
* the thread function, and r6 points to the exit function.
*/
extern
void
kernel_thread_helper
(
void
);
asm
(
".pushsection .text
\n
"
" .align
\n
"
" .type kernel_thread_helper, #function
\n
"
"kernel_thread_helper:
\n
"
#ifdef CONFIG_TRACE_IRQFLAGS
" bl trace_hardirqs_on
\n
"
#endif
" msr cpsr_c, r7
\n
"
" mov r0, r4
\n
"
" mov lr, r6
\n
"
" mov pc, r5
\n
"
" .size kernel_thread_helper, . - kernel_thread_helper
\n
"
" .popsection"
);
#ifdef CONFIG_ARM_UNWIND
extern
void
kernel_thread_exit
(
long
code
);
asm
(
".pushsection .text
\n
"
" .align
\n
"
" .type kernel_thread_exit, #function
\n
"
"kernel_thread_exit:
\n
"
" .fnstart
\n
"
" .cantunwind
\n
"
" bl do_exit
\n
"
" nop
\n
"
" .fnend
\n
"
" .size kernel_thread_exit, . - kernel_thread_exit
\n
"
" .popsection"
);
#else
#define kernel_thread_exit do_exit
#endif
/*
* Create a kernel thread.
*/
pid_t
kernel_thread
(
int
(
*
fn
)(
void
*
),
void
*
arg
,
unsigned
long
flags
)
{
struct
pt_regs
regs
;
memset
(
&
regs
,
0
,
sizeof
(
regs
));
regs
.
ARM_r4
=
(
unsigned
long
)
arg
;
regs
.
ARM_r5
=
(
unsigned
long
)
fn
;
regs
.
ARM_r6
=
(
unsigned
long
)
kernel_thread_exit
;
regs
.
ARM_r7
=
SVC_MODE
|
PSR_ENDSTATE
|
PSR_ISETSTATE
;
regs
.
ARM_pc
=
(
unsigned
long
)
kernel_thread_helper
;
regs
.
ARM_cpsr
=
regs
.
ARM_r7
|
PSR_I_BIT
;
return
do_fork
(
flags
|
CLONE_VM
|
CLONE_UNTRACED
,
0
,
&
regs
,
0
,
NULL
,
NULL
);
}
EXPORT_SYMBOL
(
kernel_thread
);
unsigned
long
get_wchan
(
struct
task_struct
*
p
)
{
struct
stackframe
frame
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录