]> www.infradead.org Git - users/jedix/linux-maple.git/commit
perf dso: Fix build when libunwind is enabled
authorJames Clark <james.clark@linaro.org>
Mon, 15 Jul 2024 09:47:13 +0000 (10:47 +0100)
committerNamhyung Kim <namhyung@kernel.org>
Wed, 17 Jul 2024 20:17:57 +0000 (13:17 -0700)
commit92717bc077892d1ce60fee07aee3a33f33909b85
tree8c88b2afb18e85b81cdd0bba2e7fb471bcb76fd7
parent2085948e5f8b31c1ec1bc92413794d11ff749bb2
perf dso: Fix build when libunwind is enabled

Now that symsrc_filename is always accessed through an accessor, we also
need a free() function for it to avoid the following compilation error:

  util/unwind-libunwind-local.c:416:12: error: lvalue required as unary
    ‘&’ operand
  416 |      zfree(&dso__symsrc_filename(dso));

Fixes: 1553419c3c10 ("perf dso: Fix address sanitizer build")
Signed-off-by: James Clark <james.clark@linaro.org>
Reviewed-by: Ian Rogers <irogers@google.com>
Tested-by: Leo Yan <leo.yan@arm.com>
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com>
Cc: Yunseong Kim <yskelg@gmail.com>
Cc: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Link: https://lore.kernel.org/r/20240715094715.3914813-1-james.clark@linaro.org
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/perf/util/dso.c
tools/perf/util/dso.h
tools/perf/util/unwind-libunwind-local.c