Code Review
/
linux-2.6.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
review
|
tree
raw
|
inline
| side by side
acpi: fix potential call to a freed memory section.
[linux-2.6.git]
/
drivers
/
acpi
/
numa.c
diff --git
a/drivers/acpi/numa.c
b/drivers/acpi/numa.c
index 8fcd6a15517f5810ee6b2b6f98ba33d01d8d707a..a2efae8a4c4eec093bcfda836e96b49e97f2251e 100644
(file)
--- a/
drivers/acpi/numa.c
+++ b/
drivers/acpi/numa.c
@@
-40,19
+40,19
@@
static nodemask_t nodes_found_map = NODE_MASK_NONE;
#define NID_INVAL -1
/* maps to convert between proximity domain and logical node ID */
#define NID_INVAL -1
/* maps to convert between proximity domain and logical node ID */
-
int __cpuinitdata
pxm_to_node_map[MAX_PXM_DOMAINS]
+
static int
pxm_to_node_map[MAX_PXM_DOMAINS]
= { [0 ... MAX_PXM_DOMAINS - 1] = NID_INVAL };
= { [0 ... MAX_PXM_DOMAINS - 1] = NID_INVAL };
-
int __cpuinitdata
node_to_pxm_map[MAX_NUMNODES]
+
static int
node_to_pxm_map[MAX_NUMNODES]
= { [0 ... MAX_NUMNODES - 1] = PXM_INVAL };
= { [0 ... MAX_NUMNODES - 1] = PXM_INVAL };
-int
__cpuinit
pxm_to_node(int pxm)
+int pxm_to_node(int pxm)
{
if (pxm < 0)
return NID_INVAL;
return pxm_to_node_map[pxm];
}
{
if (pxm < 0)
return NID_INVAL;
return pxm_to_node_map[pxm];
}
-int
__cpuinit
node_to_pxm(int node)
+int node_to_pxm(int node)
{
if (node < 0)
return PXM_INVAL;
{
if (node < 0)
return PXM_INVAL;