This is a note to let you know that I've just added the patch titled
xtensa: fix sysmem reservation at the end of existing block
to the 3.15-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
xtensa-fix-sysmem-reservation-at-the-end-of-existing-block.patch
and it can be found in the queue-3.15 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From be6ae382dc153da51cf066c8dd523aa955f02531 Mon Sep 17 00:00:00 2001
From: Max Filippov <[email protected]>
Date: Mon, 9 Jun 2014 22:18:24 +0400
Subject: xtensa: fix sysmem reservation at the end of existing block
From: Max Filippov <[email protected]>
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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
arch/xtensa/mm/init.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/arch/xtensa/mm/init.c
+++ b/arch/xtensa/mm/init.c
@@ -191,7 +191,7 @@ int __init mem_reserve(unsigned long sta
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;
Patches currently in stable-queue which might be from [email protected] are
queue-3.15/xtensa-fix-sysmem-reservation-at-the-end-of-existing-block.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html