public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* [Bug translator/10995] on-the-fly enabled/disabled probes
       [not found] <bug-10995-6586@http.sourceware.org/bugzilla/>
@ 2012-12-11 20:23 ` fche at redhat dot com
  2014-06-12 19:27 ` jlebon at redhat dot com
  2014-06-12 19:27 ` jlebon at redhat dot com
  2 siblings, 0 replies; 6+ messages in thread
From: fche at redhat dot com @ 2012-12-11 20:23 UTC (permalink / raw)
  To: systemtap

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

--- Comment #2 from Frank Ch. Eigler <fche at redhat dot com> 2012-12-11 20:23:14 UTC ---
bug #6503 added a derived_probe_group code generation function to
emit_module_refresh().  The code this generates would need to be extended with
per-probe predicate/registration-status bits in the runtime, and with code to
do any sort of lightweight arming/disarming that the probe system permits.  The
predicate-status bits would be mutexfully maintained by other code that
re-evaluates the probe predicate expressions periodically, or whenever the
input globals are suspected to change value.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug translator/10995] on-the-fly enabled/disabled probes
       [not found] <bug-10995-6586@http.sourceware.org/bugzilla/>
  2012-12-11 20:23 ` [Bug translator/10995] on-the-fly enabled/disabled probes fche at redhat dot com
@ 2014-06-12 19:27 ` jlebon at redhat dot com
  2014-06-12 19:27 ` jlebon at redhat dot com
  2 siblings, 0 replies; 6+ messages in thread
From: jlebon at redhat dot com @ 2014-06-12 19:27 UTC (permalink / raw)
  To: systemtap

https://sourceware.org/bugzilla/show_bug.cgi?id=10995

Jonathan Lebon <jlebon at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jlebon at redhat dot com

--- Comment #3 from Jonathan Lebon <jlebon at redhat dot com> ---
I've been working on this feature for a while. I've just pushed to the
jlebon/onthefly branch preliminary work to support this. Currently supported
are hrtimer probes and kprobes.

You can use the -DDEBUG_STP_ON_THE_FLY directive to see it in action during
runtime (outputs to dmesg). Here's a sample (with relevant dmesg output
interspersed):

$ stap -DDEBUG_STP_ON_THE_FLY -e '
global enabled = 0
probe timer.s(1) if (enabled) {
   println("enabled!")
}
probe timer.s(5) {
   println("toggling enable")
   enabled = !enabled
}'



***** DMESG *****
[ 1490.643619] stap_9ea625b9fc91177d0b2a6490acd27b5_20639: systemtap:
2.6/0.158, base: ffffffffa0295000, memory: 31data/24text/1ctx/2058net/17alloc
kb, probes: 2
[ 1490.643625] systemtap_module_init:470 not starting (hrtimer) pidx 0
[ 1490.644421] systemtap_module_init:486 started (hrtimer) pidx 1
*****************



toggling enable



***** DMESG *****
[ 1495.644483] _stp_hrtimer_notify_function:298 scheduling work
[ 1495.645261] module_refresher:68 calling systemtap_module_refresh()
[ 1495.645474] systemtap_module_refresh:538 enabling (hrtimer) pidx 0
*****************



enabled!
enabled!
enabled!
enabled!
toggling enable



***** DMESG *****
[ 1500.644483] _stp_hrtimer_notify_function:298 scheduling work
[ 1500.645275] module_refresher:68 calling systemtap_module_refresh()
[ 1500.646036] systemtap_module_refresh:541 disabling (hrtimer) pidx 0
*****************



toggling enable



***** DMESG *****
[ 1505.644484] _stp_hrtimer_notify_function:298 scheduling work
[ 1505.645287] module_refresher:68 calling systemtap_module_refresh()
[ 1505.646069] systemtap_module_refresh:538 enabling (hrtimer) pidx 0
*****************

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug translator/10995] on-the-fly enabled/disabled probes
       [not found] <bug-10995-6586@http.sourceware.org/bugzilla/>
  2012-12-11 20:23 ` [Bug translator/10995] on-the-fly enabled/disabled probes fche at redhat dot com
  2014-06-12 19:27 ` jlebon at redhat dot com
@ 2014-06-12 19:27 ` jlebon at redhat dot com
  2 siblings, 0 replies; 6+ messages in thread
From: jlebon at redhat dot com @ 2014-06-12 19:27 UTC (permalink / raw)
  To: systemtap

https://sourceware.org/bugzilla/show_bug.cgi?id=10995

Jonathan Lebon <jlebon at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|systemtap at sourceware dot org    |jlebon at redhat dot com

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug translator/10995] on-the-fly enabled/disabled probes
  2009-11-20 22:42 [Bug translator/10995] New: " fche at redhat dot com
  2009-11-21  1:05 ` [Bug translator/10995] " jkenisto at us dot ibm dot com
  2010-01-20 19:53 ` fche at redhat dot com
@ 2010-04-28 17:43 ` fche at redhat dot com
  2 siblings, 0 replies; 6+ messages in thread
From: fche at redhat dot com @ 2010-04-28 17:43 UTC (permalink / raw)
  To: systemtap



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |11550
              nThis|                            |


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

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug translator/10995] on-the-fly enabled/disabled probes
  2009-11-20 22:42 [Bug translator/10995] New: " fche at redhat dot com
  2009-11-21  1:05 ` [Bug translator/10995] " jkenisto at us dot ibm dot com
@ 2010-01-20 19:53 ` fche at redhat dot com
  2010-04-28 17:43 ` fche at redhat dot com
  2 siblings, 0 replies; 6+ messages in thread
From: fche at redhat dot com @ 2010-01-20 19:53 UTC (permalink / raw)
  To: systemtap



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |11179
              nThis|                            |


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

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug translator/10995] on-the-fly enabled/disabled probes
  2009-11-20 22:42 [Bug translator/10995] New: " fche at redhat dot com
@ 2009-11-21  1:05 ` jkenisto at us dot ibm dot com
  2010-01-20 19:53 ` fche at redhat dot com
  2010-04-28 17:43 ` fche at redhat dot com
  2 siblings, 0 replies; 6+ messages in thread
From: jkenisto at us dot ibm dot com @ 2009-11-21  1:05 UTC (permalink / raw)
  To: systemtap


------- Additional Comments From jkenisto at us dot ibm dot com  2009-11-21 01:04 -------
On a related note, in the SystemTap-resident versions of uprobes, a u[ret]probe
handler can call [un]register_u[ret]probe().  A handler can even unregister
itself.  See Section 4.4, "User's Callback for Delayed Registrations", in
runtime/uprobes/uprobes.txt.

U[ret]probe handlers can block, so they could also [un]register k[ret]probes.

-- 


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

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-06-12 19:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-10995-6586@http.sourceware.org/bugzilla/>
2012-12-11 20:23 ` [Bug translator/10995] on-the-fly enabled/disabled probes fche at redhat dot com
2014-06-12 19:27 ` jlebon at redhat dot com
2014-06-12 19:27 ` jlebon at redhat dot com
2009-11-20 22:42 [Bug translator/10995] New: " fche at redhat dot com
2009-11-21  1:05 ` [Bug translator/10995] " jkenisto at us dot ibm dot com
2010-01-20 19:53 ` fche at redhat dot com
2010-04-28 17:43 ` fche at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).