summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSamuel Cabrero <scabrero@samba.org>2022-05-09 16:27:13 +0200
committerJeremy Allison <jra@samba.org>2022-05-19 17:51:33 +0000
commit35ca7a1714338fbcc35c7b6ad9a1203d774de760 (patch)
tree7f840c0ba2edb5231decf4d5317cb6a08584af19 /examples
parent04e0e02c6951e327130210e44deb87b9a303cdb3 (diff)
downloadsamba-35ca7a1714338fbcc35c7b6ad9a1203d774de760.tar.gz
examples: Update winbind.stp, delete removed functions
Signed-off-by: Samuel Cabrero <scabrero@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/systemtap/generate-winbindd.stp.sh2
-rw-r--r--examples/systemtap/winbindd.stp42
2 files changed, 1 insertions, 43 deletions
diff --git a/examples/systemtap/generate-winbindd.stp.sh b/examples/systemtap/generate-winbindd.stp.sh
index 18695232f43..2b722a4deb3 100755
--- a/examples/systemtap/generate-winbindd.stp.sh
+++ b/examples/systemtap/generate-winbindd.stp.sh
@@ -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
diff --git a/examples/systemtap/winbindd.stp b/examples/systemtap/winbindd.stp
index 5b8e72fea6c..bbc16d15952 100644
--- a/examples/systemtap/winbindd.stp
+++ b/examples/systemtap/winbindd.stp
@@ -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:
#
@@ -44,46 +44,6 @@ probe process("winbindd").function("winbindd_dual_init_connection").return {
}
#
-# 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
#