[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <tip-d1e4d37b79e944f6351ae38eb1ca7c9f7b506e76@git.kernel.org>
Date: Sun, 8 Nov 2009 11:07:12 GMT
From: tip-bot for Hannes Reinecke <hare@...e.de>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
sam@...nborg.org, akpm@...ux-foundation.org, hare@...e.de,
tglx@...utronix.de, mingo@...e.hu
Subject: [tip:x86/urgent] x86: Add back _end symbol that is missing from Symbol.map
Commit-ID: d1e4d37b79e944f6351ae38eb1ca7c9f7b506e76
Gitweb: http://git.kernel.org/tip/d1e4d37b79e944f6351ae38eb1ca7c9f7b506e76
Author: Hannes Reinecke <hare@...e.de>
AuthorDate: Wed, 4 Nov 2009 07:19:32 -0800
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Sun, 8 Nov 2009 12:05:03 +0100
x86: Add back _end symbol that is missing from Symbol.map
With 2.6.31 'crash' on x86_64 falls flat on its face as the
'_end' symbol is missing from the System.map file.
The culprit is commit 091e52c3551d3031343df24b573b770b4c6c72b6,
which moved the '_end' symbol into it's own section. Apparently
this causes kallsyms to not reference it properly.
So do not include _end in it's own section.
Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
Cc: Sam Ravnborg <sam@...nborg.org>
Cc: <stable@...nel.org> # .31.x
LKML-Reference: <200911041519.nA4FJWEW030164@...p1.linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
arch/x86/kernel/vmlinux.lds.S | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/arch/x86/kernel/vmlinux.lds.S b/arch/x86/kernel/vmlinux.lds.S
index 3c68fe2..b2f811d 100644
--- a/arch/x86/kernel/vmlinux.lds.S
+++ b/arch/x86/kernel/vmlinux.lds.S
@@ -291,9 +291,7 @@ SECTIONS
__brk_limit = .;
}
- .end : AT(ADDR(.end) - LOAD_OFFSET) {
- _end = .;
- }
+ _end = .;
STABS_DEBUG
DWARF_DEBUG
--
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