public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* Re: Fwd: systemtap global var lead to high cpu
@ 2020-07-24  2:00 Kun
  2020-07-24  3:49 ` Arkady
  0 siblings, 1 reply; 6+ messages in thread
From: Kun @ 2020-07-24  2:00 UTC (permalink / raw)
  To: Serhei Makarov, systemtap

My global var saved is string type, not number, so I can not use aggregate.
FChE will fixed this bug,
https://sourceware.org/bugzilla/show_bug.cgi?id=26296
Hoping to fixed soon.




------------------ Original ------------------
From: Serhei Makarov <smakarov@redhat.com&gt;
Date: Thu,Jul 23,2020 10:22 PM
To: systemtap <systemtap@sourceware.org&gt;, mingkunone <mingkunone@qq.com&gt;
Subject: Re: Fwd: systemtap global var lead to high cpu



Forwarding your question to systemtap@sourceware.org in case other people have suggestions.



In general, the locks protect concurrent modifications from interfering with each other when different processes trigger the same probe.


Depending on what&nbsp; you want to do with the iphdr value, you may be able to reduce contention by using statistical aggregates
(which do not require locking). For example, aaa[iphdr] <<< some_statistic; in a later probe iterate through aaa. A lot of the SystemTap example scripts use this type of structure, for example: https://sourceware.org/systemtap/examples/network/netfilter_summary.stp


Otherwise, every tcp_ack() for every packet on your system will try to grab the same lock. The resulting CPU load is unsurprising to me.


Hope this information is helpful; if not, someone else may have a better suggestion.


All the best,
&nbsp;&nbsp;&nbsp; &nbsp; Serhei


---------- Forwarded message ---------
From: Kun <mingkunone@qq.com&gt;
Date: Wed, Jul 22, 2020 at 11:24 PM
Subject: systemtap global var lead to high cpu
To: smakarov <smakarov@redhat.com&gt;



Hi,
&nbsp; &nbsp; I have a problem of system tap which
&nbsp;Using global var.
&nbsp; &nbsp; A simple demo as following,
Global aaa
Probe kernel.function(“tcp_ack”){
&nbsp; &nbsp; Iphdr = __get_skb_iphdr($skb)
&nbsp; &nbsp; If(iphdr == 0){
&nbsp; &nbsp; &nbsp; &nbsp; aaa=iphdr
&nbsp; &nbsp; }


Then our env have a 10Gbps flow, and our cpu is nearly 100%.


Analysising c code, I find this is because of a lock as following:
Static void probe_6330()
{
If(sta_lock_probe(lock, ARRAY_SIZE(locks))
&nbsp; &nbsp; Return;
If(l-&gt;iphdr == 0){
&nbsp; &nbsp; Global(s_global_aaa)=l-&gt;l_iphdr;
}


My question is that aaa should be protected in “if”,
Why is the lock directly at the function entry?

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

end of thread, other threads:[~2020-08-18 19:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <tencent_FB0905D58DA3FA7F0E728C535B447E0D1905@qq.com>
2020-07-23 14:22 ` Fwd: systemtap global var lead to high cpu Serhei Makarov
2020-07-24  2:00 Kun
2020-07-24  3:49 ` Arkady
2020-07-25  2:45   ` Kun
2020-07-25  5:25     ` Arkady
2020-08-18 19:11     ` Frank Ch. Eigler

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).