[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <tip-eed63519e3e74d515d2007ecd895338d0ba2a85c@git.kernel.org>
Date: Mon, 29 Mar 2010 18:43:11 GMT
From: tip-bot for Ian Campbell <ian.campbell@...rix.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, joel.becker@...cle.com,
hpa@...or.com, mingo@...hat.com, konrad.wilk@...cle.com,
yinghai@...nel.org, torvalds@...ux-foundation.org,
peterz@...radead.org, ian.campbell@...rix.com, hannes@...xchg.org,
davem@...emloft.net, benh@...nel.crashing.org, tglx@...utronix.de,
sgruszka@...hat.com, mingo@...e.hu
Subject: [tip:x86/urgent] x86: Do not free zero sized per cpu areas
Commit-ID: eed63519e3e74d515d2007ecd895338d0ba2a85c
Gitweb: http://git.kernel.org/tip/eed63519e3e74d515d2007ecd895338d0ba2a85c
Author: Ian Campbell <ian.campbell@...rix.com>
AuthorDate: Sun, 28 Mar 2010 19:42:56 -0700
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Mon, 29 Mar 2010 18:55:40 +0200
x86: Do not free zero sized per cpu areas
This avoids an infinite loop in free_early_partial().
Add a warning to free_early_partial() to catch future problems.
-v5: put back start > end back into WARN_ONCE()
-v6: use one line for warning, suggested by Linus
-v7: more tests
-v8: remove the function name as suggested by Johannes
WARN_ONCE() will print out that function name.
Signed-off-by: Ian Campbell <ian.campbell@...rix.com>
Signed-off-by: Yinghai Lu <yinghai@...nel.org>
Tested-by: Konrad Rzeszutek Wilk <konrad.wilk@...cle.com>
Tested-by: Joel Becker <joel.becker@...cle.com>
Tested-by: Stanislaw Gruszka <sgruszka@...hat.com>
Acked-by: Johannes Weiner <hannes@...xchg.org>
Cc: Peter Zijlstra <peterz@...radead.org>
Cc: David Miller <davem@...emloft.net>
Cc: Benjamin Herrenschmidt <benh@...nel.crashing.org>
Cc: Linus Torvalds <torvalds@...ux-foundation.org>
LKML-Reference: <1269830604-26214-4-git-send-email-yinghai@...nel.org>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
kernel/early_res.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/kernel/early_res.c b/kernel/early_res.c
index 3cb2c66..31aa933 100644
--- a/kernel/early_res.c
+++ b/kernel/early_res.c
@@ -333,6 +333,12 @@ void __init free_early_partial(u64 start, u64 end)
struct early_res *r;
int i;
+ if (start == end)
+ return;
+
+ if (WARN_ONCE(start > end, " wrong range [%#llx, %#llx]\n", start, end))
+ return;
+
try_next:
i = find_overlapped_early(start, end);
if (i >= max_early_res)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists