Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
4a35a46b
Commit
4a35a46b
authored
Sep 03, 2005
by
Len Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ACPI] revert bad processor_core.c patch for bug 5128
Signed-off-by:
Len Brown
<
len.brown@intel.com
>
parent
2413d2c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
13 deletions
+10
-13
drivers/acpi/processor_core.c
drivers/acpi/processor_core.c
+10
-13
No files found.
drivers/acpi/processor_core.c
View file @
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment