projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
956ec9e
)
objtool: Improve error message for bad file argument
author
Josh Poimboeuf
<jpoimboe@redhat.com>
Mon, 15 Jan 2018 14:17:08 +0000
(08:17 -0600)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 23 Jan 2018 18:58:13 +0000
(19:58 +0100)
commit
385d11b152c4eb638eeb769edcb3249533bb9a00
upstream.
If a nonexistent file is supplied to objtool, it complains with a
non-helpful error:
open: No such file or directory
Improve it to:
objtool: Can't open 'foo': No such file or directory
Reported-by: Markus <M4rkusXXL@web.de>
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link:
http://lkml.kernel.org/r/406a3d00a21225eee2819844048e17f68523ccf6.1516025651.git.jpoimboe@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
tools/objtool/elf.c
patch
|
blob
|
history
diff --git
a/tools/objtool/elf.c
b/tools/objtool/elf.c
index 24460155c82c9b2305a2484d037be9017a00becb..c1c338661699788c8189becaab8465ed1bdcd775 100644
(file)
--- a/
tools/objtool/elf.c
+++ b/
tools/objtool/elf.c
@@
-26,6
+26,7
@@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <errno.h>
#include "elf.h"
#include "warn.h"
@@
-358,7
+359,8
@@
struct elf *elf_open(const char *name, int flags)
elf->fd = open(name, flags);
if (elf->fd == -1) {
- perror("open");
+ fprintf(stderr, "objtool: Can't open '%s': %s\n",
+ name, strerror(errno));
goto err;
}