mbox series

[v5,0/3] Fix 'faddr2line' for LLVM arm64 builds

Message ID 20231002165750.1661-1-will@kernel.org (mailing list archive)
Headers show
Series Fix 'faddr2line' for LLVM arm64 builds | expand

Message

Will Deacon Oct. 2, 2023, 4:57 p.m. UTC
Hello again.

This is version five of the fadd2line fixes that I previously posted at:

v1: https://lore.kernel.org/r/20230724174517.15736-1-will@kernel.org
v2: https://lore.kernel.org/r/20230725211157.17031-1-will@kernel.org
v3: https://lore.kernel.org/r/20230728113415.21067-1-will@kernel.org
v4: https://lore.kernel.org/r/20230914131225.13415-1-will@kernel.org

Changes since v4 include:
  * Simplify the is_mapping_symbol() regex to reflect the latest version
    of the C code.
  * Add Suggested-by and Reviewed-by tags to patch 1.

Cheers,

Will

Cc: Masahiro Yamada <masahiroy@kernel.org>
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Nicolas Schier <nicolas@fjasle.eu>
Cc: Josh Poimboeuf <jpoimboe@kernel.org>
Cc: John Stultz <jstultz@google.com>
Cc: linux-kbuild@vger.kernel.org

--->8

Will Deacon (3):
  scripts/faddr2line: Don't filter out non-function symbols from readelf
  scripts/faddr2line: Use LLVM addr2line and readelf if LLVM=1
  scripts/faddr2line: Skip over mapping symbols in output from readelf

 scripts/faddr2line | 24 +++++++++++++++++++++---
 1 file changed, 21 insertions(+), 3 deletions(-)

Comments

Will Deacon Oct. 23, 2023, 1:42 p.m. UTC | #1
Josh,

On Mon, Oct 02, 2023 at 05:57:46PM +0100, Will Deacon wrote:
> Hello again.
> 
> This is version five of the fadd2line fixes that I previously posted at:
> 
> v1: https://lore.kernel.org/r/20230724174517.15736-1-will@kernel.org
> v2: https://lore.kernel.org/r/20230725211157.17031-1-will@kernel.org
> v3: https://lore.kernel.org/r/20230728113415.21067-1-will@kernel.org
> v4: https://lore.kernel.org/r/20230914131225.13415-1-will@kernel.org
> 
> Changes since v4 include:
>   * Simplify the is_mapping_symbol() regex to reflect the latest version
>     of the C code.
>   * Add Suggested-by and Reviewed-by tags to patch 1.

Please can you pick this up for 6.7?

Will