Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
e5679882
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,发现更多精彩内容 >>
提交
e5679882
编写于
11月 30, 2006
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MIPS] Work around bogus gcc warnings.
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
dd6bfd62
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
22 addition
and
21 deletion
+22
-21
arch/mips/kernel/traps.c
arch/mips/kernel/traps.c
+22
-21
未找到文件。
arch/mips/kernel/traps.c
浏览文件 @
e5679882
...
...
@@ -399,19 +399,6 @@ asmlinkage void do_be(struct pt_regs *regs)
force_sig
(
SIGBUS
,
current
);
}
static
inline
int
get_insn_opcode
(
struct
pt_regs
*
regs
,
unsigned
int
*
opcode
)
{
unsigned
int
__user
*
epc
;
epc
=
(
unsigned
int
__user
*
)
regs
->
cp0_epc
+
((
regs
->
cp0_cause
&
CAUSEF_BD
)
!=
0
);
if
(
!
get_user
(
*
opcode
,
epc
))
return
0
;
force_sig
(
SIGSEGV
,
current
);
return
1
;
}
/*
* ll/sc emulation
*/
...
...
@@ -546,8 +533,8 @@ static inline int simulate_llsc(struct pt_regs *regs)
{
unsigned
int
opcode
;
if
(
unlikely
(
get_insn_opcode
(
regs
,
&
opcode
)))
return
-
EFAULT
;
if
(
get_user
(
opcode
,
(
unsigned
int
__user
*
)
exception_epc
(
regs
)))
goto
out_sigsegv
;
if
((
opcode
&
OPCODE
)
==
LL
)
{
simulate_ll
(
regs
,
opcode
);
...
...
@@ -559,6 +546,10 @@ static inline int simulate_llsc(struct pt_regs *regs)
}
return
-
EFAULT
;
/* Strange things going on ... */
out_sigsegv:
force_sig
(
SIGSEGV
,
current
);
return
-
EFAULT
;
}
/*
...
...
@@ -571,8 +562,8 @@ static inline int simulate_rdhwr(struct pt_regs *regs)
struct
thread_info
*
ti
=
task_thread_info
(
current
);
unsigned
int
opcode
;
if
(
unlikely
(
get_insn_opcode
(
regs
,
&
opcode
)))
return
-
EFAULT
;
if
(
get_user
(
opcode
,
(
unsigned
int
__user
*
)
exception_epc
(
regs
)))
goto
out_sigsegv
;
if
(
unlikely
(
compute_return_epc
(
regs
)))
return
-
EFAULT
;
...
...
@@ -591,6 +582,10 @@ static inline int simulate_rdhwr(struct pt_regs *regs)
/* Not ours. */
return
-
EFAULT
;
out_sigsegv:
force_sig
(
SIGSEGV
,
current
);
return
-
EFAULT
;
}
asmlinkage
void
do_ov
(
struct
pt_regs
*
regs
)
...
...
@@ -676,8 +671,8 @@ asmlinkage void do_bp(struct pt_regs *regs)
die_if_kernel
(
"Break instruction in kernel code"
,
regs
);
if
(
get_
insn_opcode
(
regs
,
&
opcode
))
return
;
if
(
get_
user
(
opcode
,
(
unsigned
int
__user
*
)
exception_epc
(
regs
)
))
goto
out_sigsegv
;
/*
* There is the ancient bug in the MIPS assemblers that the break
...
...
@@ -710,6 +705,9 @@ asmlinkage void do_bp(struct pt_regs *regs)
default:
force_sig
(
SIGTRAP
,
current
);
}
out_sigsegv:
force_sig
(
SIGSEGV
,
current
);
}
asmlinkage
void
do_tr
(
struct
pt_regs
*
regs
)
...
...
@@ -719,8 +717,8 @@ asmlinkage void do_tr(struct pt_regs *regs)
die_if_kernel
(
"Trap instruction in kernel code"
,
regs
);
if
(
get_
insn_opcode
(
regs
,
&
opcode
))
return
;
if
(
get_
user
(
opcode
,
(
unsigned
int
__user
*
)
exception_epc
(
regs
)
))
goto
out_sigsegv
;
/* Immediate versions don't provide a code. */
if
(
!
(
opcode
&
OPCODE
))
...
...
@@ -747,6 +745,9 @@ asmlinkage void do_tr(struct pt_regs *regs)
default:
force_sig
(
SIGTRAP
,
current
);
}
out_sigsegv:
force_sig
(
SIGSEGV
,
current
);
}
asmlinkage
void
do_ri
(
struct
pt_regs
*
regs
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录