public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] livepatch: Fix the error message about unresolvable ambiguity
@ 2016-03-09 14:20 Petr Mladek
  2016-03-09 16:19 ` Josh Poimboeuf
  2016-03-09 20:59 ` Jiri Kosina
  0 siblings, 2 replies; 4+ messages in thread
From: Petr Mladek @ 2016-03-09 14:20 UTC (permalink / raw)
  To: Josh Poimboeuf, Jiri Kosina
  Cc: Jessica Yu, Miroslav Benes, live-patching, linux-kernel,
	Chris J Arges, Petr Mladek

klp_find_callback() stops the search when sympos is not defined and
a second symbol of the same name is found. It means that the current
error message about the unresolvable ambiguity always prints "(2 matches)".

Let's remove this information. The total number of occurrences is
not much helpful. The author of the patch still must put a non-trivial
effort into searching the right position in the object file.

Signed-off-by: Petr Mladek <pmladek@suse.com>
---
 kernel/livepatch/core.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c
index bc2c85c064c1..f2eda09e8357 100644
--- a/kernel/livepatch/core.c
+++ b/kernel/livepatch/core.c
@@ -190,8 +190,8 @@ static int klp_find_object_symbol(const char *objname, const char *name,
 	if (args.addr == 0)
 		pr_err("symbol '%s' not found in symbol table\n", name);
 	else if (args.count > 1 && sympos == 0) {
-		pr_err("unresolvable ambiguity (%lu matches) on symbol '%s' in object '%s'\n",
-		       args.count, name, objname);
+		pr_err("unresolvable ambiguity on symbol '%s' in object '%s'\n",
+		       name, objname);
 	} else if (sympos != args.count && sympos > 0) {
 		pr_err("symbol position %lu for symbol '%s' in object '%s' not found\n",
 		       sympos, name, objname ? objname : "vmlinux");
-- 
1.8.5.6

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-03-09 20:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-09 14:20 [PATCH] livepatch: Fix the error message about unresolvable ambiguity Petr Mladek
2016-03-09 16:19 ` Josh Poimboeuf
2016-03-09 16:40   ` Chris J Arges
2016-03-09 20:59 ` Jiri Kosina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox