objtool: Delete cleanup()
authorPeter Zijlstra <peterz@infradead.org>
Wed, 11 Mar 2020 22:07:42 +0000 (23:07 +0100)
committerPeter Zijlstra <peterz@infradead.org>
Wed, 25 Mar 2020 17:28:30 +0000 (18:28 +0100)
Perf shows we spend a measurable amount of time spend cleaning up
right before we exit anyway. Avoid the needsless work and just
terminate.

This reduces objtool on vmlinux.o runtime from 5.4s to 4.8s

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Miroslav Benes <mbenes@suse.cz>
Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>
Link: https://lkml.kernel.org/r/20200324160924.800720170@infradead.org
tools/objtool/check.c

index 54a604381a032422b3349cb8187ddb48ef3b8ec7..0c9c9ad47467c07550ab17c15595b24ec439b650 100644 (file)
@@ -2458,23 +2458,6 @@ static int validate_reachable_instructions(struct objtool_file *file)
        return 0;
 }
 
-static void cleanup(struct objtool_file *file)
-{
-       struct instruction *insn, *tmpinsn;
-       struct alternative *alt, *tmpalt;
-
-       list_for_each_entry_safe(insn, tmpinsn, &file->insn_list, list) {
-               list_for_each_entry_safe(alt, tmpalt, &insn->alts, list) {
-                       list_del(&alt->list);
-                       free(alt);
-               }
-               list_del(&insn->list);
-               hash_del(&insn->hash);
-               free(insn);
-       }
-       elf_close(file->elf);
-}
-
 static struct objtool_file file;
 
 int check(const char *_objname, bool orc)
@@ -2542,8 +2525,6 @@ int check(const char *_objname, bool orc)
        }
 
 out:
-       cleanup(&file);
-
        if (ret < 0) {
                /*
                 *  Fatal error.  The binary is corrupt or otherwise broken in