Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
b012cffe
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看板
提交
b012cffe
编写于
7月 15, 2008
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MIPS] Replace use of print_symbol with new %sP pointer format.
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
b29eee49
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
12 addition
and
17 deletion
+12
-17
arch/mips/kernel/mips-mt.c
arch/mips/kernel/mips-mt.c
+5
-6
arch/mips/kernel/traps.c
arch/mips/kernel/traps.c
+4
-4
arch/mips/sgi-ip27/ip27-nmi.c
arch/mips/sgi-ip27/ip27-nmi.c
+3
-7
未找到文件。
arch/mips/kernel/mips-mt.c
浏览文件 @
b012cffe
...
...
@@ -4,7 +4,6 @@
*/
#include <linux/device.h>
#include <linux/kallsyms.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/module.h>
...
...
@@ -84,9 +83,9 @@ void mips_mt_regdump(unsigned long mvpctl)
read_vpe_c0_vpeconf0
());
printk
(
" VPE%d.Status : %08lx
\n
"
,
i
,
read_vpe_c0_status
());
printk
(
" VPE%d.EPC : %08lx "
,
i
,
read_vpe_c0_epc
()
);
print_symbol
(
"%s
\n
"
,
read_vpe_c0_epc
());
printk
(
" VPE%d.EPC : %08lx
%pS
\n
"
,
i
,
read_vpe_c0_epc
()
,
(
void
*
)
read_vpe_c0_epc
());
printk
(
" VPE%d.Cause : %08lx
\n
"
,
i
,
read_vpe_c0_cause
());
printk
(
" VPE%d.Config7 : %08lx
\n
"
,
...
...
@@ -111,8 +110,8 @@ void mips_mt_regdump(unsigned long mvpctl)
}
printk
(
" TCStatus : %08lx
\n
"
,
tcstatval
);
printk
(
" TCBind : %08lx
\n
"
,
read_tc_c0_tcbind
());
printk
(
" TCRestart : %08lx
"
,
read_tc_c0_tcrestart
());
print_symbol
(
"%s
\n
"
,
read_tc_c0_tcrestart
());
printk
(
" TCRestart : %08lx
%pS
\n
"
,
read_tc_c0_tcrestart
(),
(
void
*
)
read_tc_c0_tcrestart
());
printk
(
" TCHalt : %08lx
\n
"
,
haltval
);
printk
(
" TCContext : %08lx
\n
"
,
read_tc_c0_tccontext
());
if
(
!
haltval
)
...
...
arch/mips/kernel/traps.c
浏览文件 @
b012cffe
...
...
@@ -248,11 +248,11 @@ static void __show_regs(const struct pt_regs *regs)
/*
* Saved cp0 registers
*/
printk
(
"epc : %0*lx
"
,
field
,
regs
->
cp0_epc
);
print_symbol
(
"%s "
,
regs
->
cp0_epc
);
printk
(
"epc : %0*lx
%pS
\n
"
,
field
,
regs
->
cp0_epc
,
(
void
*
)
regs
->
cp0_epc
);
printk
(
" %s
\n
"
,
print_tainted
());
printk
(
"ra : %0*lx
"
,
field
,
regs
->
regs
[
31
]);
print_symbol
(
"%s
\n
"
,
regs
->
regs
[
31
]);
printk
(
"ra : %0*lx
%pS
\n
"
,
field
,
regs
->
regs
[
31
],
(
void
*
)
regs
->
regs
[
31
]);
printk
(
"Status: %08x "
,
(
uint32_t
)
regs
->
cp0_status
);
...
...
arch/mips/sgi-ip27/ip27-nmi.c
浏览文件 @
b012cffe
#include <linux/kallsyms.h>
#include <linux/kernel.h>
#include <linux/mmzone.h>
#include <linux/nodemask.h>
...
...
@@ -84,13 +83,10 @@ void nmi_cpu_eframe_save(nasid_t nasid, int slice)
/*
* Saved cp0 registers
*/
printk
(
"epc : %016lx "
,
nr
->
epc
);
print_symbol
(
"%s "
,
nr
->
epc
);
printk
(
"epc : %016lx %pS
\n
"
,
nr
->
epc
,
(
void
*
)
nr
->
epc
);
printk
(
"%s
\n
"
,
print_tainted
());
printk
(
"ErrEPC: %016lx "
,
nr
->
error_epc
);
print_symbol
(
"%s
\n
"
,
nr
->
error_epc
);
printk
(
"ra : %016lx "
,
nr
->
gpr
[
31
]);
print_symbol
(
"%s
\n
"
,
nr
->
gpr
[
31
]);
printk
(
"ErrEPC: %016lx %pS
\n
"
,
nr
->
error_epc
,
(
void
*
)
nr
->
error_epc
);
printk
(
"ra : %016lx %pS
\n
"
,
nr
->
gpr
[
31
],
(
void
*
)
nr
->
gpr
[
31
]);
printk
(
"Status: %08lx "
,
nr
->
sr
);
if
(
nr
->
sr
&
ST0_KX
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录