fche changed the topic of #systemtap to: http://sourceware.org/systemtap; email systemtap@sourceware.org if answers here not timely, conversations may be logged
scox has joined #systemtap
hpt has joined #systemtap
srikar_away is now known as srikar
hpt has quit [Quit: leaving]
lzap has quit [Ping timeout: 276 seconds]
hpt has joined #systemtap
lzap has joined #systemtap
hkshaw has quit [Quit: Leaving.]
irker712 has quit [Quit: transmission timeout]
hkshaw has joined #systemtap
srikar is now known as srikar_away
ananth has joined #systemtap
ravi has joined #systemtap
ego has joined #systemtap
nkambo2 has joined #systemtap
nkambo1 has quit [Ping timeout: 246 seconds]
hchiramm has joined #systemtap
naveen has joined #systemtap
ego has quit [Ping timeout: 244 seconds]
srikar_away is now known as srikar
nkambo2 has quit [Ping timeout: 246 seconds]
ego has joined #systemtap
srikar is now known as srikar_away
srikar_away is now known as srikar
hpt has quit [Ping timeout: 250 seconds]
nkambo has joined #systemtap
hpt has joined #systemtap
ton31337_ is now known as ton31337
wakatana2 has joined #systemtap
ravi has quit [Remote host closed the connection]
ravi has joined #systemtap
ego has quit [Ping timeout: 260 seconds]
hpt has quit [Ping timeout: 260 seconds]
hpt has joined #systemtap
cap_ has joined #systemtap
hpt has quit [Ping timeout: 244 seconds]
ego has joined #systemtap
mjw has joined #systemtap
hkshaw has quit [Read error: Connection reset by peer]
hkshaw has joined #systemtap
hkshaw has quit [Quit: Leaving.]
hkshaw has joined #systemtap
nkambo has quit [Ping timeout: 260 seconds]
nkambo has joined #systemtap
scox has quit [Ping timeout: 244 seconds]
ego has quit [Ping timeout: 244 seconds]
nkambo has quit [Ping timeout: 252 seconds]
nkambo has joined #systemtap
pmuldoon_ has joined #systemtap
pmuldoon has quit [Remote host closed the connection]
ego has joined #systemtap
naveen has quit [Quit: Leaving.]
ravi has quit [Quit: Leaving]
ananth has quit [Ping timeout: 260 seconds]
nkambo1 has joined #systemtap
nkambo has quit [Ping timeout: 276 seconds]
nkambo1 has quit [Ping timeout: 260 seconds]
nkambo1 has joined #systemtap
nkambo2 has joined #systemtap
nkambo has joined #systemtap
srikar is now known as srikar_away
nkambo1 has quit [Ping timeout: 246 seconds]
wcohen has quit [Ping timeout: 260 seconds]
nkambo2 has quit [Ping timeout: 276 seconds]
nkambo1 has joined #systemtap
nkambo has quit [Ping timeout: 240 seconds]
hkshaw has quit [Ping timeout: 250 seconds]
nkambo2 has joined #systemtap
nkambo1 has quit [Read error: Connection reset by peer]
nkambo1 has joined #systemtap
nkambo2 has quit [Ping timeout: 260 seconds]
hkshaw has joined #systemtap
nkambo1 has quit [Ping timeout: 252 seconds]
ego has quit [Ping timeout: 246 seconds]
ravi has joined #systemtap
hchiramm has quit [Ping timeout: 246 seconds]
ego has joined #systemtap
scox has joined #systemtap
flu_ has joined #systemtap
ravi has quit [Ping timeout: 244 seconds]
ravi has joined #systemtap
ravi has quit [Client Quit]
ravi has joined #systemtap
mbenitez has joined #systemtap
ego has quit [Ping timeout: 260 seconds]
wcohen has joined #systemtap
nili has joined #systemtap
nili is now known as Guest6282
tromey has joined #systemtap
drsmith has joined #systemtap
nkambo has joined #systemtap
nkambo1 has joined #systemtap
ravi has quit [Ping timeout: 276 seconds]
nkambo has quit [Ping timeout: 276 seconds]
nkambo1 has quit [Remote host closed the connection]
naveen has joined #systemtap
srikar_away is now known as srikar
brolley has joined #systemtap
naveen has quit [Quit: Leaving.]
srikar is now known as srikar_away
will has joined #systemtap
will is now known as otherwill
<otherwill>
hi guys, I'm trying to get parameters values from calls, using the para-callgraph.stp script, but all floating point variables are being show as ? . Does anyone know if there's a way to solve it?
<jistone>
otherwill, generally speaking - kernel code can't use floating point hardware
<jistone>
if stap will let you take the address of the parameter then you may be able to read it like an integer, dump the raw ieee 754 hex
<jistone>
it must be in memory for that, not a register
<otherwill>
I'm using $$parms$$ to get everything
<jistone>
right - that's not going to be smart enough here, unfortunately
<otherwill>
well, at least now I know what is wrong. I'll try another approach