This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Correct fd variable name in fadvise64 probe points.


* tapset/syscalls.stp: Rename fs variable to fd.
---
 tapset/syscalls.stp |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/tapset/syscalls.stp b/tapset/syscalls.stp
index 256174d..a215dc1 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
-- 
1.5.6.5


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]