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
hkshaw_ has quit [Quit: Leaving.]
ravi has joined #systemtap
hkshaw has joined #systemtap
wcohen has joined #systemtap
hkshaw has quit [Quit: Leaving.]
hchiramm has quit [Ping timeout: 250 seconds]
ananth has joined #systemtap
hchiramm has joined #systemtap
naveen has joined #systemtap
hkshaw has joined #systemtap
ego has joined #systemtap
nkambo has quit [Ping timeout: 250 seconds]
srikar_away is now known as srikar
nkambo has joined #systemtap
srikar has quit [Quit: Coyote finally caught me]
srikar_away has joined #systemtap
hchiramm has quit [Read error: Connection reset by peer]
srikar has quit [Quit: Coyote finally caught me]
srikar_away has joined #systemtap
srikar_away is now known as srikar
hchiramm has joined #systemtap
hpt has quit [Ping timeout: 250 seconds]
ego has quit [Ping timeout: 244 seconds]
ravi has quit [Remote host closed the connection]
ego has joined #systemtap
ego has quit [Ping timeout: 276 seconds]
hkshaw has quit [Ping timeout: 244 seconds]
ego has joined #systemtap
srikar` has joined #systemtap
ananth_ has joined #systemtap
ego_ has joined #systemtap
srikar has quit [Read error: Connection reset by peer]
ananth__ has joined #systemtap
ego__ has joined #systemtap
srikar has joined #systemtap
ananth has quit [Ping timeout: 240 seconds]
ego has quit [Ping timeout: 246 seconds]
ananth_ has quit [Ping timeout: 260 seconds]
ego_ has quit [Ping timeout: 252 seconds]
srikar` has quit [Ping timeout: 252 seconds]
scox has joined #systemtap
ananth_ has joined #systemtap
hkshaw has joined #systemtap
ananth__ has quit [Ping timeout: 276 seconds]
hkshaw has quit [Ping timeout: 276 seconds]
scox has quit [Ping timeout: 260 seconds]
ananth_ has quit [Quit: Leaving]
nkambo has quit [Ping timeout: 260 seconds]
wcohen has quit [Ping timeout: 246 seconds]
hkshaw has joined #systemtap
hchiramm has quit [Remote host closed the connection]
ravi__ has joined #systemtap
srikar is now known as srikar_away
ego__ has quit [Ping timeout: 268 seconds]
mbenitez has joined #systemtap
tromey has joined #systemtap
nkambo has joined #systemtap
ravi__ has quit [Ping timeout: 268 seconds]
srikar_away is now known as srikar
srikar is now known as srikar_away
srikar_away is now known as srikar
ravi__ has joined #systemtap
ananth has joined #systemtap
hkshaw has quit [Quit: Leaving.]
srikar is now known as srikar_away
srikar_away is now known as srikar
ravi__ has quit [Remote host closed the connection]
hkshaw has joined #systemtap
ananth has quit [Quit: Leaving]
naveen has quit [Quit: Leaving.]
modem has quit [Ping timeout: 268 seconds]
Empyrium has quit [Ping timeout: 268 seconds]
chris2 has quit [Ping timeout: 268 seconds]
modem has joined #systemtap
Empyrium has joined #systemtap
hkshaw1 has joined #systemtap
tromey` has joined #systemtap
hkshaw1 is now known as hemant_
hkshaw has quit [*.net *.split]
nkambo has quit [*.net *.split]
tromey has quit [*.net *.split]
pfallenop has quit [*.net *.split]
pfallenop has joined #systemtap
nkambo has joined #systemtap
chris2 has joined #systemtap
tromey` is now known as tromey
jbalint has joined #systemtap
<jbalint> hi, i'm getting this error on '$return' from one of the example scripts. any hints? http://pastebin.com/BMLxtujF
ego__ has joined #systemtap
ego__ has quit [Ping timeout: 244 seconds]
<fche> hi
<fche> what does stap -L 'kernel.function("copy_process")' show on your machine?
<jbalint> thanks fche. it just prints it out
<fche> ok, man error::pass2 should have some hints
<fche> my guess is that what's wrong here is missing kernel debugging information, but not sure.
<fche> ($return is a special case)
<fche> can you run stap-report and paste the results?
<jbalint> anything specific that would/wouldn't show?
<fche> with kernel debugging data available, you should be getting somethign like
<fche> kernel.function("copy_process@kernel/fork.c:1243") $clone_flags:long unsigned int $stack_start:long unsigned int $stack_size:long unsigned int $child_tidptr:int* $pid:struct pid* $trace:int $tls:long unsigned int $cgrp_ss_priv:void*[]
<fche> ie a list of the various context variables available
<jbalint> hrm, yeah i don't see anything like that
<jbalint> if I run -L with syscall.read I get a lot more stuff
<jbalint> syscall.read name:string fd:long buf_uaddr:unknown count:long argstr:string
<jbalint> so I guess the kernel.function somehow doesn't have the args...
<fche> could you run stap-report and paste the results ?
<fche> "Because Arch permanently strips debugging data from its distributed binaries (including the kernel), many normal/fancier systemtap capabilities are simply not available,"
<fche> now I'd have expected stap to print an [man error::dwarf] message to give a better hint
<jbalint> yeah i see "If a script requires such data, but the compiler did not preserve enough of it, pass-2 errors may result."
<jbalint> ok, I guess i'll build myself a new kernel
<fche> yeah, the arch distro is shooting itself in the foot a bit with the strip-debuginfo policy :(
scox has joined #systemtap
<jbalint> can't it be included as a separate package?
<fche> AIUI, arch in general strips debuginfo during builds, kernel & userspace
<fche> so this frustrates debugging (whether with stap or gdb or whatever)
<fche> but AIUI arch users are used to rebuilding software they want to debug :(
<fche> anyway that's a distro philosophy choice
<fche> (fedora goes the other way)
<jbalint> yeah, i don't have a problem building most things but kernel is a bit less convenient
<fche> yeah.
<jbalint> i was not aware of this, finding most things a bit more developer friendly as there are no separate packages for headers
<jbalint> (kernel aside)
<fche> I see what you mean - if disk space is not scarce, installing bits like that by default can be good.
<jbalint> thanks a lot fche
<fche> no problem, wish we could do more. arch IMHO should revisit this issue.
<jbalint> yeah maybe i'll bring it up on the forum and see what kind of response I get
<fche> thanks! please let us know if there's any sympathy
<jbalint> but often times I would rather go get work done instead of arguing trivialities
<jbalint> sure thing
<fche> yeah. I guess one person's triviality is another's obstruction
srikar is now known as srikar_away
hemant_ has quit [Quit: Leaving.]
hkshaw has joined #systemtap
wcohen has joined #systemtap
fche has quit [Ping timeout: 264 seconds]
fche has joined #systemtap
tromey has quit [Quit: ERC (IRC client for Emacs 25.0.92.5)]
mbenitez has quit [Quit: Leaving]
wcohen has quit [Remote host closed the connection]
wcohen has joined #systemtap
ton31337 has quit [Ping timeout: 250 seconds]
ton31337 has joined #systemtap