examples: Update winbind.stp, delete removed functions
authorSamuel Cabrero <scabrero@samba.org>
Mon, 9 May 2022 14:27:13 +0000 (16:27 +0200)
committerJeremy Allison <jra@samba.org>
Thu, 19 May 2022 17:51:33 +0000 (17:51 +0000)
Signed-off-by: Samuel Cabrero <scabrero@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
examples/systemtap/generate-winbindd.stp.sh
examples/systemtap/winbindd.stp

index 18695232f43b1dfca3ec85e7329019a5c663e2ea..2b722a4deb35ba15ac605952d9efabd3f3c34f31 100755 (executable)
@@ -3,8 +3,6 @@
 outfile="$(dirname $0)/winbindd.stp"
 
 child_funcs="winbindd_dual_init_connection
-winbindd_dual_pam_auth
-winbindd_dual_pam_auth_crap
 winbindd_dual_pam_logoff
 winbindd_dual_pam_chng_pswd_auth_crap
 winbindd_dual_pam_chauthtok
index 5b8e72fea6c93407b1dab562c544ba228acd0b35..bbc16d15952db4d79241b73b1c63324e5391f52b 100644 (file)
@@ -2,7 +2,7 @@
 #
 # Systemtap script to instrument winbindd
 #
-# Generated by examples/systemtap/generate-winbindd.stp.sh on vie 01 abr 2022 16:21:52 CEST, do not edit
+# Generated by examples/systemtap/generate-winbindd.stp.sh on lun 09 may 2022 16:27:02 CEST, do not edit
 #
 # Usage:
 #
@@ -43,46 +43,6 @@ probe process("winbindd").function("winbindd_dual_init_connection").return {
        dc_svctime["winbindd_dual_init_connection"] <<< duration
 }
 
-#
-# winbind domain child function winbindd_dual_pam_auth
-#
-
-probe process("winbindd").function("winbindd_dual_pam_auth") {
-       dc_running[tid(), "winbindd_dual_pam_auth"] = gettimeofday_us()
-}
-
-probe process("winbindd").function("winbindd_dual_pam_auth").return {
-       if (!([tid(), "winbindd_dual_pam_auth"] in dc_running))
-               next
-
-       end = gettimeofday_us()
-       begin = dc_running[tid(), "winbindd_dual_pam_auth"]
-       delete dc_running[tid(), "winbindd_dual_pam_auth"]
-
-       duration = end - begin
-       dc_svctime["winbindd_dual_pam_auth"] <<< duration
-}
-
-#
-# winbind domain child function winbindd_dual_pam_auth_crap
-#
-
-probe process("winbindd").function("winbindd_dual_pam_auth_crap") {
-       dc_running[tid(), "winbindd_dual_pam_auth_crap"] = gettimeofday_us()
-}
-
-probe process("winbindd").function("winbindd_dual_pam_auth_crap").return {
-       if (!([tid(), "winbindd_dual_pam_auth_crap"] in dc_running))
-               next
-
-       end = gettimeofday_us()
-       begin = dc_running[tid(), "winbindd_dual_pam_auth_crap"]
-       delete dc_running[tid(), "winbindd_dual_pam_auth_crap"]
-
-       duration = end - begin
-       dc_svctime["winbindd_dual_pam_auth_crap"] <<< duration
-}
-
 #
 # winbind domain child function winbindd_dual_pam_logoff
 #