Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 88677
b: refs/heads/master
c: e3100c8
h: refs/heads/master
i:
  88675: 66c6a9b
v: v3
  • Loading branch information
Thomas Gleixner authored and Ingo Molnar committed Apr 17, 2008
1 parent 9462baa commit ea3ed25
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b8c2d3dfbc117dff26058fbac316b8acfc2cb5f7
refs/heads/master: e3100c82abd9aa643dc15828202aceeae3504e03
19 changes: 19 additions & 0 deletions trunk/arch/x86/mm/ioremap.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,18 @@ unsigned long __phys_addr(unsigned long x)
}
EXPORT_SYMBOL(__phys_addr);

static inline int phys_addr_valid(unsigned long addr)
{
return addr < (1UL << boot_cpu_data.x86_phys_bits);
}

#else

static inline int phys_addr_valid(unsigned long addr)
{
return 1;
}

#endif

int page_is_ram(unsigned long pagenr)
Expand Down Expand Up @@ -118,6 +130,13 @@ static void __iomem *__ioremap(resource_size_t phys_addr, unsigned long size,
if (!size || last_addr < phys_addr)
return NULL;

if (!phys_addr_valid(phys_addr)) {
printk(KERN_WARNING "ioremap: invalid physical address %lx\n",
phys_addr);
WARN_ON_ONCE(1);
return NULL;
}

/*
* Don't remap the low PCI/ISA area, it's always mapped..
*/
Expand Down

0 comments on commit ea3ed25

Please sign in to comment.