Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
5d43045b
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
5
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
5d43045b
编写于
11月 08, 2005
作者:
R
Russell King
提交者:
Russell King
11月 08, 2005
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ARM SMP] Fix some sparse warnings in SMP code
Signed-off-by:
N
Russell King
<
rmk+kernel@arm.linux.org.uk
>
上级
dbebb4cb
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
8 deletion
+8
-8
arch/arm/kernel/smp.c
arch/arm/kernel/smp.c
+3
-3
arch/arm/mach-realview/platsmp.c
arch/arm/mach-realview/platsmp.c
+5
-5
未找到文件。
arch/arm/kernel/smp.c
浏览文件 @
5d43045b
...
...
@@ -142,7 +142,7 @@ int __cpuinit __cpu_up(unsigned int cpu)
ret
=
-
EIO
;
}
secondary_data
.
stack
=
0
;
secondary_data
.
stack
=
NULL
;
secondary_data
.
pgdir
=
0
;
*
pmd_offset
(
pgd
,
PHYS_OFFSET
)
=
__pmd
(
0
);
...
...
@@ -359,8 +359,8 @@ static void send_ipi_message(cpumask_t callmap, enum ipi_msg_type msg)
* You must not call this function with disabled interrupts, from a
* hardware interrupt handler, nor from a bottom half handler.
*/
int
smp_call_function_on_cpu
(
void
(
*
func
)(
void
*
info
),
void
*
info
,
int
retry
,
int
wait
,
cpumask_t
callmap
)
static
int
smp_call_function_on_cpu
(
void
(
*
func
)(
void
*
info
),
void
*
info
,
int
retry
,
int
wait
,
cpumask_t
callmap
)
{
struct
smp_call_struct
data
;
unsigned
long
timeout
;
...
...
arch/arm/mach-realview/platsmp.c
浏览文件 @
5d43045b
...
...
@@ -32,7 +32,7 @@ static unsigned int __init get_core_count(void)
{
unsigned
int
ncores
;
ncores
=
__raw_readl
(
IO_ADDRESS
(
REALVIEW_MPCORE_SCU_BASE
)
+
SCU_CONFIG
);
ncores
=
__raw_readl
(
__io_address
(
REALVIEW_MPCORE_SCU_BASE
)
+
SCU_CONFIG
);
return
(
ncores
&
0x03
)
+
1
;
}
...
...
@@ -133,12 +133,12 @@ static void __init poke_milo(void)
#if 1
#define REALVIEW_SYS_FLAGSS_OFFSET 0x30
__raw_writel
(
virt_to_phys
(
realview_secondary_startup
),
(
IO_ADDRESS
(
REALVIEW_SYS_BASE
)
+
REALVIEW_SYS_FLAGSS_OFFSET
)
);
__io_address
(
REALVIEW_SYS_BASE
)
+
REALVIEW_SYS_FLAGSS_OFFSET
);
#define REALVIEW_SYS_FLAGSC_OFFSET 0x34
__raw_writel
(
3
,
(
IO_ADDRESS
(
REALVIEW_SYS_BASE
)
+
REALVIEW_SYS_FLAGSC_OFFSET
)
);
__io_address
(
REALVIEW_SYS_BASE
)
+
REALVIEW_SYS_FLAGSC_OFFSET
);
#endif
mb
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录