]> sourceware.org Git - systemtap.git/commitdiff
Fix nd_syscall2 open.return typo.
authorMark Wielaard <mjw@redhat.com>
Tue, 2 Jun 2009 12:55:30 +0000 (14:55 +0200)
committerMark Wielaard <mjw@redhat.com>
Tue, 2 Jun 2009 12:55:30 +0000 (14:55 +0200)
* tapset/nd_syscalls2.stp (nd_syscall.open.return): Add commas after
  alternatives.

tapset/nd_syscalls2.stp

index 4921001289d56e272d56b5f215c6546cc19a4fdb..43b8307fe61dcbf32b60e12cb6dc11979428c562 100644 (file)
@@ -156,8 +156,8 @@ probe nd_syscall.open = kprobe.function("compat_sys_open") ?,
                        _sys_open_flag_str(flags))
 }
 probe nd_syscall.open.return = kprobe.function("compat_sys_open").return ?,
-                               kprobe.function("sys32_open").return ?
-                               kprobe.function("SyS_open").return ?
+                               kprobe.function("sys32_open").return ?,
+                               kprobe.function("SyS_open").return ?,
                                kprobe.function("sys_open").return ?
 {
        name = "open"
This page took 0.027881 seconds and 5 git commands to generate.