summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwcohen <wcohen>2007-05-16 15:55:33 +0000
committerwcohen <wcohen>2007-05-16 15:55:33 +0000
commita646db49df96584f2d22714eaeb311fcf02df375 (patch)
tree86af84898c0c8ae4cc70b589df5426eceae5ffe5
parent942a89cf30d66a2202cd8ad35734a54634250cdd (diff)
downloadsystemtap-steved-a646db49df96584f2d22714eaeb311fcf02df375.tar.gz
systemtap-steved-a646db49df96584f2d22714eaeb311fcf02df375.tar.xz
systemtap-steved-a646db49df96584f2d22714eaeb311fcf02df375.zip
PR 4510
* scheduler.stp: Correct function argument.
-rw-r--r--tapset/ChangeLog5
-rw-r--r--tapset/scheduler.stp4
2 files changed, 7 insertions, 2 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index 93c540d5..13ba0d32 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,3 +1,8 @@
+2007-05-16 Will Cohen <wcohen@redhat.com>
+
+ PR 4510
+ * scheduler.stp: Correct function argument.
+
2007-05-09 Martin Hunt <hunt@redhat.com>
* syscalls2.stp: Added compat_sys_pause to syscall.pause.
diff --git a/tapset/scheduler.stp b/tapset/scheduler.stp
index a17a8eac..83b14642 100644
--- a/tapset/scheduler.stp
+++ b/tapset/scheduler.stp
@@ -135,9 +135,9 @@ probe scheduler.ctxswitch =
prevtsk_state = $prev->state
%: %( arch == "x86_64" %?
prev_pid = $prev->pid
- next_pid = $new->pid
+ next_pid = $next->pid
prev_task = $prev
- next_task = $new
+ next_task = $next
prevtsk_state = $prev->state
%:
prev_pid = $prev_p->pid