diff options
author | Helge Deller <deller@gmx.de> | 2013-06-05 20:50:01 +0000 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2013-06-18 20:20:21 +0200 |
commit | 91ea8207168793b365322be3c90a4ee9e8b03ed4 (patch) | |
tree | 8eb6ded7dbdb9a0ea93ed223f51339e49e8426ad /arch/parisc/mm/init.c | |
parent | 17858ca65eef148d335ffd4cfc09228a1c1cbfb5 (diff) | |
download | linux-stable-91ea8207168793b365322be3c90a4ee9e8b03ed4.tar.gz linux-stable-91ea8207168793b365322be3c90a4ee9e8b03ed4.tar.bz2 linux-stable-91ea8207168793b365322be3c90a4ee9e8b03ed4.zip |
parisc: fix kernel BUG at arch/parisc/include/asm/mmzone.h:50 (part 2)
Make sure that we really return -1 (instead of 0x00ff) as node id for
page frame numbers which are not physically available.
This finally fixes the kernel panic when running
cat /proc/kpageflags /proc/kpagecount.
Theoretically this patch now limits the number of physical memory ranges
to 127 instead of 254, but currently we have MAX_PHYSMEM_RANGES
hardcoded to 8 which is sufficient for all existing parisc machines.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/mm/init.c')
-rw-r--r-- | arch/parisc/mm/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/mm/init.c b/arch/parisc/mm/init.c index 1c965642068b..505b56c6b9b9 100644 --- a/arch/parisc/mm/init.c +++ b/arch/parisc/mm/init.c @@ -47,7 +47,7 @@ pte_t pg0[PT_INITIAL * PTRS_PER_PTE] __attribute__ ((__section__ (".data..vm0.pt #ifdef CONFIG_DISCONTIGMEM struct node_map_data node_data[MAX_NUMNODES] __read_mostly; -unsigned char pfnnid_map[PFNNID_MAP_MAX] __read_mostly; +signed char pfnnid_map[PFNNID_MAP_MAX] __read_mostly; #endif static struct resource data_resource = { |