tools include: add dis-asm-compat.h to handle version differences 06/292906/1
authorAndres Freund <andres@anarazel.de>
Mon, 1 Aug 2022 01:38:29 +0000 (18:38 -0700)
committerJaehoon Chung <jh80.chung@samsung.com>
Wed, 17 May 2023 02:15:52 +0000 (11:15 +0900)
commit9722eceaa0ef929c4e37042d1bb95fbe71a278e9
treec449c07abc9b66f5ff85eac96c92bb98d3a4fb1b
parent741e46fba140238536494a3a73717c3232fed1b8
tools include: add dis-asm-compat.h to handle version differences

commit a45b3d6926231c3d024ea0de4f7bd967f83709ee upstream.

binutils changed the signature of init_disassemble_info(), which now causes
compilation failures for tools/{perf,bpf}, e.g. on debian unstable.

Relevant binutils commit:

  https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=60a3da00bd5407f07

This commit introduces a wrapper for init_disassemble_info(), to avoid
spreading #ifdef DISASM_INIT_STYLED to a bunch of places. Subsequent
commits will use it to fix the build failures.

It likely is worth adding a wrapper for disassember(), to avoid the already
existing DISASM_FOUR_ARGS_SIGNATURE ifdefery.

Signed-off-by: Andres Freund <andres@anarazel.de>
Signed-off-by: Ben Hutchings <benh@debian.org>
Acked-by: Quentin Monnet <quentin@isovalent.com>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Ben Hutchings <benh@debian.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Quentin Monnet <quentin@isovalent.com>
Cc: Sedat Dilek <sedat.dilek@gmail.com>
Cc: bpf@vger.kernel.org
Link: http://lore.kernel.org/lkml/20220622181918.ykrs5rsnmx3og4sv@alap3.anarazel.de
Link: https://lore.kernel.org/r/20220801013834.156015-4-andres@anarazel.de
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit 451c9d7b16169645ed291ebb2ca9844caa088f2d)

Change-Id: Ic46658e0093e2476e717a3c8d357df475b8a0d73
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
tools/include/tools/dis-asm-compat.h [new file with mode: 0644]