Skip to content
Commit 29e55ad3 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

scripts/kallsyms: add sym_name() to mitigate cast ugliness



sym_entry::sym is (unsigned char *) instead of (char *) because
kallsyms exploits the MSB for compression, and the characters are
used as the index of token_profit array.

However, it requires casting (unsigned char *) to (char *) in some
places since standard library functions such as strcmp(), strlen()
expect (char *).

Introduce a new helper, sym_name(), which advances the given pointer
by 1 and casts it to (char *).

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent c5e5002f
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment