]> sourceware.org Git - systemtap.git/commitdiff
2006-08-09 David Smith <dsmith@redhat.com>
authordsmith <dsmith>
Wed, 9 Aug 2006 17:46:05 +0000 (17:46 +0000)
committerdsmith <dsmith>
Wed, 9 Aug 2006 17:46:05 +0000 (17:46 +0000)
* syscalls.stp: Fixed typo in syscall.kexec_load argument
handling.

tapset/ChangeLog
tapset/syscalls.stp

index c7210a5ea84fab34a82a5c4e596994f9154cd14a..f60617569c5f64a99510fe4b3004e44f5cdf1212 100644 (file)
@@ -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.
index a613ffa95952850502909464168280a8264b1507..2dff01b646c03bb3fcb65af352130fe731b59d18 100644 (file)
@@ -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)
 }
This page took 0.036036 seconds and 5 git commands to generate.