mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 07:00:48 +00:00
perf trace: Move flock op beautifier to tools/perf/trace/beauty/
To reduce the size of builtin-trace.c. Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: http://lkml.kernel.org/n/tip-c4c47w2a2jx13terl2p2hros@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
f9be7eefcc
commit
8bf382ce0a
@ -369,37 +369,6 @@ static size_t syscall_arg__scnprintf_int(char *bf, size_t size,
|
||||
|
||||
#define SCA_INT syscall_arg__scnprintf_int
|
||||
|
||||
static size_t syscall_arg__scnprintf_flock(char *bf, size_t size,
|
||||
struct syscall_arg *arg)
|
||||
{
|
||||
int printed = 0, op = arg->val;
|
||||
|
||||
if (op == 0)
|
||||
return scnprintf(bf, size, "NONE");
|
||||
#define P_CMD(cmd) \
|
||||
if ((op & LOCK_##cmd) == LOCK_##cmd) { \
|
||||
printed += scnprintf(bf + printed, size - printed, "%s%s", printed ? "|" : "", #cmd); \
|
||||
op &= ~LOCK_##cmd; \
|
||||
}
|
||||
|
||||
P_CMD(SH);
|
||||
P_CMD(EX);
|
||||
P_CMD(NB);
|
||||
P_CMD(UN);
|
||||
P_CMD(MAND);
|
||||
P_CMD(RW);
|
||||
P_CMD(READ);
|
||||
P_CMD(WRITE);
|
||||
#undef P_OP
|
||||
|
||||
if (op)
|
||||
printed += scnprintf(bf + printed, size - printed, "%s%#x", printed ? "|" : "", op);
|
||||
|
||||
return printed;
|
||||
}
|
||||
|
||||
#define SCA_FLOCK syscall_arg__scnprintf_flock
|
||||
|
||||
static const char *bpf_cmd[] = {
|
||||
"MAP_CREATE", "MAP_LOOKUP_ELEM", "MAP_UPDATE_ELEM", "MAP_DELETE_ELEM",
|
||||
"MAP_GET_NEXT_KEY", "PROG_LOAD",
|
||||
@ -634,6 +603,7 @@ static size_t syscall_arg__scnprintf_getrandom_flags(char *bf, size_t size,
|
||||
.arg_parm = { [arg] = &strarray__##array, }
|
||||
|
||||
#include "trace/beauty/eventfd.c"
|
||||
#include "trace/beauty/flock.c"
|
||||
#include "trace/beauty/futex_op.c"
|
||||
#include "trace/beauty/mmap.c"
|
||||
#include "trace/beauty/mode_t.c"
|
||||
|
31
tools/perf/trace/beauty/flock.c
Normal file
31
tools/perf/trace/beauty/flock.c
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
static size_t syscall_arg__scnprintf_flock(char *bf, size_t size,
|
||||
struct syscall_arg *arg)
|
||||
{
|
||||
int printed = 0, op = arg->val;
|
||||
|
||||
if (op == 0)
|
||||
return scnprintf(bf, size, "NONE");
|
||||
#define P_CMD(cmd) \
|
||||
if ((op & LOCK_##cmd) == LOCK_##cmd) { \
|
||||
printed += scnprintf(bf + printed, size - printed, "%s%s", printed ? "|" : "", #cmd); \
|
||||
op &= ~LOCK_##cmd; \
|
||||
}
|
||||
|
||||
P_CMD(SH);
|
||||
P_CMD(EX);
|
||||
P_CMD(NB);
|
||||
P_CMD(UN);
|
||||
P_CMD(MAND);
|
||||
P_CMD(RW);
|
||||
P_CMD(READ);
|
||||
P_CMD(WRITE);
|
||||
#undef P_OP
|
||||
|
||||
if (op)
|
||||
printed += scnprintf(bf + printed, size - printed, "%s%#x", printed ? "|" : "", op);
|
||||
|
||||
return printed;
|
||||
}
|
||||
|
||||
#define SCA_FLOCK syscall_arg__scnprintf_flock
|
Loading…
x
Reference in New Issue
Block a user