summaryrefslogtreecommitdiff
path: root/scripts/kallsyms.c
AgeCommit message (Expand)AuthorFilesLines
2024-04-26scripts/kallysms: always include __start and __stop symbolsKent Overstreet1-0/+13
2023-07-29scripts/kallsyms: Fix build failure by setting errno before calling getline()James Clark1-0/+1
2023-07-13kallsyms: strip LTO-only suffixes from promoted global functionsYonghong Song1-3/+3
2023-06-14scripts/kallsyms: remove KSYM_NAME_LEN_BUFFERMasahiro Yamada1-29/+32
2023-06-14scripts/kallsyms: constify long_optionsMasahiro Yamada1-1/+1
2023-04-17scripts/kallsyms: update the usage in the comment blockMasahiro Yamada1-1/+1
2023-04-17scripts/kallsyms: decrease expand_symbol() / cleanup_symbol_name() callsMasahiro Yamada1-18/+15
2023-04-17scripts/kallsyms: change the output orderMasahiro Yamada1-59/+59
2023-04-17scripts/kallsyms: move compiler-generated symbol patterns to mksysmapMasahiro Yamada1-60/+0
2023-04-17scripts/kallsyms: exclude symbols generated by itself dynamicallyMasahiro Yamada1-16/+0
2023-04-17scripts/kallsyms: remove redundant code for omitting U and NMasahiro Yamada1-4/+1
2023-04-17kallsyms: expand symbol name into comment for debuggingArnd Bergmann1-1/+2
2023-03-07kallsyms: add kallsyms_seqs_of_names to list of special symbolsArnd Bergmann1-0/+1
2022-12-16Merge tag 'char-misc-6.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-1/+2
2022-11-23scripts/kallsyms.c Make the comment up-to-date with current implementationYuma Ueda1-1/+2
2022-11-13kallsyms: Reduce the memory occupied by kallsyms_seqs_of_names[]Zhen Lei1-1/+4
2022-11-13kallsyms: Correctly sequence symbols when CONFIG_LTO_CLANG=yZhen Lei1-2/+34
2022-11-13kallsyms: Improve the performance of kallsyms_lookup_name()Zhen Lei1-0/+37
2022-11-13scripts/kallsyms: rename build_initial_tok_table()Zhen Lei1-2/+2
2022-10-10Merge tag 'kbuild-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/masa...Linus Torvalds1-21/+33
2022-10-04Merge tag 'kcfi-v6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/ke...Linus Torvalds1-0/+1
2022-10-02kallsyms: take the input file instead of reading stdinMasahiro Yamada1-18/+33
2022-10-02kallsyms: drop duplicated ignore patterns from kallsyms.cMasahiro Yamada1-3/+0
2022-09-28kallsyms: increase maximum kernel symbol length to 512Miguel Ojeda1-2/+2
2022-09-28kallsyms: support "big" kernel symbolsMiguel Ojeda1-3/+26
2022-09-28kallsyms: add static relationship between `KSYM_NAME_LEN{,_BUFFER}`Miguel Ojeda1-2/+12
2022-09-28kallsyms: avoid hardcoding buffer sizeBoqun Feng1-2/+8
2022-09-28kallsyms: use `ARRAY_SIZE` instead of hardcoded sizeBoqun Feng1-1/+1
2022-09-26scripts/kallsyms: Ignore __kcfi_typeid_Sami Tolvanen1-0/+1
2022-05-27scripts/kallsyms: update usage message of the kallsyms programYuntao Wang1-1/+1
2022-04-28KVM: arm64: Symbolize the nVHE HYP addressesKalesh Singh1-1/+2
2022-02-21kallsyms: ignore all local labels prefixed by '.L'Changbin Du1-1/+1
2021-02-05kallsyms: fix nonconverging kallsyms table with lldArnd Bergmann1-0/+6
2020-09-24scripts/kallsyms: skip ppc compiler stub *.long_branch.* / *.plt_branch.*Masahiro Yamada1-1/+15
2020-07-05KVM: arm64: Add build rules for separate VHE/nVHE object filesDavid Brazdil1-0/+1
2020-05-04gcc-10 warnings: fix low-hanging fruitLinus Torvalds1-1/+1
2020-03-19scripts/kallsyms: fix wrong kallsyms_relative_baseMikhail Petrov1-4/+4
2020-02-10scripts/kallsyms: fix memory corruption caused by write over-runMasahiro Yamada1-2/+2
2020-02-03scripts/kallsyms: change table to store (strcut sym_entry *)Masahiro Yamada1-56/+65
2020-02-03scripts/kallsyms: rename local variables in read_symbol()Masahiro Yamada1-12/+12
2019-12-14scripts/kallsyms: fix offset overflow of kallsyms_relative_baseMasahiro Yamada1-20/+18
2019-11-25scripts/kallsyms: remove redundant initializersMasahiro Yamada1-3/+3
2019-11-25scripts/kallsyms: put check_symbol_range() calls close togetherMasahiro Yamada1-3/+1
2019-11-25scripts/kallsyms: make check_symbol_range() void functionMasahiro Yamada1-9/+6
2019-11-25scripts/kallsyms: move ignored symbol types to is_ignored_symbol()Masahiro Yamada1-15/+15
2019-11-25scripts/kallsyms: move more patterns to the ignored_prefixes arrayMasahiro Yamada1-10/+2
2019-11-25scripts/kallsyms: skip ignored symbols very earlyMasahiro Yamada1-51/+62
2019-11-25scripts/kallsyms: add const qualifiers where possibleMasahiro Yamada1-14/+14
2019-11-25scripts/kallsyms: make find_token() return (unsigned char *)Masahiro Yamada1-1/+2
2019-11-25scripts/kallsyms: replace prefix_underscores_count() with strspn()Masahiro Yamada1-12/+2