This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug testsuite/10084] systemtap.examples/network/dropwatch fails on kernels without kfree_skb tracepoint


------- Additional Comments From wenji dot huang at oracle dot com  2009-07-03 07:54 -------
See the definition of trace point in  kfree_skb(struct sk_buff *skb)
        ...
        else if (likely(!atomic_dec_and_test(&skb->users)))
                 return;
         trace_kfree_skb(skb, __builtin_return_address(0));
         __kfree_skb(skb);
 }

Maybe we can select __kfree_skb as the probe point. But Not easy to find the
replacement for the parameter __builtin_return_address(0).
 

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=10084

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]