Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
d2ef5ebb
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
6
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
d2ef5ebb
编写于
11月 29, 2005
作者:
L
Linus Torvalds
浏览文件
操作
浏览文件
下载
差异文件
Merge master.kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc-merge
上级
1a571986
ed1189b7
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
26 addition
and
38 deletion
+26
-38
arch/powerpc/kernel/process.c
arch/powerpc/kernel/process.c
+25
-37
arch/powerpc/kernel/prom_init.c
arch/powerpc/kernel/prom_init.c
+1
-1
未找到文件。
arch/powerpc/kernel/process.c
浏览文件 @
d2ef5ebb
...
...
@@ -201,6 +201,28 @@ int dump_spe(struct pt_regs *regs, elf_vrregset_t *evrregs)
}
#endif
/* CONFIG_SPE */
/*
* If we are doing lazy switching of CPU state (FP, altivec or SPE),
* and the current task has some state, discard it.
*/
static
inline
void
discard_lazy_cpu_state
(
void
)
{
#ifndef CONFIG_SMP
preempt_disable
();
if
(
last_task_used_math
==
current
)
last_task_used_math
=
NULL
;
#ifdef CONFIG_ALTIVEC
if
(
last_task_used_altivec
==
current
)
last_task_used_altivec
=
NULL
;
#endif
/* CONFIG_ALTIVEC */
#ifdef CONFIG_SPE
if
(
last_task_used_spe
==
current
)
last_task_used_spe
=
NULL
;
#endif
preempt_enable
();
#endif
/* CONFIG_SMP */
}
int
set_dabr
(
unsigned
long
dabr
)
{
if
(
ppc_md
.
set_dabr
)
...
...
@@ -434,19 +456,7 @@ void show_regs(struct pt_regs * regs)
void
exit_thread
(
void
)
{
kprobe_flush_task
(
current
);
#ifndef CONFIG_SMP
if
(
last_task_used_math
==
current
)
last_task_used_math
=
NULL
;
#ifdef CONFIG_ALTIVEC
if
(
last_task_used_altivec
==
current
)
last_task_used_altivec
=
NULL
;
#endif
/* CONFIG_ALTIVEC */
#ifdef CONFIG_SPE
if
(
last_task_used_spe
==
current
)
last_task_used_spe
=
NULL
;
#endif
#endif
/* CONFIG_SMP */
discard_lazy_cpu_state
();
}
void
flush_thread
(
void
)
...
...
@@ -458,18 +468,7 @@ void flush_thread(void)
t
->
flags
^=
(
_TIF_ABI_PENDING
|
_TIF_32BIT
);
#endif
#ifndef CONFIG_SMP
if
(
last_task_used_math
==
current
)
last_task_used_math
=
NULL
;
#ifdef CONFIG_ALTIVEC
if
(
last_task_used_altivec
==
current
)
last_task_used_altivec
=
NULL
;
#endif
/* CONFIG_ALTIVEC */
#ifdef CONFIG_SPE
if
(
last_task_used_spe
==
current
)
last_task_used_spe
=
NULL
;
#endif
#endif
/* CONFIG_SMP */
discard_lazy_cpu_state
();
#ifdef CONFIG_PPC64
/* for now */
if
(
current
->
thread
.
dabr
)
{
...
...
@@ -635,18 +634,7 @@ void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
}
#endif
#ifndef CONFIG_SMP
if
(
last_task_used_math
==
current
)
last_task_used_math
=
NULL
;
#ifdef CONFIG_ALTIVEC
if
(
last_task_used_altivec
==
current
)
last_task_used_altivec
=
NULL
;
#endif
#ifdef CONFIG_SPE
if
(
last_task_used_spe
==
current
)
last_task_used_spe
=
NULL
;
#endif
#endif
/* CONFIG_SMP */
discard_lazy_cpu_state
();
memset
(
current
->
thread
.
fpr
,
0
,
sizeof
(
current
->
thread
.
fpr
));
current
->
thread
.
fpscr
.
val
=
0
;
#ifdef CONFIG_ALTIVEC
...
...
arch/powerpc/kernel/prom_init.c
浏览文件 @
d2ef5ebb
...
...
@@ -265,7 +265,7 @@ static int __init call_prom_ret(const char *service, int nargs, int nret,
va_end
(
list
);
for
(
i
=
0
;
i
<
nret
;
i
++
)
ret
s
[
nargs
+
i
]
=
0
;
args
.
arg
s
[
nargs
+
i
]
=
0
;
if
(
enter_prom
(
&
args
,
RELOC
(
prom_entry
))
<
0
)
return
PROM_ERROR
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录