summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_timeout.c
diff options
context:
space:
mode:
authoravg <avg@FreeBSD.org>2014-01-17 10:58:59 +0000
committeravg <avg@FreeBSD.org>2014-01-17 10:58:59 +0000
commitc1dbdbde60b3dce381c43d96c9f234e354d4e721 (patch)
treea1c1799e85d009b4d890296ecdffb29fccab0554 /sys/kern/kern_timeout.c
parentc2040a08a94d89c7d0fc7c42c2cefcfb4d2cd271 (diff)
downloadFreeBSD-src-c1dbdbde60b3dce381c43d96c9f234e354d4e721.zip
FreeBSD-src-c1dbdbde60b3dce381c43d96c9f234e354d4e721.tar.gz
MFC r258622: dtrace sdt: remove the ugly sname parameter of SDT_PROBE_DEFINE
Diffstat (limited to 'sys/kern/kern_timeout.c')
-rw-r--r--sys/kern/kern_timeout.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/kern_timeout.c b/sys/kern/kern_timeout.c
index 98a6df3..2961d73 100644
--- a/sys/kern/kern_timeout.c
+++ b/sys/kern/kern_timeout.c
@@ -69,9 +69,9 @@ DPCPU_DECLARE(sbintime_t, hardclocktime);
#endif
SDT_PROVIDER_DEFINE(callout_execute);
-SDT_PROBE_DEFINE1(callout_execute, kernel, , callout_start, callout-start,
+SDT_PROBE_DEFINE1(callout_execute, kernel, , callout__start,
"struct callout *");
-SDT_PROBE_DEFINE1(callout_execute, kernel, , callout_end, callout-end,
+SDT_PROBE_DEFINE1(callout_execute, kernel, , callout__end,
"struct callout *");
#ifdef CALLOUT_PROFILING
@@ -678,9 +678,9 @@ softclock_call_cc(struct callout *c, struct callout_cpu *cc,
sbt1 = sbinuptime();
#endif
THREAD_NO_SLEEPING();
- SDT_PROBE(callout_execute, kernel, , callout_start, c, 0, 0, 0, 0);
+ SDT_PROBE(callout_execute, kernel, , callout__start, c, 0, 0, 0, 0);
c_func(c_arg);
- SDT_PROBE(callout_execute, kernel, , callout_end, c, 0, 0, 0, 0);
+ SDT_PROBE(callout_execute, kernel, , callout__end, c, 0, 0, 0, 0);
THREAD_SLEEPING_OK();
#if defined(DIAGNOSTIC) || defined(CALLOUT_PROFILING)
sbt2 = sbinuptime();
OpenPOWER on IntegriCloud