Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
4a35a46b
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,发现更多精彩内容 >>
提交
4a35a46b
编写于
9月 03, 2005
作者:
L
Len Brown
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ACPI] revert bad processor_core.c patch for bug 5128
Signed-off-by:
N
Len Brown
<
len.brown@intel.com
>
上级
2413d2c1
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
13 deletion
+10
-13
drivers/acpi/processor_core.c
drivers/acpi/processor_core.c
+10
-13
未找到文件。
drivers/acpi/processor_core.c
浏览文件 @
4a35a46b
...
...
@@ -400,7 +400,7 @@ static int acpi_processor_remove_fs(struct acpi_device *device)
/* Use the acpiid in MADT to map cpus in case of SMP */
#ifndef CONFIG_SMP
#define convert_acpiid_to_cpu(acpi_id
, cpu_indexp
) (0xff)
#define convert_acpiid_to_cpu(acpi_id) (0xff)
#else
#ifdef CONFIG_IA64
...
...
@@ -413,20 +413,18 @@ static int acpi_processor_remove_fs(struct acpi_device *device)
#define ARCH_BAD_APICID (0xff)
#endif
static
int
convert_acpiid_to_cpu
(
u8
acpi_id
,
unsigned
int
*
cpu_index
)
static
u8
convert_acpiid_to_cpu
(
u8
acpi_id
)
{
u16
apic_id
;
unsigned
int
i
;
int
i
;
apic_id
=
arch_acpiid_to_apicid
[
acpi_id
];
if
(
apic_id
==
ARCH_BAD_APICID
)
return
-
1
;
for
(
i
=
0
;
i
<
NR_CPUS
;
i
++
)
{
if
(
arch_cpu_to_apicid
[
i
]
==
apic_id
)
{
*
cpu_index
=
i
;
return
0
;
}
if
(
arch_cpu_to_apicid
[
i
]
==
apic_id
)
return
i
;
}
return
-
1
;
}
...
...
@@ -441,8 +439,7 @@ static int acpi_processor_get_info(struct acpi_processor *pr)
acpi_status
status
=
0
;
union
acpi_object
object
=
{
0
};
struct
acpi_buffer
buffer
=
{
sizeof
(
union
acpi_object
),
&
object
};
unsigned
int
cpu_index
;
int
retval
;
u8
cpu_index
;
static
int
cpu0_initialized
;
ACPI_FUNCTION_TRACE
(
"acpi_processor_get_info"
);
...
...
@@ -485,10 +482,10 @@ static int acpi_processor_get_info(struct acpi_processor *pr)
*/
pr
->
acpi_id
=
object
.
processor
.
proc_id
;
retval
=
convert_acpiid_to_cpu
(
pr
->
acpi_id
,
&
cpu_index
);
cpu_index
=
convert_acpiid_to_cpu
(
pr
->
acpi_id
);
/* Handle UP system running SMP kernel, with no LAPIC in MADT */
if
(
!
cpu0_initialized
&&
retval
&&
if
(
!
cpu0_initialized
&&
(
cpu_index
==
0xff
)
&&
(
num_online_cpus
()
==
1
))
{
cpu_index
=
0
;
}
...
...
@@ -502,10 +499,10 @@ static int acpi_processor_get_info(struct acpi_processor *pr)
* less than the max # of CPUs. They should be ignored _iff
* they are physically not present.
*/
if
(
retval
)
{
if
(
cpu_index
>=
NR_CPUS
)
{
if
(
ACPI_FAILURE
(
acpi_processor_hotadd_init
(
pr
->
handle
,
&
pr
->
id
)))
{
ACPI_DEBUG_PRINT
((
ACPI_DB_
INFO
,
ACPI_DEBUG_PRINT
((
ACPI_DB_
ERROR
,
"Error getting cpuindex for acpiid 0x%x
\n
"
,
pr
->
acpi_id
));
return_VALUE
(
-
ENODEV
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录