public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Correct fd variable name in fadvise64 probe points.
@ 2009-04-25 15:24 Przemyslaw Pawelczyk
  2009-04-25 17:22 ` Josh Stone
  0 siblings, 1 reply; 2+ messages in thread
From: Przemyslaw Pawelczyk @ 2009-04-25 15:24 UTC (permalink / raw)
  To: systemtap

* 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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] Correct fd variable name in fadvise64 probe points.
  2009-04-25 15:24 [PATCH] Correct fd variable name in fadvise64 probe points Przemyslaw Pawelczyk
@ 2009-04-25 17:22 ` Josh Stone
  0 siblings, 0 replies; 2+ messages in thread
From: Josh Stone @ 2009-04-25 17:22 UTC (permalink / raw)
  To: Przemyslaw Pawelczyk; +Cc: systemtap

----- Przemyslaw Pawelczyk <przemyslaw@pawelczyk.it> wrote:
> * tapset/syscalls.stp: Rename fs variable to fd.

Applied, thanks!

Josh

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-04-25 17:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-25 15:24 [PATCH] Correct fd variable name in fadvise64 probe points Przemyslaw Pawelczyk
2009-04-25 17:22 ` Josh Stone

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).