diff options
| author | Cyrill Gorcunov <[email protected]> | 2009-03-31 22:19:25 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2009-04-01 15:59:11 +0000 |
| commit | ef161a9863b045909142daea9490b067997f3dc5 (patch) | |
| tree | 2cf6aa8a617110c7680978b8aaceea87ec6d2a3d /mm/sparse.c | |
| parent | proc tty: remove struct tty_operations::read_proc (diff) | |
| download | kernel-ef161a9863b045909142daea9490b067997f3dc5.tar.gz kernel-ef161a9863b045909142daea9490b067997f3dc5.zip | |
mm: mminit_validate_memmodel_limits(): remove redundant test
In case if start_pfn overlap the upper bound no need to test end_pfn again
since we have it already trimmed.
Signed-off-by: Cyrill Gorcunov <[email protected]>
Reviewed-by: Christoph Lameter <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'mm/sparse.c')
| -rw-r--r-- | mm/sparse.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mm/sparse.c b/mm/sparse.c index 083f5b63e7a8..da432d9f0ae8 100644 --- a/mm/sparse.c +++ b/mm/sparse.c @@ -164,9 +164,7 @@ void __meminit mminit_validate_memmodel_limits(unsigned long *start_pfn, WARN_ON_ONCE(1); *start_pfn = max_sparsemem_pfn; *end_pfn = max_sparsemem_pfn; - } - - if (*end_pfn > max_sparsemem_pfn) { + } else if (*end_pfn > max_sparsemem_pfn) { mminit_dprintk(MMINIT_WARNING, "pfnvalidation", "End of range %lu -> %lu exceeds SPARSEMEM max %lu\n", *start_pfn, *end_pfn, max_sparsemem_pfn); |
