diff options
author | dsmith <dsmith> | 2006-08-09 17:46:05 +0000 |
---|---|---|
committer | dsmith <dsmith> | 2006-08-09 17:46:05 +0000 |
commit | a3b48ba6ae0649aa6f86649c3ae0d64d80f9e6c4 (patch) | |
tree | 966c3ac247e3af1094c3fa956b8cf0f3d942cef1 | |
parent | 81d2346b1c1bd697307467851f55715d36d0892d (diff) | |
download | systemtap-steved-a3b48ba6ae0649aa6f86649c3ae0d64d80f9e6c4.tar.gz systemtap-steved-a3b48ba6ae0649aa6f86649c3ae0d64d80f9e6c4.tar.xz systemtap-steved-a3b48ba6ae0649aa6f86649c3ae0d64d80f9e6c4.zip |
2006-08-09 David Smith <dsmith@redhat.com>
* syscalls.stp: Fixed typo in syscall.kexec_load argument
handling.
-rw-r--r-- | tapset/ChangeLog | 5 | ||||
-rw-r--r-- | tapset/syscalls.stp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index c7210a5e..f6061756 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,8 @@ +2006-08-09 David Smith <dsmith@redhat.com> + + * syscalls.stp: Fixed typo in syscall.kexec_load argument + handling. + 2006-08-08 Eugene Teo <eteo@redhat.com> * context.stp (probemod): New function. diff --git a/tapset/syscalls.stp b/tapset/syscalls.stp index a613ffa9..2dff01b6 100644 --- a/tapset/syscalls.stp +++ b/tapset/syscalls.stp @@ -1519,7 +1519,7 @@ probe syscall.kexec_load = kernel.function("sys_kexec_load") ? { name = "kexec_load" entry = $entry nr_segments = $nr_segments - segments_uaddr = $segments_uaddr + segments_uaddr = $segments flags = $flags argstr = sprintf("%p, %d, %p, %d", $entry, $nr_segments, $segments, $flags) } |