[<prev] [next>] [day] [month] [year] [list]
Message-ID: <158759428235.28353.10463012010844983639.tip-bot2@tip-bot2>
Date: Wed, 22 Apr 2020 22:24:42 -0000
From: "tip-bot2 for Kristen Carlson Accardi" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Kristen Carlson Accardi <kristen@...ux.intel.com>,
Josh Poimboeuf <jpoimboe@...hat.com>, x86 <x86@...nel.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: [tip: objtool/core] objtool: Do not assume order of parent/child functions
The following commit has been merged into the objtool/core branch of tip:
Commit-ID: 5920038dc2aa75b7aa3f5ca767b06a71c67cf897
Gitweb: https://git.kernel.org/tip/5920038dc2aa75b7aa3f5ca767b06a71c67cf897
Author: Kristen Carlson Accardi <kristen@...ux.intel.com>
AuthorDate: Wed, 15 Apr 2020 14:04:43 -07:00
Committer: Josh Poimboeuf <jpoimboe@...hat.com>
CommitterDate: Tue, 21 Apr 2020 18:50:26 -05:00
objtool: Do not assume order of parent/child functions
If a .cold function is examined prior to it's parent, the link
to the parent/child function can be overwritten when the parent
is examined. Only update pfunc and cfunc if they were previously
nil to prevent this from happening.
This fixes an -ffunction-sections issue.
Signed-off-by: Kristen Carlson Accardi <kristen@...ux.intel.com>
Signed-off-by: Josh Poimboeuf <jpoimboe@...hat.com>
---
tools/objtool/elf.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/tools/objtool/elf.c b/tools/objtool/elf.c
index 43748cb..03e542d 100644
--- a/tools/objtool/elf.c
+++ b/tools/objtool/elf.c
@@ -418,7 +418,13 @@ static int read_symbols(struct elf *elf)
size_t pnamelen;
if (sym->type != STT_FUNC)
continue;
- sym->pfunc = sym->cfunc = sym;
+
+ if (sym->pfunc == NULL)
+ sym->pfunc = sym;
+
+ if (sym->cfunc == NULL)
+ sym->cfunc = sym;
+
coldstr = strstr(sym->name, ".cold");
if (!coldstr)
continue;
Powered by blists - more mailing lists