public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* process().statement() doesn't seem to work
@ 2015-06-26 18:58 Zoltan Kiss
  2015-06-29 23:39 ` Josh Stone
  0 siblings, 1 reply; 5+ messages in thread
From: Zoltan Kiss @ 2015-06-26 18:58 UTC (permalink / raw)
  To: systemtap

Hi,

I want to use systemtap to figure out the local variables in a function 
where something goes fishy. The function's code is here:

http://dpdk.org/browse/dpdk/tree/lib/librte_pmd_ixgbe/ixgbe_rxtx.c?id=v1.7.1#n1313

It's a receive function of DPDK's userspace poll mode driver, so it's 
called in an infinite loop. When I try this, it appers to work:

probe 
process("/usr/sbin/ovs-vswitchd").function("ixgbe_recv_scattered_pkts").return 
{
   log($$locals)
   exit();
}

The output is:

rxq=0x7fff852ee000 rx_ring=? rxdp=? sw_ring=? rxe=? first_seg=? 
last_seg=? rxm=? nmb=? rxd={...} dma=? staterr=? hlen_type_rss=? rx_id=? 
nb_rx=0x0 nb_hold=0x0 data_len=? pkt_flags=?

But it doesn't show most of the variables I need. It returns nb_rx=0, so 
I know where are the two points where things can go wrong, but I can't 
see the output of those variables (staterr and nmb)

When I try to define the probe as this:

probe 
process("/usr/sbin/ovs-vswitchd").statement("*@lib/librte_pmd_ixgbe/ixgbe_rxtx.c:1359")

Or with any line number inside that function, the probe is never 
reached. I'm using gcc 4.8.4, DPDK is statically linked to my application.
Does anyone have an idea what might went wrong?

Regards,

Zoltan Kiss

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-07-20 17:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-26 18:58 process().statement() doesn't seem to work Zoltan Kiss
2015-06-29 23:39 ` Josh Stone
2015-07-09 14:49   ` Frank Ch. Eigler
2015-07-10 22:59     ` Josh Stone
2015-07-20 17:54   ` Zoltan Kiss

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).