|
@@ -13,21 +13,6 @@ static int sys_refcount_exit;
|
|
|
static DECLARE_BITMAP(enabled_enter_syscalls, FTRACE_SYSCALL_MAX);
|
|
|
static DECLARE_BITMAP(enabled_exit_syscalls, FTRACE_SYSCALL_MAX);
|
|
|
|
|
|
-/* Option to display the parameters types */
|
|
|
-enum {
|
|
|
- TRACE_SYSCALLS_OPT_TYPES = 0x1,
|
|
|
-};
|
|
|
-
|
|
|
-static struct tracer_opt syscalls_opts[] = {
|
|
|
- { TRACER_OPT(syscall_arg_type, TRACE_SYSCALLS_OPT_TYPES) },
|
|
|
- { }
|
|
|
-};
|
|
|
-
|
|
|
-static struct tracer_flags syscalls_flags = {
|
|
|
- .val = 0, /* By default: no parameters types */
|
|
|
- .opts = syscalls_opts
|
|
|
-};
|
|
|
-
|
|
|
enum print_line_t
|
|
|
print_syscall_enter(struct trace_iterator *iter, int flags)
|
|
|
{
|
|
@@ -55,7 +40,7 @@ print_syscall_enter(struct trace_iterator *iter, int flags)
|
|
|
|
|
|
for (i = 0; i < entry->nb_args; i++) {
|
|
|
/* parameter types */
|
|
|
- if (syscalls_flags.val & TRACE_SYSCALLS_OPT_TYPES) {
|
|
|
+ if (trace_flags & TRACE_ITER_VERBOSE) {
|
|
|
ret = trace_seq_printf(s, "%s ", entry->types[i]);
|
|
|
if (!ret)
|
|
|
return TRACE_TYPE_PARTIAL_LINE;
|