summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorMax Filippov <jcmvbkbc@gmail.com>2014-06-09 22:18:24 +0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-31 12:44:06 -0700
commit1f919283ecd0b3b6ee77a6691cce696ef6fb3e60 (patch)
treef448fd2b8e5f0c9ae5d3d4a9b91765271edd2590 /arch
parent270239fd5697caf728f59cfa873fc198d59e76a1 (diff)
downloadlwn-1f919283ecd0b3b6ee77a6691cce696ef6fb3e60.tar.gz
lwn-1f919283ecd0b3b6ee77a6691cce696ef6fb3e60.zip
xtensa: fix sysmem reservation at the end of existing block
commit be6ae382dc153da51cf066c8dd523aa955f02531 upstream. When sysmem reservation occurs exactly at the end of an existing block that block is deleted, because it is incorrectly included in the range of memblocks to remove. Fix that by skipping such block. Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/xtensa/mm/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/mm/init.c b/arch/xtensa/mm/init.c
index 4224256bb215..77ed20209ca5 100644
--- a/arch/xtensa/mm/init.c
+++ b/arch/xtensa/mm/init.c
@@ -191,7 +191,7 @@ int __init mem_reserve(unsigned long start, unsigned long end, int must_exist)
return -EINVAL;
}
- if (it && start - it->start < bank_sz) {
+ if (it && start - it->start <= bank_sz) {
if (start == it->start) {
if (end - it->start < bank_sz) {
it->start = end;