diff options
Diffstat (limited to 'tools/objtool/builtin-check.c')
| -rw-r--r-- | tools/objtool/builtin-check.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/objtool/builtin-check.c b/tools/objtool/builtin-check.c index 57254f5b2779..694abc628e9b 100644 --- a/tools/objtool/builtin-check.c +++ b/tools/objtool/builtin-check.c @@ -29,7 +29,7 @@  #include "builtin.h"  #include "check.h" -bool no_fp, no_unreachable; +bool no_fp, no_unreachable, retpoline, module;  static const char * const check_usage[] = {  	"objtool check [<options>] file.o", @@ -39,6 +39,8 @@ static const char * const check_usage[] = {  const struct option check_options[] = {  	OPT_BOOLEAN('f', "no-fp", &no_fp, "Skip frame pointer validation"),  	OPT_BOOLEAN('u', "no-unreachable", &no_unreachable, "Skip 'unreachable instruction' warnings"), +	OPT_BOOLEAN('r', "retpoline", &retpoline, "Validate retpoline assumptions"), +	OPT_BOOLEAN('m', "module", &module, "Indicates the object will be part of a kernel module"),  	OPT_END(),  }; @@ -53,5 +55,5 @@ int cmd_check(int argc, const char **argv)  	objname = argv[0]; -	return check(objname, no_fp, no_unreachable, false); +	return check(objname, false);  }  | 
