|
@@ -369,37 +369,6 @@ static size_t syscall_arg__scnprintf_int(char *bf, size_t size,
|
|
|
|
|
|
|
|
#define SCA_INT syscall_arg__scnprintf_int
|
|
#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[] = {
|
|
static const char *bpf_cmd[] = {
|
|
|
"MAP_CREATE", "MAP_LOOKUP_ELEM", "MAP_UPDATE_ELEM", "MAP_DELETE_ELEM",
|
|
"MAP_CREATE", "MAP_LOOKUP_ELEM", "MAP_UPDATE_ELEM", "MAP_DELETE_ELEM",
|
|
|
"MAP_GET_NEXT_KEY", "PROG_LOAD",
|
|
"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, }
|
|
.arg_parm = { [arg] = &strarray__##array, }
|
|
|
|
|
|
|
|
#include "trace/beauty/eventfd.c"
|
|
#include "trace/beauty/eventfd.c"
|
|
|
|
|
+#include "trace/beauty/flock.c"
|
|
|
#include "trace/beauty/futex_op.c"
|
|
#include "trace/beauty/futex_op.c"
|
|
|
#include "trace/beauty/mmap.c"
|
|
#include "trace/beauty/mmap.c"
|
|
|
#include "trace/beauty/mode_t.c"
|
|
#include "trace/beauty/mode_t.c"
|