diff options
author | Przemyslaw Pawelczyk <przemyslaw@pawelczyk.it> | 2009-04-25 17:18:24 +0200 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-04-25 10:10:35 -0700 |
commit | 9b89b6525b9e2cce69231b6613862b3cc93939c7 (patch) | |
tree | 855c0a1a48d39c39af4724e0d6ac0f9815a5473f | |
parent | b6371390a999711146084ed6377a64e4c9480d83 (diff) | |
download | systemtap-steved-9b89b6525b9e2cce69231b6613862b3cc93939c7.tar.gz systemtap-steved-9b89b6525b9e2cce69231b6613862b3cc93939c7.tar.xz systemtap-steved-9b89b6525b9e2cce69231b6613862b3cc93939c7.zip |
Correct fd variable name in fadvise64 probe points.
* tapset/syscalls.stp: Rename fs variable to fd.
-rw-r--r-- | tapset/syscalls.stp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tapset/syscalls.stp b/tapset/syscalls.stp index 256174d3..a215dc12 100644 --- a/tapset/syscalls.stp +++ b/tapset/syscalls.stp @@ -733,7 +733,7 @@ probe syscall.faccessat.return = kernel.function("SyS_faccessat").return !, probe syscall.fadvise64 = kernel.function("SyS_fadvise64") !, kernel.function("sys_fadvise64") ? { name = "fadvise64" - fs = $fd + fd = $fd offset = $offset len = $len advice = $advice @@ -751,7 +751,7 @@ probe syscall.fadvise64.return = kernel.function("SyS_fadvise64").return !, probe syscall.fadvise64_64 = kernel.function("SyS_fadvise64_64") !, kernel.function("sys_fadvise64_64") ? { name = "fadvise64_64" - fs = $fd + fd = $fd offset = $offset len = $len advice = $advice @@ -771,7 +771,7 @@ probe syscall.fadvise64_64.return = kernel.function("SyS_fadvise64_64").return ! probe syscall.fadvise64 = kernel.function("SyS_fadvise64") !, kernel.function("sys_fadvise64") { name = "fadvise64" - fs = 0 + fd = 0 offset = 0 len = 0 advice = 0 @@ -789,7 +789,7 @@ probe syscall.fadvise64.return = kernel.function("SyS_fadvise64").return !, probe syscall.fadvise64_64 = kernel.function("SyS_fadvise64_64") !, kernel.function("sys_fadvise64_64") { name = "fadvise64_64" - fs = 0 + fd = 0 offset = 0 len = 0 advice = 0 |