diff options
| author | Steve Dickson <steved@redhat.com> | 2011-03-18 09:47:12 -0400 |
|---|---|---|
| committer | Steve Dickson <steved@redhat.com> | 2011-03-18 09:47:12 -0400 |
| commit | 78a3caac7b9026c824ecc33bb4fb73b84ecede42 (patch) | |
| tree | c5a0bf9da23ec1571fd3fa4dd1dbbdf27581386e /net | |
| parent | fcdb3fb0a6ed486e996ec87c9a01b2e435bd9a43 (diff) | |
Added a couple more probs
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'net')
| -rw-r--r-- | net/tcp_connect.stp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/tcp_connect.stp b/net/tcp_connect.stp new file mode 100644 index 0000000..4763bb5 --- /dev/null +++ b/net/tcp_connect.stp @@ -0,0 +1,7 @@ +probe kernel.function("tcp_v4_connect").return { + if (isinstr(execname(), "rpc.nfsd")) + printf("%s: tcp_v4_connect: return %d (%s)\n", + $return, errno_str($return)); +} +probe begin { log("starting tcp_v4_connect probe") } +probe end { log("tcp_v4_connect inet_bind probe") } |
