fche changed the topic of #systemtap to: http://sourceware.org/systemtap; email systemtap@sourceware.org if answers here not timely, conversations may be logged
gila has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
zodbot has quit [Quit: nirik]
zodbot has joined #systemtap
irker885 has quit [Quit: transmission timeout]
ericlee has joined #systemtap
vbernat has quit [Quit: The future belongs to those who believe in the beauty of their dreams.]
vbernat has joined #systemtap
slowfranklin has joined #systemtap
<ericlee>
Hi, why the size is -11 in socket.receive sometime?
<khaled>
I have the same setup on another computer and it works, same kernel and stap version.
gila has joined #systemtap
zodbot has quit [Read error: Connection reset by peer]
zodbot has joined #systemtap
sscox has quit [Ping timeout: 250 seconds]
orivej has joined #systemtap
_whitelogger has joined #systemtap
slowfranklin has joined #systemtap
slowfranklin has quit [Quit: slowfranklin]
slowfranklin has joined #systemtap
<fche>
ericlee, EAGAIN11/* Try again */
<fche>
khaled, suspect one of the machines has the kernel debuginfo installed, the other doesn't
<fche>
if you run on the working machine: stap --remote=$other_machine_hostname ... then it should work
<fche>
(or copy over a stap -p4 .ko file and staprun on the other-machine)
<khaled>
@fche, Thanks, I think I found the root cause, the printf format was printf("%s %s %s\n", execname(), pid(), pathname) although it should be printf("%s %d %s\n", execname(), pid(), pathname);
<khaled>
Although the error is misleading
<fche>
that's quite wrong
<fche>
maybe there were two separate errors?
<khaled>
Which one? the first right?
<fche>
yeah
<fche>
will look into that
<fche>
can reproduce the bug
<fche>
if you had the time to file a sourceware.org/bugzilla bug on that, it'd be great, otherwise we will at some point
<khaled>
I will create a bug for it, Thanks for your review