summaryrefslogtreecommitdiffstats
path: root/tools/objtool/builtin-check.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/objtool/builtin-check.c')
-rw-r--r--tools/objtool/builtin-check.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/objtool/builtin-check.c b/tools/objtool/builtin-check.c
index 99f10c585cbe..f3b378126011 100644
--- a/tools/objtool/builtin-check.c
+++ b/tools/objtool/builtin-check.c
@@ -29,7 +29,7 @@
29#include "builtin.h" 29#include "builtin.h"
30#include "check.h" 30#include "check.h"
31 31
32bool no_fp, no_unreachable, retpoline, module, backtrace; 32bool no_fp, no_unreachable, retpoline, module, backtrace, uaccess;
33 33
34static const char * const check_usage[] = { 34static const char * const check_usage[] = {
35 "objtool check [<options>] file.o", 35 "objtool check [<options>] file.o",
@@ -42,6 +42,7 @@ const struct option check_options[] = {
42 OPT_BOOLEAN('r', "retpoline", &retpoline, "Validate retpoline assumptions"), 42 OPT_BOOLEAN('r', "retpoline", &retpoline, "Validate retpoline assumptions"),
43 OPT_BOOLEAN('m', "module", &module, "Indicates the object will be part of a kernel module"), 43 OPT_BOOLEAN('m', "module", &module, "Indicates the object will be part of a kernel module"),
44 OPT_BOOLEAN('b', "backtrace", &backtrace, "unwind on error"), 44 OPT_BOOLEAN('b', "backtrace", &backtrace, "unwind on error"),
45 OPT_BOOLEAN('a', "uaccess", &uaccess, "enable uaccess checking"),
45 OPT_END(), 46 OPT_END(),
46}; 47};
47 48