hi Ingo, please consider pulling thanks, jirka
The following changes since commit ff2ebe46e15bd49d52b9c2f3fc77f3a9d94eac7b: Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf into perf/core (2014-07-16 13:48:13 +0200) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git tags/perf-core-for-mingo for you to fetch changes up to 5ce0a7940a89ad7028dfada935b0cc64d307ea3f: perf tools: Add a --no-desc flag to perf list (2014-07-16 21:35:07 +0200) ---------------------------------------------------------------- perf/core improvements and fixes: . Add support for full Intel event lists (Andi Kleen) . Update attr test with PERF_FLAG_FD_CLOEXEC flag (Jiri Olsa) . Enable close-on-exec flag on perf file descriptor (Yann Droneaud) Signed-off-by: Jiri Olsa <[email protected]> ---------------------------------------------------------------- Andi Kleen (11): perf tools: Add jsmn `jasmine' JSON parser perf tools: Add support for text descriptions of events and alias add perf tools: Update perf list to output descriptions perf tools: Allow events with dot perf tools: Add support for reading JSON event files perf tools: Automatically look for event file name for cpu perf tools: Add perf download to download event files perf tools: Query terminal width and use in perf list perf tools: Add a new pmu interface to iterate over all events perf tests: Add test case for alias and JSON parsing perf tools: Add a --no-desc flag to perf list Jiri Olsa (1): perf tests: Update attr test with PERF_FLAG_FD_CLOEXEC flag Yann Droneaud (1): perf tools: Enable close-on-exec flag on perf file descriptor tools/perf/Documentation/perf-download.txt | 31 +++ tools/perf/Documentation/perf-list.txt | 29 ++- tools/perf/Documentation/perf-record.txt | 8 +- tools/perf/Documentation/perf-stat.txt | 8 +- tools/perf/Makefile.perf | 13 +- tools/perf/arch/x86/util/header.c | 19 +- tools/perf/bench/mem-memcpy.c | 4 +- tools/perf/bench/mem-memset.c | 4 +- tools/perf/builtin-list.c | 16 +- tools/perf/builtin-record.c | 3 + tools/perf/builtin-sched.c | 4 +- tools/perf/builtin-stat.c | 2 + tools/perf/perf-download.sh | 56 ++++++ tools/perf/tests/aliases.c | 58 ++++++ tools/perf/tests/attr/base-record | 3 +- tools/perf/tests/attr/base-stat | 3 +- tools/perf/tests/bp_signal.c | 4 +- tools/perf/tests/bp_signal_overflow.c | 4 +- tools/perf/tests/builtin-test.c | 4 + tools/perf/tests/rdpmc.c | 4 +- tools/perf/tests/tests.h | 1 + tools/perf/util/cache.h | 1 + tools/perf/util/cloexec.c | 57 ++++++ tools/perf/util/cloexec.h | 6 + tools/perf/util/evsel.c | 12 +- tools/perf/util/jevents.c | 286 ++++++++++++++++++++++++++ tools/perf/util/jevents.h | 9 + tools/perf/util/jsmn.c | 313 +++++++++++++++++++++++++++++ tools/perf/util/jsmn.h | 67 ++++++ tools/perf/util/json.c | 155 ++++++++++++++ tools/perf/util/json.h | 13 ++ tools/perf/util/pager.c | 15 ++ tools/perf/util/parse-events.c | 4 +- tools/perf/util/parse-events.h | 2 +- tools/perf/util/parse-events.l | 3 +- tools/perf/util/pmu.c | 153 +++++++++++--- tools/perf/util/pmu.h | 6 +- tools/perf/util/record.c | 9 +- 38 files changed, 1324 insertions(+), 65 deletions(-) create mode 100644 tools/perf/Documentation/perf-download.txt create mode 100755 tools/perf/perf-download.sh create mode 100644 tools/perf/tests/aliases.c create mode 100644 tools/perf/util/cloexec.c create mode 100644 tools/perf/util/cloexec.h create mode 100644 tools/perf/util/jevents.c create mode 100644 tools/perf/util/jevents.h create mode 100644 tools/perf/util/jsmn.c create mode 100644 tools/perf/util/jsmn.h create mode 100644 tools/perf/util/json.c create mode 100644 tools/perf/util/json.h -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

