fche changed the topic of #systemtap to: http://sourceware.org/systemtap; email systemtap@sourceware.org if answers here not timely, conversations may be logged
hpt has joined #systemtap
gromero has joined #systemtap
scox has joined #systemtap
hpt has quit [Ping timeout: 248 seconds]
gromero has quit [Ping timeout: 240 seconds]
hpt has joined #systemtap
scox has quit [Ping timeout: 240 seconds]
hpt has quit [Ping timeout: 260 seconds]
hpt has joined #systemtap
hpt has quit [Quit: leaving]
_whitelogger has joined #systemtap
slowfranklin has joined #systemtap
Humble has quit [Ping timeout: 246 seconds]
Humble has joined #systemtap
sanoj has joined #systemtap
slowfranklin has quit [Quit: slowfranklin]
orivej has joined #systemtap
irker627 has quit [Quit: transmission timeout]
orivej has quit [Ping timeout: 240 seconds]
slowfranklin has joined #systemtap
mjw has joined #systemtap
nkambo has quit [Ping timeout: 248 seconds]
nkambo has joined #systemtap
wcohen has quit [Ping timeout: 240 seconds]
sanoj has quit [Quit: Leaving]
mbenitez has joined #systemtap
mbenitez has quit [Changing host]
mbenitez has joined #systemtap
wcohen has joined #systemtap
scox has joined #systemtap
drsmith_away is now known as drsmith
nkambo_ has joined #systemtap
nkambo has quit [Ping timeout: 248 seconds]
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 248 seconds]
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 255 seconds]
nkambo_ has quit [Ping timeout: 260 seconds]
tromey has joined #systemtap
brolley has joined #systemtap
nkambo_ has joined #systemtap
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 260 seconds]
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 240 seconds]
irker275 has joined #systemtap
<irker275>
systemtap: dsmith systemtap.git:refs/heads/master * release-3.1-313-g2cd9b44 / testsuite/systemtap.base/stap_hwbkpt_kmod.c testsuite/systemtap.base/stap_kmodule.c testsuite/systemtap.context/systemtap_test_module1.c testsuite/systemtap.printf/memory1_module.c: Add some testsuite test kernel module fixes for rawhide. http://tinyurl.com/yb38rght
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 260 seconds]
gromero has joined #systemtap
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 255 seconds]
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 255 seconds]
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 255 seconds]
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 240 seconds]
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 246 seconds]
<irker275>
systemtap: dsmith systemtap.git:refs/heads/master * release-3.1-314-g11784d6 / tapset/linux/sysc_msgctl.stp tapset/linux/sysc_shmctl.stp: Updated the sysc_msgctl and sysc_shmctl tapsets for rawhide. http://tinyurl.com/ycgf4hhu
nkambo_ has quit [Ping timeout: 258 seconds]
nkambo_ has joined #systemtap
mbenitez has quit [Quit: To lunch / office]
slowfranklin has quit [Quit: slowfranklin]
slowfranklin has joined #systemtap
gromero has quit [Ping timeout: 255 seconds]
mbenitez has joined #systemtap
mbenitez has quit [Changing host]
mbenitez has joined #systemtap
<irker275>
systemtap: amerey systemtap.git:refs/heads/master * release-3.1-315-ge2298f9 / testsuite/systemtap.bpf/bpf_tests/array.stp testsuite/systemtap.bpf/bpf_tests/while.stp: stapbpf: add while loop test http://tinyurl.com/yca9ycr8
<irker275>
systemtap: amerey systemtap.git:refs/heads/master * release-3.1-316-g591bc40 / NEWS doc/Makefile.in java/Makefile.in man/stap.1.in stapbpf/Makefile.am stapbpf/Makefile.in: Add stapbpf man page, update NEWS and stap man page with stapbpf info. http://tinyurl.com/y8bwmh8d
<silvaleandrodp>
i'm having a hardtime with probe perf someone could help?
<fche>
silvaleandrodp, can try, what's up?
<silvaleandrodp>
Hi fche i'm trying to get the return of a perf counter but it seems that perf.type(0).config(0) don't have any variables
<fche>
a probe perf.* doesn't let you -read- the perfcounter value; it just arranges to interrupt / run a handler every XXX counts
<fche>
that's because, at least at the time this feature was written, the kernel did not possess a suitable api for us to read actual counter values from our execution contexts
<fche>
there is another similar facility, for userspace probes only, that lets one read process-specific perfcounters
<fche>
see [man stapprobes], the probe perf.type(NN).config(MM).process("PROC").counter("COUNTER") { } part and process("PROCESS").statement("func@file") {stat <<< @perf("NAME")}
<irker275>
systemtap: fche systemtap.git:refs/heads/master * release-3.1-318-g3c612a1 / man/stapprobes.3stap: man stapprobes: tweak uprobe-perf probe templates to match metavariables http://tinyurl.com/ybgte8je
drsmith is now known as drsmith_away
<silvaleandrodp>
I see, I will try these, i'm working on this for some days and stil dont fid a way. I'm trying to accoun the power consumption of the kernel reading the rapl counters in power/energy-cores/
<fche>
some such counters can be most easily read from userspace
<silvaleandrodp>
but is it possible to account all proccessing done in kernel space from user space?
<fche>
that's a good question. have you been able to find a perf.* probe parametrization that at least attached to those rapl counters?
silvaleandrodp has quit [Ping timeout: 260 seconds]
silvaleandrodp has joined #systemtap
<silvaleandrodp>
sorry i was disconnected, from terminal we can read it #perf -a -e power/energy-cores/
<silvaleandrodp>
the configurations of this counter can be found at /sys/bus/event_source/devices/power
<silvaleandrodp>
reading it i thik it would be perf.type(14).config(0)
<fche>
hm on my machine here /sys/bus/event_source/devices/power/type:8 ... but the kernel rejects probe perf.type(8).config(0) {}
wcohen has quit [Ping timeout: 260 seconds]
drsmith_away is now known as drsmith
<silvaleandrodp>
it's not working here too, in my system it is 14 and i'm almost sure tha it is the right value for type, but i dont know well what the valye for config
<fche>
yeah, sorry I don't have a canned answer for you