Commit 2af307b4 authored by yonghong-song's avatar yonghong-song Committed by GitHub

Merge pull request #1550 from tehnerd/master

adding filtering example to trace.py help
parents 89aa2948 86293f0d
...@@ -602,6 +602,10 @@ trace -I 'kernel/sched/sched.h' \\ ...@@ -602,6 +602,10 @@ trace -I 'kernel/sched/sched.h' \\
in kernel/sched/sched.h which is in kernel source tree and not in kernel-devel in kernel/sched/sched.h which is in kernel source tree and not in kernel-devel
package. So this command needs to run at the kernel source tree root directory package. So this command needs to run at the kernel source tree root directory
so that the added header file can be found by the compiler. so that the added header file can be found by the compiler.
trace -I 'net/sock.h' \\
'udpv6_sendmsg(struct sock *sk) (sk->sk_dport == 13568)'
Trace udpv6 sendmsg calls only if socket's destination port is equal
to 53 (DNS; 13568 in big endian order)
""" """
def __init__(self): def __init__(self):
......
...@@ -292,3 +292,8 @@ trace -I 'kernel/sched/sched.h' \ ...@@ -292,3 +292,8 @@ trace -I 'kernel/sched/sched.h' \
in kernel/sched/sched.h which is in kernel source tree and not in kernel-devel in kernel/sched/sched.h which is in kernel source tree and not in kernel-devel
package. So this command needs to run at the kernel source tree root directory package. So this command needs to run at the kernel source tree root directory
so that the added header file can be found by the compiler. so that the added header file can be found by the compiler.
trace -I 'net/sock.h' \\
'udpv6_sendmsg(struct sock *sk) (sk->sk_dport == 13568)'
Trace udpv6 sendmsg calls only if socket's destination port is equal
to 53 (DNS; 13568 in big endian order)
"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment