diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2008-10-06 18:38:33 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-10-10 00:55:18 -0400 |
commit | 99c840668c23fa81ac642598c792926021329747 (patch) | |
tree | 50159a1d62e2064d70d9d613a990c4dc34fb0c90 | |
parent | 4538d0ca71b4f8991c4c0f433d7d17805738326e (diff) |
powerpc/cell/oprofile: Fix test on overlay_tbl_offset in vma_map
Offset is unsigned and when an address isn't found in the vma map
vma_map_lookup() returns the vma physical address + 0x10000000.
vma_map_lookup used to return 0xffffffff on a failed lookup, but
a change was made to return the vma physical address + 0x10000000
There are two callers of vam_map_lookup: one of them correctly
deals with this new return value, but the other (below) did not.
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Acked-by: Maynard Johnson <maynardj@us.ibm.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r-- | arch/powerpc/oprofile/cell/vma_map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/oprofile/cell/vma_map.c b/arch/powerpc/oprofile/cell/vma_map.c index fff66662d021..258fa4411e9e 100644 --- a/arch/powerpc/oprofile/cell/vma_map.c +++ b/arch/powerpc/oprofile/cell/vma_map.c | |||
@@ -229,7 +229,7 @@ struct vma_to_fileoffset_map *create_vma_map(const struct spu *aSpu, | |||
229 | */ | 229 | */ |
230 | overlay_tbl_offset = vma_map_lookup(map, ovly_table_sym, | 230 | overlay_tbl_offset = vma_map_lookup(map, ovly_table_sym, |
231 | aSpu, &grd_val); | 231 | aSpu, &grd_val); |
232 | if (overlay_tbl_offset < 0) { | 232 | if (overlay_tbl_offset > 0x10000000) { |
233 | printk(KERN_ERR "SPU_PROF: " | 233 | printk(KERN_ERR "SPU_PROF: " |
234 | "%s, line %d: Error finding SPU overlay table\n", | 234 | "%s, line %d: Error finding SPU overlay table\n", |
235 | __func__, __LINE__); | 235 | __func__, __LINE__); |