hi, adding the check for maximum allowed frequency rate defined in perf_event_max_sample_rate.
Plus procfs mountpoint reading code. Reachable here: git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git perf/cc jirka Cc: Adrian Hunter <[email protected]> Cc: Corey Ashford <[email protected]> Cc: David Ahern <[email protected]> Cc: Frederic Weisbecker <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Paul Mackerras <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Arnaldo Carvalho de Melo <[email protected]> Cc: Joe Mario <[email protected]> Cc: Don Zickus <[email protected]> --- Jiri Olsa (3): perf tools: Factor sysfs code into generic fs object perf tools: Add procfs support into fs object perf tools: Check maximum frequency rate for record/top tools/perf/Makefile.perf | 4 ++-- tools/perf/builtin-record.c | 3 +++ tools/perf/builtin-top.c | 3 +++ tools/perf/tests/parse-events.c | 2 +- tools/perf/util/cpumap.c | 2 +- tools/perf/util/evlist.h | 1 + tools/perf/util/fs.c | 119 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ tools/perf/util/fs.h | 7 ++++++ tools/perf/util/include/linux/magic.h | 4 ++++ tools/perf/util/pmu.c | 2 +- tools/perf/util/python-ext-sources | 2 +- tools/perf/util/record.c | 35 ++++++++++++++++++++++++++++ tools/perf/util/sysfs.c | 60 ----------------------------------------------- tools/perf/util/sysfs.h | 6 ----- 14 files changed, 178 insertions(+), 72 deletions(-) create mode 100644 tools/perf/util/fs.c create mode 100644 tools/perf/util/fs.h delete mode 100644 tools/perf/util/sysfs.c delete mode 100644 tools/perf/util/sysfs.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/

