This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tapsets/2433] sys_groupexit in blacklist


------- Additional Comments From eteo at redhat dot com  2006-05-05 18:01 -------
Committed the following patch.

===================================================================
RCS file: /cvs/systemtap/src/tapsets.cxx,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- src/tapsets.cxx	2006/05/04 00:01:24	1.125
+++ src/tapsets.cxx	2006/05/05 17:58:08	1.126
@@ -1981,8 +1981,9 @@
       (funcname == "__switch_to" && sess.architecture == "x86_64") ||
       filename_s == "kernel/kprobes.c" ||
       0 == fnmatch ("arch/*/kernel/kprobes.c", filename, 0) ||
-      (has_return && (funcname == "sys_exit" ||
-                      funcname == "sys_groupexit")))
+      (has_return && (funcname == "do_exit" ||
+                      funcname == "sys_exit" ||
+                      funcname == "sys_exit_group")))
     {
       if (sess.verbose>1)
         clog << "skipping function '" << funcname << "' file '"

===================================================================
RCS file: /cvs/systemtap/src/tapset/syscalls.stp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- src/tapset/syscalls.stp	2006/04/21 04:40:13	1.11
+++ src/tapset/syscalls.stp	2006/05/05 17:58:09	1.12
@@ -440,10 +440,6 @@
 	status = $code
 	argstr = string($code)
 }
-probe syscall.exit.return = kernel.function("do_exit").return {
-	name = "exit"
-	retstr = returnstr(1)
-}
 
 # exit_group _________________________________________________
 /*
@@ -455,10 +451,6 @@
       name = "exit_group"
       status = $error_code
    }
-probe kernel.syscall.exit_group.return =
-   kernel.function("do_group_exit").return {
-      name = "exit_group.return"
-   }
 # fadvise64 __________________________________________________
 /*
  * asmlinkage long

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING


http://sourceware.org/bugzilla/show_bug.cgi?id=2433

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]