Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
550a411a
Commit
550a411a
authored
Mar 18, 2004
by
Len Brown
Committed by
Len Brown
Mar 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ACPI] numa.c build fix (Luming Yu)
http://bugzilla.kernel.org/show_bug.cgi?id=2131
parent
0e559f50
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
drivers/acpi/numa.c
drivers/acpi/numa.c
+9
-2
No files found.
drivers/acpi/numa.c
View file @
550a411a
...
@@ -32,12 +32,19 @@
...
@@ -32,12 +32,19 @@
#include <acpi/acpi_bus.h>
#include <acpi/acpi_bus.h>
#include <acpi/acmacros.h>
#include <acpi/acmacros.h>
#define ACPI_NUMA 0x80000000
#define _COMPONENT ACPI_NUMA
ACPI_MODULE_NAME
(
"numa"
)
extern
int
__init
acpi_table_parse_madt_family
(
enum
acpi_table_id
id
,
unsigned
long
madt_size
,
int
entry_id
,
acpi_madt_entry_handler
handler
,
unsigned
int
max_entries
);
extern
int
__init
acpi_table_parse_madt_family
(
enum
acpi_table_id
id
,
unsigned
long
madt_size
,
int
entry_id
,
acpi_madt_entry_handler
handler
,
unsigned
int
max_entries
);
void
__init
void
__init
acpi_table_print_srat_entry
(
acpi_table_print_srat_entry
(
acpi_table_entry_header
*
header
)
acpi_table_entry_header
*
header
)
{
{
ACPI_FUNCTION_NAME
(
"acpi_table_print_srat_entry"
);
if
(
!
header
)
if
(
!
header
)
return
;
return
;
...
@@ -47,7 +54,7 @@ acpi_table_print_srat_entry (
...
@@ -47,7 +54,7 @@ acpi_table_print_srat_entry (
{
{
struct
acpi_table_processor_affinity
*
p
=
struct
acpi_table_processor_affinity
*
p
=
(
struct
acpi_table_processor_affinity
*
)
header
;
(
struct
acpi_table_processor_affinity
*
)
header
;
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
"SRAT Processor (id[0x%02x] eid[0x%02x]) in proximity domain %d %s
\n
"
,
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"SRAT Processor (id[0x%02x] eid[0x%02x]) in proximity domain %d %s
\n
"
,
p
->
apic_id
,
p
->
lsapic_eid
,
p
->
proximity_domain
,
p
->
apic_id
,
p
->
lsapic_eid
,
p
->
proximity_domain
,
p
->
flags
.
enabled
?
"enabled"
:
"disabled"
));
p
->
flags
.
enabled
?
"enabled"
:
"disabled"
));
}
}
...
@@ -57,7 +64,7 @@ acpi_table_print_srat_entry (
...
@@ -57,7 +64,7 @@ acpi_table_print_srat_entry (
{
{
struct
acpi_table_memory_affinity
*
p
=
struct
acpi_table_memory_affinity
*
p
=
(
struct
acpi_table_memory_affinity
*
)
header
;
(
struct
acpi_table_memory_affinity
*
)
header
;
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
"SRAT Memory (0x%08x%08x length 0x%08x%08x type 0x%x) in proximity domain %d %s%s
\n
"
,
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"SRAT Memory (0x%08x%08x length 0x%08x%08x type 0x%x) in proximity domain %d %s%s
\n
"
,
p
->
base_addr_hi
,
p
->
base_addr_lo
,
p
->
length_hi
,
p
->
length_lo
,
p
->
base_addr_hi
,
p
->
base_addr_lo
,
p
->
length_hi
,
p
->
length_lo
,
p
->
memory_type
,
p
->
proximity_domain
,
p
->
memory_type
,
p
->
proximity_domain
,
p
->
flags
.
enabled
?
"enabled"
:
"disabled"
,
p
->
flags
.
enabled
?
"enabled"
:
"disabled"
,
...
...
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