diff options
author | Sasha Levin <sashal@kernel.org> | 2020-01-05 21:27:14 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-01-12 13:24:12 +0300 |
commit | d7052925ce69a195053f31c00f861ac33db6d3b5 (patch) | |
tree | ee5d94a0cca55340526c273043e8974cf3ba5785 /tools | |
parent | a09dabbf416ba5ef824a651266405426e5dcf59a (diff) | |
download | linux-d7052925ce69a195053f31c00f861ac33db6d3b5.tar.xz |
Revert "perf report: Add warning when libunwind not compiled in"
This reverts commit 59b706ce44dbfd35a428f2cbad47794ce5dce1eb.
This change depends on more changes that didn't exist in 4.9 and older.
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/builtin-report.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 33ff5c843346..6e88460cd13d 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c @@ -292,13 +292,6 @@ static int report__setup_sample_type(struct report *rep) PERF_SAMPLE_BRANCH_ANY)) rep->nonany_branch_mode = true; -#ifndef HAVE_LIBUNWIND_SUPPORT - if (dwarf_callchain_users) { - ui__warning("Please install libunwind development packages " - "during the perf build.\n"); - } -#endif - return 0; } |