aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorT Makphaibulchoke <[email protected]>2012-08-28 21:21:43 -0600
committerIngo Molnar <[email protected]>2012-09-13 17:35:54 +0200
commit73e8f3d7e2cb23614d5115703d76d8e54764b641 (patch)
treec7edef261d3ea49550801297a98b5890493252e1
parent4454d32749465ffa77d82bc1fdd196d6dedc544b (diff)
x86/mm/init.c: Fix devmem_is_allowed() off by one
Fixing an off-by-one error in devmem_is_allowed(), which allows accesses to physical addresses 0x100000-0x100fff, an extra page past 1MB. Signed-off-by: T Makphaibulchoke <[email protected]> Acked-by: H. Peter Anvin <[email protected]> Cc: [email protected] Cc: [email protected] Cc: [email protected] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r--arch/x86/mm/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/init.c b/arch/x86/mm/init.c
index e0e6990723e9..ab1f6a93b527 100644
--- a/arch/x86/mm/init.c
+++ b/arch/x86/mm/init.c
@@ -319,7 +319,7 @@ unsigned long __init_refok init_memory_mapping(unsigned long start,
*/
int devmem_is_allowed(unsigned long pagenr)
{
- if (pagenr <= 256)
+ if (pagenr < 256)
return 1;
if (iomem_is_exclusive(pagenr << PAGE_SHIFT))
return 0;