diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-11 18:26:56 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-11 18:26:56 (GMT) |
commit | 7702667bb490573c807fa45519378e84b5050d1d (patch) | |
tree | 912724d7108fab9ecf91cc372f24c58c1f304026 /arch | |
parent | b415c49a864dab8ee90713833d642dd461eccae9 (diff) | |
parent | 9866b7e86a2ce4daa677be750e3ccbfc65d187f5 (diff) | |
download | linux-7702667bb490573c807fa45519378e84b5050d1d.tar.xz |
Merge branch 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
x86: memtest: use pointers of equal type for comparison
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/mm/memtest.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/arch/x86/mm/memtest.c b/arch/x86/mm/memtest.c index c0bedcd..18d244f 100644 --- a/arch/x86/mm/memtest.c +++ b/arch/x86/mm/memtest.c @@ -40,21 +40,20 @@ static void __init reserve_bad_mem(u64 pattern, u64 start_bad, u64 end_bad) static void __init memtest(u64 pattern, u64 start_phys, u64 size) { - u64 *p; - void *start, *end; + u64 *p, *start, *end; u64 start_bad, last_bad; u64 start_phys_aligned; - size_t incr; + const size_t incr = sizeof(pattern); - incr = sizeof(pattern); start_phys_aligned = ALIGN(start_phys, incr); start = __va(start_phys_aligned); - end = start + size - (start_phys_aligned - start_phys); + end = start + (size - (start_phys_aligned - start_phys)) / incr; start_bad = 0; last_bad = 0; for (p = start; p < end; p++) *p = pattern; + for (p = start; p < end; p++, start_phys_aligned += incr) { if (*p == pattern) continue; |