aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/objtool/include
diff options
context:
space:
mode:
authorJosh Poimboeuf <jpoimboe@kernel.org>2023-05-30 10:21:09 -0700
committerJosh Poimboeuf <jpoimboe@kernel.org>2023-06-07 10:03:24 -0700
commitbe2f0b1e12644c956a347d7fde93c2ffe9cdb1af (patch)
tree2b9a294a2d32794c0a2581bc7ebade7ab35beff2 /tools/objtool/include
parentobjtool: Get rid of reloc->addend (diff)
downloadwireguard-linux-be2f0b1e12644c956a347d7fde93c2ffe9cdb1af.tar.xz
wireguard-linux-be2f0b1e12644c956a347d7fde93c2ffe9cdb1af.zip
objtool: Get rid of reloc->jump_table_start
Rework the jump table logic slightly so 'jump_table_start' is no longer needed. With allyesconfig + CONFIG_DEBUG_INFO: - Before: peak heap memory consumption: 40.37G - After: peak heap memory consumption: 38.64G Link: https://lore.kernel.org/r/e1602ed8a6171ada3cfac0bd8449892ec82bd188.1685464332.git.jpoimboe@kernel.org Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
Diffstat (limited to 'tools/objtool/include')
-rw-r--r--tools/objtool/include/objtool/elf.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/objtool/include/objtool/elf.h b/tools/objtool/include/objtool/elf.h
index be08b32a93ee..60686f746c9e 100644
--- a/tools/objtool/include/objtool/elf.h
+++ b/tools/objtool/include/objtool/elf.h
@@ -75,7 +75,6 @@ struct reloc {
struct section *sec;
struct symbol *sym;
struct list_head sym_reloc_entry;
- bool jump_table_start;
};
struct elf {