mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
perf trace beauty fcntl: Beautify the 'arg' for DUPFD
Before: 77059.513 ( 0.005 ms): bash/6649 fcntl(fd: 1</dev/pts/12>, cmd: DUPFD, arg: 10) = 10</dev/pts/12> After: 77059.513 ( 0.005 ms): bash/6649 fcntl(fd: 1</dev/pts/12>, cmd: DUPFD, arg: 10</dev/pts/12>) = 10</dev/pts/12> Cc: Adrian Hunter <[email protected]> Cc: David Ahern <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Wang Nan <[email protected]> Link: http://lkml.kernel.org/n/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
This commit is contained in:
@@ -71,6 +71,9 @@ size_t syscall_arg__scnprintf_fcntl_arg(char *bf, size_t size, struct syscall_ar
|
||||
{
|
||||
int cmd = syscall_arg__val(arg, 1);
|
||||
|
||||
if (cmd == F_DUPFD)
|
||||
return syscall_arg__scnprintf_fd(bf, size, arg);
|
||||
|
||||
if (cmd == F_SETFD)
|
||||
return fcntl__scnprintf_getfd(arg->val, bf, size);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user