2015-09-02 15:56:45 +08:00
|
|
|
#include <api/fs/tracing_path.h>
|
2015-09-07 16:38:06 +08:00
|
|
|
#include <linux/err.h>
|
2012-11-10 08:46:42 +08:00
|
|
|
#include "thread_map.h"
|
|
|
|
#include "evsel.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "tests.h"
|
|
|
|
|
perf tests: Pass the subtest index to each test routine
Some tests have sub-tests we want to run, so allow passing this.
Wang tried to avoid having to touch all tests, but then, having the
test.func in an anonymous union makes the build fail on older compilers,
like the one in RHEL6, where:
test a = {
.func = foo,
};
fails.
To fix it leave the func pointer in the main structure and pass the subtest
index to all tests, end result function is the same, but we have just one
function pointer, not two, with and without the subtest index as an argument.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-5genj0ficwdmelpoqlds0u4y@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-11-19 23:01:48 +08:00
|
|
|
int test__openat_syscall_event(int subtest __maybe_unused)
|
2012-11-10 08:46:42 +08:00
|
|
|
{
|
|
|
|
int err = -1, fd;
|
|
|
|
struct perf_evsel *evsel;
|
2015-04-16 21:52:53 +08:00
|
|
|
unsigned int nr_openat_calls = 111, i;
|
2012-12-11 02:11:43 +08:00
|
|
|
struct thread_map *threads = thread_map__new(-1, getpid(), UINT_MAX);
|
2014-08-14 10:22:45 +08:00
|
|
|
char sbuf[STRERR_BUFSIZE];
|
2015-09-02 15:56:45 +08:00
|
|
|
char errbuf[BUFSIZ];
|
2012-11-10 08:46:42 +08:00
|
|
|
|
|
|
|
if (threads == NULL) {
|
|
|
|
pr_debug("thread_map__new\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-04-16 21:52:53 +08:00
|
|
|
evsel = perf_evsel__newtp("syscalls", "sys_enter_openat");
|
2015-09-07 16:38:06 +08:00
|
|
|
if (IS_ERR(evsel)) {
|
2015-09-02 15:56:45 +08:00
|
|
|
tracing_path__strerror_open_tp(errno, errbuf, sizeof(errbuf), "syscalls", "sys_enter_openat");
|
2015-10-19 23:23:48 +08:00
|
|
|
pr_debug("%s\n", errbuf);
|
2012-11-10 08:46:42 +08:00
|
|
|
goto out_thread_map_delete;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (perf_evsel__open_per_thread(evsel, threads) < 0) {
|
|
|
|
pr_debug("failed to open counter: %s, "
|
|
|
|
"tweak /proc/sys/kernel/perf_event_paranoid?\n",
|
tools: Introduce str_error_r()
The tools so far have been using the strerror_r() GNU variant, that
returns a string, be it the buffer passed or something else.
But that, besides being tricky in cases where we expect that the
function using strerror_r() returns the error formatted in a provided
buffer (we have to check if it returned something else and copy that
instead), breaks the build on systems not using glibc, like Alpine
Linux, where musl libc is used.
So, introduce yet another wrapper, str_error_r(), that has the GNU
interface, but uses the portable XSI variant of strerror_r(), so that
users rest asured that the provided buffer is used and it is what is
returned.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-d4t42fnf48ytlk8rjxs822tf@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-07-06 22:56:20 +08:00
|
|
|
str_error_r(errno, sbuf, sizeof(sbuf)));
|
2012-11-10 08:46:42 +08:00
|
|
|
goto out_evsel_delete;
|
|
|
|
}
|
|
|
|
|
2015-04-16 21:52:53 +08:00
|
|
|
for (i = 0; i < nr_openat_calls; ++i) {
|
|
|
|
fd = openat(0, "/etc/passwd", O_RDONLY);
|
2012-11-10 08:46:42 +08:00
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (perf_evsel__read_on_cpu(evsel, 0, 0) < 0) {
|
|
|
|
pr_debug("perf_evsel__read_on_cpu\n");
|
|
|
|
goto out_close_fd;
|
|
|
|
}
|
|
|
|
|
2015-06-26 17:29:11 +08:00
|
|
|
if (perf_counts(evsel->counts, 0, 0)->val != nr_openat_calls) {
|
2012-11-10 08:46:42 +08:00
|
|
|
pr_debug("perf_evsel__read_on_cpu: expected to intercept %d calls, got %" PRIu64 "\n",
|
2015-06-26 17:29:11 +08:00
|
|
|
nr_openat_calls, perf_counts(evsel->counts, 0, 0)->val);
|
2012-11-10 08:46:42 +08:00
|
|
|
goto out_close_fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = 0;
|
|
|
|
out_close_fd:
|
|
|
|
perf_evsel__close_fd(evsel, 1, threads->nr);
|
|
|
|
out_evsel_delete:
|
|
|
|
perf_evsel__delete(evsel);
|
|
|
|
out_thread_map_delete:
|
2015-06-23 06:36:05 +08:00
|
|
|
thread_map__put(threads);
|
2012-11-10 08:46:42 +08:00
|
|
|
return err;
|
|
|
|
}
|