fche changed the topic of #systemtap to: http://sourceware.org/systemtap; email systemtap@sourceware.org if answers here not timely, conversations may be logged
mjw has quit [Quit: Leaving]
hpt has joined #systemtap
brolley has left #systemtap [#systemtap]
scox has joined #systemtap
lindi-_ has joined #systemtap
lindi- has quit [Read error: Connection reset by peer]
ananth has quit [Quit: Leaving]
irker109 has quit [Quit: transmission timeout]
ananth has joined #systemtap
ravi has joined #systemtap
srikar_away is now known as srikar
hchiramm has joined #systemtap
naveen has joined #systemtap
ego has joined #systemtap
nkambo has joined #systemtap
Guest6282 has quit [Ping timeout: 264 seconds]
wakatana2 has joined #systemtap
wakatana2 has quit [Max SendQ exceeded]
srikar is now known as srikar_away
nkambo has quit [Quit: Good day !]
mjw has joined #systemtap
ton31337 has joined #systemtap
srikar_away is now known as srikar
nkambo has joined #systemtap
hezhiqiang has joined #systemtap
<hezhiqiang> About systemtap nettop.stp script error, gist: https://gist.github.com/developerworks/284b0d3df43668d54596c4d37c7b4beb
<hezhiqiang> semantic error
<hezhiqiang> Is version mismatch between systemtap and linux kernel ?
ego has quit [Ping timeout: 246 seconds]
<modem> hezhiqiang: hi
<modem> hezhiqiang:
<modem> 3729 int netif_receive_skb(struct sk_buff *skb)
<modem> it seems that this function (checked on a 3.14)
<modem> has changed to now be inlined
<modem> you can't use anymore $skb
<modem> because it's an inline parameter and systemtap doesn't succeed to resolving this one
<modem> that's why
<modem> maybe you can change the probing point to the calling function ?
<modem> or do without $skb ?
<modem> It'd be good to have advanced dwarf usage to figure the storage location of an inline parameter (maybe not with dwarf i am unsure)
<modem> would solve such situation
ego has joined #systemtap
irker629 has joined #systemtap
<irker629> systemtap: mcermak systemtap.git:refs/heads/master * release-3.0-82-g0a7eb12 / NEWS elaborate.cxx elaborate.h man/stap.1.in parse.cxx staptree.cxx staptree.h testsuite/systemtap.base/const_op.exp testsuite/systemtap.base/const_op.stp translate.cxx: Fix PR19926 by introducing translator built-in @const() operator. http://tinyurl.com/zfqxwhn
hpt has quit [Ping timeout: 260 seconds]
ego has quit [Ping timeout: 246 seconds]
ego has joined #systemtap
hezhiqiang has quit [Remote host closed the connection]
ego has quit [Ping timeout: 244 seconds]
awreece has quit [Ping timeout: 252 seconds]
ravi has quit [Quit: Leaving]
hkshaw1 has joined #systemtap
hkshaw has quit [Ping timeout: 260 seconds]
nkambo has quit [Read error: Connection reset by peer]
awreece has joined #systemtap
nkambo has joined #systemtap
ego has joined #systemtap
hkshaw has joined #systemtap
drsmith has joined #systemtap
hkshaw1 has quit [Ping timeout: 276 seconds]
hchiramm has quit [Ping timeout: 252 seconds]
nkambo has quit [Read error: Connection reset by peer]
nkambo has joined #systemtap
ph7 has joined #systemtap
nkambo has quit [Read error: Connection reset by peer]
ph7 has quit [Client Quit]
ph7 has joined #systemtap
ravi has joined #systemtap
naveen has quit [Quit: Leaving.]
ananth has quit [Quit: Leaving]
gila has joined #systemtap
nkambo has joined #systemtap
wcohen has quit [Ping timeout: 260 seconds]
nkambo has quit [Ping timeout: 276 seconds]
hpt has joined #systemtap
hpt has quit [Ping timeout: 240 seconds]
drsmith is now known as drsmith_away
ravi has quit [Ping timeout: 244 seconds]
nkambo has joined #systemtap
mbenitez has joined #systemtap
hezhiqiang has joined #systemtap
wcohen has joined #systemtap
drsmith_away is now known as drsmith
ph7 has quit [Read error: Connection timed out]
ph7 has joined #systemtap
srikar is now known as srikar_away
tromey has joined #systemtap
hpt has joined #systemtap
naveen has joined #systemtap
mjw has quit [Quit: Leaving]
ph7 has quit [Read error: Connection timed out]
ph7 has joined #systemtap
srikar_away is now known as srikar
nkambo has quit [Read error: Connection reset by peer]
brolley has joined #systemtap
nkambo has joined #systemtap
<irker629> systemtap: flu systemtap.git:refs/heads/master * release-3.0-83-g0d05139 / : replace -c 'sleep' usage with -T http://tinyurl.com/zljzcpz
<fche> thanks felix
<flu_> np
hezhiqiang has quit [Remote host closed the connection]
mbenitez has quit [Read error: Connection reset by peer]
ego has quit [Quit: Leaving]
mbenitez has joined #systemtap
mbenitez has joined #systemtap
ph7 has quit [Quit: Leaving.]
ph7 has joined #systemtap
brolley has left #systemtap [#systemtap]
mjw has joined #systemtap
hkshaw has quit [Quit: Leaving.]
ravi has joined #systemtap
mjw has quit [Quit: Leaving]
hpt has quit [Ping timeout: 252 seconds]
ph7 has quit [Quit: Leaving.]
ph7 has joined #systemtap
srikar is now known as srikar_away
ph7 has quit [Client Quit]
ph7 has joined #systemtap
mjw has joined #systemtap
ravi has quit [Remote host closed the connection]
naveen has quit [Quit: Leaving.]
srikar_away is now known as srikar
<gila> Is there an (easy?) way where the variables that contain an aggregation, can be dumped in the sense that we don't print() them with the nice starts. Reason for this is that i want to toss the values to some graphing tool(s)
<gila> *stars
<jistone> gila, you mean an aggregate with a histogram?
<gila> jistone yes.
<jistone> gila, you can iterate the histogram values with 'foreach', to print them however you prefer
<gila> Ok i'll give that a try.
<jistone> something like: foreach (bucket in @hist_log(foo)) { ... }
<jistone> bucket will be an index, for @hist_log(foo)[bucket]
<jistone> you can also use the VAL= form of iteration
<jistone> like: foreach (value = bucket in @hist_log(foo)) { ... }
<jistone> looks a bit weird, but it's shorthand for: foreach (value = [bucket] in @hist_log(foo)) { ... }
<gila> thx jistone i'll try that later today
<jistone> great
srikar is now known as srikar_away
ph7 has quit [Read error: Connection timed out]
ph7 has joined #systemtap
<gila> jistone works great -- thx again.
flu_ has quit [Remote host closed the connection]
flu_ has joined #systemtap
nkambo has quit [Read error: Connection reset by peer]
nkambo has joined #systemtap
hkshaw has joined #systemtap
nkambo has quit [Read error: Connection reset by peer]
nkambo has joined #systemtap
<irker629> systemtap: flu systemtap.git:refs/heads/master * release-3.0-84-ge093aff / stap-server.service: set -i as default for stap-server.service http://tinyurl.com/j9jdq3a
brolley has joined #systemtap
ph7 has quit [Quit: Leaving.]
nkambo has quit [Ping timeout: 240 seconds]
nkambo has joined #systemtap
joko has quit [*.net *.split]
joko has joined #systemtap
pmuldoon has quit [Remote host closed the connection]
gila has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
pmuldoon has joined #systemtap
<fche> flu_, that seems to close out PR19992, right?
mjw has quit [Quit: Leaving]
<flu_> fche, yes
nkambo has quit [Quit: Good day !]
gila has joined #systemtap
hkshaw has quit [Quit: Leaving.]
wakatana2 has joined #systemtap
wakatana2 has quit [Max SendQ exceeded]
xenthree3 has joined #systemtap
xenthree3 has left #systemtap [#systemtap]
mbenitez has quit [Quit: Leaving]
drsmith has left #systemtap [#systemtap]
wakatana2 has joined #systemtap
wakatana2 has quit [Max SendQ exceeded]
wcohen has quit [Ping timeout: 276 seconds]
brolley has left #systemtap [#systemtap]
tromey has quit [Quit: ERC (IRC client for Emacs 25.0.93.1)]
wcohen has joined #systemtap
joko has quit [Ping timeout: 260 seconds]
joko has joined #systemtap
joko has quit [Ping timeout: 250 seconds]
joko has joined #systemtap
gila has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]