]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
objtool: Reindent check_options[]
authorJosh Poimboeuf <jpoimboe@kernel.org>
Wed, 17 Sep 2025 16:03:44 +0000 (09:03 -0700)
committerJosh Poimboeuf <jpoimboe@kernel.org>
Tue, 14 Oct 2025 21:46:48 +0000 (14:46 -0700)
Bring the cmdline check_options[] array back into vertical alignment for
better readability.

Acked-by: Petr Mladek <pmladek@suse.com>
Tested-by: Joe Lawrence <joe.lawrence@redhat.com>
Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
tools/objtool/builtin-check.c

index 2abac92cdaeff27c1ae1af5ae14c53f7cebd6ae7..fc91bc5cdb6bc2bc3da979fe4795a33a5732ea20 100644 (file)
@@ -73,36 +73,36 @@ static int parse_hacks(const struct option *opt, const char *str, int unset)
 
 static const struct option check_options[] = {
        OPT_GROUP("Actions:"),
+       OPT_BOOLEAN(0,           "cfi", &opts.cfi, "annotate kernel control flow integrity (kCFI) function preambles"),
        OPT_CALLBACK_OPTARG('h', "hacks", NULL, NULL, "jump_label,noinstr,skylake", "patch toolchain bugs/limitations", parse_hacks),
-       OPT_BOOLEAN('i', "ibt", &opts.ibt, "validate and annotate IBT"),
-       OPT_BOOLEAN('m', "mcount", &opts.mcount, "annotate mcount/fentry calls for ftrace"),
-       OPT_BOOLEAN('n', "noinstr", &opts.noinstr, "validate noinstr rules"),
-       OPT_BOOLEAN(0,   "orc", &opts.orc, "generate ORC metadata"),
-       OPT_BOOLEAN('r', "retpoline", &opts.retpoline, "validate and annotate retpoline usage"),
-       OPT_BOOLEAN(0,   "rethunk", &opts.rethunk, "validate and annotate rethunk usage"),
-       OPT_BOOLEAN(0,   "unret", &opts.unret, "validate entry unret placement"),
-       OPT_INTEGER(0,   "prefix", &opts.prefix, "generate prefix symbols"),
-       OPT_BOOLEAN('l', "sls", &opts.sls, "validate straight-line-speculation mitigations"),
-       OPT_BOOLEAN('s', "stackval", &opts.stackval, "validate frame pointer rules"),
-       OPT_BOOLEAN('t', "static-call", &opts.static_call, "annotate static calls"),
-       OPT_BOOLEAN('u', "uaccess", &opts.uaccess, "validate uaccess rules for SMAP"),
-       OPT_BOOLEAN(0  , "cfi", &opts.cfi, "annotate kernel control flow integrity (kCFI) function preambles"),
-       OPT_BOOLEAN(0  , "noabs", &opts.noabs, "reject absolute references in allocatable sections"),
-       OPT_CALLBACK_OPTARG(0, "dump", NULL, NULL, "orc", "dump metadata", parse_dump),
+       OPT_BOOLEAN('i',         "ibt", &opts.ibt, "validate and annotate IBT"),
+       OPT_BOOLEAN('m',         "mcount", &opts.mcount, "annotate mcount/fentry calls for ftrace"),
+       OPT_BOOLEAN(0,           "noabs", &opts.noabs, "reject absolute references in allocatable sections"),
+       OPT_BOOLEAN('n',         "noinstr", &opts.noinstr, "validate noinstr rules"),
+       OPT_BOOLEAN(0,           "orc", &opts.orc, "generate ORC metadata"),
+       OPT_BOOLEAN('r',         "retpoline", &opts.retpoline, "validate and annotate retpoline usage"),
+       OPT_BOOLEAN(0,           "rethunk", &opts.rethunk, "validate and annotate rethunk usage"),
+       OPT_BOOLEAN(0,           "unret", &opts.unret, "validate entry unret placement"),
+       OPT_INTEGER(0,           "prefix", &opts.prefix, "generate prefix symbols"),
+       OPT_BOOLEAN('l',         "sls", &opts.sls, "validate straight-line-speculation mitigations"),
+       OPT_BOOLEAN('s',         "stackval", &opts.stackval, "validate frame pointer rules"),
+       OPT_BOOLEAN('t',         "static-call", &opts.static_call, "annotate static calls"),
+       OPT_BOOLEAN('u',         "uaccess", &opts.uaccess, "validate uaccess rules for SMAP"),
+       OPT_CALLBACK_OPTARG(0,   "dump", NULL, NULL, "orc", "dump metadata", parse_dump),
 
        OPT_GROUP("Options:"),
-       OPT_BOOLEAN(0,   "backtrace", &opts.backtrace, "unwind on error"),
-       OPT_BOOLEAN(0,   "backup", &opts.backup, "create backup (.orig) file on warning/error"),
-       OPT_BOOLEAN(0,   "dry-run", &opts.dryrun, "don't write modifications"),
-       OPT_BOOLEAN(0,   "link", &opts.link, "object is a linked object"),
-       OPT_BOOLEAN(0,   "module", &opts.module, "object is part of a kernel module"),
-       OPT_BOOLEAN(0,   "mnop", &opts.mnop, "nop out mcount call sites"),
-       OPT_BOOLEAN(0,   "no-unreachable", &opts.no_unreachable, "skip 'unreachable instruction' warnings"),
-       OPT_STRING('o',  "output", &opts.output, "file", "output file name"),
-       OPT_BOOLEAN(0,   "sec-address", &opts.sec_address, "print section addresses in warnings"),
-       OPT_BOOLEAN(0,   "stats", &opts.stats, "print statistics"),
-       OPT_BOOLEAN('v', "verbose", &opts.verbose, "verbose warnings"),
-       OPT_BOOLEAN(0,   "werror", &opts.werror, "return error on warnings"),
+       OPT_BOOLEAN(0,           "backtrace", &opts.backtrace, "unwind on error"),
+       OPT_BOOLEAN(0,           "backup", &opts.backup, "create backup (.orig) file on warning/error"),
+       OPT_BOOLEAN(0,           "dry-run", &opts.dryrun, "don't write modifications"),
+       OPT_BOOLEAN(0,           "link", &opts.link, "object is a linked object"),
+       OPT_BOOLEAN(0,           "module", &opts.module, "object is part of a kernel module"),
+       OPT_BOOLEAN(0,           "mnop", &opts.mnop, "nop out mcount call sites"),
+       OPT_BOOLEAN(0,           "no-unreachable", &opts.no_unreachable, "skip 'unreachable instruction' warnings"),
+       OPT_STRING('o',          "output", &opts.output, "file", "output file name"),
+       OPT_BOOLEAN(0,           "sec-address", &opts.sec_address, "print section addresses in warnings"),
+       OPT_BOOLEAN(0,           "stats", &opts.stats, "print statistics"),
+       OPT_BOOLEAN('v',         "verbose", &opts.verbose, "verbose warnings"),
+       OPT_BOOLEAN(0,           "werror", &opts.werror, "return error on warnings"),
 
        OPT_END(),
 };