[PATCH] pagewalk: don't pte_unmap(NULL) in walk_pte_range()

From: Roel Kluin
Date: Wed Apr 09 2008 - 06:09:10 EST


This is right isn't it?
---
Don't pte_unmap a NULL pointer, but the previous.

Signed-off-by: Roel Kluin <12o3l@xxxxxxxxxx>
---
diff --git a/mm/pagewalk.c b/mm/pagewalk.c
index 1cf1417..6615f0b 100644
--- a/mm/pagewalk.c
+++ b/mm/pagewalk.c
@@ -15,7 +15,7 @@ static int walk_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
break;
} while (pte++, addr += PAGE_SIZE, addr != end);

- pte_unmap(pte);
+ pte_unmap(pte - 1);
return err;
}

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/