diff options
| author | Ingo Molnar <[email protected]> | 2019-08-27 08:22:25 +0000 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2019-08-27 08:22:25 +0000 |
| commit | 794b8bedca9341569e1081bc880e7ea209dbca5c (patch) | |
| tree | accdfe136daf45dea3ee62567a53ae2bfb0f7fd8 /tools/perf/builtin-diff.c | |
| parent | perf/x86/intel/pt: Get rid of reverse lookup table for ToPA (diff) | |
| parent | perf evsel: Rename perf_missing_features::bpf_event to ::bpf (diff) | |
| download | kernel-794b8bedca9341569e1081bc880e7ea209dbca5c.tar.gz kernel-794b8bedca9341569e1081bc880e7ea209dbca5c.zip | |
Merge tag 'perf-core-for-mingo-5.4-20190826' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core
Pull perf/core improvements and fixes from Arnaldo Carvalho de Melo:
perf report:
Andi Kleen:
- Make --ns time sort key output column wide enough for nanoseconds.
perf script:
Gustavo A. R. Silva:
- Fix memory leaks in list_scripts()
perf tests:
James Clark:
- Fixes hang in zstd compression test by changing the source of random data.
perf trace:
Arnaldo Carvalho de Melo:
- augmented_raw_syscalls.c BPF helper improvements.
Benjamin Peterson:
- Fix off-by-one error in ioctl cmd->string table.
libperf:
Jiri Olsa:
- Move most PERF_RECORD_ structs to perf/event.h.
headers:
Arnaldo Carvalho de Melo:
- Move cacheline related routines to separate source files.
- Move record_opts and other record declarations to separate files.
- Explicitly add some more needed headers here and there.
Souptick Joarder:
- Remove some duplicate include directives.
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'tools/perf/builtin-diff.c')
| -rw-r--r-- | tools/perf/builtin-diff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/builtin-diff.c b/tools/perf/builtin-diff.c index e91c0d798181..51c37e53b3d8 100644 --- a/tools/perf/builtin-diff.c +++ b/tools/perf/builtin-diff.c @@ -15,6 +15,7 @@ #include "util/session.h" #include "util/tool.h" #include "util/sort.h" +#include "util/srcline.h" #include "util/symbol.h" #include "util/data.h" #include "util/config.h" @@ -22,6 +23,7 @@ #include "util/annotate.h" #include "util/map.h" #include <linux/zalloc.h> +#include <subcmd/parse-options.h> #include <errno.h> #include <inttypes.h> |
