Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
328386d7
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看板
提交
328386d7
编写于
1月 28, 2009
作者:
I
Ingo Molnar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
x86, smp: refactor ->wake_cpu
- remove macro wrappers Signed-off-by:
N
Ingo Molnar
<
mingo@elte.hu
>
上级
1f75ed0c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
4 addition
and
9 deletion
+4
-9
arch/x86/include/asm/mach-default/mach_apic.h
arch/x86/include/asm/mach-default/mach_apic.h
+0
-2
arch/x86/include/asm/mach-generic/mach_apic.h
arch/x86/include/asm/mach-generic/mach_apic.h
+0
-2
arch/x86/kernel/setup.c
arch/x86/kernel/setup.c
+2
-3
arch/x86/kernel/smpboot.c
arch/x86/kernel/smpboot.c
+2
-2
未找到文件。
arch/x86/include/asm/mach-default/mach_apic.h
浏览文件 @
328386d7
...
...
@@ -19,10 +19,8 @@ static inline const struct cpumask *default_target_cpus(void)
#ifdef CONFIG_X86_64
#include <asm/genapic.h>
#define read_apic_id() (apic->get_apic_id(apic_read(APIC_ID)))
#define wakeup_secondary_cpu (apic->wakeup_cpu)
extern
void
default_setup_apic_routing
(
void
);
#else
#define wakeup_secondary_cpu wakeup_secondary_cpu_via_init
/*
* Set up the logical destination ID.
*
...
...
arch/x86/include/asm/mach-generic/mach_apic.h
浏览文件 @
328386d7
...
...
@@ -3,8 +3,6 @@
#include <asm/genapic.h>
#define wakeup_secondary_cpu (apic->wakeup_cpu)
extern
void
generic_bigsmp_probe
(
void
);
#endif
/* _ASM_X86_MACH_GENERIC_MACH_APIC_H */
arch/x86/kernel/setup.c
浏览文件 @
328386d7
...
...
@@ -589,9 +589,8 @@ early_param("elfcorehdr", setup_elfcorehdr);
static
int
__init
default_update_genapic
(
void
)
{
#ifdef CONFIG_X86_SMP
# if defined(CONFIG_X86_GENERICARCH) || defined(CONFIG_X86_64)
apic
->
wakeup_cpu
=
wakeup_secondary_cpu_via_init
;
# endif
if
(
!
apic
->
wakeup_cpu
)
apic
->
wakeup_cpu
=
wakeup_secondary_cpu_via_init
;
#endif
return
0
;
...
...
arch/x86/kernel/smpboot.c
浏览文件 @
328386d7
...
...
@@ -750,7 +750,7 @@ static int __cpuinit do_boot_cpu(int apicid, int cpu)
/*
* NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
* (ie clustered apic addressing mode), this is a LOGICAL apic ID.
* Returns zero if CPU booted OK, else error code from
wakeup_secondary
_cpu.
* Returns zero if CPU booted OK, else error code from
->wakeup
_cpu.
*/
{
unsigned
long
boot_error
=
0
;
...
...
@@ -841,7 +841,7 @@ static int __cpuinit do_boot_cpu(int apicid, int cpu)
/*
* Starting actual IPI sequence...
*/
boot_error
=
wakeup_secondary
_cpu
(
apicid
,
start_ip
);
boot_error
=
apic
->
wakeup
_cpu
(
apicid
,
start_ip
);
if
(
!
boot_error
)
{
/*
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录