From: Julien Desfossez Date: Mon, 25 Jan 2016 16:13:29 +0000 (-0500) Subject: Remove accept from net_open syscalls X-Git-Url: http://git.efficios.com/?p=deliverable%2Flttng-analyses.git;a=commitdiff_plain;h=a31d2d565afb183dda8205789154028e217dc1bc Remove accept from net_open syscalls accept and accept4 block voluntarily, so computing latencies on these system calls do not make much sense. Signed-off-by: Julien Desfossez --- diff --git a/lttnganalyses/linuxautomaton/sv.py b/lttnganalyses/linuxautomaton/sv.py index 4bfdf3f..4f3a159 100644 --- a/lttnganalyses/linuxautomaton/sv.py +++ b/lttnganalyses/linuxautomaton/sv.py @@ -454,7 +454,7 @@ class SyscallConsts(): DISK_OPEN_SYSCALLS = ['open', 'openat'] # list of syscalls that open a FD on the network # (in the exit_syscall event) - NET_OPEN_SYSCALLS = ['accept', 'accept4', 'socket'] + NET_OPEN_SYSCALLS = ['socket'] # list of syscalls that can duplicate a FD DUP_OPEN_SYSCALLS = ['fcntl', 'dup', 'dup2', 'dup3'] SYNC_SYSCALLS = ['sync', 'sync_file_range', 'fsync', 'fdatasync']