Skip to content

Instantly share code, notes, and snippets.

@omo
Created March 24, 2015 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omo/2c4048356602dc46e598 to your computer and use it in GitHub Desktop.
Save omo/2c4048356602dc46e598 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="610" onload="init(evt)" viewBox="0 0 1200 610" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
svg = document.getElementsByTagName("svg")[0];
}
function s(info) { details.nodeValue = "Function: " + info; }
function c() { details.nodeValue = ' '; }
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="610.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="593" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (2 samples, 0.06%)</title><rect x="1173.4" y="417" width="0.7" height="15.0" fill="rgb(235,128,16)" rx="2" ry="2" />
<text text-anchor="" x="1176.41" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::Thread::StartWithOptions (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::Thread::StartWithOptions (5 samples, 0.15%)</title><rect x="374.4" y="337" width="1.8" height="15.0" fill="rgb(249,139,38)" rx="2" ry="2" />
<text text-anchor="" x="377.35" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (178 samples, 5.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (178 samples, 5.44%)</title><rect x="91.2" y="353" width="64.2" height="15.0" fill="rgb(206,18,5)" rx="2" ry="2" />
<text text-anchor="" x="94.17" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake_..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (6 samples, 0.18%)</title><rect x="1149.6" y="305" width="2.2" height="15.0" fill="rgb(253,28,52)" rx="2" ry="2" />
<text text-anchor="" x="1152.60" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_unlink (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (7 samples, 0.21%)</title><rect x="959.1" y="257" width="2.5" height="15.0" fill="rgb(242,18,24)" rx="2" ry="2" />
<text text-anchor="" x="962.12" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (4 samples, 0.12%)</title><rect x="450.1" y="481" width="1.5" height="15.0" fill="rgb(227,87,4)" rx="2" ry="2" />
<text text-anchor="" x="453.11" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.03%)</title><rect x="21.2" y="481" width="0.3" height="15.0" fill="rgb(241,92,26)" rx="2" ry="2" />
<text text-anchor="" x="24.18" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (11 samples, 0.34%)</title><rect x="1145.6" y="305" width="4.0" height="15.0" fill="rgb(226,164,49)" rx="2" ry="2" />
<text text-anchor="" x="1148.63" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="293.2" y="257" width="0.3" height="15.0" fill="rgb(218,70,20)" rx="2" ry="2" />
<text text-anchor="" x="296.19" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.03%)</title><rect x="141.7" y="193" width="0.3" height="15.0" fill="rgb(213,106,17)" rx="2" ry="2" />
<text text-anchor="" x="144.67" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (1 samples, 0.03%)</title><rect x="535.6" y="513" width="0.4" height="15.0" fill="rgb(207,56,42)" rx="2" ry="2" />
<text text-anchor="" x="538.61" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (6 samples, 0.18%)</title><rect x="973.9" y="369" width="2.2" height="15.0" fill="rgb(246,214,28)" rx="2" ry="2" />
<text text-anchor="" x="976.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.03%)</title><rect x="740.1" y="209" width="0.4" height="15.0" fill="rgb(219,141,29)" rx="2" ry="2" />
<text text-anchor="" x="743.15" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (3 samples, 0.09%)</title><rect x="273.7" y="321" width="1.1" height="15.0" fill="rgb(244,26,18)" rx="2" ry="2" />
<text text-anchor="" x="276.71" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.12%)</title><rect x="374.7" y="225" width="1.5" height="15.0" fill="rgb(228,208,24)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::ConditionVariable::ConditionVariable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::ConditionVariable::ConditionVariable (1 samples, 0.03%)</title><rect x="472.1" y="481" width="0.4" height="15.0" fill="rgb(230,170,37)" rx="2" ry="2" />
<text text-anchor="" x="475.12" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.03%)</title><rect x="264.7" y="353" width="0.3" height="15.0" fill="rgb(228,137,7)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.03%)</title><rect x="432.8" y="417" width="0.4" height="15.0" fill="rgb(224,113,33)" rx="2" ry="2" />
<text text-anchor="" x="435.79" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (2 samples, 0.06%)</title><rect x="1121.1" y="49" width="0.7" height="15.0" fill="rgb(219,78,3)" rx="2" ry="2" />
<text text-anchor="" x="1124.10" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (35 samples, 1.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (35 samples, 1.07%)</title><rect x="301.1" y="193" width="12.6" height="15.0" fill="rgb(232,18,16)" rx="2" ry="2" />
<text text-anchor="" x="304.12" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (3 samples, 0.09%)</title><rect x="695.4" y="321" width="1.1" height="15.0" fill="rgb(253,160,32)" rx="2" ry="2" />
<text text-anchor="" x="698.42" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (3 samples, 0.09%)</title><rect x="626.9" y="273" width="1.1" height="15.0" fill="rgb(248,43,33)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.12%)</title><rect x="537.8" y="417" width="1.4" height="15.0" fill="rgb(243,27,20)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.03%)</title><rect x="218.9" y="337" width="0.3" height="15.0" fill="rgb(217,221,12)" rx="2" ry="2" />
<text text-anchor="" x="221.87" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (31 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (31 samples, 0.95%)</title><rect x="1121.8" y="113" width="11.2" height="15.0" fill="rgb(254,182,4)" rx="2" ry="2" />
<text text-anchor="" x="1124.82" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (2 samples, 0.06%)</title><rect x="683.9" y="193" width="0.7" height="15.0" fill="rgb(254,225,27)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (55 samples, 1.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (55 samples, 1.68%)</title><rect x="928.8" y="225" width="19.9" height="15.0" fill="rgb(221,165,25)" rx="2" ry="2" />
<text text-anchor="" x="931.82" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.03%)</title><rect x="743.4" y="193" width="0.4" height="15.0" fill="rgb(245,62,24)" rx="2" ry="2" />
<text text-anchor="" x="746.40" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="374.7" y="97" width="1.5" height="15.0" fill="rgb(241,144,23)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="160.8" y="385" width="0.4" height="15.0" fill="rgb(225,139,38)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_pages_nodemask (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (1 samples, 0.03%)</title><rect x="376.9" y="385" width="0.3" height="15.0" fill="rgb(220,203,1)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (74 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (74 samples, 2.26%)</title><rect x="176.3" y="449" width="26.7" height="15.0" fill="rgb(226,72,1)" rx="2" ry="2" />
<text text-anchor="" x="179.30" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s('do_futex (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (18 samples, 0.55%)</title><rect x="255.3" y="305" width="6.5" height="15.0" fill="rgb(209,10,30)" rx="2" ry="2" />
<text text-anchor="" x="258.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.06%)</title><rect x="254.6" y="337" width="0.7" height="15.0" fill="rgb(219,155,30)" rx="2" ry="2" />
<text text-anchor="" x="257.59" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('all (3,271 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
<title>all (3,271 samples, 100%)</title><rect x="10.0" y="561" width="1180.0" height="15.0" fill="rgb(240,73,7)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="651.0" y="369" width="0.4" height="15.0" fill="rgb(251,136,18)" rx="2" ry="2" />
<text text-anchor="" x="654.05" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (2 samples, 0.06%)</title><rect x="425.6" y="497" width="0.7" height="15.0" fill="rgb(223,215,14)" rx="2" ry="2" />
<text text-anchor="" x="428.58" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_execve (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (1 samples, 0.03%)</title><rect x="17.6" y="497" width="0.3" height="15.0" fill="rgb(242,153,49)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (62 samples, 1.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (62 samples, 1.90%)</title><rect x="572.4" y="433" width="22.4" height="15.0" fill="rgb(234,68,21)" rx="2" ry="2" />
<text text-anchor="" x="575.40" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('rcu_sysidle_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_sysidle_exit (1 samples, 0.03%)</title><rect x="973.6" y="305" width="0.3" height="15.0" fill="rgb(229,46,15)" rx="2" ry="2" />
<text text-anchor="" x="976.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (28 samples, 0.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (28 samples, 0.86%)</title><rect x="814.8" y="273" width="10.1" height="15.0" fill="rgb(252,148,47)" rx="2" ry="2" />
<text text-anchor="" x="817.82" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('test_io_thread (1,808 samples, 55.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>test_io_thread (1,808 samples, 55.27%)</title><rect x="537.8" y="545" width="652.2" height="15.0" fill="rgb(250,66,45)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test_io_thread</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (6 samples, 0.18%)</title><rect x="225.7" y="353" width="2.2" height="15.0" fill="rgb(215,179,33)" rx="2" ry="2" />
<text text-anchor="" x="228.73" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.12%)</title><rect x="952.3" y="161" width="1.4" height="15.0" fill="rgb(231,224,54)" rx="2" ry="2" />
<text text-anchor="" x="955.27" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.12%)</title><rect x="374.7" y="129" width="1.5" height="15.0" fill="rgb(219,72,31)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (19 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (19 samples, 0.58%)</title><rect x="664.4" y="353" width="6.8" height="15.0" fill="rgb(217,148,28)" rx="2" ry="2" />
<text text-anchor="" x="667.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (3 samples, 0.09%)</title><rect x="423.1" y="497" width="1.0" height="15.0" fill="rgb(231,107,6)" rx="2" ry="2" />
<text text-anchor="" x="426.05" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_process_times (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.03%)</title><rect x="293.2" y="161" width="0.3" height="15.0" fill="rgb(250,176,47)" rx="2" ry="2" />
<text text-anchor="" x="296.19" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('call_timer_fn (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>call_timer_fn (1 samples, 0.03%)</title><rect x="713.5" y="209" width="0.3" height="15.0" fill="rgb(240,13,44)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (7 samples, 0.21%)</title><rect x="817.3" y="225" width="2.6" height="15.0" fill="rgb(219,122,50)" rx="2" ry="2" />
<text text-anchor="" x="820.35" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('retint_careful (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>retint_careful (4 samples, 0.12%)</title><rect x="537.8" y="513" width="1.4" height="15.0" fill="rgb(237,75,37)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (16 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (16 samples, 0.49%)</title><rect x="453.7" y="465" width="5.8" height="15.0" fill="rgb(248,166,25)" rx="2" ry="2" />
<text text-anchor="" x="456.72" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (825 samples, 25.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (825 samples, 25.22%)</title><rect x="871.5" y="401" width="297.6" height="15.0" fill="rgb(248,193,1)" rx="2" ry="2" />
<text text-anchor="" x="874.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >non-virtual thunk to mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.03%)</title><rect x="641.3" y="385" width="0.4" height="15.0" fill="rgb(240,7,54)" rx="2" ry="2" />
<text text-anchor="" x="644.31" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.03%)</title><rect x="451.6" y="481" width="0.3" height="15.0" fill="rgb(227,200,9)" rx="2" ry="2" />
<text text-anchor="" x="454.55" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="952.3" y="129" width="1.4" height="15.0" fill="rgb(238,4,38)" rx="2" ry="2" />
<text text-anchor="" x="955.27" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (11 samples, 0.34%)</title><rect x="351.6" y="209" width="4.0" height="15.0" fill="rgb(232,62,21)" rx="2" ry="2" />
<text text-anchor="" x="354.63" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (82 samples, 2.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (82 samples, 2.51%)</title><rect x="919.4" y="257" width="29.6" height="15.0" fill="rgb(243,90,47)" rx="2" ry="2" />
<text text-anchor="" x="922.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="11.8" y="209" width="1.4" height="15.0" fill="rgb(209,136,44)" rx="2" ry="2" />
<text text-anchor="" x="14.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (2 samples, 0.06%)</title><rect x="1098.7" y="65" width="0.8" height="15.0" fill="rgb(221,136,40)" rx="2" ry="2" />
<text text-anchor="" x="1101.73" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="293.2" y="193" width="0.3" height="15.0" fill="rgb(248,17,38)" rx="2" ry="2" />
<text text-anchor="" x="296.19" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="624.7" y="353" width="0.4" height="15.0" fill="rgb(211,216,35)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (4 samples, 0.12%)</title><rect x="497.7" y="305" width="1.5" height="15.0" fill="rgb(234,26,28)" rx="2" ry="2" />
<text text-anchor="" x="500.73" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (7 samples, 0.21%)</title><rect x="19.7" y="513" width="2.6" height="15.0" fill="rgb(213,193,46)" rx="2" ry="2" />
<text text-anchor="" x="22.74" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (2 samples, 0.06%)</title><rect x="376.2" y="529" width="0.7" height="15.0" fill="rgb(236,204,2)" rx="2" ry="2" />
<text text-anchor="" x="379.16" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="11.8" y="273" width="1.4" height="15.0" fill="rgb(223,113,35)" rx="2" ry="2" />
<text text-anchor="" x="14.80" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="374.7" y="289" width="1.5" height="15.0" fill="rgb(231,8,42)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (3 samples, 0.09%)</title><rect x="563.4" y="449" width="1.1" height="15.0" fill="rgb(231,7,9)" rx="2" ry="2" />
<text text-anchor="" x="566.38" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (1 samples, 0.03%)</title><rect x="507.5" y="337" width="0.3" height="15.0" fill="rgb(245,191,30)" rx="2" ry="2" />
<text text-anchor="" x="510.47" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="177.0" y="305" width="0.4" height="15.0" fill="rgb(243,37,25)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_careful (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (1 samples, 0.03%)</title><rect x="289.2" y="337" width="0.4" height="15.0" fill="rgb(211,140,49)" rx="2" ry="2" />
<text text-anchor="" x="292.22" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (1 samples, 0.03%)</title><rect x="699.0" y="337" width="0.4" height="15.0" fill="rgb(249,76,51)" rx="2" ry="2" />
<text text-anchor="" x="702.02" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="177.0" y="321" width="0.4" height="15.0" fill="rgb(236,106,31)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (2 samples, 0.06%)</title><rect x="477.9" y="465" width="0.7" height="15.0" fill="rgb(236,22,42)" rx="2" ry="2" />
<text text-anchor="" x="480.89" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (461 samples, 14.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (461 samples, 14.09%)</title><rect x="207.7" y="385" width="166.3" height="15.0" fill="rgb(212,111,37)" rx="2" ry="2" />
<text text-anchor="" x="210.69" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (8 samples, 0.24%)</title><rect x="442.2" y="481" width="2.9" height="15.0" fill="rgb(217,67,37)" rx="2" ry="2" />
<text text-anchor="" x="445.17" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (10 samples, 0.31%)</title><rect x="1159.3" y="353" width="3.6" height="15.0" fill="rgb(208,126,26)" rx="2" ry="2" />
<text text-anchor="" x="1162.34" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (2 samples, 0.06%)</title><rect x="1162.9" y="353" width="0.8" height="15.0" fill="rgb(230,37,12)" rx="2" ry="2" />
<text text-anchor="" x="1165.94" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (1 samples, 0.03%)</title><rect x="17.6" y="465" width="0.3" height="15.0" fill="rgb(219,217,6)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.03%)</title><rect x="946.5" y="113" width="0.4" height="15.0" fill="rgb(250,195,4)" rx="2" ry="2" />
<text text-anchor="" x="949.50" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="537.8" y="465" width="1.4" height="15.0" fill="rgb(250,164,47)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (73 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (73 samples, 2.23%)</title><rect x="1095.5" y="113" width="26.3" height="15.0" fill="rgb(207,121,19)" rx="2" ry="2" />
<text text-anchor="" x="1098.48" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (1 samples, 0.03%)</title><rect x="355.2" y="177" width="0.4" height="15.0" fill="rgb(232,102,51)" rx="2" ry="2" />
<text text-anchor="" x="358.23" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (507 samples, 15.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (507 samples, 15.50%)</title><rect x="651.4" y="369" width="182.9" height="15.0" fill="rgb(235,202,18)" rx="2" ry="2" />
<text text-anchor="" x="654.41" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (2 samples, 0.06%)</title><rect x="1111.4" y="49" width="0.7" height="15.0" fill="rgb(206,183,18)" rx="2" ry="2" />
<text text-anchor="" x="1114.36" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (8 samples, 0.24%)</title><rect x="13.2" y="417" width="2.9" height="15.0" fill="rgb(214,50,21)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (1,613 samples, 49.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (1,613 samples, 49.31%)</title><rect x="606.7" y="433" width="581.9" height="15.0" fill="rgb(242,103,15)" rx="2" ry="2" />
<text text-anchor="" x="609.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_base_loop</text>
</g>
<g class="func_g" onmouseover="s('__slab_alloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (1 samples, 0.03%)</title><rect x="80.3" y="385" width="0.4" height="15.0" fill="rgb(226,23,37)" rx="2" ry="2" />
<text text-anchor="" x="83.35" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (18 samples, 0.55%)</title><rect x="11.4" y="529" width="6.5" height="15.0" fill="rgb(235,190,15)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_recvmsg (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (2 samples, 0.06%)</title><rect x="902.5" y="273" width="0.7" height="15.0" fill="rgb(232,188,25)" rx="2" ry="2" />
<text text-anchor="" x="905.49" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (2 samples, 0.06%)</title><rect x="516.8" y="385" width="0.8" height="15.0" fill="rgb(239,227,51)" rx="2" ry="2" />
<text text-anchor="" x="519.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (168 samples, 5.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (168 samples, 5.14%)</title><rect x="750.3" y="209" width="60.6" height="15.0" fill="rgb(222,138,52)" rx="2" ry="2" />
<text text-anchor="" x="753.25" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_..</text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.03%)</title><rect x="713.5" y="49" width="0.3" height="15.0" fill="rgb(241,1,53)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.03%)</title><rect x="642.0" y="385" width="0.4" height="15.0" fill="rgb(244,49,17)" rx="2" ry="2" />
<text text-anchor="" x="645.03" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="463.5" y="465" width="0.3" height="15.0" fill="rgb(249,104,45)" rx="2" ry="2" />
<text text-anchor="" x="466.46" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (14 samples, 0.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (14 samples, 0.43%)</title><rect x="887.3" y="353" width="5.1" height="15.0" fill="rgb(228,86,51)" rx="2" ry="2" />
<text text-anchor="" x="890.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (11 samples, 0.34%)</title><rect x="691.4" y="321" width="4.0" height="15.0" fill="rgb(213,149,24)" rx="2" ry="2" />
<text text-anchor="" x="694.45" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scheduler_tick (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (2 samples, 0.06%)</title><rect x="714.2" y="161" width="0.7" height="15.0" fill="rgb(248,191,5)" rx="2" ry="2" />
<text text-anchor="" x="717.18" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.12%)</title><rect x="374.7" y="65" width="1.5" height="15.0" fill="rgb(224,197,46)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (5 samples, 0.15%)</title><rect x="511.8" y="289" width="1.8" height="15.0" fill="rgb(233,5,53)" rx="2" ry="2" />
<text text-anchor="" x="514.80" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.03%)</title><rect x="228.6" y="225" width="0.4" height="15.0" fill="rgb(228,130,44)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.03%)</title><rect x="53.3" y="433" width="0.4" height="15.0" fill="rgb(206,99,53)" rx="2" ry="2" />
<text text-anchor="" x="56.29" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (2 samples, 0.06%)</title><rect x="450.1" y="465" width="0.7" height="15.0" fill="rgb(254,140,5)" rx="2" ry="2" />
<text text-anchor="" x="453.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (3 samples, 0.09%)</title><rect x="828.9" y="289" width="1.1" height="15.0" fill="rgb(208,134,30)" rx="2" ry="2" />
<text text-anchor="" x="831.89" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clone (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clone (8 samples, 0.24%)</title><rect x="13.2" y="513" width="2.9" height="15.0" fill="rgb(224,121,53)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__init_cpu_features (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__init_cpu_features (1 samples, 0.03%)</title><rect x="376.9" y="497" width="0.3" height="15.0" fill="rgb(215,19,45)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.03%)</title><rect x="229.0" y="337" width="0.3" height="15.0" fill="rgb(212,123,51)" rx="2" ry="2" />
<text text-anchor="" x="231.97" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('delayed_work_timer_fn (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>delayed_work_timer_fn (1 samples, 0.03%)</title><rect x="160.8" y="305" width="0.4" height="15.0" fill="rgb(247,88,24)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (4 samples, 0.12%)</title><rect x="713.5" y="289" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (73 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (73 samples, 2.23%)</title><rect x="176.7" y="401" width="26.3" height="15.0" fill="rgb(252,58,7)" rx="2" ry="2" />
<text text-anchor="" x="179.66" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (11 samples, 0.34%)</title><rect x="888.1" y="321" width="3.9" height="15.0" fill="rgb(207,101,8)" rx="2" ry="2" />
<text text-anchor="" x="891.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_recvmsg (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recvmsg (10 samples, 0.31%)</title><rect x="970.3" y="369" width="3.6" height="15.0" fill="rgb(213,47,28)" rx="2" ry="2" />
<text text-anchor="" x="973.31" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (2 samples, 0.06%)</title><rect x="428.8" y="433" width="0.7" height="15.0" fill="rgb(217,136,34)" rx="2" ry="2" />
<text text-anchor="" x="431.83" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.03%)</title><rect x="21.5" y="497" width="0.4" height="15.0" fill="rgb(243,98,49)" rx="2" ry="2" />
<text text-anchor="" x="24.54" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.03%)</title><rect x="899.6" y="289" width="0.4" height="15.0" fill="rgb(231,228,39)" rx="2" ry="2" />
<text text-anchor="" x="902.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (72 samples, 2.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (72 samples, 2.20%)</title><rect x="177.0" y="337" width="26.0" height="15.0" fill="rgb(247,117,49)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('kill_pid_info (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kill_pid_info (1 samples, 0.03%)</title><rect x="177.0" y="225" width="0.4" height="15.0" fill="rgb(219,97,19)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.03%)</title><rect x="624.7" y="273" width="0.4" height="15.0" fill="rgb(243,195,21)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (2 samples, 0.06%)</title><rect x="887.3" y="321" width="0.8" height="15.0" fill="rgb(213,26,16)" rx="2" ry="2" />
<text text-anchor="" x="890.33" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::GetNextMessageSize (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::GetNextMessageSize (3 samples, 0.09%)</title><rect x="980.0" y="385" width="1.1" height="15.0" fill="rgb(229,135,17)" rx="2" ry="2" />
<text text-anchor="" x="983.05" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (6 samples, 0.18%)</title><rect x="480.4" y="449" width="2.2" height="15.0" fill="rgb(217,167,25)" rx="2" ry="2" />
<text text-anchor="" x="483.41" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (2 samples, 0.06%)</title><rect x="16.1" y="513" width="0.8" height="15.0" fill="rgb(236,161,11)" rx="2" ry="2" />
<text text-anchor="" x="19.13" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (2 samples, 0.06%)</title><rect x="220.0" y="353" width="0.7" height="15.0" fill="rgb(209,135,15)" rx="2" ry="2" />
<text text-anchor="" x="222.95" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (4 samples, 0.12%)</title><rect x="285.6" y="305" width="1.5" height="15.0" fill="rgb(210,26,12)" rx="2" ry="2" />
<text text-anchor="" x="288.61" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_munmap (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_munmap (1 samples, 0.03%)</title><rect x="17.9" y="465" width="0.4" height="15.0" fill="rgb(236,180,45)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::~Waiter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::~Waiter (1 samples, 0.03%)</title><rect x="175.2" y="465" width="0.4" height="15.0" fill="rgb(205,94,26)" rx="2" ry="2" />
<text text-anchor="" x="178.22" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (3 samples, 0.09%)</title><rect x="713.8" y="257" width="1.1" height="15.0" fill="rgb(240,61,16)" rx="2" ry="2" />
<text text-anchor="" x="716.82" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (18 samples, 0.55%)</title><rect x="213.5" y="353" width="6.5" height="15.0" fill="rgb(253,14,54)" rx="2" ry="2" />
<text text-anchor="" x="216.46" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (2 samples, 0.06%)</title><rect x="598.0" y="417" width="0.7" height="15.0" fill="rgb(254,201,38)" rx="2" ry="2" />
<text text-anchor="" x="601.02" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (5 samples, 0.15%)</title><rect x="306.5" y="161" width="1.8" height="15.0" fill="rgb(226,149,18)" rx="2" ry="2" />
<text text-anchor="" x="309.53" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.03%)</title><rect x="228.6" y="193" width="0.4" height="15.0" fill="rgb(213,166,32)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (111 samples, 3.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (111 samples, 3.39%)</title><rect x="483.7" y="481" width="40.0" height="15.0" fill="rgb(236,208,15)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="264.7" y="321" width="0.3" height="15.0" fill="rgb(214,69,3)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (83 samples, 2.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (83 samples, 2.54%)</title><rect x="112.5" y="289" width="29.9" height="15.0" fill="rgb(224,18,36)" rx="2" ry="2" />
<text text-anchor="" x="115.45" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ac..</text>
</g>
<g class="func_g" onmouseover="s('update_blocked_averages (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.03%)</title><rect x="814.5" y="273" width="0.3" height="15.0" fill="rgb(224,83,53)" rx="2" ry="2" />
<text text-anchor="" x="817.46" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (2 samples, 0.06%)</title><rect x="42.1" y="417" width="0.7" height="15.0" fill="rgb(246,99,34)" rx="2" ry="2" />
<text text-anchor="" x="45.11" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_init (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_init (3 samples, 0.09%)</title><rect x="472.5" y="481" width="1.1" height="15.0" fill="rgb(218,54,2)" rx="2" ry="2" />
<text text-anchor="" x="475.48" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.06%)</title><rect x="639.9" y="369" width="0.7" height="15.0" fill="rgb(227,143,47)" rx="2" ry="2" />
<text text-anchor="" x="642.86" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_wakeup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.03%)</title><rect x="397.8" y="433" width="0.4" height="15.0" fill="rgb(220,98,21)" rx="2" ry="2" />
<text text-anchor="" x="400.80" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (6 samples, 0.18%)</title><rect x="812.7" y="289" width="2.1" height="15.0" fill="rgb(213,160,43)" rx="2" ry="2" />
<text text-anchor="" x="815.66" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_setup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (1 samples, 0.03%)</title><rect x="362.1" y="289" width="0.3" height="15.0" fill="rgb(243,121,21)" rx="2" ry="2" />
<text text-anchor="" x="365.09" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg (343 samples, 10.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (343 samples, 10.49%)</title><rect x="38.5" y="465" width="123.7" height="15.0" fill="rgb(244,77,18)" rx="2" ry="2" />
<text text-anchor="" x="41.50" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_sendmsg</text>
</g>
<g class="func_g" onmouseover="s('wake_up_worker (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_worker (1 samples, 0.03%)</title><rect x="713.5" y="145" width="0.3" height="15.0" fill="rgb(206,191,23)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.24%)</title><rect x="13.2" y="385" width="2.9" height="15.0" fill="rgb(212,9,14)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1 samples, 0.03%)</title><rect x="16.9" y="513" width="0.3" height="15.0" fill="rgb(207,195,6)" rx="2" ry="2" />
<text text-anchor="" x="19.85" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (25 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (25 samples, 0.76%)</title><rect x="413.0" y="513" width="9.0" height="15.0" fill="rgb(229,174,5)" rx="2" ry="2" />
<text text-anchor="" x="415.95" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_wp_page (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_wp_page (1 samples, 0.03%)</title><rect x="376.9" y="417" width="0.3" height="15.0" fill="rgb(225,42,51)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (31 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (31 samples, 0.95%)</title><rect x="448.3" y="497" width="11.2" height="15.0" fill="rgb(233,66,13)" rx="2" ry="2" />
<text text-anchor="" x="451.31" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (11 samples, 0.34%)</title><rect x="524.8" y="497" width="4.0" height="15.0" fill="rgb(208,157,21)" rx="2" ry="2" />
<text text-anchor="" x="527.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (77 samples, 2.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (77 samples, 2.35%)</title><rect x="175.6" y="465" width="27.8" height="15.0" fill="rgb(247,61,21)" rx="2" ry="2" />
<text text-anchor="" x="178.58" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('target_load (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>target_load (1 samples, 0.03%)</title><rect x="813.7" y="241" width="0.4" height="15.0" fill="rgb(214,216,29)" rx="2" ry="2" />
<text text-anchor="" x="816.74" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (84 samples, 2.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (84 samples, 2.57%)</title><rect x="486.5" y="385" width="30.3" height="15.0" fill="rgb(237,125,51)" rx="2" ry="2" />
<text text-anchor="" x="489.55" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s('fput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.03%)</title><rect x="969.6" y="321" width="0.3" height="15.0" fill="rgb(236,42,2)" rx="2" ry="2" />
<text text-anchor="" x="972.58" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="11.8" y="193" width="1.4" height="15.0" fill="rgb(210,216,38)" rx="2" ry="2" />
<text text-anchor="" x="14.80" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="397.8" y="449" width="0.4" height="15.0" fill="rgb(214,184,36)" rx="2" ry="2" />
<text text-anchor="" x="400.80" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (11 samples, 0.34%)</title><rect x="955.2" y="241" width="3.9" height="15.0" fill="rgb(230,72,21)" rx="2" ry="2" />
<text text-anchor="" x="958.15" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (7 samples, 0.21%)</title><rect x="858.1" y="401" width="2.5" height="15.0" fill="rgb(246,54,2)" rx="2" ry="2" />
<text text-anchor="" x="861.11" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (9 samples, 0.28%)</title><rect x="308.3" y="161" width="3.3" height="15.0" fill="rgb(254,16,6)" rx="2" ry="2" />
<text text-anchor="" x="311.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.03%)</title><rect x="991.2" y="353" width="0.4" height="15.0" fill="rgb(206,219,23)" rx="2" ry="2" />
<text text-anchor="" x="994.23" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.03%)</title><rect x="238.4" y="257" width="0.3" height="15.0" fill="rgb(238,155,11)" rx="2" ry="2" />
<text text-anchor="" x="241.35" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (2 samples, 0.06%)</title><rect x="877.6" y="353" width="0.7" height="15.0" fill="rgb(239,214,12)" rx="2" ry="2" />
<text text-anchor="" x="880.59" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (10 samples, 0.31%)</title><rect x="671.2" y="353" width="3.7" height="15.0" fill="rgb(237,32,49)" rx="2" ry="2" />
<text text-anchor="" x="674.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="1120.7" y="49" width="0.4" height="15.0" fill="rgb(234,36,19)" rx="2" ry="2" />
<text text-anchor="" x="1123.74" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (8 samples, 0.24%)</title><rect x="838.6" y="369" width="2.9" height="15.0" fill="rgb(226,153,51)" rx="2" ry="2" />
<text text-anchor="" x="841.63" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (7 samples, 0.21%)</title><rect x="252.1" y="337" width="2.5" height="15.0" fill="rgb(213,106,47)" rx="2" ry="2" />
<text text-anchor="" x="255.06" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.03%)</title><rect x="261.8" y="353" width="0.4" height="15.0" fill="rgb(244,223,22)" rx="2" ry="2" />
<text text-anchor="" x="264.80" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.03%)</title><rect x="202.6" y="273" width="0.4" height="15.0" fill="rgb(220,184,1)" rx="2" ry="2" />
<text text-anchor="" x="205.64" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (10 samples, 0.31%)</title><rect x="820.2" y="209" width="3.6" height="15.0" fill="rgb(227,215,4)" rx="2" ry="2" />
<text text-anchor="" x="823.24" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (5 samples, 0.15%)</title><rect x="353.4" y="145" width="1.8" height="15.0" fill="rgb(225,178,4)" rx="2" ry="2" />
<text text-anchor="" x="356.43" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="491.6" y="289" width="0.4" height="15.0" fill="rgb(208,111,38)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (168 samples, 5.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (168 samples, 5.14%)</title><rect x="750.3" y="193" width="60.6" height="15.0" fill="rgb(245,31,8)" rx="2" ry="2" />
<text text-anchor="" x="753.25" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >native..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (6 samples, 0.18%)</title><rect x="371.8" y="369" width="2.2" height="15.0" fill="rgb(245,23,50)" rx="2" ry="2" />
<text text-anchor="" x="374.83" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (3 samples, 0.09%)</title><rect x="928.8" y="209" width="1.1" height="15.0" fill="rgb(238,214,20)" rx="2" ry="2" />
<text text-anchor="" x="931.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_wait@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait@plt (1 samples, 0.03%)</title><rect x="1183.9" y="417" width="0.3" height="15.0" fill="rgb(234,185,41)" rx="2" ry="2" />
<text text-anchor="" x="1186.87" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pm_relax (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (2 samples, 0.06%)</title><rect x="663.7" y="353" width="0.7" height="15.0" fill="rgb(230,8,11)" rx="2" ry="2" />
<text text-anchor="" x="666.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (3 samples, 0.09%)</title><rect x="134.5" y="225" width="1.0" height="15.0" fill="rgb(218,32,39)" rx="2" ry="2" />
<text text-anchor="" x="137.46" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Waiter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Waiter (1 samples, 0.03%)</title><rect x="445.4" y="513" width="0.4" height="15.0" fill="rgb(245,154,27)" rx="2" ry="2" />
<text text-anchor="" x="448.42" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (22 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (22 samples, 0.67%)</title><rect x="492.0" y="369" width="7.9" height="15.0" fill="rgb(236,201,23)" rx="2" ry="2" />
<text text-anchor="" x="494.96" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_destroy@@GLIBC_2.3.2 (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_destroy@@GLIBC_2.3.2 (3 samples, 0.09%)</title><rect x="531.3" y="513" width="1.1" height="15.0" fill="rgb(234,3,54)" rx="2" ry="2" />
<text text-anchor="" x="534.28" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.03%)</title><rect x="563.0" y="529" width="0.4" height="15.0" fill="rgb(245,157,31)" rx="2" ry="2" />
<text text-anchor="" x="566.02" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_aux_ctx (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_aux_ctx (1 samples, 0.03%)</title><rect x="17.6" y="369" width="0.3" height="15.0" fill="rgb(244,64,36)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_process (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.03%)</title><rect x="713.5" y="129" width="0.3" height="15.0" fill="rgb(245,134,2)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (35 samples, 1.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (35 samples, 1.07%)</title><rect x="628.7" y="385" width="12.6" height="15.0" fill="rgb(222,102,11)" rx="2" ry="2" />
<text text-anchor="" x="631.68" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unmap_page_range (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unmap_page_range (1 samples, 0.03%)</title><rect x="17.9" y="401" width="0.4" height="15.0" fill="rgb(243,212,44)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (38 samples, 1.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (38 samples, 1.16%)</title><rect x="300.8" y="225" width="13.7" height="15.0" fill="rgb(237,109,44)" rx="2" ry="2" />
<text text-anchor="" x="303.76" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_munmap (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_munmap (1 samples, 0.03%)</title><rect x="17.9" y="481" width="0.4" height="15.0" fill="rgb(236,15,9)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_unlock_usercnt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_unlock_usercnt (1 samples, 0.03%)</title><rect x="264.0" y="353" width="0.3" height="15.0" fill="rgb(220,8,38)" rx="2" ry="2" />
<text text-anchor="" x="266.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.03%)</title><rect x="482.6" y="433" width="0.3" height="15.0" fill="rgb(224,148,16)" rx="2" ry="2" />
<text text-anchor="" x="485.58" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (167 samples, 5.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (167 samples, 5.11%)</title><rect x="296.4" y="241" width="60.3" height="15.0" fill="rgb(211,148,43)" rx="2" ry="2" />
<text text-anchor="" x="299.43" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sche..</text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (3 samples, 0.09%)</title><rect x="603.8" y="433" width="1.1" height="15.0" fill="rgb(215,123,13)" rx="2" ry="2" />
<text text-anchor="" x="606.79" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="337" width="1.8" height="15.0" fill="rgb(227,42,27)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_idle (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (1 samples, 0.03%)</title><rect x="831.1" y="305" width="0.3" height="15.0" fill="rgb(237,228,17)" rx="2" ry="2" />
<text text-anchor="" x="834.06" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (377 samples, 11.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (377 samples, 11.53%)</title><rect x="1009.3" y="289" width="136.0" height="15.0" fill="rgb(250,199,9)" rx="2" ry="2" />
<text text-anchor="" x="1012.27" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Loc..</text>
</g>
<g class="func_g" onmouseover="s('raw_notifier_call_chain (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>raw_notifier_call_chain (1 samples, 0.03%)</title><rect x="264.7" y="161" width="0.3" height="15.0" fill="rgb(235,136,8)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (1 samples, 0.03%)</title><rect x="624.7" y="241" width="0.4" height="15.0" fill="rgb(242,142,14)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (6 samples, 0.18%)</title><rect x="741.6" y="257" width="2.2" height="15.0" fill="rgb(212,160,39)" rx="2" ry="2" />
<text text-anchor="" x="744.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (373 samples, 11.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (373 samples, 11.40%)</title><rect x="699.7" y="353" width="134.6" height="15.0" fill="rgb(235,2,33)" rx="2" ry="2" />
<text text-anchor="" x="702.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule_hrtimeou..</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (89 samples, 2.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (89 samples, 2.72%)</title><rect x="318.4" y="161" width="32.1" height="15.0" fill="rgb(249,110,31)" rx="2" ry="2" />
<text text-anchor="" x="321.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x8..</text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (1 samples, 0.03%)</title><rect x="514.3" y="369" width="0.4" height="15.0" fill="rgb(236,190,10)" rx="2" ry="2" />
<text text-anchor="" x="517.32" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (7 samples, 0.21%)</title><rect x="905.0" y="241" width="2.5" height="15.0" fill="rgb(220,207,6)" rx="2" ry="2" />
<text text-anchor="" x="908.01" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (2 samples, 0.06%)</title><rect x="433.2" y="417" width="0.7" height="15.0" fill="rgb(214,22,46)" rx="2" ry="2" />
<text text-anchor="" x="436.15" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.03%)</title><rect x="1153.2" y="321" width="0.4" height="15.0" fill="rgb(231,66,9)" rx="2" ry="2" />
<text text-anchor="" x="1156.20" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (31 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (31 samples, 0.95%)</title><rect x="250.6" y="353" width="11.2" height="15.0" fill="rgb(243,67,37)" rx="2" ry="2" />
<text text-anchor="" x="253.62" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (16 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (16 samples, 0.49%)</title><rect x="1135.5" y="257" width="5.8" height="15.0" fill="rgb(217,129,4)" rx="2" ry="2" />
<text text-anchor="" x="1138.53" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_tail (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_tail (8 samples, 0.24%)</title><rect x="13.2" y="481" width="2.9" height="15.0" fill="rgb(226,11,45)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_free (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (3 samples, 0.09%)</title><rect x="920.5" y="209" width="1.1" height="15.0" fill="rgb(242,162,19)" rx="2" ry="2" />
<text text-anchor="" x="923.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.03%)</title><rect x="374.4" y="273" width="0.3" height="15.0" fill="rgb(250,36,39)" rx="2" ry="2" />
<text text-anchor="" x="377.35" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (1 samples, 0.03%)</title><rect x="311.2" y="129" width="0.4" height="15.0" fill="rgb(223,89,2)" rx="2" ry="2" />
<text text-anchor="" x="314.22" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (7 samples, 0.21%)</title><rect x="236.2" y="289" width="2.5" height="15.0" fill="rgb(231,207,10)" rx="2" ry="2" />
<text text-anchor="" x="239.19" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_aux (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_aux (1 samples, 0.03%)</title><rect x="17.6" y="385" width="0.3" height="15.0" fill="rgb(245,198,6)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="513" width="1.8" height="15.0" fill="rgb(238,219,49)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (5 samples, 0.15%)</title><rect x="604.9" y="433" width="1.8" height="15.0" fill="rgb(237,168,21)" rx="2" ry="2" />
<text text-anchor="" x="607.87" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (173 samples, 5.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (173 samples, 5.29%)</title><rect x="750.3" y="257" width="62.4" height="15.0" fill="rgb(240,113,52)" rx="2" ry="2" />
<text text-anchor="" x="753.25" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_e..</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="10.0" y="353" width="1.4" height="15.0" fill="rgb(238,11,31)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (86 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (86 samples, 2.63%)</title><rect x="172.3" y="481" width="31.1" height="15.0" fill="rgb(220,3,21)" rx="2" ry="2" />
<text text-anchor="" x="175.34" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (11 samples, 0.34%)</title><rect x="1063.4" y="177" width="3.9" height="15.0" fill="rgb(249,4,5)" rx="2" ry="2" />
<text text-anchor="" x="1066.38" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (1 samples, 0.03%)</title><rect x="948.7" y="241" width="0.3" height="15.0" fill="rgb(211,163,17)" rx="2" ry="2" />
<text text-anchor="" x="951.66" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (1 samples, 0.03%)</title><rect x="491.6" y="241" width="0.4" height="15.0" fill="rgb(231,91,54)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_comm_output (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_comm_output (1 samples, 0.03%)</title><rect x="17.6" y="353" width="0.3" height="15.0" fill="rgb(215,143,16)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="374.7" y="177" width="1.5" height="15.0" fill="rgb(253,156,2)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_start_main (565 samples, 17.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (565 samples, 17.27%)</title><rect x="172.3" y="529" width="203.9" height="15.0" fill="rgb(252,182,11)" rx="2" ry="2" />
<text text-anchor="" x="175.34" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (4 samples, 0.12%)</title><rect x="357.4" y="241" width="1.4" height="15.0" fill="rgb(226,80,38)" rx="2" ry="2" />
<text text-anchor="" x="360.40" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (1 samples, 0.03%)</title><rect x="699.4" y="353" width="0.3" height="15.0" fill="rgb(212,190,13)" rx="2" ry="2" />
<text text-anchor="" x="702.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (4 samples, 0.12%)</title><rect x="978.6" y="385" width="1.4" height="15.0" fill="rgb(252,188,34)" rx="2" ry="2" />
<text text-anchor="" x="981.60" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.03%)</title><rect x="419.1" y="481" width="0.3" height="15.0" fill="rgb(223,158,39)" rx="2" ry="2" />
<text text-anchor="" x="422.09" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="174.1" y="401" width="0.8" height="15.0" fill="rgb(207,151,9)" rx="2" ry="2" />
<text text-anchor="" x="177.14" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (211 samples, 6.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (211 samples, 6.45%)</title><rect x="893.5" y="321" width="76.1" height="15.0" fill="rgb(244,94,15)" rx="2" ry="2" />
<text text-anchor="" x="896.47" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sys_re..</text>
</g>
<g class="func_g" onmouseover="s('irq_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.03%)</title><rect x="713.5" y="257" width="0.3" height="15.0" fill="rgb(216,195,0)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="463.5" y="497" width="0.3" height="15.0" fill="rgb(233,153,49)" rx="2" ry="2" />
<text text-anchor="" x="466.46" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (5 samples, 0.15%)</title><rect x="646.7" y="401" width="1.8" height="15.0" fill="rgb(224,70,42)" rx="2" ry="2" />
<text text-anchor="" x="649.72" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (18 samples, 0.55%)</title><rect x="255.3" y="321" width="6.5" height="15.0" fill="rgb(247,213,16)" rx="2" ry="2" />
<text text-anchor="" x="258.31" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (4 samples, 0.12%)</title><rect x="1120.4" y="65" width="1.4" height="15.0" fill="rgb(250,6,0)" rx="2" ry="2" />
<text text-anchor="" x="1123.38" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (2 samples, 0.06%)</title><rect x="596.2" y="417" width="0.7" height="15.0" fill="rgb(218,72,3)" rx="2" ry="2" />
<text text-anchor="" x="599.21" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="445.1" y="481" width="0.3" height="15.0" fill="rgb(248,168,39)" rx="2" ry="2" />
<text text-anchor="" x="448.06" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sendto (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (5 samples, 0.15%)</title><rect x="22.6" y="513" width="1.8" height="15.0" fill="rgb(208,183,40)" rx="2" ry="2" />
<text text-anchor="" x="25.63" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.03%)</title><rect x="1113.9" y="49" width="0.3" height="15.0" fill="rgb(205,130,34)" rx="2" ry="2" />
<text text-anchor="" x="1116.88" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.18%)</title><rect x="59.1" y="417" width="2.1" height="15.0" fill="rgb(253,82,31)" rx="2" ry="2" />
<text text-anchor="" x="62.06" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (15 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (15 samples, 0.46%)</title><rect x="963.8" y="305" width="5.4" height="15.0" fill="rgb(215,65,14)" rx="2" ry="2" />
<text text-anchor="" x="966.81" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (4 samples, 0.12%)</title><rect x="521.2" y="401" width="1.4" height="15.0" fill="rgb(227,7,10)" rx="2" ry="2" />
<text text-anchor="" x="524.18" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kretprobe_trampoline (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (4 samples, 0.12%)</title><rect x="10.0" y="513" width="1.4" height="15.0" fill="rgb(231,152,30)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::AddAwakable (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (3 samples, 0.09%)</title><rect x="266.1" y="353" width="1.1" height="15.0" fill="rgb(219,218,45)" rx="2" ry="2" />
<text text-anchor="" x="269.13" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (1 samples, 0.03%)</title><rect x="313.7" y="193" width="0.4" height="15.0" fill="rgb(248,121,3)" rx="2" ry="2" />
<text text-anchor="" x="316.75" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (5 samples, 0.15%)</title><rect x="959.1" y="241" width="1.8" height="15.0" fill="rgb(251,220,40)" rx="2" ry="2" />
<text text-anchor="" x="962.12" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (7 samples, 0.21%)</title><rect x="727.5" y="225" width="2.5" height="15.0" fill="rgb(213,192,19)" rx="2" ry="2" />
<text text-anchor="" x="730.52" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Remove (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (2 samples, 0.06%)</title><rect x="464.5" y="481" width="0.8" height="15.0" fill="rgb(236,154,49)" rx="2" ry="2" />
<text text-anchor="" x="467.54" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (8 samples, 0.24%)</title><rect x="246.3" y="337" width="2.9" height="15.0" fill="rgb(215,163,27)" rx="2" ry="2" />
<text text-anchor="" x="249.29" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (516 samples, 15.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (516 samples, 15.77%)</title><rect x="981.5" y="385" width="186.1" height="15.0" fill="rgb(212,136,18)" rx="2" ry="2" />
<text text-anchor="" x="984.49" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::RawChannel..</text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.03%)</title><rect x="254.2" y="289" width="0.4" height="15.0" fill="rgb(241,165,17)" rx="2" ry="2" />
<text text-anchor="" x="257.23" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (1 samples, 0.03%)</title><rect x="918.4" y="257" width="0.3" height="15.0" fill="rgb(240,157,23)" rx="2" ry="2" />
<text text-anchor="" x="921.36" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (2 samples, 0.06%)</title><rect x="683.9" y="225" width="0.7" height="15.0" fill="rgb(248,153,52)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (15 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (15 samples, 0.46%)</title><rect x="1178.5" y="417" width="5.4" height="15.0" fill="rgb(236,228,36)" rx="2" ry="2" />
<text text-anchor="" x="1181.46" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__cmpxchg_double_slab.isra.40 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__cmpxchg_double_slab.isra.40 (1 samples, 0.03%)</title><rect x="76.7" y="353" width="0.4" height="15.0" fill="rgb(250,103,43)" rx="2" ry="2" />
<text text-anchor="" x="79.74" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.06%)</title><rect x="141.3" y="209" width="0.7" height="15.0" fill="rgb(254,126,9)" rx="2" ry="2" />
<text text-anchor="" x="144.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.06%)</title><rect x="1029.8" y="241" width="0.8" height="15.0" fill="rgb(214,88,14)" rx="2" ry="2" />
<text text-anchor="" x="1032.83" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (1 samples, 0.03%)</title><rect x="17.6" y="481" width="0.3" height="15.0" fill="rgb(252,227,30)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (3 samples, 0.09%)</title><rect x="510.7" y="321" width="1.1" height="15.0" fill="rgb(221,40,18)" rx="2" ry="2" />
<text text-anchor="" x="513.72" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.06%)</title><rect x="283.1" y="337" width="0.7" height="15.0" fill="rgb(238,167,3)" rx="2" ry="2" />
<text text-anchor="" x="286.08" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::HasOneRef (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (1 samples, 0.03%)</title><rect x="857.8" y="401" width="0.3" height="15.0" fill="rgb(250,117,29)" rx="2" ry="2" />
<text text-anchor="" x="860.75" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_enable_asynccancel (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (7 samples, 0.21%)</title><rect x="844.8" y="417" width="2.5" height="15.0" fill="rgb(253,158,13)" rx="2" ry="2" />
<text text-anchor="" x="847.77" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (1 samples, 0.03%)</title><rect x="202.6" y="241" width="0.4" height="15.0" fill="rgb(215,91,39)" rx="2" ry="2" />
<text text-anchor="" x="205.64" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="713.8" y="161" width="0.4" height="15.0" fill="rgb(228,135,6)" rx="2" ry="2" />
<text text-anchor="" x="716.82" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('run_timer_softirq (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>run_timer_softirq (1 samples, 0.03%)</title><rect x="713.5" y="225" width="0.3" height="15.0" fill="rgb(206,86,33)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (3 samples, 0.09%)</title><rect x="141.0" y="257" width="1.0" height="15.0" fill="rgb(250,186,35)" rx="2" ry="2" />
<text text-anchor="" x="143.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (272 samples, 8.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (272 samples, 8.32%)</title><rect x="1037.4" y="241" width="98.1" height="15.0" fill="rgb(217,148,11)" rx="2" ry="2" />
<text text-anchor="" x="1040.40" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (9 samples, 0.28%)</title><rect x="1001.3" y="321" width="3.3" height="15.0" fill="rgb(224,207,14)" rx="2" ry="2" />
<text text-anchor="" x="1004.33" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_value_locked (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_value_locked (1 samples, 0.03%)</title><rect x="361.7" y="257" width="0.4" height="15.0" fill="rgb(225,14,24)" rx="2" ry="2" />
<text text-anchor="" x="364.73" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (5 samples, 0.15%)</title><rect x="818.1" y="177" width="1.8" height="15.0" fill="rgb(238,93,49)" rx="2" ry="2" />
<text text-anchor="" x="821.07" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.03%)</title><rect x="134.1" y="225" width="0.4" height="15.0" fill="rgb(252,170,24)" rx="2" ry="2" />
<text text-anchor="" x="137.10" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.03%)</title><rect x="713.8" y="177" width="0.4" height="15.0" fill="rgb(239,8,51)" rx="2" ry="2" />
<text text-anchor="" x="716.82" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="532.4" y="513" width="0.7" height="15.0" fill="rgb(218,2,42)" rx="2" ry="2" />
<text text-anchor="" x="535.36" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelWrite (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelWrite (2 samples, 0.06%)</title><rect x="429.9" y="433" width="0.7" height="15.0" fill="rgb(228,152,19)" rx="2" ry="2" />
<text text-anchor="" x="432.91" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (3 samples, 0.09%)</title><rect x="159.3" y="401" width="1.1" height="15.0" fill="rgb(214,157,1)" rx="2" ry="2" />
<text text-anchor="" x="162.35" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (3 samples, 0.09%)</title><rect x="713.8" y="225" width="1.1" height="15.0" fill="rgb(210,87,44)" rx="2" ry="2" />
<text text-anchor="" x="716.82" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (3 samples, 0.09%)</title><rect x="420.9" y="497" width="1.1" height="15.0" fill="rgb(217,12,15)" rx="2" ry="2" />
<text text-anchor="" x="423.89" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (2 samples, 0.06%)</title><rect x="419.8" y="497" width="0.7" height="15.0" fill="rgb(214,82,37)" rx="2" ry="2" />
<text text-anchor="" x="422.81" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (5 samples, 0.15%)</title><rect x="451.9" y="481" width="1.8" height="15.0" fill="rgb(228,43,15)" rx="2" ry="2" />
<text text-anchor="" x="454.91" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.06%)</title><rect x="452.6" y="449" width="0.8" height="15.0" fill="rgb(215,210,24)" rx="2" ry="2" />
<text text-anchor="" x="455.64" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Wait (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Wait (4 samples, 0.12%)</title><rect x="275.9" y="353" width="1.4" height="15.0" fill="rgb(235,204,31)" rx="2" ry="2" />
<text text-anchor="" x="278.87" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestInfo::Run (479 samples, 14.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestInfo::Run (479 samples, 14.64%)</title><rect x="203.4" y="433" width="172.8" height="15.0" fill="rgb(227,31,40)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::TestInfo::Run</text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (68 samples, 2.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (68 samples, 2.08%)</title><rect x="177.7" y="289" width="24.6" height="15.0" fill="rgb(219,16,47)" rx="2" ry="2" />
<text text-anchor="" x="180.75" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="624.7" y="305" width="0.4" height="15.0" fill="rgb(225,81,34)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.03%)</title><rect x="1035.6" y="209" width="0.4" height="15.0" fill="rgb(252,164,2)" rx="2" ry="2" />
<text text-anchor="" x="1038.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1165.8" y="337" width="0.4" height="15.0" fill="rgb(214,124,21)" rx="2" ry="2" />
<text text-anchor="" x="1168.83" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.12%)</title><rect x="374.7" y="273" width="1.5" height="15.0" fill="rgb(230,169,33)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (47 samples, 1.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (47 samples, 1.44%)</title><rect x="931.7" y="193" width="17.0" height="15.0" fill="rgb(231,118,27)" rx="2" ry="2" />
<text text-anchor="" x="934.71" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scheduler_tick (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (1 samples, 0.03%)</title><rect x="293.2" y="145" width="0.3" height="15.0" fill="rgb(225,25,32)" rx="2" ry="2" />
<text text-anchor="" x="296.19" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (23 samples, 0.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (23 samples, 0.70%)</title><rect x="267.6" y="337" width="8.3" height="15.0" fill="rgb(253,166,8)" rx="2" ry="2" />
<text text-anchor="" x="270.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (10 samples, 0.31%)</title><rect x="680.3" y="337" width="3.6" height="15.0" fill="rgb(227,32,51)" rx="2" ry="2" />
<text text-anchor="" x="683.27" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kretprobe_trampoline (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (1 samples, 0.03%)</title><rect x="17.6" y="513" width="0.3" height="15.0" fill="rgb(216,90,46)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (1 samples, 0.03%)</title><rect x="851.3" y="401" width="0.3" height="15.0" fill="rgb(236,78,17)" rx="2" ry="2" />
<text text-anchor="" x="854.26" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (5 samples, 0.15%)</title><rect x="353.4" y="161" width="1.8" height="15.0" fill="rgb(214,13,23)" rx="2" ry="2" />
<text text-anchor="" x="356.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(':12175 (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>:12175 (4 samples, 0.12%)</title><rect x="10.0" y="545" width="1.4" height="15.0" fill="rgb(209,73,8)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.03%)</title><rect x="640.9" y="369" width="0.4" height="15.0" fill="rgb(205,210,7)" rx="2" ry="2" />
<text text-anchor="" x="643.94" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="451.2" y="465" width="0.4" height="15.0" fill="rgb(221,66,19)" rx="2" ry="2" />
<text text-anchor="" x="454.19" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (2 samples, 0.06%)</title><rect x="116.8" y="241" width="0.7" height="15.0" fill="rgb(228,129,13)" rx="2" ry="2" />
<text text-anchor="" x="119.78" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (2 samples, 0.06%)</title><rect x="1187.8" y="417" width="0.8" height="15.0" fill="rgb(251,98,10)" rx="2" ry="2" />
<text text-anchor="" x="1190.84" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.03%)</title><rect x="174.9" y="433" width="0.3" height="15.0" fill="rgb(219,73,2)" rx="2" ry="2" />
<text text-anchor="" x="177.86" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (5 samples, 0.15%)</title><rect x="814.8" y="257" width="1.8" height="15.0" fill="rgb(222,66,21)" rx="2" ry="2" />
<text text-anchor="" x="817.82" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (15 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (15 samples, 0.46%)</title><rect x="283.8" y="337" width="5.4" height="15.0" fill="rgb(248,166,35)" rx="2" ry="2" />
<text text-anchor="" x="286.81" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('start_thread (1,737 samples, 53.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1,737 samples, 53.10%)</title><rect x="563.4" y="529" width="626.6" height="15.0" fill="rgb(242,46,1)" rx="2" ry="2" />
<text text-anchor="" x="566.38" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.03%)</title><rect x="491.6" y="273" width="0.4" height="15.0" fill="rgb(242,94,21)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (535 samples, 16.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (535 samples, 16.36%)</title><rect x="648.5" y="385" width="193.0" height="15.0" fill="rgb(218,122,8)" rx="2" ry="2" />
<text text-anchor="" x="651.52" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_epoll_wait</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (1 samples, 0.03%)</title><rect x="374.0" y="385" width="0.4" height="15.0" fill="rgb(223,12,50)" rx="2" ry="2" />
<text text-anchor="" x="376.99" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake_op (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (1 samples, 0.03%)</title><rect x="1135.2" y="209" width="0.3" height="15.0" fill="rgb(234,57,53)" rx="2" ry="2" />
<text text-anchor="" x="1138.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.24%)</title><rect x="13.2" y="465" width="2.9" height="15.0" fill="rgb(207,182,35)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (8 samples, 0.24%)</title><rect x="105.6" y="289" width="2.9" height="15.0" fill="rgb(237,183,20)" rx="2" ry="2" />
<text text-anchor="" x="108.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="264.7" y="337" width="0.3" height="15.0" fill="rgb(230,5,15)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (8 samples, 0.24%)</title><rect x="510.7" y="337" width="2.9" height="15.0" fill="rgb(244,67,40)" rx="2" ry="2" />
<text text-anchor="" x="513.72" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.03%)</title><rect x="830.0" y="305" width="0.3" height="15.0" fill="rgb(205,97,52)" rx="2" ry="2" />
<text text-anchor="" x="832.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (7 samples, 0.21%)</title><rect x="252.1" y="321" width="2.5" height="15.0" fill="rgb(223,2,52)" rx="2" ry="2" />
<text text-anchor="" x="255.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (81 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (81 samples, 2.48%)</title><rect x="714.9" y="289" width="29.2" height="15.0" fill="rgb(244,80,16)" rx="2" ry="2" />
<text text-anchor="" x="717.90" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >de..</text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="293.2" y="225" width="0.3" height="15.0" fill="rgb(238,132,8)" rx="2" ry="2" />
<text text-anchor="" x="296.19" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (4 samples, 0.12%)</title><rect x="10.0" y="481" width="1.4" height="15.0" fill="rgb(242,96,37)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (8 samples, 0.24%)</title><rect x="643.8" y="401" width="2.9" height="15.0" fill="rgb(234,149,7)" rx="2" ry="2" />
<text text-anchor="" x="646.83" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.03%)</title><rect x="1028.0" y="209" width="0.4" height="15.0" fill="rgb(252,154,10)" rx="2" ry="2" />
<text text-anchor="" x="1031.03" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="624.7" y="337" width="0.4" height="15.0" fill="rgb(227,201,39)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_from_iovec (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (5 samples, 0.15%)</title><rect x="56.9" y="433" width="1.8" height="15.0" fill="rgb(217,46,12)" rx="2" ry="2" />
<text text-anchor="" x="59.90" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (1 samples, 0.03%)</title><rect x="677.0" y="337" width="0.4" height="15.0" fill="rgb(238,141,34)" rx="2" ry="2" />
<text text-anchor="" x="680.02" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (1 samples, 0.03%)</title><rect x="743.8" y="273" width="0.3" height="15.0" fill="rgb(236,199,13)" rx="2" ry="2" />
<text text-anchor="" x="746.76" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::ChannelThread::Start (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::ChannelThread::Start (5 samples, 0.15%)</title><rect x="374.4" y="369" width="1.8" height="15.0" fill="rgb(240,197,6)" rx="2" ry="2" />
<text text-anchor="" x="377.35" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (14 samples, 0.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (14 samples, 0.43%)</title><rect x="508.9" y="353" width="5.1" height="15.0" fill="rgb(218,229,53)" rx="2" ry="2" />
<text text-anchor="" x="511.91" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (9 samples, 0.28%)</title><rect x="1032.4" y="209" width="3.2" height="15.0" fill="rgb(239,180,54)" rx="2" ry="2" />
<text text-anchor="" x="1035.35" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.12%)</title><rect x="952.3" y="241" width="1.4" height="15.0" fill="rgb(248,53,44)" rx="2" ry="2" />
<text text-anchor="" x="955.27" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pm_relax (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (2 samples, 0.06%)</title><rect x="676.3" y="337" width="0.7" height="15.0" fill="rgb(234,94,15)" rx="2" ry="2" />
<text text-anchor="" x="679.30" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (2 samples, 0.06%)</title><rect x="256.0" y="289" width="0.8" height="15.0" fill="rgb(227,181,15)" rx="2" ry="2" />
<text text-anchor="" x="259.03" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (6 samples, 0.18%)</title><rect x="885.2" y="353" width="2.1" height="15.0" fill="rgb(214,194,44)" rx="2" ry="2" />
<text text-anchor="" x="888.17" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="952.3" y="225" width="1.4" height="15.0" fill="rgb(218,190,9)" rx="2" ry="2" />
<text text-anchor="" x="955.27" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (3 samples, 0.09%)</title><rect x="626.9" y="337" width="1.1" height="15.0" fill="rgb(215,163,40)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (17 samples, 0.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (17 samples, 0.52%)</title><rect x="501.3" y="273" width="6.2" height="15.0" fill="rgb(216,105,26)" rx="2" ry="2" />
<text text-anchor="" x="504.34" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_comm (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_comm (4 samples, 0.12%)</title><rect x="10.0" y="401" width="1.4" height="15.0" fill="rgb(215,157,30)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__queue_work (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__queue_work (1 samples, 0.03%)</title><rect x="713.5" y="177" width="0.3" height="15.0" fill="rgb(212,52,52)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (6 samples, 0.18%)</title><rect x="1175.9" y="417" width="2.2" height="15.0" fill="rgb(228,36,50)" rx="2" ry="2" />
<text text-anchor="" x="1178.93" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (318 samples, 9.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (318 samples, 9.72%)</title><rect x="1020.8" y="257" width="114.7" height="15.0" fill="rgb(232,174,44)" rx="2" ry="2" />
<text text-anchor="" x="1023.81" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthread_cond_s..</text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (2 samples, 0.06%)</title><rect x="683.9" y="241" width="0.7" height="15.0" fill="rgb(242,18,22)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::RemoveAwakable (24 samples, 0.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (24 samples, 0.73%)</title><rect x="267.2" y="353" width="8.7" height="15.0" fill="rgb(227,216,30)" rx="2" ry="2" />
<text text-anchor="" x="270.21" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (4 samples, 0.12%)</title><rect x="302.9" y="177" width="1.5" height="15.0" fill="rgb(231,82,54)" rx="2" ry="2" />
<text text-anchor="" x="305.93" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="511.4" y="273" width="0.4" height="15.0" fill="rgb(236,91,53)" rx="2" ry="2" />
<text text-anchor="" x="514.44" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (6 samples, 0.18%)</title><rect x="997.0" y="337" width="2.2" height="15.0" fill="rgb(246,149,38)" rx="2" ry="2" />
<text text-anchor="" x="1000.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="892.0" y="337" width="0.4" height="15.0" fill="rgb(219,89,21)" rx="2" ry="2" />
<text text-anchor="" x="895.02" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (6 samples, 0.18%)</title><rect x="1171.2" y="401" width="2.2" height="15.0" fill="rgb(223,22,45)" rx="2" ry="2" />
<text text-anchor="" x="1174.24" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (198 samples, 6.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (198 samples, 6.05%)</title><rect x="291.0" y="321" width="71.4" height="15.0" fill="rgb(218,2,30)" rx="2" ry="2" />
<text text-anchor="" x="294.02" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_futex</text>
</g>
<g class="func_g" onmouseover="s('system_call (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (3 samples, 0.09%)</title><rect x="876.5" y="353" width="1.1" height="15.0" fill="rgb(252,44,31)" rx="2" ry="2" />
<text text-anchor="" x="879.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (195 samples, 5.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (195 samples, 5.96%)</title><rect x="90.8" y="417" width="70.4" height="15.0" fill="rgb(248,41,14)" rx="2" ry="2" />
<text text-anchor="" x="93.81" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake_..</text>
</g>
<g class="func_g" onmouseover="s('auditsys (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (2 samples, 0.06%)</title><rect x="477.9" y="481" width="0.7" height="15.0" fill="rgb(206,184,52)" rx="2" ry="2" />
<text text-anchor="" x="480.89" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (4 samples, 0.12%)</title><rect x="258.2" y="273" width="1.4" height="15.0" fill="rgb(235,123,10)" rx="2" ry="2" />
<text text-anchor="" x="261.19" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (96 samples, 2.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (96 samples, 2.93%)</title><rect x="485.8" y="417" width="34.7" height="15.0" fill="rgb(205,228,6)" rx="2" ry="2" />
<text text-anchor="" x="488.82" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s('__schedule (351 samples, 10.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (351 samples, 10.73%)</title><rect x="703.4" y="305" width="126.6" height="15.0" fill="rgb(221,139,28)" rx="2" ry="2" />
<text text-anchor="" x="706.35" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__schedule</text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (22 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (22 samples, 0.67%)</title><rect x="903.6" y="257" width="7.9" height="15.0" fill="rgb(247,111,0)" rx="2" ry="2" />
<text text-anchor="" x="906.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_enter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_enter (1 samples, 0.03%)</title><rect x="1081.4" y="97" width="0.4" height="15.0" fill="rgb(236,68,19)" rx="2" ry="2" />
<text text-anchor="" x="1084.42" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="536.0" y="465" width="1.4" height="15.0" fill="rgb(226,177,37)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (3 samples, 0.09%)</title><rect x="1028.4" y="209" width="1.1" height="15.0" fill="rgb(211,121,17)" rx="2" ry="2" />
<text text-anchor="" x="1031.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_page_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.03%)</title><rect x="11.4" y="273" width="0.4" height="15.0" fill="rgb(229,44,26)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (1 samples, 0.03%)</title><rect x="211.7" y="353" width="0.3" height="15.0" fill="rgb(242,0,54)" rx="2" ry="2" />
<text text-anchor="" x="214.66" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (10 samples, 0.31%)</title><rect x="352.0" y="193" width="3.6" height="15.0" fill="rgb(209,156,28)" rx="2" ry="2" />
<text text-anchor="" x="354.99" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.03%)</title><rect x="723.6" y="241" width="0.3" height="15.0" fill="rgb(205,67,2)" rx="2" ry="2" />
<text text-anchor="" x="726.56" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (1 samples, 0.03%)</title><rect x="462.0" y="497" width="0.4" height="15.0" fill="rgb(207,179,49)" rx="2" ry="2" />
<text text-anchor="" x="465.01" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (1 samples, 0.03%)</title><rect x="72.0" y="401" width="0.4" height="15.0" fill="rgb(226,61,13)" rx="2" ry="2" />
<text text-anchor="" x="75.05" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (4 samples, 0.12%)</title><rect x="244.8" y="321" width="1.5" height="15.0" fill="rgb(248,31,46)" rx="2" ry="2" />
<text text-anchor="" x="247.85" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.03%)</title><rect x="160.4" y="401" width="0.4" height="15.0" fill="rgb(209,112,32)" rx="2" ry="2" />
<text text-anchor="" x="163.43" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_sys_call (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_sys_call (1 samples, 0.03%)</title><rect x="628.0" y="401" width="0.3" height="15.0" fill="rgb(210,175,0)" rx="2" ry="2" />
<text text-anchor="" x="630.96" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (15 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (15 samples, 0.46%)</title><rect x="454.1" y="449" width="5.4" height="15.0" fill="rgb(241,101,7)" rx="2" ry="2" />
<text text-anchor="" x="457.08" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (2 samples, 0.06%)</title><rect x="350.5" y="225" width="0.8" height="15.0" fill="rgb(225,0,0)" rx="2" ry="2" />
<text text-anchor="" x="353.54" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.03%)</title><rect x="1036.3" y="225" width="0.4" height="15.0" fill="rgb(247,161,31)" rx="2" ry="2" />
<text text-anchor="" x="1039.32" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (13 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (13 samples, 0.40%)</title><rect x="283.8" y="321" width="4.7" height="15.0" fill="rgb(214,40,49)" rx="2" ry="2" />
<text text-anchor="" x="286.81" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (2 samples, 0.06%)</title><rect x="1119.3" y="65" width="0.7" height="15.0" fill="rgb(239,200,9)" rx="2" ry="2" />
<text text-anchor="" x="1122.29" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (28 samples, 0.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (28 samples, 0.86%)</title><rect x="814.8" y="289" width="10.1" height="15.0" fill="rgb(223,184,40)" rx="2" ry="2" />
<text text-anchor="" x="817.82" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (1 samples, 0.03%)</title><rect x="713.5" y="97" width="0.3" height="15.0" fill="rgb(208,209,52)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (4 samples, 0.12%)</title><rect x="212.0" y="353" width="1.5" height="15.0" fill="rgb(223,185,44)" rx="2" ry="2" />
<text text-anchor="" x="215.02" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (1 samples, 0.03%)</title><rect x="438.6" y="465" width="0.3" height="15.0" fill="rgb(227,200,25)" rx="2" ry="2" />
<text text-anchor="" x="441.57" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (3 samples, 0.09%)</title><rect x="496.6" y="305" width="1.1" height="15.0" fill="rgb(253,139,20)" rx="2" ry="2" />
<text text-anchor="" x="499.65" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (47 samples, 1.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (47 samples, 1.44%)</title><rect x="229.3" y="337" width="17.0" height="15.0" fill="rgb(214,191,19)" rx="2" ry="2" />
<text text-anchor="" x="232.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (2 samples, 0.06%)</title><rect x="450.1" y="449" width="0.7" height="15.0" fill="rgb(236,40,35)" rx="2" ry="2" />
<text text-anchor="" x="453.11" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (1 samples, 0.03%)</title><rect x="203.0" y="449" width="0.4" height="15.0" fill="rgb(228,77,53)" rx="2" ry="2" />
<text text-anchor="" x="206.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TestIOThread::Start (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestIOThread::Start (5 samples, 0.15%)</title><rect x="374.4" y="353" width="1.8" height="15.0" fill="rgb(240,44,47)" rx="2" ry="2" />
<text text-anchor="" x="377.35" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (10 samples, 0.31%)</title><rect x="42.8" y="417" width="3.6" height="15.0" fill="rgb(207,133,15)" rx="2" ry="2" />
<text text-anchor="" x="45.83" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="482.6" y="449" width="0.3" height="15.0" fill="rgb(247,184,2)" rx="2" ry="2" />
<text text-anchor="" x="485.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.03%)</title><rect x="463.5" y="385" width="0.3" height="15.0" fill="rgb(238,143,27)" rx="2" ry="2" />
<text text-anchor="" x="466.46" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (194 samples, 5.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (194 samples, 5.93%)</title><rect x="292.1" y="289" width="70.0" height="15.0" fill="rgb(227,90,52)" rx="2" ry="2" />
<text text-anchor="" x="295.10" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_w..</text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (18 samples, 0.55%)</title><rect x="501.0" y="321" width="6.5" height="15.0" fill="rgb(236,81,0)" rx="2" ry="2" />
<text text-anchor="" x="503.98" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="1004.6" y="321" width="0.3" height="15.0" fill="rgb(244,160,39)" rx="2" ry="2" />
<text text-anchor="" x="1007.58" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="536.0" y="401" width="1.4" height="15.0" fill="rgb(206,101,43)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.03%)</title><rect x="160.8" y="193" width="0.4" height="15.0" fill="rgb(206,25,6)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (1 samples, 0.03%)</title><rect x="202.6" y="305" width="0.4" height="15.0" fill="rgb(220,166,36)" rx="2" ry="2" />
<text text-anchor="" x="205.64" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_user (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (1 samples, 0.03%)</title><rect x="563.0" y="497" width="0.4" height="15.0" fill="rgb(214,133,42)" rx="2" ry="2" />
<text text-anchor="" x="566.02" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (43 samples, 1.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (43 samples, 1.31%)</title><rect x="426.7" y="481" width="15.5" height="15.0" fill="rgb(220,69,52)" rx="2" ry="2" />
<text text-anchor="" x="429.66" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (1 samples, 0.03%)</title><rect x="999.5" y="337" width="0.4" height="15.0" fill="rgb(249,171,19)" rx="2" ry="2" />
<text text-anchor="" x="1002.53" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.12%)</title><rect x="10.0" y="529" width="1.4" height="15.0" fill="rgb(249,3,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (18 samples, 0.55%)</title><rect x="501.0" y="337" width="6.5" height="15.0" fill="rgb(217,36,10)" rx="2" ry="2" />
<text text-anchor="" x="503.98" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (214 samples, 6.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (214 samples, 6.54%)</title><rect x="893.1" y="353" width="77.2" height="15.0" fill="rgb(220,160,25)" rx="2" ry="2" />
<text text-anchor="" x="896.11" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_c..</text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.03%)</title><rect x="511.4" y="257" width="0.4" height="15.0" fill="rgb(212,159,14)" rx="2" ry="2" />
<text text-anchor="" x="514.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="463.5" y="481" width="0.3" height="15.0" fill="rgb(243,93,45)" rx="2" ry="2" />
<text text-anchor="" x="466.46" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.03%)</title><rect x="833.6" y="305" width="0.3" height="15.0" fill="rgb(223,156,0)" rx="2" ry="2" />
<text text-anchor="" x="836.58" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (5 samples, 0.15%)</title><rect x="1120.0" y="81" width="1.8" height="15.0" fill="rgb(248,79,12)" rx="2" ry="2" />
<text text-anchor="" x="1123.02" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (14 samples, 0.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (14 samples, 0.43%)</title><rect x="923.8" y="209" width="5.0" height="15.0" fill="rgb(225,222,38)" rx="2" ry="2" />
<text text-anchor="" x="926.77" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (3 samples, 0.09%)</title><rect x="170.9" y="481" width="1.1" height="15.0" fill="rgb(233,143,38)" rx="2" ry="2" />
<text text-anchor="" x="173.89" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (2 samples, 0.06%)</title><rect x="749.5" y="257" width="0.8" height="15.0" fill="rgb(251,167,24)" rx="2" ry="2" />
<text text-anchor="" x="752.53" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.03%)</title><rect x="1072.4" y="145" width="0.4" height="15.0" fill="rgb(218,219,54)" rx="2" ry="2" />
<text text-anchor="" x="1075.40" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (3 samples, 0.09%)</title><rect x="282.0" y="337" width="1.1" height="15.0" fill="rgb(211,124,5)" rx="2" ry="2" />
<text text-anchor="" x="285.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (17 samples, 0.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (17 samples, 0.52%)</title><rect x="501.3" y="289" width="6.2" height="15.0" fill="rgb(250,97,16)" rx="2" ry="2" />
<text text-anchor="" x="504.34" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (1 samples, 0.03%)</title><rect x="173.8" y="385" width="0.3" height="15.0" fill="rgb(233,144,35)" rx="2" ry="2" />
<text text-anchor="" x="176.78" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.03%)</title><rect x="713.5" y="81" width="0.3" height="15.0" fill="rgb(212,206,4)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.06%)</title><rect x="288.5" y="321" width="0.7" height="15.0" fill="rgb(205,207,53)" rx="2" ry="2" />
<text text-anchor="" x="291.50" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (4 samples, 0.12%)</title><rect x="10.0" y="465" width="1.4" height="15.0" fill="rgb(228,190,42)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="1036.0" y="209" width="0.3" height="15.0" fill="rgb(209,131,40)" rx="2" ry="2" />
<text text-anchor="" x="1038.96" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (3 samples, 0.09%)</title><rect x="713.8" y="241" width="1.1" height="15.0" fill="rgb(218,58,38)" rx="2" ry="2" />
<text text-anchor="" x="716.82" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="433" width="1.8" height="15.0" fill="rgb(226,38,27)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::AddAwakable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (1 samples, 0.03%)</title><rect x="463.8" y="497" width="0.4" height="15.0" fill="rgb(241,12,4)" rx="2" ry="2" />
<text text-anchor="" x="466.82" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (2 samples, 0.06%)</title><rect x="830.3" y="305" width="0.8" height="15.0" fill="rgb(217,178,9)" rx="2" ry="2" />
<text text-anchor="" x="833.34" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (9 samples, 0.28%)</title><rect x="816.6" y="241" width="3.3" height="15.0" fill="rgb(230,183,18)" rx="2" ry="2" />
<text text-anchor="" x="819.63" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (2 samples, 0.06%)</title><rect x="683.9" y="289" width="0.7" height="15.0" fill="rgb(222,60,5)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (2 samples, 0.06%)</title><rect x="468.9" y="465" width="0.7" height="15.0" fill="rgb(248,93,38)" rx="2" ry="2" />
<text text-anchor="" x="471.87" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (1 samples, 0.03%)</title><rect x="1019.7" y="193" width="0.4" height="15.0" fill="rgb(254,83,25)" rx="2" ry="2" />
<text text-anchor="" x="1022.73" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (3 samples, 0.09%)</title><rect x="742.7" y="241" width="1.1" height="15.0" fill="rgb(212,15,35)" rx="2" ry="2" />
<text text-anchor="" x="745.68" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="264.7" y="257" width="0.3" height="15.0" fill="rgb(239,205,38)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (1 samples, 0.03%)</title><rect x="173.4" y="449" width="0.4" height="15.0" fill="rgb(208,147,14)" rx="2" ry="2" />
<text text-anchor="" x="176.42" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (68 samples, 2.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (68 samples, 2.08%)</title><rect x="177.7" y="305" width="24.6" height="15.0" fill="rgb(234,110,12)" rx="2" ry="2" />
<text text-anchor="" x="180.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('futex_wake_op (257 samples, 7.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (257 samples, 7.86%)</title><rect x="1042.1" y="193" width="92.7" height="15.0" fill="rgb(224,224,35)" rx="2" ry="2" />
<text text-anchor="" x="1045.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_wake_op</text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (2 samples, 0.06%)</title><rect x="290.3" y="337" width="0.7" height="15.0" fill="rgb(240,138,36)" rx="2" ry="2" />
<text text-anchor="" x="293.30" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (4 samples, 0.12%)</title><rect x="224.3" y="353" width="1.4" height="15.0" fill="rgb(248,180,14)" rx="2" ry="2" />
<text text-anchor="" x="227.28" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (174 samples, 5.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (174 samples, 5.32%)</title><rect x="296.1" y="257" width="62.7" height="15.0" fill="rgb(243,138,8)" rx="2" ry="2" />
<text text-anchor="" x="299.07" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.03%)</title><rect x="1111.7" y="33" width="0.4" height="15.0" fill="rgb(240,223,15)" rx="2" ry="2" />
<text text-anchor="" x="1114.72" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (6 samples, 0.18%)</title><rect x="868.9" y="401" width="2.2" height="15.0" fill="rgb(243,49,18)" rx="2" ry="2" />
<text text-anchor="" x="871.94" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="374.7" y="161" width="1.5" height="15.0" fill="rgb(236,143,8)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (213 samples, 6.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (213 samples, 6.51%)</title><rect x="84.3" y="433" width="76.9" height="15.0" fill="rgb(220,52,39)" rx="2" ry="2" />
<text text-anchor="" x="87.31" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_def..</text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.03%)</title><rect x="851.6" y="401" width="0.4" height="15.0" fill="rgb(248,50,16)" rx="2" ry="2" />
<text text-anchor="" x="854.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (329 samples, 10.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (329 samples, 10.06%)</title><rect x="249.5" y="369" width="118.7" height="15.0" fill="rgb(215,122,26)" rx="2" ry="2" />
<text text-anchor="" x="252.54" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::..</text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (2 samples, 0.06%)</title><rect x="516.1" y="369" width="0.7" height="15.0" fill="rgb(218,7,23)" rx="2" ry="2" />
<text text-anchor="" x="519.13" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (407 samples, 12.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (407 samples, 12.44%)</title><rect x="1004.9" y="321" width="146.9" height="15.0" fill="rgb(230,97,46)" rx="2" ry="2" />
<text text-anchor="" x="1007.94" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Chan..</text>
</g>
<g class="func_g" onmouseover="s('base::ConditionVariable::ConditionVariable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::ConditionVariable::ConditionVariable (1 samples, 0.03%)</title><rect x="277.3" y="337" width="0.4" height="15.0" fill="rgb(218,68,52)" rx="2" ry="2" />
<text text-anchor="" x="280.31" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (18 samples, 0.55%)</title><rect x="40.3" y="433" width="6.5" height="15.0" fill="rgb(232,132,22)" rx="2" ry="2" />
<text text-anchor="" x="43.30" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (5 samples, 0.15%)</title><rect x="414.0" y="497" width="1.8" height="15.0" fill="rgb(228,48,44)" rx="2" ry="2" />
<text text-anchor="" x="417.04" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::internal::UnitTestImpl::RunAllTests (479 samples, 14.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::internal::UnitTestImpl::RunAllTests (479 samples, 14.64%)</title><rect x="203.4" y="465" width="172.8" height="15.0" fill="rgb(213,226,6)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::internal::Uni..</text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (2 samples, 0.06%)</title><rect x="154.7" y="305" width="0.7" height="15.0" fill="rgb(235,2,31)" rx="2" ry="2" />
<text text-anchor="" x="157.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.03%)</title><rect x="311.2" y="145" width="0.4" height="15.0" fill="rgb(231,73,14)" rx="2" ry="2" />
<text text-anchor="" x="314.22" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (9 samples, 0.28%)</title><rect x="430.6" y="433" width="3.3" height="15.0" fill="rgb(209,113,30)" rx="2" ry="2" />
<text text-anchor="" x="433.63" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.31%)</title><rect x="155.4" y="369" width="3.6" height="15.0" fill="rgb(230,157,23)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (100 samples, 3.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (100 samples, 3.06%)</title><rect x="314.5" y="225" width="36.0" height="15.0" fill="rgb(240,202,41)" rx="2" ry="2" />
<text text-anchor="" x="317.47" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fin..</text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (89 samples, 2.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (89 samples, 2.72%)</title><rect x="318.4" y="193" width="32.1" height="15.0" fill="rgb(215,164,38)" rx="2" ry="2" />
<text text-anchor="" x="321.44" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pe..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (5 samples, 0.15%)</title><rect x="96.9" y="305" width="1.8" height="15.0" fill="rgb(248,107,39)" rx="2" ry="2" />
<text text-anchor="" x="99.94" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_careful (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (1 samples, 0.03%)</title><rect x="563.0" y="513" width="0.4" height="15.0" fill="rgb(239,120,30)" rx="2" ry="2" />
<text text-anchor="" x="566.02" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (16 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (16 samples, 0.49%)</title><rect x="453.7" y="481" width="5.8" height="15.0" fill="rgb(226,91,52)" rx="2" ry="2" />
<text text-anchor="" x="456.72" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="321" width="1.8" height="15.0" fill="rgb(220,227,52)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (52 samples, 1.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (52 samples, 1.59%)</title><rect x="929.9" y="209" width="18.8" height="15.0" fill="rgb(220,144,5)" rx="2" ry="2" />
<text text-anchor="" x="932.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (12 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (12 samples, 0.37%)</title><rect x="479.0" y="481" width="4.3" height="15.0" fill="rgb(214,161,35)" rx="2" ry="2" />
<text text-anchor="" x="481.97" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.12%)</title><rect x="537.8" y="369" width="1.4" height="15.0" fill="rgb(225,189,36)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.12%)</title><rect x="571.0" y="433" width="1.4" height="15.0" fill="rgb(207,196,22)" rx="2" ry="2" />
<text text-anchor="" x="573.96" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (171 samples, 5.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (171 samples, 5.23%)</title><rect x="900.0" y="289" width="61.6" height="15.0" fill="rgb(250,20,18)" rx="2" ry="2" />
<text text-anchor="" x="902.96" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_r..</text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (23 samples, 0.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (23 samples, 0.70%)</title><rect x="731.1" y="225" width="8.3" height="15.0" fill="rgb(206,9,1)" rx="2" ry="2" />
<text text-anchor="" x="734.13" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (5 samples, 0.15%)</title><rect x="11.4" y="305" width="1.8" height="15.0" fill="rgb(208,5,22)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (15 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (15 samples, 0.46%)</title><rect x="621.5" y="401" width="5.4" height="15.0" fill="rgb(228,162,18)" rx="2" ry="2" />
<text text-anchor="" x="624.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (2 samples, 0.06%)</title><rect x="683.9" y="257" width="0.7" height="15.0" fill="rgb(247,138,37)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_vsyscall (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_vsyscall (1 samples, 0.03%)</title><rect x="228.6" y="161" width="0.4" height="15.0" fill="rgb(219,223,22)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.03%)</title><rect x="563.0" y="465" width="0.4" height="15.0" fill="rgb(252,56,36)" rx="2" ry="2" />
<text text-anchor="" x="566.02" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (3 samples, 0.09%)</title><rect x="1157.9" y="353" width="1.1" height="15.0" fill="rgb(254,80,35)" rx="2" ry="2" />
<text text-anchor="" x="1160.89" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (11 samples, 0.34%)</title><rect x="853.8" y="401" width="4.0" height="15.0" fill="rgb(212,149,34)" rx="2" ry="2" />
<text text-anchor="" x="856.78" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.03%)</title><rect x="730.4" y="225" width="0.4" height="15.0" fill="rgb(244,68,39)" rx="2" ry="2" />
<text text-anchor="" x="733.41" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Remove (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (2 samples, 0.06%)</title><rect x="273.0" y="321" width="0.7" height="15.0" fill="rgb(210,1,54)" rx="2" ry="2" />
<text text-anchor="" x="275.98" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.03%)</title><rect x="433.9" y="433" width="0.3" height="15.0" fill="rgb(216,80,42)" rx="2" ry="2" />
<text text-anchor="" x="436.88" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (1 samples, 0.03%)</title><rect x="603.4" y="433" width="0.4" height="15.0" fill="rgb(210,81,29)" rx="2" ry="2" />
<text text-anchor="" x="606.43" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (5 samples, 0.15%)</title><rect x="1027.7" y="225" width="1.8" height="15.0" fill="rgb(240,113,47)" rx="2" ry="2" />
<text text-anchor="" x="1030.66" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (2 samples, 0.06%)</title><rect x="31.3" y="481" width="0.7" height="15.0" fill="rgb(238,58,23)" rx="2" ry="2" />
<text text-anchor="" x="34.28" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.03%)</title><rect x="814.1" y="257" width="0.4" height="15.0" fill="rgb(210,174,42)" rx="2" ry="2" />
<text text-anchor="" x="817.10" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.03%)</title><rect x="1113.5" y="49" width="0.4" height="15.0" fill="rgb(234,135,36)" rx="2" ry="2" />
<text text-anchor="" x="1116.52" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (1 samples, 0.03%)</title><rect x="356.3" y="225" width="0.4" height="15.0" fill="rgb(209,216,30)" rx="2" ry="2" />
<text text-anchor="" x="359.32" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="952.3" y="209" width="1.4" height="15.0" fill="rgb(226,27,11)" rx="2" ry="2" />
<text text-anchor="" x="955.27" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (4 samples, 0.12%)</title><rect x="1151.8" y="321" width="1.4" height="15.0" fill="rgb(242,19,22)" rx="2" ry="2" />
<text text-anchor="" x="1154.76" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.06%)</title><rect x="100.9" y="305" width="0.7" height="15.0" fill="rgb(222,212,39)" rx="2" ry="2" />
<text text-anchor="" x="103.91" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (4 samples, 0.12%)</title><rect x="352.0" y="177" width="1.4" height="15.0" fill="rgb(243,184,5)" rx="2" ry="2" />
<text text-anchor="" x="354.99" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('select_task_rq_fair (26 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (26 samples, 0.79%)</title><rect x="101.6" y="305" width="9.4" height="15.0" fill="rgb(231,190,29)" rx="2" ry="2" />
<text text-anchor="" x="104.63" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (6 samples, 0.18%)</title><rect x="1153.9" y="321" width="2.2" height="15.0" fill="rgb(249,182,22)" rx="2" ry="2" />
<text text-anchor="" x="1156.93" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (454 samples, 13.88%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (454 samples, 13.88%)</title><rect x="994.1" y="353" width="163.8" height="15.0" fill="rgb(227,137,25)" rx="2" ry="2" />
<text text-anchor="" x="997.11" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Channel..</text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.03%)</title><rect x="114.3" y="257" width="0.3" height="15.0" fill="rgb(231,53,20)" rx="2" ry="2" />
<text text-anchor="" x="117.26" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (14 samples, 0.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (14 samples, 0.43%)</title><rect x="508.9" y="369" width="5.1" height="15.0" fill="rgb(239,153,1)" rx="2" ry="2" />
<text text-anchor="" x="511.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (9 samples, 0.28%)</title><rect x="1073.5" y="129" width="3.2" height="15.0" fill="rgb(230,23,37)" rx="2" ry="2" />
<text text-anchor="" x="1076.48" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (4 samples, 0.12%)</title><rect x="906.1" y="225" width="1.4" height="15.0" fill="rgb(220,203,3)" rx="2" ry="2" />
<text text-anchor="" x="909.09" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (231 samples, 7.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (231 samples, 7.06%)</title><rect x="279.1" y="353" width="83.3" height="15.0" fill="rgb(233,219,43)" rx="2" ry="2" />
<text text-anchor="" x="282.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthread_c..</text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (5 samples, 0.15%)</title><rect x="818.1" y="193" width="1.8" height="15.0" fill="rgb(226,227,8)" rx="2" ry="2" />
<text text-anchor="" x="821.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="177.0" y="289" width="0.4" height="15.0" fill="rgb(253,38,5)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (4 samples, 0.12%)</title><rect x="497.7" y="289" width="1.5" height="15.0" fill="rgb(220,119,8)" rx="2" ry="2" />
<text text-anchor="" x="500.73" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.03%)</title><rect x="478.6" y="481" width="0.4" height="15.0" fill="rgb(248,94,5)" rx="2" ry="2" />
<text text-anchor="" x="481.61" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="292.8" y="273" width="0.4" height="15.0" fill="rgb(222,136,17)" rx="2" ry="2" />
<text text-anchor="" x="295.82" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (139 samples, 4.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (139 samples, 4.25%)</title><rect x="473.6" y="497" width="50.1" height="15.0" fill="rgb(247,143,24)" rx="2" ry="2" />
<text text-anchor="" x="476.56" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthre..</text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (7 samples, 0.21%)</title><rect x="878.3" y="385" width="2.5" height="15.0" fill="rgb(239,150,38)" rx="2" ry="2" />
<text text-anchor="" x="881.32" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="491.6" y="209" width="0.4" height="15.0" fill="rgb(230,192,0)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (2 samples, 0.06%)</title><rect x="522.6" y="401" width="0.7" height="15.0" fill="rgb(225,130,41)" rx="2" ry="2" />
<text text-anchor="" x="525.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (6 samples, 0.18%)</title><rect x="1169.1" y="401" width="2.1" height="15.0" fill="rgb(230,14,31)" rx="2" ry="2" />
<text text-anchor="" x="1172.08" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.06%)</title><rect x="234.4" y="289" width="0.7" height="15.0" fill="rgb(205,48,34)" rx="2" ry="2" />
<text text-anchor="" x="237.38" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (73 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (73 samples, 2.23%)</title><rect x="176.7" y="385" width="26.3" height="15.0" fill="rgb(251,77,36)" rx="2" ry="2" />
<text text-anchor="" x="179.66" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (19 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (19 samples, 0.58%)</title><rect x="40.3" y="449" width="6.9" height="15.0" fill="rgb(230,184,31)" rx="2" ry="2" />
<text text-anchor="" x="43.30" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (72 samples, 2.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (72 samples, 2.20%)</title><rect x="177.0" y="353" width="26.0" height="15.0" fill="rgb(235,8,20)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (3 samples, 0.09%)</title><rect x="456.2" y="417" width="1.1" height="15.0" fill="rgb(212,150,3)" rx="2" ry="2" />
<text text-anchor="" x="459.24" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (1 samples, 0.03%)</title><rect x="740.5" y="225" width="0.4" height="15.0" fill="rgb(226,219,43)" rx="2" ry="2" />
<text text-anchor="" x="743.51" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.03%)</title><rect x="1159.0" y="353" width="0.3" height="15.0" fill="rgb(232,9,14)" rx="2" ry="2" />
<text text-anchor="" x="1161.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (2 samples, 0.06%)</title><rect x="824.2" y="257" width="0.7" height="15.0" fill="rgb(233,148,23)" rx="2" ry="2" />
<text text-anchor="" x="827.20" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (11 samples, 0.34%)</title><rect x="479.3" y="465" width="4.0" height="15.0" fill="rgb(230,38,10)" rx="2" ry="2" />
<text text-anchor="" x="482.33" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (5 samples, 0.15%)</title><rect x="1093.0" y="129" width="1.8" height="15.0" fill="rgb(212,157,42)" rx="2" ry="2" />
<text text-anchor="" x="1095.96" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (1 samples, 0.03%)</title><rect x="922.0" y="225" width="0.3" height="15.0" fill="rgb(235,68,28)" rx="2" ry="2" />
<text text-anchor="" x="924.97" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_page_c (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_page_c (1 samples, 0.03%)</title><rect x="376.9" y="369" width="0.3" height="15.0" fill="rgb(250,218,20)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.03%)</title><rect x="624.7" y="225" width="0.4" height="15.0" fill="rgb(212,204,7)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (12 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (12 samples, 0.37%)</title><rect x="819.9" y="241" width="4.3" height="15.0" fill="rgb(210,156,9)" rx="2" ry="2" />
<text text-anchor="" x="822.87" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (2 samples, 0.06%)</title><rect x="219.2" y="337" width="0.8" height="15.0" fill="rgb(237,24,27)" rx="2" ry="2" />
<text text-anchor="" x="222.23" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg_handler (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg_handler (1 samples, 0.03%)</title><rect x="46.4" y="417" width="0.4" height="15.0" fill="rgb(253,204,0)" rx="2" ry="2" />
<text text-anchor="" x="49.44" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (53 samples, 1.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (53 samples, 1.62%)</title><rect x="426.3" y="497" width="19.1" height="15.0" fill="rgb(214,2,12)" rx="2" ry="2" />
<text text-anchor="" x="429.30" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (272 samples, 8.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (272 samples, 8.32%)</title><rect x="1037.4" y="225" width="98.1" height="15.0" fill="rgb(216,223,51)" rx="2" ry="2" />
<text text-anchor="" x="1040.40" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_futex</text>
</g>
<g class="func_g" onmouseover="s('__libc_disable_asynccancel (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (9 samples, 0.28%)</title><rect x="841.5" y="417" width="3.3" height="15.0" fill="rgb(243,113,50)" rx="2" ry="2" />
<text text-anchor="" x="844.52" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.03%)</title><rect x="641.7" y="385" width="0.3" height="15.0" fill="rgb(209,222,49)" rx="2" ry="2" />
<text text-anchor="" x="644.67" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="244.1" y="305" width="0.4" height="15.0" fill="rgb(244,188,25)" rx="2" ry="2" />
<text text-anchor="" x="247.12" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.03%)</title><rect x="453.4" y="433" width="0.3" height="15.0" fill="rgb(247,116,34)" rx="2" ry="2" />
<text text-anchor="" x="456.36" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.03%)</title><rect x="450.8" y="465" width="0.4" height="15.0" fill="rgb(238,110,0)" rx="2" ry="2" />
<text text-anchor="" x="453.83" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="511.4" y="289" width="0.4" height="15.0" fill="rgb(244,13,27)" rx="2" ry="2" />
<text text-anchor="" x="514.44" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.03%)</title><rect x="228.6" y="241" width="0.4" height="15.0" fill="rgb(212,63,36)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_elf_binary (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (4 samples, 0.12%)</title><rect x="10.0" y="449" width="1.4" height="15.0" fill="rgb(246,43,4)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.03%)</title><rect x="204.8" y="385" width="0.4" height="15.0" fill="rgb(251,46,0)" rx="2" ry="2" />
<text text-anchor="" x="207.80" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (1 samples, 0.03%)</title><rect x="483.3" y="481" width="0.4" height="15.0" fill="rgb(211,51,16)" rx="2" ry="2" />
<text text-anchor="" x="486.30" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_send_sig_info (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_send_sig_info (1 samples, 0.03%)</title><rect x="177.0" y="193" width="0.4" height="15.0" fill="rgb(227,225,29)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('setup_new_exec (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_new_exec (4 samples, 0.12%)</title><rect x="10.0" y="433" width="1.4" height="15.0" fill="rgb(254,41,31)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (3 samples, 0.09%)</title><rect x="1112.1" y="49" width="1.1" height="15.0" fill="rgb(245,215,46)" rx="2" ry="2" />
<text text-anchor="" x="1115.08" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (5 samples, 0.15%)</title><rect x="311.6" y="161" width="1.8" height="15.0" fill="rgb(224,10,5)" rx="2" ry="2" />
<text text-anchor="" x="314.58" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (6 samples, 0.18%)</title><rect x="693.3" y="305" width="2.1" height="15.0" fill="rgb(223,12,25)" rx="2" ry="2" />
<text text-anchor="" x="696.25" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.12%)</title><rect x="1141.3" y="257" width="1.4" height="15.0" fill="rgb(250,83,48)" rx="2" ry="2" />
<text text-anchor="" x="1144.30" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="369" width="1.8" height="15.0" fill="rgb(223,4,14)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (5 samples, 0.15%)</title><rect x="353.4" y="177" width="1.8" height="15.0" fill="rgb(205,155,1)" rx="2" ry="2" />
<text text-anchor="" x="356.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event__output_id_sample (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event__output_id_sample (1 samples, 0.03%)</title><rect x="17.6" y="337" width="0.3" height="15.0" fill="rgb(230,201,13)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.03%)</title><rect x="140.6" y="241" width="0.4" height="15.0" fill="rgb(210,8,9)" rx="2" ry="2" />
<text text-anchor="" x="143.59" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.09%)</title><rect x="370.7" y="369" width="1.1" height="15.0" fill="rgb(237,185,20)" rx="2" ry="2" />
<text text-anchor="" x="373.75" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="249.2" y="337" width="0.3" height="15.0" fill="rgb(235,4,38)" rx="2" ry="2" />
<text text-anchor="" x="252.17" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="30.9" y="481" width="0.4" height="15.0" fill="rgb(232,97,11)" rx="2" ry="2" />
<text text-anchor="" x="33.92" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="876.5" y="385" width="1.8" height="15.0" fill="rgb(205,142,16)" rx="2" ry="2" />
<text text-anchor="" x="879.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (6 samples, 0.18%)</title><rect x="436.4" y="449" width="2.2" height="15.0" fill="rgb(235,73,38)" rx="2" ry="2" />
<text text-anchor="" x="439.40" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (16 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (16 samples, 0.49%)</title><rect x="1030.6" y="225" width="5.7" height="15.0" fill="rgb(244,190,37)" rx="2" ry="2" />
<text text-anchor="" x="1033.55" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (2 samples, 0.06%)</title><rect x="1005.7" y="305" width="0.7" height="15.0" fill="rgb(247,76,15)" rx="2" ry="2" />
<text text-anchor="" x="1008.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (79 samples, 2.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (79 samples, 2.42%)</title><rect x="221.0" y="369" width="28.5" height="15.0" fill="rgb(205,175,19)" rx="2" ry="2" />
<text text-anchor="" x="224.04" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (6 samples, 0.18%)</title><rect x="961.6" y="305" width="2.2" height="15.0" fill="rgb(206,45,45)" rx="2" ry="2" />
<text text-anchor="" x="964.65" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (7 samples, 0.21%)</title><rect x="1163.7" y="353" width="2.5" height="15.0" fill="rgb(252,12,7)" rx="2" ry="2" />
<text text-anchor="" x="1166.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (2 samples, 0.06%)</title><rect x="743.0" y="225" width="0.8" height="15.0" fill="rgb(210,152,44)" rx="2" ry="2" />
<text text-anchor="" x="746.04" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelWrite (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelWrite (2 samples, 0.06%)</title><rect x="235.5" y="289" width="0.7" height="15.0" fill="rgb(219,125,47)" rx="2" ry="2" />
<text text-anchor="" x="238.47" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.03%)</title><rect x="624.7" y="257" width="0.4" height="15.0" fill="rgb(245,185,43)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (2 samples, 0.06%)</title><rect x="42.1" y="401" width="0.7" height="15.0" fill="rgb(248,113,49)" rx="2" ry="2" />
<text text-anchor="" x="45.11" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="973.6" y="337" width="0.3" height="15.0" fill="rgb(208,95,41)" rx="2" ry="2" />
<text text-anchor="" x="976.55" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (2 samples, 0.06%)</title><rect x="83.6" y="417" width="0.7" height="15.0" fill="rgb(233,219,53)" rx="2" ry="2" />
<text text-anchor="" x="86.59" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1 samples, 0.03%)</title><rect x="175.6" y="449" width="0.3" height="15.0" fill="rgb(207,209,10)" rx="2" ry="2" />
<text text-anchor="" x="178.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.03%)</title><rect x="497.4" y="289" width="0.3" height="15.0" fill="rgb(238,153,6)" rx="2" ry="2" />
<text text-anchor="" x="500.37" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unmap_vmas (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unmap_vmas (1 samples, 0.03%)</title><rect x="17.9" y="433" width="0.4" height="15.0" fill="rgb(245,99,17)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (2 samples, 0.06%)</title><rect x="43.9" y="401" width="0.7" height="15.0" fill="rgb(234,128,23)" rx="2" ry="2" />
<text text-anchor="" x="46.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (5 samples, 0.15%)</title><rect x="852.0" y="401" width="1.8" height="15.0" fill="rgb(232,104,39)" rx="2" ry="2" />
<text text-anchor="" x="854.98" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (2 samples, 0.06%)</title><rect x="683.9" y="209" width="0.7" height="15.0" fill="rgb(242,50,48)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (347 samples, 10.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (347 samples, 10.61%)</title><rect x="410.8" y="529" width="125.2" height="15.0" fill="rgb(233,163,27)" rx="2" ry="2" />
<text text-anchor="" x="413.79" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('sys_futex (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.03%)</title><rect x="1019.7" y="225" width="0.4" height="15.0" fill="rgb(226,105,9)" rx="2" ry="2" />
<text text-anchor="" x="1022.73" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="491.6" y="369" width="0.4" height="15.0" fill="rgb(238,64,10)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (2 samples, 0.06%)</title><rect x="300.0" y="225" width="0.8" height="15.0" fill="rgb(230,161,18)" rx="2" ry="2" />
<text text-anchor="" x="303.04" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (489 samples, 14.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (489 samples, 14.95%)</title><rect x="989.8" y="369" width="176.4" height="15.0" fill="rgb(231,59,36)" rx="2" ry="2" />
<text text-anchor="" x="992.79" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Channel:..</text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_init (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_init (1 samples, 0.03%)</title><rect x="278.0" y="337" width="0.4" height="15.0" fill="rgb(235,220,6)" rx="2" ry="2" />
<text text-anchor="" x="281.03" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (1 samples, 0.03%)</title><rect x="497.4" y="273" width="0.3" height="15.0" fill="rgb(232,199,28)" rx="2" ry="2" />
<text text-anchor="" x="500.37" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (1 samples, 0.03%)</title><rect x="318.1" y="193" width="0.3" height="15.0" fill="rgb(238,17,8)" rx="2" ry="2" />
<text text-anchor="" x="321.08" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (3 samples, 0.09%)</title><rect x="713.8" y="209" width="1.1" height="15.0" fill="rgb(239,121,12)" rx="2" ry="2" />
<text text-anchor="" x="716.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="491.6" y="337" width="0.4" height="15.0" fill="rgb(207,75,50)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (3 samples, 0.09%)</title><rect x="507.8" y="369" width="1.1" height="15.0" fill="rgb(222,119,26)" rx="2" ry="2" />
<text text-anchor="" x="510.83" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::AddAwakable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (1 samples, 0.03%)</title><rect x="266.5" y="337" width="0.4" height="15.0" fill="rgb(228,92,37)" rx="2" ry="2" />
<text text-anchor="" x="269.49" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (1 samples, 0.03%)</title><rect x="265.8" y="353" width="0.3" height="15.0" fill="rgb(231,166,38)" rx="2" ry="2" />
<text text-anchor="" x="268.77" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="293.2" y="209" width="0.3" height="15.0" fill="rgb(250,203,12)" rx="2" ry="2" />
<text text-anchor="" x="296.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('trigger_load_balance (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>trigger_load_balance (1 samples, 0.03%)</title><rect x="293.2" y="129" width="0.3" height="15.0" fill="rgb(235,95,40)" rx="2" ry="2" />
<text text-anchor="" x="296.19" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.03%)</title><rect x="436.0" y="433" width="0.4" height="15.0" fill="rgb(246,144,22)" rx="2" ry="2" />
<text text-anchor="" x="439.04" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::RemoveAwakable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (1 samples, 0.03%)</title><rect x="220.7" y="369" width="0.3" height="15.0" fill="rgb(249,51,51)" rx="2" ry="2" />
<text text-anchor="" x="223.68" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="952.3" y="193" width="1.4" height="15.0" fill="rgb(222,110,13)" rx="2" ry="2" />
<text text-anchor="" x="955.27" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (2 samples, 0.06%)</title><rect x="238.0" y="273" width="0.7" height="15.0" fill="rgb(233,191,46)" rx="2" ry="2" />
<text text-anchor="" x="240.99" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.03%)</title><rect x="948.3" y="145" width="0.4" height="15.0" fill="rgb(211,52,38)" rx="2" ry="2" />
<text text-anchor="" x="951.30" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_state (173 samples, 5.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_state (173 samples, 5.29%)</title><rect x="1072.4" y="161" width="62.4" height="15.0" fill="rgb(217,180,32)" rx="2" ry="2" />
<text text-anchor="" x="1075.40" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >wake_u..</text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::~LockImpl (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::~LockImpl (1 samples, 0.03%)</title><rect x="265.4" y="353" width="0.4" height="15.0" fill="rgb(245,18,53)" rx="2" ry="2" />
<text text-anchor="" x="268.41" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (63 samples, 1.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (63 samples, 1.93%)</title><rect x="61.6" y="433" width="22.7" height="15.0" fill="rgb(214,15,5)" rx="2" ry="2" />
<text text-anchor="" x="64.59" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (7 samples, 0.21%)</title><rect x="459.5" y="497" width="2.5" height="15.0" fill="rgb(254,69,42)" rx="2" ry="2" />
<text text-anchor="" x="462.49" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (1,737 samples, 53.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (1,737 samples, 53.10%)</title><rect x="563.4" y="465" width="626.6" height="15.0" fill="rgb(221,159,9)" rx="2" ry="2" />
<text text-anchor="" x="566.38" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::RunLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (37 samples, 1.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (37 samples, 1.13%)</title><rect x="300.8" y="209" width="13.3" height="15.0" fill="rgb(246,156,11)" rx="2" ry="2" />
<text text-anchor="" x="303.76" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::RemoveAwakable (16 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (16 samples, 0.49%)</title><rect x="464.5" y="497" width="5.8" height="15.0" fill="rgb(239,40,12)" rx="2" ry="2" />
<text text-anchor="" x="467.54" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.12%)</title><rect x="536.0" y="369" width="1.4" height="15.0" fill="rgb(242,123,22)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_alloc (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (2 samples, 0.06%)</title><rect x="76.4" y="369" width="0.7" height="15.0" fill="rgb(236,181,33)" rx="2" ry="2" />
<text text-anchor="" x="79.38" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (20 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (20 samples, 0.61%)</title><rect x="632.6" y="369" width="7.3" height="15.0" fill="rgb(216,133,46)" rx="2" ry="2" />
<text text-anchor="" x="635.65" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="11.8" y="257" width="1.4" height="15.0" fill="rgb(251,163,2)" rx="2" ry="2" />
<text text-anchor="" x="14.80" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_getpeersec_dgram (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (2 samples, 0.06%)</title><rect x="56.2" y="433" width="0.7" height="15.0" fill="rgb(216,140,11)" rx="2" ry="2" />
<text text-anchor="" x="59.18" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.03%)</title><rect x="172.7" y="465" width="0.4" height="15.0" fill="rgb(246,94,50)" rx="2" ry="2" />
<text text-anchor="" x="175.70" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (5 samples, 0.15%)</title><rect x="1133.0" y="129" width="1.8" height="15.0" fill="rgb(213,119,51)" rx="2" ry="2" />
<text text-anchor="" x="1136.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_page_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.03%)</title><rect x="376.9" y="465" width="0.3" height="15.0" fill="rgb(223,197,23)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="624.7" y="321" width="0.4" height="15.0" fill="rgb(252,47,16)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('source_load (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>source_load (8 samples, 0.24%)</title><rect x="1090.1" y="113" width="2.9" height="15.0" fill="rgb(239,129,18)" rx="2" ry="2" />
<text text-anchor="" x="1093.07" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (4 samples, 0.12%)</title><rect x="238.7" y="289" width="1.5" height="15.0" fill="rgb(221,198,12)" rx="2" ry="2" />
<text text-anchor="" x="241.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (189 samples, 5.78%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (189 samples, 5.78%)</title><rect x="91.2" y="401" width="68.1" height="15.0" fill="rgb(207,165,4)" rx="2" ry="2" />
<text text-anchor="" x="94.17" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake_..</text>
</g>
<g class="func_g" onmouseover="s('std::__detail::_List_node_base::_M_unhook (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_unhook (3 samples, 0.09%)</title><rect x="274.8" y="321" width="1.1" height="15.0" fill="rgb(205,63,6)" rx="2" ry="2" />
<text text-anchor="" x="277.79" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.03%)</title><rect x="993.8" y="353" width="0.3" height="15.0" fill="rgb(211,73,6)" rx="2" ry="2" />
<text text-anchor="" x="996.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.03%)</title><rect x="713.8" y="193" width="0.4" height="15.0" fill="rgb(217,27,1)" rx="2" ry="2" />
<text text-anchor="" x="716.82" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (7 samples, 0.21%)</title><rect x="103.1" y="289" width="2.5" height="15.0" fill="rgb(246,40,46)" rx="2" ry="2" />
<text text-anchor="" x="106.07" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_page_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.03%)</title><rect x="376.9" y="449" width="0.3" height="15.0" fill="rgb(235,223,51)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (1 samples, 0.03%)</title><rect x="1041.7" y="193" width="0.4" height="15.0" fill="rgb(252,36,41)" rx="2" ry="2" />
<text text-anchor="" x="1044.73" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (1 samples, 0.03%)</title><rect x="19.4" y="513" width="0.3" height="15.0" fill="rgb(211,181,3)" rx="2" ry="2" />
<text text-anchor="" x="22.38" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (197 samples, 6.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (197 samples, 6.02%)</title><rect x="291.4" y="305" width="71.0" height="15.0" fill="rgb(209,177,6)" rx="2" ry="2" />
<text text-anchor="" x="294.38" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_futex</text>
</g>
<g class="func_g" onmouseover="s('_Znwm@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm@plt (1 samples, 0.03%)</title><rect x="849.5" y="401" width="0.3" height="15.0" fill="rgb(210,156,34)" rx="2" ry="2" />
<text text-anchor="" x="852.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (17 samples, 0.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (17 samples, 0.52%)</title><rect x="1030.6" y="241" width="6.1" height="15.0" fill="rgb(238,57,40)" rx="2" ry="2" />
<text text-anchor="" x="1033.55" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="228.6" y="305" width="0.4" height="15.0" fill="rgb(225,31,23)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_init (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_init (3 samples, 0.09%)</title><rect x="523.7" y="497" width="1.1" height="15.0" fill="rgb(221,208,32)" rx="2" ry="2" />
<text text-anchor="" x="526.70" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (13 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (13 samples, 0.40%)</title><rect x="622.2" y="385" width="4.7" height="15.0" fill="rgb(208,91,14)" rx="2" ry="2" />
<text text-anchor="" x="625.19" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::~Waiter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::~Waiter (1 samples, 0.03%)</title><rect x="278.8" y="353" width="0.3" height="15.0" fill="rgb(223,123,53)" rx="2" ry="2" />
<text text-anchor="" x="281.76" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.03%)</title><rect x="202.3" y="305" width="0.3" height="15.0" fill="rgb(243,210,2)" rx="2" ry="2" />
<text text-anchor="" x="205.28" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base:: (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base:: (5 samples, 0.15%)</title><rect x="374.4" y="321" width="1.8" height="15.0" fill="rgb(216,86,47)" rx="2" ry="2" />
<text text-anchor="" x="377.35" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (111 samples, 3.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (111 samples, 3.39%)</title><rect x="483.7" y="433" width="40.0" height="15.0" fill="rgb(254,218,47)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fut..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="463.5" y="369" width="0.3" height="15.0" fill="rgb(222,35,3)" rx="2" ry="2" />
<text text-anchor="" x="466.46" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (20 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (20 samples, 0.61%)</title><rect x="24.8" y="497" width="7.2" height="15.0" fill="rgb(223,87,50)" rx="2" ry="2" />
<text text-anchor="" x="27.79" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.03%)</title><rect x="142.4" y="289" width="0.4" height="15.0" fill="rgb(245,23,22)" rx="2" ry="2" />
<text text-anchor="" x="145.39" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (309 samples, 9.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (309 samples, 9.45%)</title><rect x="49.7" y="449" width="111.5" height="15.0" fill="rgb(208,82,1)" rx="2" ry="2" />
<text text-anchor="" x="52.68" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_stream_s..</text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (6 samples, 0.18%)</title><rect x="457.3" y="417" width="2.2" height="15.0" fill="rgb(239,119,3)" rx="2" ry="2" />
<text text-anchor="" x="460.32" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="1153.6" y="321" width="0.3" height="15.0" fill="rgb(206,29,42)" rx="2" ry="2" />
<text text-anchor="" x="1156.56" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('group_send_sig_info (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>group_send_sig_info (1 samples, 0.03%)</title><rect x="177.0" y="209" width="0.4" height="15.0" fill="rgb(252,68,2)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.03%)</title><rect x="493.0" y="321" width="0.4" height="15.0" fill="rgb(241,112,43)" rx="2" ry="2" />
<text text-anchor="" x="496.04" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (169 samples, 5.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (169 samples, 5.17%)</title><rect x="750.3" y="241" width="60.9" height="15.0" fill="rgb(214,218,27)" rx="2" ry="2" />
<text text-anchor="" x="753.25" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_p..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (6 samples, 0.18%)</title><rect x="601.3" y="417" width="2.1" height="15.0" fill="rgb(253,197,13)" rx="2" ry="2" />
<text text-anchor="" x="604.26" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (19 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (19 samples, 0.58%)</title><rect x="403.9" y="529" width="6.9" height="15.0" fill="rgb(232,140,37)" rx="2" ry="2" />
<text text-anchor="" x="406.93" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.24%)</title><rect x="13.2" y="401" width="2.9" height="15.0" fill="rgb(244,30,17)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (39 samples, 1.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (39 samples, 1.19%)</title><rect x="230.8" y="321" width="14.0" height="15.0" fill="rgb(225,51,10)" rx="2" ry="2" />
<text text-anchor="" x="233.78" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (172 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (172 samples, 5.26%)</title><rect x="1072.8" y="145" width="62.0" height="15.0" fill="rgb(212,126,6)" rx="2" ry="2" />
<text text-anchor="" x="1075.76" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >try_to..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (11 samples, 0.34%)</title><rect x="1153.9" y="337" width="4.0" height="15.0" fill="rgb(253,193,47)" rx="2" ry="2" />
<text text-anchor="" x="1156.93" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.12%)</title><rect x="952.3" y="177" width="1.4" height="15.0" fill="rgb(232,186,48)" rx="2" ry="2" />
<text text-anchor="" x="955.27" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (4 samples, 0.12%)</title><rect x="812.7" y="257" width="1.4" height="15.0" fill="rgb(253,63,44)" rx="2" ry="2" />
<text text-anchor="" x="815.66" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (198 samples, 6.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (198 samples, 6.05%)</title><rect x="291.0" y="337" width="71.4" height="15.0" fill="rgb(246,111,43)" rx="2" ry="2" />
<text text-anchor="" x="294.02" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_c..</text>
</g>
<g class="func_g" onmouseover="s('sched_clock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="499.5" y="305" width="0.4" height="15.0" fill="rgb(235,172,8)" rx="2" ry="2" />
<text text-anchor="" x="502.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (3 samples, 0.09%)</title><rect x="259.6" y="273" width="1.1" height="15.0" fill="rgb(233,98,47)" rx="2" ry="2" />
<text text-anchor="" x="262.64" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wakeup_gran.isra.47 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>wakeup_gran.isra.47 (1 samples, 0.03%)</title><rect x="160.8" y="161" width="0.4" height="15.0" fill="rgb(236,202,36)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (10 samples, 0.31%)</title><rect x="363.2" y="353" width="3.6" height="15.0" fill="rgb(228,150,37)" rx="2" ry="2" />
<text text-anchor="" x="366.17" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::ReadBuffer::GetBuffer (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::ReadBuffer::GetBuffer (4 samples, 0.12%)</title><rect x="1167.6" y="385" width="1.5" height="15.0" fill="rgb(233,61,30)" rx="2" ry="2" />
<text text-anchor="" x="1170.63" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (54 samples, 1.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (54 samples, 1.65%)</title><rect x="1099.5" y="65" width="19.4" height="15.0" fill="rgb(253,68,48)" rx="2" ry="2" />
<text text-anchor="" x="1102.45" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (1 samples, 0.03%)</title><rect x="266.9" y="337" width="0.3" height="15.0" fill="rgb(232,186,41)" rx="2" ry="2" />
<text text-anchor="" x="269.85" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="624.7" y="289" width="0.4" height="15.0" fill="rgb(250,211,53)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="228.6" y="337" width="0.4" height="15.0" fill="rgb(244,20,1)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo_message_pi (1,459 samples, 44.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo_message_pi (1,459 samples, 44.60%)</title><rect x="11.4" y="545" width="526.4" height="15.0" fill="rgb(209,10,30)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo_message_pi</text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)</title><rect x="419.4" y="481" width="0.4" height="15.0" fill="rgb(246,212,18)" rx="2" ry="2" />
<text text-anchor="" x="422.45" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (5 samples, 0.15%)</title><rect x="721.8" y="241" width="1.8" height="15.0" fill="rgb(205,66,18)" rx="2" ry="2" />
<text text-anchor="" x="724.75" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Wait (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Wait (4 samples, 0.12%)</title><rect x="470.3" y="497" width="1.5" height="15.0" fill="rgb(210,161,18)" rx="2" ry="2" />
<text text-anchor="" x="473.31" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="536.0" y="449" width="1.4" height="15.0" fill="rgb(245,144,15)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (12 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (12 samples, 0.37%)</title><rect x="351.3" y="225" width="4.3" height="15.0" fill="rgb(206,96,34)" rx="2" ry="2" />
<text text-anchor="" x="354.27" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.03%)</title><rect x="264.7" y="241" width="0.3" height="15.0" fill="rgb(208,15,41)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (21 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (21 samples, 0.64%)</title><rect x="492.3" y="353" width="7.6" height="15.0" fill="rgb(233,150,46)" rx="2" ry="2" />
<text text-anchor="" x="495.32" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('complete_signal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>complete_signal (1 samples, 0.03%)</title><rect x="177.0" y="145" width="0.4" height="15.0" fill="rgb(224,79,6)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (365 samples, 11.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (365 samples, 11.16%)</title><rect x="702.6" y="321" width="131.7" height="15.0" fill="rgb(213,221,35)" rx="2" ry="2" />
<text text-anchor="" x="705.63" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (2 samples, 0.06%)</title><rect x="847.3" y="417" width="0.7" height="15.0" fill="rgb(252,0,14)" rx="2" ry="2" />
<text text-anchor="" x="850.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (1 samples, 0.03%)</title><rect x="428.1" y="449" width="0.4" height="15.0" fill="rgb(241,151,48)" rx="2" ry="2" />
<text text-anchor="" x="431.10" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (4 samples, 0.12%)</title><rect x="863.5" y="401" width="1.5" height="15.0" fill="rgb(206,165,1)" rx="2" ry="2" />
<text text-anchor="" x="866.52" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (1 samples, 0.03%)</title><rect x="1098.4" y="65" width="0.3" height="15.0" fill="rgb(229,124,39)" rx="2" ry="2" />
<text text-anchor="" x="1101.37" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.03%)</title><rect x="264.7" y="225" width="0.3" height="15.0" fill="rgb(249,167,25)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="177.0" y="273" width="0.4" height="15.0" fill="rgb(207,207,9)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (3 samples, 0.09%)</title><rect x="626.9" y="321" width="1.1" height="15.0" fill="rgb(206,28,47)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="264.7" y="273" width="0.3" height="15.0" fill="rgb(246,203,41)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="1029.5" y="225" width="0.3" height="15.0" fill="rgb(242,83,36)" rx="2" ry="2" />
<text text-anchor="" x="1032.47" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (21 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (21 samples, 0.64%)</title><rect x="941.1" y="161" width="7.6" height="15.0" fill="rgb(253,225,45)" rx="2" ry="2" />
<text text-anchor="" x="944.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('drop_futex_key_refs.isra.14 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>drop_futex_key_refs.isra.14 (1 samples, 0.03%)</title><rect x="1061.6" y="177" width="0.3" height="15.0" fill="rgb(221,55,8)" rx="2" ry="2" />
<text text-anchor="" x="1064.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (22 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (22 samples, 0.67%)</title><rect x="903.6" y="273" width="7.9" height="15.0" fill="rgb(215,179,12)" rx="2" ry="2" />
<text text-anchor="" x="906.57" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (1 samples, 0.03%)</title><rect x="264.7" y="209" width="0.3" height="15.0" fill="rgb(216,137,25)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.03%)</title><rect x="530.9" y="513" width="0.4" height="15.0" fill="rgb(232,117,9)" rx="2" ry="2" />
<text text-anchor="" x="533.92" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (373 samples, 11.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (373 samples, 11.40%)</title><rect x="699.7" y="337" width="134.6" height="15.0" fill="rgb(205,73,8)" rx="2" ry="2" />
<text text-anchor="" x="702.75" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule_hrtimeou..</text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.12%)</title><rect x="952.3" y="113" width="1.4" height="15.0" fill="rgb(219,50,21)" rx="2" ry="2" />
<text text-anchor="" x="955.27" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (624 samples, 19.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (624 samples, 19.08%)</title><rect x="616.4" y="417" width="225.1" height="15.0" fill="rgb(216,126,8)" rx="2" ry="2" />
<text text-anchor="" x="619.41" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (1 samples, 0.03%)</title><rect x="831.4" y="305" width="0.4" height="15.0" fill="rgb(244,221,7)" rx="2" ry="2" />
<text text-anchor="" x="834.42" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.03%)</title><rect x="513.6" y="337" width="0.4" height="15.0" fill="rgb(239,221,17)" rx="2" ry="2" />
<text text-anchor="" x="516.60" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (7 samples, 0.21%)</title><rect x="80.7" y="401" width="2.5" height="15.0" fill="rgb(251,199,52)" rx="2" ry="2" />
<text text-anchor="" x="83.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::WaitableEvent::Wait (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::WaitableEvent::Wait (5 samples, 0.15%)</title><rect x="374.4" y="305" width="1.8" height="15.0" fill="rgb(212,111,8)" rx="2" ry="2" />
<text text-anchor="" x="377.35" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (1 samples, 0.03%)</title><rect x="173.8" y="401" width="0.3" height="15.0" fill="rgb(235,142,23)" rx="2" ry="2" />
<text text-anchor="" x="176.78" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.03%)</title><rect x="61.2" y="417" width="0.4" height="15.0" fill="rgb(247,105,13)" rx="2" ry="2" />
<text text-anchor="" x="64.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (6 samples, 0.18%)</title><rect x="711.3" y="289" width="2.2" height="15.0" fill="rgb(221,119,41)" rx="2" ry="2" />
<text text-anchor="" x="714.29" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="397.8" y="385" width="0.4" height="15.0" fill="rgb(252,68,9)" rx="2" ry="2" />
<text text-anchor="" x="400.80" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)</title><rect x="420.5" y="497" width="0.4" height="15.0" fill="rgb(246,158,27)" rx="2" ry="2" />
<text text-anchor="" x="423.53" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__cmpxchg_double_slab.isra.40 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__cmpxchg_double_slab.isra.40 (1 samples, 0.03%)</title><rect x="80.3" y="369" width="0.4" height="15.0" fill="rgb(212,198,39)" rx="2" ry="2" />
<text text-anchor="" x="83.35" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (2 samples, 0.06%)</title><rect x="227.2" y="337" width="0.7" height="15.0" fill="rgb(212,134,49)" rx="2" ry="2" />
<text text-anchor="" x="230.17" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (1 samples, 0.03%)</title><rect x="713.5" y="65" width="0.3" height="15.0" fill="rgb(245,10,33)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="160.8" y="401" width="0.4" height="15.0" fill="rgb(210,42,3)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (36 samples, 1.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (36 samples, 1.10%)</title><rect x="70.2" y="417" width="13.0" height="15.0" fill="rgb(251,194,44)" rx="2" ry="2" />
<text text-anchor="" x="73.24" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.03%)</title><rect x="823.8" y="209" width="0.4" height="15.0" fill="rgb(209,12,41)" rx="2" ry="2" />
<text text-anchor="" x="826.84" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (6 samples, 0.18%)</title><rect x="991.6" y="353" width="2.2" height="15.0" fill="rgb(234,157,48)" rx="2" ry="2" />
<text text-anchor="" x="994.59" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.12%)</title><rect x="537.8" y="529" width="1.4" height="15.0" fill="rgb(250,5,44)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('it_real_fn (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>it_real_fn (1 samples, 0.03%)</title><rect x="177.0" y="241" width="0.4" height="15.0" fill="rgb(221,7,46)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestCase::Run (479 samples, 14.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestCase::Run (479 samples, 14.64%)</title><rect x="203.4" y="449" width="172.8" height="15.0" fill="rgb(212,61,32)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::TestCase::Run</text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (1 samples, 0.03%)</title><rect x="16.1" y="497" width="0.4" height="15.0" fill="rgb(240,134,31)" rx="2" ry="2" />
<text text-anchor="" x="19.13" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_scan_ready_list.isra.9 (68 samples, 2.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (68 samples, 2.08%)</title><rect x="674.9" y="353" width="24.5" height="15.0" fill="rgb(220,48,45)" rx="2" ry="2" />
<text text-anchor="" x="677.85" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (1 samples, 0.03%)</title><rect x="903.2" y="273" width="0.4" height="15.0" fill="rgb(244,36,52)" rx="2" ry="2" />
<text text-anchor="" x="906.21" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_futex (187 samples, 5.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_futex (187 samples, 5.72%)</title><rect x="1067.3" y="177" width="67.5" height="15.0" fill="rgb(239,219,2)" rx="2" ry="2" />
<text text-anchor="" x="1070.35" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >wake_fu..</text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.24%)</title><rect x="13.2" y="449" width="2.9" height="15.0" fill="rgb(231,157,37)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.06%)</title><rect x="499.2" y="321" width="0.7" height="15.0" fill="rgb(251,74,25)" rx="2" ry="2" />
<text text-anchor="" x="502.17" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (6 samples, 0.18%)</title><rect x="908.6" y="225" width="2.2" height="15.0" fill="rgb(235,94,47)" rx="2" ry="2" />
<text text-anchor="" x="911.62" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (189 samples, 5.78%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (189 samples, 5.78%)</title><rect x="744.5" y="289" width="68.2" height="15.0" fill="rgb(246,20,14)" rx="2" ry="2" />
<text text-anchor="" x="747.48" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish_..</text>
</g>
<g class="func_g" onmouseover="s('testing::UnitTest::Run (479 samples, 14.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::UnitTest::Run (479 samples, 14.64%)</title><rect x="203.4" y="481" width="172.8" height="15.0" fill="rgb(247,168,36)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::UnitTest::Run</text>
</g>
<g class="func_g" onmouseover="s('system_call (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (2 samples, 0.06%)</title><rect x="289.6" y="337" width="0.7" height="15.0" fill="rgb(252,23,42)" rx="2" ry="2" />
<text text-anchor="" x="292.58" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="293.2" y="273" width="0.3" height="15.0" fill="rgb(231,65,47)" rx="2" ry="2" />
<text text-anchor="" x="296.19" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__send_signal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__send_signal (1 samples, 0.03%)</title><rect x="177.0" y="161" width="0.4" height="15.0" fill="rgb(230,67,12)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (15 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (15 samples, 0.46%)</title><rect x="953.7" y="257" width="5.4" height="15.0" fill="rgb(224,107,21)" rx="2" ry="2" />
<text text-anchor="" x="956.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock (1 samples, 0.03%)</title><rect x="814.5" y="257" width="0.3" height="15.0" fill="rgb(253,185,23)" rx="2" ry="2" />
<text text-anchor="" x="817.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.03%)</title><rect x="491.6" y="257" width="0.4" height="15.0" fill="rgb(238,153,42)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (7 samples, 0.21%)</title><rect x="78.2" y="401" width="2.5" height="15.0" fill="rgb(224,29,38)" rx="2" ry="2" />
<text text-anchor="" x="81.18" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.03%)</title><rect x="491.6" y="225" width="0.4" height="15.0" fill="rgb(205,150,45)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (1 samples, 0.03%)</title><rect x="819.9" y="225" width="0.3" height="15.0" fill="rgb(218,174,22)" rx="2" ry="2" />
<text text-anchor="" x="822.87" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (1 samples, 0.03%)</title><rect x="221.8" y="353" width="0.3" height="15.0" fill="rgb(244,68,1)" rx="2" ry="2" />
<text text-anchor="" x="224.76" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.03%)</title><rect x="740.9" y="241" width="0.3" height="15.0" fill="rgb(253,87,14)" rx="2" ry="2" />
<text text-anchor="" x="743.87" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (68 samples, 2.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (68 samples, 2.08%)</title><rect x="177.7" y="273" width="24.6" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="180.75" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s('_dl_sysdep_start (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_sysdep_start (1 samples, 0.03%)</title><rect x="376.9" y="529" width="0.3" height="15.0" fill="rgb(225,148,54)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="282.7" y="305" width="0.4" height="15.0" fill="rgb(241,171,19)" rx="2" ry="2" />
<text text-anchor="" x="285.72" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__GI___munmap (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__GI___munmap (1 samples, 0.03%)</title><rect x="17.9" y="529" width="0.4" height="15.0" fill="rgb(240,175,7)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (2 samples, 0.06%)</title><rect x="143.5" y="273" width="0.7" height="15.0" fill="rgb(242,84,8)" rx="2" ry="2" />
<text text-anchor="" x="146.48" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="374.7" y="209" width="1.5" height="15.0" fill="rgb(235,51,46)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (427 samples, 13.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (427 samples, 13.05%)</title><rect x="999.9" y="337" width="154.0" height="15.0" fill="rgb(243,146,43)" rx="2" ry="2" />
<text text-anchor="" x="1002.89" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Chann..</text>
</g>
<g class="func_g" onmouseover="s('_int_free (58 samples, 1.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (58 samples, 1.77%)</title><rect x="377.2" y="529" width="21.0" height="15.0" fill="rgb(222,205,45)" rx="2" ry="2" />
<text text-anchor="" x="380.24" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.03%)</title><rect x="412.6" y="513" width="0.4" height="15.0" fill="rgb(249,67,52)" rx="2" ry="2" />
<text text-anchor="" x="415.59" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::WaitableEvent::TimedWait (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::WaitableEvent::TimedWait (1 samples, 0.03%)</title><rect x="374.4" y="289" width="0.3" height="15.0" fill="rgb(239,14,45)" rx="2" ry="2" />
<text text-anchor="" x="377.35" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::MultiprocessMessagePipeTestBase::Init (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::MultiprocessMessagePipeTestBase::Init (5 samples, 0.15%)</title><rect x="374.4" y="385" width="1.8" height="15.0" fill="rgb(209,218,7)" rx="2" ry="2" />
<text text-anchor="" x="377.35" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (30 samples, 0.92%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (30 samples, 0.92%)</title><rect x="543.5" y="529" width="10.9" height="15.0" fill="rgb(225,175,17)" rx="2" ry="2" />
<text text-anchor="" x="546.54" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (11 samples, 0.34%)</title><rect x="820.2" y="225" width="4.0" height="15.0" fill="rgb(216,94,5)" rx="2" ry="2" />
<text text-anchor="" x="823.24" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (3 samples, 0.09%)</title><rect x="226.1" y="337" width="1.1" height="15.0" fill="rgb(214,58,6)" rx="2" ry="2" />
<text text-anchor="" x="229.09" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.31%)</title><rect x="942.9" y="113" width="3.6" height="15.0" fill="rgb(238,198,48)" rx="2" ry="2" />
<text text-anchor="" x="945.89" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="491.6" y="353" width="0.4" height="15.0" fill="rgb(223,9,29)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (3 samples, 0.09%)</title><rect x="625.8" y="369" width="1.1" height="15.0" fill="rgb(220,145,7)" rx="2" ry="2" />
<text text-anchor="" x="628.79" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.03%)</title><rect x="713.5" y="33" width="0.3" height="15.0" fill="rgb(215,69,20)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (82 samples, 2.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (82 samples, 2.51%)</title><rect x="112.5" y="273" width="29.5" height="15.0" fill="rgb(213,225,10)" rx="2" ry="2" />
<text text-anchor="" x="115.45" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.03%)</title><rect x="350.9" y="177" width="0.4" height="15.0" fill="rgb(227,187,6)" rx="2" ry="2" />
<text text-anchor="" x="353.90" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (1 samples, 0.03%)</title><rect x="643.5" y="401" width="0.3" height="15.0" fill="rgb(228,127,52)" rx="2" ry="2" />
<text text-anchor="" x="646.47" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.03%)</title><rect x="714.2" y="129" width="0.3" height="15.0" fill="rgb(215,211,40)" rx="2" ry="2" />
<text text-anchor="" x="717.18" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.03%)</title><rect x="30.6" y="481" width="0.3" height="15.0" fill="rgb(205,175,32)" rx="2" ry="2" />
<text text-anchor="" x="33.56" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="21.9" y="497" width="0.4" height="15.0" fill="rgb(240,102,38)" rx="2" ry="2" />
<text text-anchor="" x="24.90" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (5 samples, 0.15%)</title><rect x="976.1" y="369" width="1.8" height="15.0" fill="rgb(217,87,4)" rx="2" ry="2" />
<text text-anchor="" x="979.08" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (4 samples, 0.12%)</title><rect x="946.9" y="145" width="1.4" height="15.0" fill="rgb(232,20,4)" rx="2" ry="2" />
<text text-anchor="" x="949.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (4 samples, 0.12%)</title><rect x="514.7" y="369" width="1.4" height="15.0" fill="rgb(234,193,24)" rx="2" ry="2" />
<text text-anchor="" x="517.68" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.06%)</title><rect x="1121.1" y="33" width="0.7" height="15.0" fill="rgb(212,7,2)" rx="2" ry="2" />
<text text-anchor="" x="1124.10" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (1 samples, 0.03%)</title><rect x="1027.3" y="241" width="0.4" height="15.0" fill="rgb(254,160,50)" rx="2" ry="2" />
<text text-anchor="" x="1030.30" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (4 samples, 0.12%)</title><rect x="231.1" y="305" width="1.5" height="15.0" fill="rgb(212,101,6)" rx="2" ry="2" />
<text text-anchor="" x="234.14" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (236 samples, 7.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (236 samples, 7.21%)</title><rect x="445.8" y="513" width="85.1" height="15.0" fill="rgb(231,9,45)" rx="2" ry="2" />
<text text-anchor="" x="448.78" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syst..</text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (1 samples, 0.03%)</title><rect x="177.4" y="305" width="0.3" height="15.0" fill="rgb(252,190,39)" rx="2" ry="2" />
<text text-anchor="" x="180.39" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (10 samples, 0.31%)</title><rect x="735.8" y="209" width="3.6" height="15.0" fill="rgb(254,147,34)" rx="2" ry="2" />
<text text-anchor="" x="738.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.03%)</title><rect x="264.7" y="193" width="0.3" height="15.0" fill="rgb(213,15,35)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Waiter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Waiter (1 samples, 0.03%)</title><rect x="175.9" y="449" width="0.4" height="15.0" fill="rgb(211,28,52)" rx="2" ry="2" />
<text text-anchor="" x="178.94" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (4 samples, 0.12%)</title><rect x="914.0" y="273" width="1.5" height="15.0" fill="rgb(241,82,21)" rx="2" ry="2" />
<text text-anchor="" x="917.03" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (3 samples, 0.09%)</title><rect x="849.8" y="401" width="1.1" height="15.0" fill="rgb(244,59,21)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (6 samples, 0.18%)</title><rect x="885.2" y="337" width="2.1" height="15.0" fill="rgb(228,82,17)" rx="2" ry="2" />
<text text-anchor="" x="888.17" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.12%)</title><rect x="374.7" y="241" width="1.5" height="15.0" fill="rgb(220,88,50)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (1 samples, 0.03%)</title><rect x="16.5" y="497" width="0.4" height="15.0" fill="rgb(227,225,6)" rx="2" ry="2" />
<text text-anchor="" x="19.49" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="441.5" y="465" width="0.7" height="15.0" fill="rgb(211,30,51)" rx="2" ry="2" />
<text text-anchor="" x="444.45" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (23 samples, 0.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (23 samples, 0.70%)</title><rect x="305.1" y="177" width="8.3" height="15.0" fill="rgb(209,229,32)" rx="2" ry="2" />
<text text-anchor="" x="308.09" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_init (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_init (2 samples, 0.06%)</title><rect x="362.4" y="353" width="0.8" height="15.0" fill="rgb(206,27,32)" rx="2" ry="2" />
<text text-anchor="" x="365.45" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (1 samples, 0.03%)</title><rect x="435.3" y="433" width="0.4" height="15.0" fill="rgb(248,102,29)" rx="2" ry="2" />
<text text-anchor="" x="438.32" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (73 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (73 samples, 2.23%)</title><rect x="176.7" y="417" width="26.3" height="15.0" fill="rgb(217,79,4)" rx="2" ry="2" />
<text text-anchor="" x="179.66" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('malloc (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (9 samples, 0.28%)</title><rect x="865.3" y="401" width="3.3" height="15.0" fill="rgb(217,0,53)" rx="2" ry="2" />
<text text-anchor="" x="868.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (3 samples, 0.09%)</title><rect x="1174.8" y="417" width="1.1" height="15.0" fill="rgb(226,90,39)" rx="2" ry="2" />
<text text-anchor="" x="1177.85" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Waiter (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Waiter (5 samples, 0.15%)</title><rect x="471.8" y="497" width="1.8" height="15.0" fill="rgb(219,197,38)" rx="2" ry="2" />
<text text-anchor="" x="474.75" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_softirq (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.03%)</title><rect x="713.5" y="241" width="0.3" height="15.0" fill="rgb(223,185,9)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (2 samples, 0.06%)</title><rect x="519.7" y="385" width="0.8" height="15.0" fill="rgb(212,181,25)" rx="2" ry="2" />
<text text-anchor="" x="522.73" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (12 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (12 samples, 0.37%)</title><rect x="466.0" y="481" width="4.3" height="15.0" fill="rgb(244,166,45)" rx="2" ry="2" />
<text text-anchor="" x="468.98" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (18 samples, 0.55%)</title><rect x="501.0" y="305" width="6.5" height="15.0" fill="rgb(205,194,21)" rx="2" ry="2" />
<text text-anchor="" x="503.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.03%)</title><rect x="713.5" y="113" width="0.3" height="15.0" fill="rgb(220,9,13)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (2 samples, 0.06%)</title><rect x="350.5" y="209" width="0.8" height="15.0" fill="rgb(234,76,39)" rx="2" ry="2" />
<text text-anchor="" x="353.54" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('exit_idle (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>exit_idle (1 samples, 0.03%)</title><rect x="1165.8" y="321" width="0.4" height="15.0" fill="rgb(238,139,19)" rx="2" ry="2" />
<text text-anchor="" x="1168.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (4 samples, 0.12%)</title><rect x="1188.6" y="449" width="1.4" height="15.0" fill="rgb(224,25,40)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (68 samples, 2.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (68 samples, 2.08%)</title><rect x="177.7" y="257" width="24.6" height="15.0" fill="rgb(215,167,10)" rx="2" ry="2" />
<text text-anchor="" x="180.75" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x..</text>
</g>
<g class="func_g" onmouseover="s('load_balance (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (2 samples, 0.06%)</title><rect x="508.2" y="353" width="0.7" height="15.0" fill="rgb(252,33,22)" rx="2" ry="2" />
<text text-anchor="" x="511.19" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (2 samples, 0.06%)</title><rect x="304.4" y="177" width="0.7" height="15.0" fill="rgb(216,100,33)" rx="2" ry="2" />
<text text-anchor="" x="307.37" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.18%)</title><rect x="98.7" y="305" width="2.2" height="15.0" fill="rgb(218,25,6)" rx="2" ry="2" />
<text text-anchor="" x="101.74" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.12%)</title><rect x="11.8" y="241" width="1.4" height="15.0" fill="rgb(226,167,31)" rx="2" ry="2" />
<text text-anchor="" x="14.80" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_unlock_usercnt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_unlock_usercnt (1 samples, 0.03%)</title><rect x="463.1" y="497" width="0.4" height="15.0" fill="rgb(240,127,7)" rx="2" ry="2" />
<text text-anchor="" x="466.10" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (239 samples, 7.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (239 samples, 7.31%)</title><rect x="884.1" y="369" width="86.2" height="15.0" fill="rgb(227,157,17)" rx="2" ry="2" />
<text text-anchor="" x="887.09" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (42 samples, 1.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (42 samples, 1.28%)</title><rect x="579.6" y="417" width="15.2" height="15.0" fill="rgb(248,96,20)" rx="2" ry="2" />
<text text-anchor="" x="582.62" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="293.2" y="241" width="0.3" height="15.0" fill="rgb(216,18,0)" rx="2" ry="2" />
<text text-anchor="" x="296.19" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (18 samples, 0.55%)</title><rect x="596.9" y="433" width="6.5" height="15.0" fill="rgb(211,77,41)" rx="2" ry="2" />
<text text-anchor="" x="599.93" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (4 samples, 0.12%)</title><rect x="490.2" y="369" width="1.4" height="15.0" fill="rgb(214,80,5)" rx="2" ry="2" />
<text text-anchor="" x="493.15" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::Thread::ThreadMain (1,737 samples, 53.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::Thread::ThreadMain (1,737 samples, 53.10%)</title><rect x="563.4" y="497" width="626.6" height="15.0" fill="rgb(239,123,33)" rx="2" ry="2" />
<text text-anchor="" x="566.38" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::Thread::ThreadMain</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (2 samples, 0.06%)</title><rect x="465.3" y="481" width="0.7" height="15.0" fill="rgb(246,229,43)" rx="2" ry="2" />
<text text-anchor="" x="468.26" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (1 samples, 0.03%)</title><rect x="999.2" y="337" width="0.3" height="15.0" fill="rgb(229,138,12)" rx="2" ry="2" />
<text text-anchor="" x="1002.17" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (14 samples, 0.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (14 samples, 0.43%)</title><rect x="256.8" y="289" width="5.0" height="15.0" fill="rgb(226,188,8)" rx="2" ry="2" />
<text text-anchor="" x="259.75" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_idle (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (2 samples, 0.06%)</title><rect x="356.7" y="241" width="0.7" height="15.0" fill="rgb(219,130,20)" rx="2" ry="2" />
<text text-anchor="" x="359.68" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (8 samples, 0.24%)</title><rect x="860.6" y="401" width="2.9" height="15.0" fill="rgb(243,109,5)" rx="2" ry="2" />
<text text-anchor="" x="863.64" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('trigger_load_balance (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>trigger_load_balance (1 samples, 0.03%)</title><rect x="714.5" y="145" width="0.4" height="15.0" fill="rgb(214,173,2)" rx="2" ry="2" />
<text text-anchor="" x="717.54" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="397.8" y="513" width="0.4" height="15.0" fill="rgb(205,118,8)" rx="2" ry="2" />
<text text-anchor="" x="400.80" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (1 samples, 0.03%)</title><rect x="833.9" y="305" width="0.4" height="15.0" fill="rgb(225,189,18)" rx="2" ry="2" />
<text text-anchor="" x="836.94" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (4 samples, 0.12%)</title><rect x="368.2" y="369" width="1.5" height="15.0" fill="rgb(224,43,20)" rx="2" ry="2" />
<text text-anchor="" x="371.22" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="254.2" y="305" width="0.4" height="15.0" fill="rgb(229,36,52)" rx="2" ry="2" />
<text text-anchor="" x="257.23" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (5 samples, 0.15%)</title><rect x="508.9" y="337" width="1.8" height="15.0" fill="rgb(244,93,46)" rx="2" ry="2" />
<text text-anchor="" x="511.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (9 samples, 0.28%)</title><rect x="129.4" y="225" width="3.3" height="15.0" fill="rgb(235,45,37)" rx="2" ry="2" />
<text text-anchor="" x="132.41" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (5 samples, 0.15%)</title><rect x="528.8" y="497" width="1.8" height="15.0" fill="rgb(205,124,33)" rx="2" ry="2" />
<text text-anchor="" x="531.75" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (3 samples, 0.09%)</title><rect x="466.0" y="465" width="1.1" height="15.0" fill="rgb(210,29,13)" rx="2" ry="2" />
<text text-anchor="" x="468.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (1 samples, 0.03%)</title><rect x="172.0" y="481" width="0.3" height="15.0" fill="rgb(222,7,50)" rx="2" ry="2" />
<text text-anchor="" x="174.97" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('insert_work (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>insert_work (1 samples, 0.03%)</title><rect x="160.8" y="273" width="0.4" height="15.0" fill="rgb(245,51,32)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.03%)</title><rect x="1020.1" y="257" width="0.3" height="15.0" fill="rgb(227,166,30)" rx="2" ry="2" />
<text text-anchor="" x="1023.09" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.09%)</title><rect x="203.4" y="401" width="1.0" height="15.0" fill="rgb(234,30,8)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (1 samples, 0.03%)</title><rect x="361.4" y="257" width="0.3" height="15.0" fill="rgb(231,43,21)" rx="2" ry="2" />
<text text-anchor="" x="364.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="374.7" y="193" width="1.5" height="15.0" fill="rgb(233,130,11)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Awake (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Awake (1 samples, 0.03%)</title><rect x="1020.4" y="257" width="0.4" height="15.0" fill="rgb(253,186,40)" rx="2" ry="2" />
<text text-anchor="" x="1023.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="499.5" y="289" width="0.4" height="15.0" fill="rgb(247,178,21)" rx="2" ry="2" />
<text text-anchor="" x="502.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (1 samples, 0.03%)</title><rect x="517.6" y="385" width="0.3" height="15.0" fill="rgb(212,149,48)" rx="2" ry="2" />
<text text-anchor="" x="520.57" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (2 samples, 0.06%)</title><rect x="173.1" y="465" width="0.7" height="15.0" fill="rgb(226,35,14)" rx="2" ry="2" />
<text text-anchor="" x="176.06" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_tick_fair (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_tick_fair (1 samples, 0.03%)</title><rect x="714.2" y="145" width="0.3" height="15.0" fill="rgb(225,154,28)" rx="2" ry="2" />
<text text-anchor="" x="717.18" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (1 samples, 0.03%)</title><rect x="429.5" y="433" width="0.4" height="15.0" fill="rgb(251,105,26)" rx="2" ry="2" />
<text text-anchor="" x="432.55" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (2 samples, 0.06%)</title><rect x="977.9" y="369" width="0.7" height="15.0" fill="rgb(245,74,37)" rx="2" ry="2" />
<text text-anchor="" x="980.88" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="536.0" y="385" width="1.4" height="15.0" fill="rgb(228,166,5)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.06%)</title><rect x="683.9" y="321" width="0.7" height="15.0" fill="rgb(238,67,5)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.06%)</title><rect x="467.1" y="465" width="0.7" height="15.0" fill="rgb(241,229,42)" rx="2" ry="2" />
<text text-anchor="" x="470.07" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_page_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.03%)</title><rect x="11.4" y="257" width="0.4" height="15.0" fill="rgb(217,225,43)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (1 samples, 0.03%)</title><rect x="893.1" y="337" width="0.4" height="15.0" fill="rgb(212,88,43)" rx="2" ry="2" />
<text text-anchor="" x="896.11" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="228.6" y="289" width="0.4" height="15.0" fill="rgb(249,183,24)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (8 samples, 0.24%)</title><rect x="896.4" y="289" width="2.8" height="15.0" fill="rgb(218,199,46)" rx="2" ry="2" />
<text text-anchor="" x="899.35" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Remove (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (3 samples, 0.09%)</title><rect x="467.8" y="465" width="1.1" height="15.0" fill="rgb(234,26,18)" rx="2" ry="2" />
<text text-anchor="" x="470.79" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (1 samples, 0.03%)</title><rect x="422.7" y="497" width="0.4" height="15.0" fill="rgb(245,157,38)" rx="2" ry="2" />
<text text-anchor="" x="425.69" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.03%)</title><rect x="730.8" y="225" width="0.3" height="15.0" fill="rgb(233,217,10)" rx="2" ry="2" />
<text text-anchor="" x="733.77" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (2 samples, 0.06%)</title><rect x="738.7" y="193" width="0.7" height="15.0" fill="rgb(222,128,13)" rx="2" ry="2" />
<text text-anchor="" x="741.71" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="537.8" y="449" width="1.4" height="15.0" fill="rgb(205,10,52)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="491.6" y="321" width="0.4" height="15.0" fill="rgb(230,93,45)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (75 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (75 samples, 2.29%)</title><rect x="921.6" y="241" width="27.1" height="15.0" fill="rgb(231,56,37)" rx="2" ry="2" />
<text text-anchor="" x="924.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (68 samples, 2.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (68 samples, 2.08%)</title><rect x="177.7" y="321" width="24.6" height="15.0" fill="rgb(233,124,27)" rx="2" ry="2" />
<text text-anchor="" x="180.75" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (2 samples, 0.06%)</title><rect x="34.5" y="513" width="0.8" height="15.0" fill="rgb(231,127,32)" rx="2" ry="2" />
<text text-anchor="" x="37.53" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.06%)</title><rect x="253.5" y="305" width="0.7" height="15.0" fill="rgb(219,84,27)" rx="2" ry="2" />
<text text-anchor="" x="256.50" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::View::IsValid (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (2 samples, 0.06%)</title><rect x="1166.9" y="369" width="0.7" height="15.0" fill="rgb(230,54,1)" rx="2" ry="2" />
<text text-anchor="" x="1169.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (11 samples, 0.34%)</title><rect x="73.1" y="385" width="4.0" height="15.0" fill="rgb(239,123,40)" rx="2" ry="2" />
<text text-anchor="" x="76.13" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pvclock_gtod_notify (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pvclock_gtod_notify (1 samples, 0.03%)</title><rect x="264.7" y="145" width="0.3" height="15.0" fill="rgb(213,52,8)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (3 samples, 0.09%)</title><rect x="631.6" y="369" width="1.0" height="15.0" fill="rgb(237,117,15)" rx="2" ry="2" />
<text text-anchor="" x="634.57" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.03%)</title><rect x="628.3" y="401" width="0.4" height="15.0" fill="rgb(222,129,21)" rx="2" ry="2" />
<text text-anchor="" x="631.32" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (24 samples, 0.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (24 samples, 0.73%)</title><rect x="554.4" y="529" width="8.6" height="15.0" fill="rgb(223,198,21)" rx="2" ry="2" />
<text text-anchor="" x="557.37" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (5 samples, 0.15%)</title><rect x="595.1" y="433" width="1.8" height="15.0" fill="rgb(239,90,42)" rx="2" ry="2" />
<text text-anchor="" x="598.13" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (7 samples, 0.21%)</title><rect x="533.1" y="513" width="2.5" height="15.0" fill="rgb(219,17,21)" rx="2" ry="2" />
<text text-anchor="" x="536.08" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (1 samples, 0.03%)</title><rect x="530.6" y="497" width="0.3" height="15.0" fill="rgb(207,132,18)" rx="2" ry="2" />
<text text-anchor="" x="533.56" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (5 samples, 0.15%)</title><rect x="818.1" y="209" width="1.8" height="15.0" fill="rgb(231,210,42)" rx="2" ry="2" />
<text text-anchor="" x="821.07" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (475 samples, 14.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (475 samples, 14.52%)</title><rect x="204.8" y="401" width="171.4" height="15.0" fill="rgb(212,168,30)" rx="2" ry="2" />
<text text-anchor="" x="207.80" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (535 samples, 16.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (535 samples, 16.36%)</title><rect x="648.5" y="401" width="193.0" height="15.0" fill="rgb(225,161,23)" rx="2" ry="2" />
<text text-anchor="" x="651.52" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call_fastpath</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (73 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (73 samples, 2.23%)</title><rect x="176.7" y="433" width="26.3" height="15.0" fill="rgb(252,84,48)" rx="2" ry="2" />
<text text-anchor="" x="179.66" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('tick_sched_handle.isra.17 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (2 samples, 0.06%)</title><rect x="714.2" y="193" width="0.7" height="15.0" fill="rgb(247,33,13)" rx="2" ry="2" />
<text text-anchor="" x="717.18" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (187 samples, 5.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (187 samples, 5.72%)</title><rect x="894.2" y="305" width="67.4" height="15.0" fill="rgb(227,227,33)" rx="2" ry="2" />
<text text-anchor="" x="897.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >___sys_..</text>
</g>
<g class="func_g" onmouseover="s('load_balance (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (5 samples, 0.15%)</title><rect x="812.7" y="273" width="1.8" height="15.0" fill="rgb(206,85,1)" rx="2" ry="2" />
<text text-anchor="" x="815.66" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (69 samples, 2.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (69 samples, 2.11%)</title><rect x="716.7" y="257" width="24.9" height="15.0" fill="rgb(233,11,21)" rx="2" ry="2" />
<text text-anchor="" x="719.70" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="491.6" y="305" width="0.4" height="15.0" fill="rgb(225,34,36)" rx="2" ry="2" />
<text text-anchor="" x="494.60" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (7 samples, 0.21%)</title><rect x="1085.4" y="113" width="2.5" height="15.0" fill="rgb(254,4,47)" rx="2" ry="2" />
<text text-anchor="" x="1088.38" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (1 samples, 0.03%)</title><rect x="313.4" y="177" width="0.3" height="15.0" fill="rgb(215,72,39)" rx="2" ry="2" />
<text text-anchor="" x="316.39" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc@plt (1 samples, 0.03%)</title><rect x="868.6" y="401" width="0.3" height="15.0" fill="rgb(254,35,37)" rx="2" ry="2" />
<text text-anchor="" x="871.58" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (13 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (13 samples, 0.40%)</title><rect x="949.0" y="257" width="4.7" height="15.0" fill="rgb(234,223,36)" rx="2" ry="2" />
<text text-anchor="" x="952.02" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="374.7" y="145" width="1.5" height="15.0" fill="rgb(237,210,16)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (427 samples, 13.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (427 samples, 13.05%)</title><rect x="18.3" y="529" width="154.0" height="15.0" fill="rgb(239,64,11)" rx="2" ry="2" />
<text text-anchor="" x="21.30" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_send</text>
</g>
<g class="func_g" onmouseover="s('schedule_tail (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_tail (4 samples, 0.12%)</title><rect x="11.8" y="289" width="1.4" height="15.0" fill="rgb(237,23,35)" rx="2" ry="2" />
<text text-anchor="" x="14.80" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (167 samples, 5.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (167 samples, 5.11%)</title><rect x="95.1" y="321" width="60.3" height="15.0" fill="rgb(224,126,50)" rx="2" ry="2" />
<text text-anchor="" x="98.14" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >try_to..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (20 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (20 samples, 0.61%)</title><rect x="233.3" y="305" width="7.2" height="15.0" fill="rgb(219,224,51)" rx="2" ry="2" />
<text text-anchor="" x="236.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (13 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (13 samples, 0.40%)</title><rect x="887.3" y="337" width="4.7" height="15.0" fill="rgb(246,155,36)" rx="2" ry="2" />
<text text-anchor="" x="890.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (11 samples, 0.34%)</title><rect x="564.5" y="449" width="3.9" height="15.0" fill="rgb(211,7,16)" rx="2" ry="2" />
<text text-anchor="" x="567.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree_skbmem (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (6 samples, 0.18%)</title><rect x="919.4" y="241" width="2.2" height="15.0" fill="rgb(229,205,26)" rx="2" ry="2" />
<text text-anchor="" x="922.44" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.03%)</title><rect x="563.0" y="481" width="0.4" height="15.0" fill="rgb(240,20,37)" rx="2" ry="2" />
<text text-anchor="" x="566.02" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (1 samples, 0.03%)</title><rect x="969.9" y="321" width="0.4" height="15.0" fill="rgb(223,164,33)" rx="2" ry="2" />
<text text-anchor="" x="972.94" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (3 samples, 0.09%)</title><rect x="739.4" y="225" width="1.1" height="15.0" fill="rgb(231,42,23)" rx="2" ry="2" />
<text text-anchor="" x="742.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (68 samples, 2.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (68 samples, 2.08%)</title><rect x="177.7" y="225" width="24.6" height="15.0" fill="rgb(234,92,19)" rx="2" ry="2" />
<text text-anchor="" x="180.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s('sched_clock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (2 samples, 0.06%)</title><rect x="141.3" y="225" width="0.7" height="15.0" fill="rgb(251,21,30)" rx="2" ry="2" />
<text text-anchor="" x="144.31" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.03%)</title><rect x="160.8" y="225" width="0.4" height="15.0" fill="rgb(228,12,43)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmalloc_slab (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (3 samples, 0.09%)</title><rect x="77.1" y="385" width="1.1" height="15.0" fill="rgb(228,28,28)" rx="2" ry="2" />
<text text-anchor="" x="80.10" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (1 samples, 0.03%)</title><rect x="350.9" y="193" width="0.4" height="15.0" fill="rgb(241,88,29)" rx="2" ry="2" />
<text text-anchor="" x="353.90" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (3 samples, 0.09%)</title><rect x="495.6" y="305" width="1.0" height="15.0" fill="rgb(254,24,54)" rx="2" ry="2" />
<text text-anchor="" x="498.56" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.03%)</title><rect x="640.6" y="353" width="0.3" height="15.0" fill="rgb(224,212,9)" rx="2" ry="2" />
<text text-anchor="" x="643.58" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (24 samples, 0.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (24 samples, 0.73%)</title><rect x="162.2" y="465" width="8.7" height="15.0" fill="rgb(236,78,45)" rx="2" ry="2" />
<text text-anchor="" x="165.23" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('select_task_rq_fair (30 samples, 0.92%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (30 samples, 0.92%)</title><rect x="1082.1" y="129" width="10.9" height="15.0" fill="rgb(239,10,26)" rx="2" ry="2" />
<text text-anchor="" x="1085.14" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (16 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (16 samples, 0.49%)</title><rect x="72.4" y="401" width="5.8" height="15.0" fill="rgb(230,109,26)" rx="2" ry="2" />
<text text-anchor="" x="75.41" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (18 samples, 0.55%)</title><rect x="922.3" y="225" width="6.5" height="15.0" fill="rgb(252,92,3)" rx="2" ry="2" />
<text text-anchor="" x="925.33" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (18 samples, 0.55%)</title><rect x="492.7" y="337" width="6.5" height="15.0" fill="rgb(205,53,21)" rx="2" ry="2" />
<text text-anchor="" x="495.68" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.03%)</title><rect x="177.0" y="97" width="0.4" height="15.0" fill="rgb(231,128,27)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (1,719 samples, 52.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (1,719 samples, 52.55%)</title><rect x="568.4" y="449" width="620.2" height="15.0" fill="rgb(245,79,22)" rx="2" ry="2" />
<text text-anchor="" x="571.43" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::Run</text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.03%)</title><rect x="160.8" y="177" width="0.4" height="15.0" fill="rgb(217,196,10)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.03%)</title><rect x="514.0" y="369" width="0.3" height="15.0" fill="rgb(221,168,17)" rx="2" ry="2" />
<text text-anchor="" x="516.96" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (5 samples, 0.15%)</title><rect x="919.8" y="225" width="1.8" height="15.0" fill="rgb(234,112,54)" rx="2" ry="2" />
<text text-anchor="" x="922.80" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base:: (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base:: (1 samples, 0.03%)</title><rect x="537.4" y="513" width="0.4" height="15.0" fill="rgb(241,34,0)" rx="2" ry="2" />
<text text-anchor="" x="540.41" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.03%)</title><rect x="265.0" y="353" width="0.4" height="15.0" fill="rgb(211,32,40)" rx="2" ry="2" />
<text text-anchor="" x="268.05" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="353" width="1.8" height="15.0" fill="rgb(219,29,40)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (1 samples, 0.03%)</title><rect x="1134.8" y="193" width="0.4" height="15.0" fill="rgb(249,158,44)" rx="2" ry="2" />
<text text-anchor="" x="1137.81" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="463.5" y="417" width="0.3" height="15.0" fill="rgb(243,135,50)" rx="2" ry="2" />
<text text-anchor="" x="466.46" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (1 samples, 0.03%)</title><rect x="1113.2" y="49" width="0.3" height="15.0" fill="rgb(237,8,43)" rx="2" ry="2" />
<text text-anchor="" x="1116.16" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (4 samples, 0.12%)</title><rect x="1156.1" y="321" width="1.4" height="15.0" fill="rgb(240,150,33)" rx="2" ry="2" />
<text text-anchor="" x="1159.09" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (94 samples, 2.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (94 samples, 2.87%)</title><rect x="486.5" y="401" width="34.0" height="15.0" fill="rgb(206,194,17)" rx="2" ry="2" />
<text text-anchor="" x="489.55" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="397.8" y="497" width="0.4" height="15.0" fill="rgb(218,185,45)" rx="2" ry="2" />
<text text-anchor="" x="400.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (12 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (12 samples, 0.37%)</title><rect x="26.2" y="481" width="4.4" height="15.0" fill="rgb(218,152,48)" rx="2" ry="2" />
<text text-anchor="" x="29.23" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (1 samples, 0.03%)</title><rect x="202.6" y="289" width="0.4" height="15.0" fill="rgb(217,67,28)" rx="2" ry="2" />
<text text-anchor="" x="205.64" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (1 samples, 0.03%)</title><rect x="240.2" y="289" width="0.3" height="15.0" fill="rgb(236,145,35)" rx="2" ry="2" />
<text text-anchor="" x="243.16" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.03%)</title><rect x="397.8" y="401" width="0.4" height="15.0" fill="rgb(220,229,42)" rx="2" ry="2" />
<text text-anchor="" x="400.80" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (3 samples, 0.09%)</title><rect x="626.9" y="289" width="1.1" height="15.0" fill="rgb(235,138,46)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.03%)</title><rect x="434.2" y="433" width="0.4" height="15.0" fill="rgb(252,102,33)" rx="2" ry="2" />
<text text-anchor="" x="437.24" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (1 samples, 0.03%)</title><rect x="46.8" y="433" width="0.4" height="15.0" fill="rgb(239,201,31)" rx="2" ry="2" />
<text text-anchor="" x="49.80" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg_handler (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg_handler (2 samples, 0.06%)</title><rect x="910.8" y="225" width="0.7" height="15.0" fill="rgb(247,40,23)" rx="2" ry="2" />
<text text-anchor="" x="913.78" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (3 samples, 0.09%)</title><rect x="626.9" y="241" width="1.1" height="15.0" fill="rgb(247,178,28)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('call_timer_fn (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>call_timer_fn (1 samples, 0.03%)</title><rect x="160.8" y="321" width="0.4" height="15.0" fill="rgb(206,94,21)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (22 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (22 samples, 0.67%)</title><rect x="499.9" y="369" width="7.9" height="15.0" fill="rgb(215,66,40)" rx="2" ry="2" />
<text text-anchor="" x="502.89" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="228.6" y="273" width="0.4" height="15.0" fill="rgb(227,136,16)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="640.6" y="369" width="0.3" height="15.0" fill="rgb(228,197,1)" rx="2" ry="2" />
<text text-anchor="" x="643.58" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_write_space (32 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (32 samples, 0.98%)</title><rect x="937.1" y="177" width="11.6" height="15.0" fill="rgb(235,210,36)" rx="2" ry="2" />
<text text-anchor="" x="940.12" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (3 samples, 0.09%)</title><rect x="626.9" y="305" width="1.1" height="15.0" fill="rgb(217,194,6)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__queue_work (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__queue_work (1 samples, 0.03%)</title><rect x="160.8" y="289" width="0.4" height="15.0" fill="rgb(250,186,52)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (11 samples, 0.34%)</title><rect x="907.5" y="241" width="4.0" height="15.0" fill="rgb(232,148,25)" rx="2" ry="2" />
<text text-anchor="" x="910.54" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Awake (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Awake (7 samples, 0.21%)</title><rect x="1142.7" y="273" width="2.6" height="15.0" fill="rgb(239,11,2)" rx="2" ry="2" />
<text text-anchor="" x="1145.74" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.03%)</title><rect x="1118.9" y="65" width="0.4" height="15.0" fill="rgb(250,146,40)" rx="2" ry="2" />
<text text-anchor="" x="1121.93" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="536.0" y="481" width="1.4" height="15.0" fill="rgb(229,157,34)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.03%)</title><rect x="1019.7" y="209" width="0.4" height="15.0" fill="rgb(237,143,18)" rx="2" ry="2" />
<text text-anchor="" x="1022.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.03%)</title><rect x="154.3" y="305" width="0.4" height="15.0" fill="rgb(246,67,26)" rx="2" ry="2" />
<text text-anchor="" x="157.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (3 samples, 0.09%)</title><rect x="626.9" y="401" width="1.1" height="15.0" fill="rgb(239,91,16)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.12%)</title><rect x="11.8" y="225" width="1.4" height="15.0" fill="rgb(244,104,33)" rx="2" ry="2" />
<text text-anchor="" x="14.80" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (13 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (13 samples, 0.40%)</title><rect x="942.2" y="129" width="4.7" height="15.0" fill="rgb(243,86,5)" rx="2" ry="2" />
<text text-anchor="" x="945.17" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (13 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (13 samples, 0.40%)</title><rect x="924.1" y="193" width="4.7" height="15.0" fill="rgb(234,38,51)" rx="2" ry="2" />
<text text-anchor="" x="927.13" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (1 samples, 0.03%)</title><rect x="300.8" y="193" width="0.3" height="15.0" fill="rgb(245,80,28)" rx="2" ry="2" />
<text text-anchor="" x="303.76" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (1 samples, 0.03%)</title><rect x="281.6" y="337" width="0.4" height="15.0" fill="rgb(247,40,27)" rx="2" ry="2" />
<text text-anchor="" x="284.64" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (3 samples, 0.09%)</title><rect x="173.8" y="417" width="1.1" height="15.0" fill="rgb(214,68,51)" rx="2" ry="2" />
<text text-anchor="" x="176.78" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_destroy@@GLIBC_2.3.2 (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_destroy@@GLIBC_2.3.2 (3 samples, 0.09%)</title><rect x="369.7" y="369" width="1.0" height="15.0" fill="rgb(210,196,31)" rx="2" ry="2" />
<text text-anchor="" x="372.66" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (6 samples, 0.18%)</title><rect x="1087.9" y="113" width="2.2" height="15.0" fill="rgb(253,149,32)" rx="2" ry="2" />
<text text-anchor="" x="1090.91" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (1 samples, 0.03%)</title><rect x="202.6" y="257" width="0.4" height="15.0" fill="rgb(240,226,48)" rx="2" ry="2" />
<text text-anchor="" x="205.64" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (2 samples, 0.06%)</title><rect x="33.8" y="513" width="0.7" height="15.0" fill="rgb(222,134,47)" rx="2" ry="2" />
<text text-anchor="" x="36.81" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (68 samples, 2.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (68 samples, 2.08%)</title><rect x="177.7" y="241" width="24.6" height="15.0" fill="rgb(220,210,25)" rx="2" ry="2" />
<text text-anchor="" x="180.75" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s('place_entity (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (4 samples, 0.12%)</title><rect x="132.7" y="225" width="1.4" height="15.0" fill="rgb(226,1,28)" rx="2" ry="2" />
<text text-anchor="" x="135.65" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.03%)</title><rect x="37.8" y="465" width="0.3" height="15.0" fill="rgb(244,53,5)" rx="2" ry="2" />
<text text-anchor="" x="40.78" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (2 samples, 0.06%)</title><rect x="424.1" y="497" width="0.8" height="15.0" fill="rgb(220,104,35)" rx="2" ry="2" />
<text text-anchor="" x="427.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (5 samples, 0.15%)</title><rect x="19.7" y="497" width="1.8" height="15.0" fill="rgb(213,64,46)" rx="2" ry="2" />
<text text-anchor="" x="22.74" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('setup_new_exec (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_new_exec (1 samples, 0.03%)</title><rect x="17.6" y="433" width="0.3" height="15.0" fill="rgb(236,93,33)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_cond_lock (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (4 samples, 0.12%)</title><rect x="262.5" y="353" width="1.5" height="15.0" fill="rgb(221,77,0)" rx="2" ry="2" />
<text text-anchor="" x="265.52" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.03%)</title><rect x="202.6" y="225" width="0.4" height="15.0" fill="rgb(214,198,34)" rx="2" ry="2" />
<text text-anchor="" x="205.64" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (13 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (13 samples, 0.40%)</title><rect x="1076.7" y="129" width="4.7" height="15.0" fill="rgb(250,223,54)" rx="2" ry="2" />
<text text-anchor="" x="1079.73" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_task_comm (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_task_comm (4 samples, 0.12%)</title><rect x="10.0" y="417" width="1.4" height="15.0" fill="rgb(245,132,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="463.5" y="449" width="0.3" height="15.0" fill="rgb(216,80,54)" rx="2" ry="2" />
<text text-anchor="" x="466.46" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_active (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (10 samples, 0.31%)</title><rect x="1184.2" y="417" width="3.6" height="15.0" fill="rgb(251,96,32)" rx="2" ry="2" />
<text text-anchor="" x="1187.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="463.5" y="433" width="0.3" height="15.0" fill="rgb(210,141,30)" rx="2" ry="2" />
<text text-anchor="" x="466.46" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (902 samples, 27.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (902 samples, 27.58%)</title><rect x="848.0" y="417" width="325.4" height="15.0" fill="rgb(244,128,48)" rx="2" ry="2" />
<text text-anchor="" x="851.01" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::OnLibeventNotifi..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (1 samples, 0.03%)</title><rect x="38.1" y="465" width="0.4" height="15.0" fill="rgb(223,1,12)" rx="2" ry="2" />
<text text-anchor="" x="41.14" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (1 samples, 0.03%)</title><rect x="16.9" y="497" width="0.3" height="15.0" fill="rgb(233,22,30)" rx="2" ry="2" />
<text text-anchor="" x="19.85" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (5 samples, 0.15%)</title><rect x="138.8" y="225" width="1.8" height="15.0" fill="rgb(215,76,0)" rx="2" ry="2" />
<text text-anchor="" x="141.79" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (29 samples, 0.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (29 samples, 0.89%)</title><rect x="428.1" y="465" width="10.5" height="15.0" fill="rgb(217,108,34)" rx="2" ry="2" />
<text text-anchor="" x="431.10" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (4 samples, 0.12%)</title><rect x="536.0" y="529" width="1.4" height="15.0" fill="rgb(222,166,32)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.12%)</title><rect x="11.8" y="177" width="1.4" height="15.0" fill="rgb(240,210,44)" rx="2" ry="2" />
<text text-anchor="" x="14.80" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (128 samples, 3.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (128 samples, 3.91%)</title><rect x="915.5" y="273" width="46.1" height="15.0" fill="rgb(247,113,45)" rx="2" ry="2" />
<text text-anchor="" x="918.47" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix..</text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (8 samples, 0.24%)</title><rect x="13.2" y="497" width="2.9" height="15.0" fill="rgb(217,166,25)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.03%)</title><rect x="376.9" y="481" width="0.3" height="15.0" fill="rgb(209,42,52)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (3 samples, 0.09%)</title><rect x="626.9" y="385" width="1.1" height="15.0" fill="rgb(212,56,27)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (1 samples, 0.03%)</title><rect x="744.1" y="289" width="0.4" height="15.0" fill="rgb(210,194,52)" rx="2" ry="2" />
<text text-anchor="" x="747.12" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (4 samples, 0.12%)</title><rect x="811.2" y="241" width="1.5" height="15.0" fill="rgb(250,117,52)" rx="2" ry="2" />
<text text-anchor="" x="814.22" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (6 samples, 0.18%)</title><rect x="736.5" y="193" width="2.2" height="15.0" fill="rgb(210,116,53)" rx="2" ry="2" />
<text text-anchor="" x="739.54" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (169 samples, 5.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (169 samples, 5.17%)</title><rect x="750.3" y="225" width="60.9" height="15.0" fill="rgb(238,153,22)" rx="2" ry="2" />
<text text-anchor="" x="753.25" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_pm..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Waiter (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Waiter (4 samples, 0.12%)</title><rect x="277.3" y="353" width="1.5" height="15.0" fill="rgb(223,128,49)" rx="2" ry="2" />
<text text-anchor="" x="280.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="973.6" y="353" width="0.3" height="15.0" fill="rgb(227,183,36)" rx="2" ry="2" />
<text text-anchor="" x="976.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="537.8" y="385" width="1.4" height="15.0" fill="rgb(246,226,53)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (73 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (73 samples, 2.23%)</title><rect x="114.6" y="257" width="26.4" height="15.0" fill="rgb(248,18,29)" rx="2" ry="2" />
<text text-anchor="" x="117.62" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (7 samples, 0.21%)</title><rect x="205.2" y="385" width="2.5" height="15.0" fill="rgb(237,31,49)" rx="2" ry="2" />
<text text-anchor="" x="208.16" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('SYSC_sendto (375 samples, 11.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (375 samples, 11.46%)</title><rect x="35.6" y="481" width="135.3" height="15.0" fill="rgb(222,44,14)" rx="2" ry="2" />
<text text-anchor="" x="38.61" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >SYSC_sendto</text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.06%)</title><rect x="683.9" y="337" width="0.7" height="15.0" fill="rgb(217,113,39)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (3 samples, 0.09%)</title><rect x="1122.5" y="97" width="1.1" height="15.0" fill="rgb(241,71,46)" rx="2" ry="2" />
<text text-anchor="" x="1125.54" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (13 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (13 samples, 0.40%)</title><rect x="964.5" y="289" width="4.7" height="15.0" fill="rgb(249,129,26)" rx="2" ry="2" />
<text text-anchor="" x="967.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_unix_gc (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (3 samples, 0.09%)</title><rect x="161.2" y="449" width="1.0" height="15.0" fill="rgb(237,131,34)" rx="2" ry="2" />
<text text-anchor="" x="164.15" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (20 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (20 samples, 0.61%)</title><rect x="500.6" y="353" width="7.2" height="15.0" fill="rgb(206,10,15)" rx="2" ry="2" />
<text text-anchor="" x="503.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (1 samples, 0.03%)</title><rect x="228.6" y="209" width="0.4" height="15.0" fill="rgb(237,218,37)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (2 samples, 0.06%)</title><rect x="683.9" y="273" width="0.7" height="15.0" fill="rgb(236,158,14)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.06%)</title><rect x="683.9" y="177" width="0.7" height="15.0" fill="rgb(237,37,52)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (2 samples, 0.06%)</title><rect x="223.6" y="353" width="0.7" height="15.0" fill="rgb(212,206,22)" rx="2" ry="2" />
<text text-anchor="" x="226.56" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (2 samples, 0.06%)</title><rect x="355.6" y="225" width="0.7" height="15.0" fill="rgb(219,151,14)" rx="2" ry="2" />
<text text-anchor="" x="358.59" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (5 samples, 0.15%)</title><rect x="517.9" y="385" width="1.8" height="15.0" fill="rgb(215,165,42)" rx="2" ry="2" />
<text text-anchor="" x="520.93" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_state (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_state (1 samples, 0.03%)</title><rect x="177.0" y="113" width="0.4" height="15.0" fill="rgb(250,145,25)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.03%)</title><rect x="202.3" y="321" width="0.3" height="15.0" fill="rgb(240,10,54)" rx="2" ry="2" />
<text text-anchor="" x="205.28" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (7 samples, 0.21%)</title><rect x="598.7" y="417" width="2.6" height="15.0" fill="rgb(214,118,1)" rx="2" ry="2" />
<text text-anchor="" x="601.74" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (4 samples, 0.12%)</title><rect x="1061.9" y="177" width="1.5" height="15.0" fill="rgb(210,185,5)" rx="2" ry="2" />
<text text-anchor="" x="1064.94" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.06%)</title><rect x="1036.7" y="241" width="0.7" height="15.0" fill="rgb(223,47,11)" rx="2" ry="2" />
<text text-anchor="" x="1039.68" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_queue_tail (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (8 samples, 0.24%)</title><rect x="58.7" y="433" width="2.9" height="15.0" fill="rgb(252,176,24)" rx="2" ry="2" />
<text text-anchor="" x="61.70" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::ConditionVariable::Wait (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::ConditionVariable::Wait (1 samples, 0.03%)</title><rect x="264.3" y="353" width="0.4" height="15.0" fill="rgb(217,204,40)" rx="2" ry="2" />
<text text-anchor="" x="267.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="264.7" y="305" width="0.3" height="15.0" fill="rgb(238,215,21)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (3 samples, 0.09%)</title><rect x="901.4" y="273" width="1.1" height="15.0" fill="rgb(217,139,15)" rx="2" ry="2" />
<text text-anchor="" x="904.40" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (4 samples, 0.12%)</title><rect x="914.0" y="257" width="1.5" height="15.0" fill="rgb(241,221,29)" rx="2" ry="2" />
<text text-anchor="" x="917.03" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (7 samples, 0.21%)</title><rect x="47.2" y="449" width="2.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text text-anchor="" x="50.16" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (189 samples, 5.78%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (189 samples, 5.78%)</title><rect x="91.2" y="385" width="68.1" height="15.0" fill="rgb(205,21,25)" rx="2" ry="2" />
<text text-anchor="" x="94.17" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll..</text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="887.0" y="321" width="0.3" height="15.0" fill="rgb(222,34,13)" rx="2" ry="2" />
<text text-anchor="" x="889.97" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (72 samples, 2.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (72 samples, 2.20%)</title><rect x="177.0" y="369" width="26.0" height="15.0" fill="rgb(219,0,27)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s('sys_execve (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (4 samples, 0.12%)</title><rect x="10.0" y="497" width="1.4" height="15.0" fill="rgb(249,171,1)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (1 samples, 0.03%)</title><rect x="366.8" y="353" width="0.3" height="15.0" fill="rgb(220,93,37)" rx="2" ry="2" />
<text text-anchor="" x="369.78" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sendto (380 samples, 11.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (380 samples, 11.62%)</title><rect x="35.3" y="497" width="137.0" height="15.0" fill="rgb(221,72,34)" rx="2" ry="2" />
<text text-anchor="" x="38.25" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_sendto</text>
</g>
<g class="func_g" onmouseover="s('handle_mm_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.03%)</title><rect x="376.9" y="433" width="0.3" height="15.0" fill="rgb(232,74,22)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (3 samples, 0.09%)</title><rect x="626.9" y="257" width="1.1" height="15.0" fill="rgb(213,117,37)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::is_valid (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (2 samples, 0.06%)</title><rect x="1174.1" y="417" width="0.7" height="15.0" fill="rgb(245,151,17)" rx="2" ry="2" />
<text text-anchor="" x="1177.13" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.03%)</title><rect x="177.4" y="321" width="0.3" height="15.0" fill="rgb(224,187,45)" rx="2" ry="2" />
<text text-anchor="" x="180.39" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (1 samples, 0.03%)</title><rect x="923.8" y="193" width="0.3" height="15.0" fill="rgb(225,16,14)" rx="2" ry="2" />
<text text-anchor="" x="926.77" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (18 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (18 samples, 0.55%)</title><rect x="255.3" y="337" width="6.5" height="15.0" fill="rgb(223,83,36)" rx="2" ry="2" />
<text text-anchor="" x="258.31" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="385" width="1.8" height="15.0" fill="rgb(213,182,42)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (22 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (22 samples, 0.67%)</title><rect x="428.5" y="449" width="7.9" height="15.0" fill="rgb(207,188,9)" rx="2" ry="2" />
<text text-anchor="" x="431.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.06%)</title><rect x="32.0" y="497" width="0.7" height="15.0" fill="rgb(225,219,21)" rx="2" ry="2" />
<text text-anchor="" x="35.01" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('run_timer_softirq (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>run_timer_softirq (1 samples, 0.03%)</title><rect x="160.8" y="337" width="0.4" height="15.0" fill="rgb(245,55,16)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unmap_region (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unmap_region (1 samples, 0.03%)</title><rect x="17.9" y="449" width="0.4" height="15.0" fill="rgb(233,188,54)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.03%)</title><rect x="159.0" y="369" width="0.3" height="15.0" fill="rgb(227,153,51)" rx="2" ry="2" />
<text text-anchor="" x="161.99" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (180 samples, 5.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (180 samples, 5.50%)</title><rect x="293.9" y="273" width="64.9" height="15.0" fill="rgb(248,229,3)" rx="2" ry="2" />
<text text-anchor="" x="296.91" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_w..</text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (16 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (16 samples, 0.49%)</title><rect x="941.1" y="145" width="5.8" height="15.0" fill="rgb(233,172,17)" rx="2" ry="2" />
<text text-anchor="" x="944.09" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (14 samples, 0.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (14 samples, 0.43%)</title><rect x="454.4" y="433" width="5.1" height="15.0" fill="rgb(209,187,34)" rx="2" ry="2" />
<text text-anchor="" x="457.44" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="465" width="1.8" height="15.0" fill="rgb(209,15,26)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.03%)</title><rect x="810.9" y="209" width="0.3" height="15.0" fill="rgb(206,134,28)" rx="2" ry="2" />
<text text-anchor="" x="813.86" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (7 samples, 0.21%)</title><rect x="47.2" y="433" width="2.5" height="15.0" fill="rgb(245,94,4)" rx="2" ry="2" />
<text text-anchor="" x="50.16" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_softirq (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.03%)</title><rect x="160.8" y="353" width="0.4" height="15.0" fill="rgb(216,108,25)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (1 samples, 0.03%)</title><rect x="485.5" y="417" width="0.3" height="15.0" fill="rgb(230,14,25)" rx="2" ry="2" />
<text text-anchor="" x="488.46" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.03%)</title><rect x="117.5" y="241" width="0.4" height="15.0" fill="rgb(233,142,13)" rx="2" ry="2" />
<text text-anchor="" x="120.50" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="10.0" y="337" width="1.4" height="15.0" fill="rgb(240,114,2)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('send_signal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>send_signal (1 samples, 0.03%)</title><rect x="177.0" y="177" width="0.4" height="15.0" fill="rgb(254,87,10)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (89 samples, 2.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (89 samples, 2.72%)</title><rect x="318.4" y="145" width="32.1" height="15.0" fill="rgb(238,217,54)" rx="2" ry="2" />
<text text-anchor="" x="321.44" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >in..</text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="228.6" y="257" width="0.4" height="15.0" fill="rgb(207,18,36)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.03%)</title><rect x="235.1" y="289" width="0.4" height="15.0" fill="rgb(243,70,41)" rx="2" ry="2" />
<text text-anchor="" x="238.11" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (8 samples, 0.24%)</title><rect x="13.2" y="369" width="2.9" height="15.0" fill="rgb(242,95,51)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (1 samples, 0.03%)</title><rect x="594.8" y="433" width="0.3" height="15.0" fill="rgb(242,215,52)" rx="2" ry="2" />
<text text-anchor="" x="597.77" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (4 samples, 0.12%)</title><rect x="173.8" y="465" width="1.4" height="15.0" fill="rgb(247,166,1)" rx="2" ry="2" />
<text text-anchor="" x="176.78" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('resched_task (28 samples, 0.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>resched_task (28 samples, 0.86%)</title><rect x="144.2" y="273" width="10.1" height="15.0" fill="rgb(207,113,30)" rx="2" ry="2" />
<text text-anchor="" x="147.20" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.03%)</title><rect x="730.0" y="225" width="0.4" height="15.0" fill="rgb(239,165,45)" rx="2" ry="2" />
<text text-anchor="" x="733.05" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_sys_call (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_sys_call (1 samples, 0.03%)</title><rect x="22.3" y="513" width="0.3" height="15.0" fill="rgb(237,108,22)" rx="2" ry="2" />
<text text-anchor="" x="25.27" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.03%)</title><rect x="239.8" y="273" width="0.4" height="15.0" fill="rgb(230,204,8)" rx="2" ry="2" />
<text text-anchor="" x="242.80" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_free (12 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (12 samples, 0.37%)</title><rect x="924.5" y="177" width="4.3" height="15.0" fill="rgb(222,195,34)" rx="2" ry="2" />
<text text-anchor="" x="927.49" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (386 samples, 11.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (386 samples, 11.80%)</title><rect x="1006.4" y="305" width="139.2" height="15.0" fill="rgb(231,13,3)" rx="2" ry="2" />
<text text-anchor="" x="1009.38" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Mes..</text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (4 samples, 0.12%)</title><rect x="713.5" y="273" width="1.4" height="15.0" fill="rgb(254,87,5)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.12%)</title><rect x="10.0" y="369" width="1.4" height="15.0" fill="rgb(215,63,13)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (1 samples, 0.03%)</title><rect x="508.6" y="337" width="0.3" height="15.0" fill="rgb(251,15,9)" rx="2" ry="2" />
<text text-anchor="" x="511.55" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (10 samples, 0.31%)</title><rect x="820.2" y="193" width="3.6" height="15.0" fill="rgb(213,26,39)" rx="2" ry="2" />
<text text-anchor="" x="823.24" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::View::View (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::View (1 samples, 0.03%)</title><rect x="981.1" y="385" width="0.4" height="15.0" fill="rgb(243,124,4)" rx="2" ry="2" />
<text text-anchor="" x="984.13" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.03%)</title><rect x="1081.8" y="129" width="0.3" height="15.0" fill="rgb(226,44,23)" rx="2" ry="2" />
<text text-anchor="" x="1084.78" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1081.4" y="113" width="0.4" height="15.0" fill="rgb(211,22,2)" rx="2" ry="2" />
<text text-anchor="" x="1084.42" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (33 samples, 1.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (33 samples, 1.01%)</title><rect x="684.6" y="337" width="11.9" height="15.0" fill="rgb(212,173,19)" rx="2" ry="2" />
<text text-anchor="" x="687.59" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('delayed_work_timer_fn (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>delayed_work_timer_fn (1 samples, 0.03%)</title><rect x="713.5" y="193" width="0.3" height="15.0" fill="rgb(242,2,17)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (1,737 samples, 53.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (1,737 samples, 53.10%)</title><rect x="563.4" y="481" width="626.6" height="15.0" fill="rgb(239,190,18)" rx="2" ry="2" />
<text text-anchor="" x="566.38" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessageLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (21 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (21 samples, 0.64%)</title><rect x="816.6" y="257" width="7.6" height="15.0" fill="rgb(207,7,49)" rx="2" ry="2" />
<text text-anchor="" x="819.63" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (9 samples, 0.28%)</title><rect x="135.5" y="225" width="3.3" height="15.0" fill="rgb(221,129,40)" rx="2" ry="2" />
<text text-anchor="" x="138.54" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="401" width="1.8" height="15.0" fill="rgb(239,7,42)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('verify_iovec (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>verify_iovec (1 samples, 0.03%)</title><rect x="969.2" y="305" width="0.4" height="15.0" fill="rgb(240,21,38)" rx="2" ry="2" />
<text text-anchor="" x="972.22" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('alloc_pages_vma (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_vma (1 samples, 0.03%)</title><rect x="376.9" y="401" width="0.3" height="15.0" fill="rgb(214,9,26)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (93 samples, 2.84%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (93 samples, 2.84%)</title><rect x="317.0" y="209" width="33.5" height="15.0" fill="rgb(252,179,53)" rx="2" ry="2" />
<text text-anchor="" x="319.99" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s('_int_free (12 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (12 samples, 0.37%)</title><rect x="539.2" y="529" width="4.3" height="15.0" fill="rgb(206,13,23)" rx="2" ry="2" />
<text text-anchor="" x="542.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.03%)</title><rect x="287.1" y="305" width="0.3" height="15.0" fill="rgb(235,200,26)" rx="2" ry="2" />
<text text-anchor="" x="290.05" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (38 samples, 1.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (38 samples, 1.16%)</title><rect x="628.7" y="401" width="13.7" height="15.0" fill="rgb(235,154,54)" rx="2" ry="2" />
<text text-anchor="" x="631.68" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.03%)</title><rect x="210.6" y="369" width="0.3" height="15.0" fill="rgb(248,189,36)" rx="2" ry="2" />
<text text-anchor="" x="213.57" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (1 samples, 0.03%)</title><rect x="177.4" y="289" width="0.3" height="15.0" fill="rgb(250,229,3)" rx="2" ry="2" />
<text text-anchor="" x="180.39" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dl_main (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dl_main (1 samples, 0.03%)</title><rect x="376.9" y="513" width="0.3" height="15.0" fill="rgb(225,45,54)" rx="2" ry="2" />
<text text-anchor="" x="379.88" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (4 samples, 0.12%)</title><rect x="173.8" y="449" width="1.4" height="15.0" fill="rgb(209,96,30)" rx="2" ry="2" />
<text text-anchor="" x="176.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (3 samples, 0.09%)</title><rect x="32.7" y="513" width="1.1" height="15.0" fill="rgb(222,125,48)" rx="2" ry="2" />
<text text-anchor="" x="35.73" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy (1 samples, 0.03%)</title><rect x="17.6" y="321" width="0.3" height="15.0" fill="rgb(254,6,38)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (12 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (12 samples, 0.37%)</title><rect x="834.3" y="369" width="4.3" height="15.0" fill="rgb(251,6,52)" rx="2" ry="2" />
<text text-anchor="" x="837.30" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (3 samples, 0.09%)</title><rect x="360.3" y="257" width="1.1" height="15.0" fill="rgb(213,178,14)" rx="2" ry="2" />
<text text-anchor="" x="363.28" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('source_load (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>source_load (7 samples, 0.21%)</title><rect x="108.5" y="289" width="2.5" height="15.0" fill="rgb(232,119,19)" rx="2" ry="2" />
<text text-anchor="" x="111.48" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (23 samples, 0.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (23 samples, 0.70%)</title><rect x="24.4" y="513" width="8.3" height="15.0" fill="rgb(249,180,10)" rx="2" ry="2" />
<text text-anchor="" x="27.43" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (1 samples, 0.03%)</title><rect x="850.9" y="401" width="0.4" height="15.0" fill="rgb(228,41,41)" rx="2" ry="2" />
<text text-anchor="" x="853.90" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (3 samples, 0.09%)</title><rect x="626.9" y="353" width="1.1" height="15.0" fill="rgb(223,156,47)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (3 samples, 0.09%)</title><rect x="626.9" y="369" width="1.1" height="15.0" fill="rgb(234,16,41)" rx="2" ry="2" />
<text text-anchor="" x="629.88" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (8 samples, 0.24%)</title><rect x="1114.2" y="49" width="2.9" height="15.0" fill="rgb(231,35,25)" rx="2" ry="2" />
<text text-anchor="" x="1117.24" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="481" width="1.8" height="15.0" fill="rgb(216,208,32)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.03%)</title><rect x="17.9" y="513" width="0.4" height="15.0" fill="rgb(224,56,4)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('start_thread (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.03%)</title><rect x="537.4" y="529" width="0.4" height="15.0" fill="rgb(211,193,50)" rx="2" ry="2" />
<text text-anchor="" x="540.41" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="204.4" y="401" width="0.4" height="15.0" fill="rgb(235,8,32)" rx="2" ry="2" />
<text text-anchor="" x="207.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (2 samples, 0.06%)</title><rect x="57.6" y="417" width="0.7" height="15.0" fill="rgb(208,218,34)" rx="2" ry="2" />
<text text-anchor="" x="60.62" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (3 samples, 0.09%)</title><rect x="413.0" y="497" width="1.0" height="15.0" fill="rgb(207,131,9)" rx="2" ry="2" />
<text text-anchor="" x="415.95" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (3 samples, 0.09%)</title><rect x="141.0" y="241" width="1.0" height="15.0" fill="rgb(220,224,38)" rx="2" ry="2" />
<text text-anchor="" x="143.95" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (61 samples, 1.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (61 samples, 1.86%)</title><rect x="1098.0" y="81" width="22.0" height="15.0" fill="rgb(211,72,6)" rx="2" ry="2" />
<text text-anchor="" x="1101.01" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (73 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (73 samples, 2.23%)</title><rect x="1095.5" y="97" width="26.3" height="15.0" fill="rgb(242,135,16)" rx="2" ry="2" />
<text text-anchor="" x="1098.48" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('base::TestSuite::Run (565 samples, 17.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestSuite::Run (565 samples, 17.27%)</title><rect x="172.3" y="497" width="203.9" height="15.0" fill="rgb(249,201,37)" rx="2" ry="2" />
<text text-anchor="" x="175.34" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::TestSuite::Run</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (8 samples, 0.24%)</title><rect x="677.4" y="337" width="2.9" height="15.0" fill="rgb(241,82,22)" rx="2" ry="2" />
<text text-anchor="" x="680.38" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (178 samples, 5.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (178 samples, 5.44%)</title><rect x="91.2" y="369" width="64.2" height="15.0" fill="rgb(223,39,13)" rx="2" ry="2" />
<text text-anchor="" x="94.17" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake_..</text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (80 samples, 2.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (80 samples, 2.45%)</title><rect x="714.9" y="273" width="28.9" height="15.0" fill="rgb(234,128,42)" rx="2" ry="2" />
<text text-anchor="" x="717.90" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >de..</text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (1 samples, 0.03%)</title><rect x="83.2" y="417" width="0.4" height="15.0" fill="rgb(209,59,6)" rx="2" ry="2" />
<text text-anchor="" x="86.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.12%)</title><rect x="10.0" y="321" width="1.4" height="15.0" fill="rgb(212,89,26)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="202.3" y="289" width="0.3" height="15.0" fill="rgb(232,210,29)" rx="2" ry="2" />
<text text-anchor="" x="205.28" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (1 samples, 0.03%)</title><rect x="899.2" y="289" width="0.4" height="15.0" fill="rgb(234,221,30)" rx="2" ry="2" />
<text text-anchor="" x="902.24" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.06%)</title><rect x="918.7" y="257" width="0.7" height="15.0" fill="rgb(254,51,19)" rx="2" ry="2" />
<text text-anchor="" x="921.72" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_process_times (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (2 samples, 0.06%)</title><rect x="714.2" y="177" width="0.7" height="15.0" fill="rgb(253,207,13)" rx="2" ry="2" />
<text text-anchor="" x="717.18" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="624.7" y="369" width="0.4" height="15.0" fill="rgb(239,128,50)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (1 samples, 0.03%)</title><rect x="160.8" y="209" width="0.4" height="15.0" fill="rgb(234,32,27)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (106 samples, 3.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (106 samples, 3.24%)</title><rect x="1094.8" y="129" width="38.2" height="15.0" fill="rgb(219,225,27)" rx="2" ry="2" />
<text text-anchor="" x="1097.76" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ttw..</text>
</g>
<g class="func_g" onmouseover="s('do_wp_page (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_wp_page (1 samples, 0.03%)</title><rect x="11.4" y="225" width="0.4" height="15.0" fill="rgb(236,27,7)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_user (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (4 samples, 0.12%)</title><rect x="536.0" y="497" width="1.4" height="15.0" fill="rgb(223,217,6)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1 samples, 0.03%)</title><rect x="1019.7" y="257" width="0.4" height="15.0" fill="rgb(218,116,52)" rx="2" ry="2" />
<text text-anchor="" x="1022.73" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (265 samples, 8.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (265 samples, 8.10%)</title><rect x="1039.6" y="209" width="95.6" height="15.0" fill="rgb(248,116,48)" rx="2" ry="2" />
<text text-anchor="" x="1042.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_futex</text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (4 samples, 0.12%)</title><rect x="222.1" y="353" width="1.5" height="15.0" fill="rgb(245,45,41)" rx="2" ry="2" />
<text text-anchor="" x="225.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (7 samples, 0.21%)</title><rect x="696.5" y="337" width="2.5" height="15.0" fill="rgb(226,130,0)" rx="2" ry="2" />
<text text-anchor="" x="699.50" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (1 samples, 0.03%)</title><rect x="202.6" y="321" width="0.4" height="15.0" fill="rgb(230,215,33)" rx="2" ry="2" />
<text text-anchor="" x="205.64" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (1 samples, 0.03%)</title><rect x="58.3" y="417" width="0.4" height="15.0" fill="rgb(205,165,4)" rx="2" ry="2" />
<text text-anchor="" x="61.34" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZdlPv@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (1 samples, 0.03%)</title><rect x="268.3" y="321" width="0.4" height="15.0" fill="rgb(223,51,31)" rx="2" ry="2" />
<text text-anchor="" x="271.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_process (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.03%)</title><rect x="397.8" y="417" width="0.4" height="15.0" fill="rgb(206,218,11)" rx="2" ry="2" />
<text text-anchor="" x="400.80" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (11 samples, 0.34%)</title><rect x="1057.6" y="177" width="4.0" height="15.0" fill="rgb(243,72,5)" rx="2" ry="2" />
<text text-anchor="" x="1060.61" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (16 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (16 samples, 0.49%)</title><rect x="398.2" y="529" width="5.7" height="15.0" fill="rgb(228,160,1)" rx="2" ry="2" />
<text text-anchor="" x="401.16" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (3 samples, 0.09%)</title><rect x="352.3" y="161" width="1.1" height="15.0" fill="rgb(250,15,35)" rx="2" ry="2" />
<text text-anchor="" x="355.35" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (65 samples, 1.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (65 samples, 1.99%)</title><rect x="422.0" y="513" width="23.4" height="15.0" fill="rgb(237,185,1)" rx="2" ry="2" />
<text text-anchor="" x="424.97" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.03%)</title><rect x="1178.1" y="417" width="0.4" height="15.0" fill="rgb(245,180,53)" rx="2" ry="2" />
<text text-anchor="" x="1181.10" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (5 samples, 0.15%)</title><rect x="511.8" y="321" width="1.8" height="15.0" fill="rgb(251,96,31)" rx="2" ry="2" />
<text text-anchor="" x="514.80" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.06%)</title><rect x="625.1" y="369" width="0.7" height="15.0" fill="rgb(206,177,14)" rx="2" ry="2" />
<text text-anchor="" x="628.07" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (3 samples, 0.09%)</title><rect x="282.0" y="321" width="1.1" height="15.0" fill="rgb(212,139,29)" rx="2" ry="2" />
<text text-anchor="" x="285.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (2 samples, 0.06%)</title><rect x="232.6" y="305" width="0.7" height="15.0" fill="rgb(215,10,6)" rx="2" ry="2" />
<text text-anchor="" x="235.58" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (60 samples, 1.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (60 samples, 1.83%)</title><rect x="227.9" y="353" width="21.6" height="15.0" fill="rgb(221,2,25)" rx="2" ry="2" />
<text text-anchor="" x="230.89" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (16 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (16 samples, 0.49%)</title><rect x="493.4" y="321" width="5.8" height="15.0" fill="rgb(214,97,46)" rx="2" ry="2" />
<text text-anchor="" x="496.40" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="417" width="1.8" height="15.0" fill="rgb(228,48,36)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (1 samples, 0.03%)</title><rect x="523.3" y="401" width="0.4" height="15.0" fill="rgb(225,87,4)" rx="2" ry="2" />
<text text-anchor="" x="526.34" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.09%)</title><rect x="367.1" y="353" width="1.1" height="15.0" fill="rgb(235,147,50)" rx="2" ry="2" />
<text text-anchor="" x="370.14" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (271 samples, 8.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (271 samples, 8.28%)</title><rect x="880.8" y="385" width="97.8" height="15.0" fill="rgb(230,8,7)" rx="2" ry="2" />
<text text-anchor="" x="883.84" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syste..</text>
</g>
<g class="func_g" onmouseover="s('timekeeping_update.constprop.9 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>timekeeping_update.constprop.9 (1 samples, 0.03%)</title><rect x="264.7" y="177" width="0.3" height="15.0" fill="rgb(214,138,26)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="876.5" y="369" width="1.8" height="15.0" fill="rgb(228,137,45)" rx="2" ry="2" />
<text text-anchor="" x="879.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (2 samples, 0.06%)</title><rect x="1166.2" y="369" width="0.7" height="15.0" fill="rgb(249,12,14)" rx="2" ry="2" />
<text text-anchor="" x="1169.19" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (2 samples, 0.06%)</title><rect x="424.9" y="497" width="0.7" height="15.0" fill="rgb(205,13,20)" rx="2" ry="2" />
<text text-anchor="" x="427.86" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (5 samples, 0.15%)</title><rect x="831.8" y="305" width="1.8" height="15.0" fill="rgb(249,61,49)" rx="2" ry="2" />
<text text-anchor="" x="834.78" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_cond_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (2 samples, 0.06%)</title><rect x="462.4" y="497" width="0.7" height="15.0" fill="rgb(253,32,25)" rx="2" ry="2" />
<text text-anchor="" x="465.38" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (3 samples, 0.09%)</title><rect x="287.4" y="305" width="1.1" height="15.0" fill="rgb(214,128,45)" rx="2" ry="2" />
<text text-anchor="" x="290.41" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (2 samples, 0.06%)</title><rect x="233.7" y="289" width="0.7" height="15.0" fill="rgb(211,179,36)" rx="2" ry="2" />
<text text-anchor="" x="236.66" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (119 samples, 3.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (119 samples, 3.64%)</title><rect x="111.4" y="305" width="42.9" height="15.0" fill="rgb(227,221,3)" rx="2" ry="2" />
<text text-anchor="" x="114.37" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ttwu..</text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="397.8" y="465" width="0.4" height="15.0" fill="rgb(242,120,1)" rx="2" ry="2" />
<text text-anchor="" x="400.80" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="537.8" y="401" width="1.4" height="15.0" fill="rgb(239,223,16)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (7 samples, 0.21%)</title><rect x="438.9" y="465" width="2.6" height="15.0" fill="rgb(251,92,42)" rx="2" ry="2" />
<text text-anchor="" x="441.93" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (89 samples, 2.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (89 samples, 2.72%)</title><rect x="318.4" y="129" width="32.1" height="15.0" fill="rgb(247,95,8)" rx="2" ry="2" />
<text text-anchor="" x="321.44" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >na..</text>
</g>
<g class="func_g" onmouseover="s('target_load (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>target_load (1 samples, 0.03%)</title><rect x="111.0" y="305" width="0.4" height="15.0" fill="rgb(224,144,1)" rx="2" ry="2" />
<text text-anchor="" x="114.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="453.4" y="449" width="0.3" height="15.0" fill="rgb(234,109,13)" rx="2" ry="2" />
<text text-anchor="" x="456.36" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (63 samples, 1.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (63 samples, 1.93%)</title><rect x="117.9" y="241" width="22.7" height="15.0" fill="rgb(209,69,2)" rx="2" ry="2" />
<text text-anchor="" x="120.86" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.03%)</title><rect x="813.4" y="241" width="0.3" height="15.0" fill="rgb(238,80,19)" rx="2" ry="2" />
<text text-anchor="" x="816.38" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.03%)</title><rect x="511.4" y="305" width="0.4" height="15.0" fill="rgb(237,118,47)" rx="2" ry="2" />
<text text-anchor="" x="514.44" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('main (565 samples, 17.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>main (565 samples, 17.27%)</title><rect x="172.3" y="513" width="203.9" height="15.0" fill="rgb(215,198,3)" rx="2" ry="2" />
<text text-anchor="" x="175.34" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (1 samples, 0.03%)</title><rect x="911.5" y="273" width="0.4" height="15.0" fill="rgb(248,182,52)" rx="2" ry="2" />
<text text-anchor="" x="914.50" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (3 samples, 0.09%)</title><rect x="173.8" y="433" width="1.1" height="15.0" fill="rgb(216,171,27)" rx="2" ry="2" />
<text text-anchor="" x="176.78" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.06%)</title><rect x="892.4" y="353" width="0.7" height="15.0" fill="rgb(251,46,20)" rx="2" ry="2" />
<text text-anchor="" x="895.38" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="449" width="1.8" height="15.0" fill="rgb(234,8,46)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="537.8" y="481" width="1.4" height="15.0" fill="rgb(253,31,50)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (3 samples, 0.09%)</title><rect x="260.7" y="273" width="1.1" height="15.0" fill="rgb(206,182,4)" rx="2" ry="2" />
<text text-anchor="" x="263.72" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.03%)</title><rect x="160.8" y="369" width="0.4" height="15.0" fill="rgb(235,123,36)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('timekeeping_update.constprop.9 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>timekeeping_update.constprop.9 (1 samples, 0.03%)</title><rect x="228.6" y="177" width="0.4" height="15.0" fill="rgb(234,164,9)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (11 samples, 0.34%)</title><rect x="415.8" y="497" width="4.0" height="15.0" fill="rgb(218,181,23)" rx="2" ry="2" />
<text text-anchor="" x="418.84" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('drop_futex_key_refs.isra.14 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>drop_futex_key_refs.isra.14 (1 samples, 0.03%)</title><rect x="293.5" y="273" width="0.4" height="15.0" fill="rgb(213,59,50)" rx="2" ry="2" />
<text text-anchor="" x="296.55" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_enter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_enter (1 samples, 0.03%)</title><rect x="973.6" y="321" width="0.3" height="15.0" fill="rgb(232,195,14)" rx="2" ry="2" />
<text text-anchor="" x="976.55" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_worker (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_worker (1 samples, 0.03%)</title><rect x="160.8" y="257" width="0.4" height="15.0" fill="rgb(210,115,20)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (2 samples, 0.06%)</title><rect x="434.6" y="433" width="0.7" height="15.0" fill="rgb(226,228,25)" rx="2" ry="2" />
<text text-anchor="" x="437.60" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (8 samples, 0.24%)</title><rect x="13.2" y="433" width="2.9" height="15.0" fill="rgb(213,25,24)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (1 samples, 0.03%)</title><rect x="262.2" y="353" width="0.3" height="15.0" fill="rgb(235,214,35)" rx="2" ry="2" />
<text text-anchor="" x="265.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (1 samples, 0.03%)</title><rect x="865.0" y="401" width="0.3" height="15.0" fill="rgb(253,26,38)" rx="2" ry="2" />
<text text-anchor="" x="867.97" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.03%)</title><rect x="11.4" y="289" width="0.4" height="15.0" fill="rgb(217,226,42)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (22 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (22 samples, 0.67%)</title><rect x="163.0" y="449" width="7.9" height="15.0" fill="rgb(235,123,10)" rx="2" ry="2" />
<text text-anchor="" x="165.96" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_elf_binary (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (1 samples, 0.03%)</title><rect x="17.6" y="449" width="0.3" height="15.0" fill="rgb(212,22,42)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (1 samples, 0.03%)</title><rect x="1145.3" y="289" width="0.3" height="15.0" fill="rgb(234,71,6)" rx="2" ry="2" />
<text text-anchor="" x="1148.27" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_setup (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (9 samples, 0.28%)</title><rect x="520.5" y="417" width="3.2" height="15.0" fill="rgb(212,64,24)" rx="2" ry="2" />
<text text-anchor="" x="523.46" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('retint_careful (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>retint_careful (4 samples, 0.12%)</title><rect x="536.0" y="513" width="1.4" height="15.0" fill="rgb(224,137,12)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_setclock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_setclock (1 samples, 0.03%)</title><rect x="278.4" y="337" width="0.4" height="15.0" fill="rgb(208,7,16)" rx="2" ry="2" />
<text text-anchor="" x="281.39" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_init@@GLIBC_2.3.2 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_init@@GLIBC_2.3.2 (1 samples, 0.03%)</title><rect x="277.7" y="337" width="0.3" height="15.0" fill="rgb(242,181,22)" rx="2" ry="2" />
<text text-anchor="" x="280.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (168 samples, 5.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (168 samples, 5.14%)</title><rect x="94.8" y="337" width="60.6" height="15.0" fill="rgb(235,116,14)" rx="2" ry="2" />
<text text-anchor="" x="97.78" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >defaul..</text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (1 samples, 0.03%)</title><rect x="621.1" y="401" width="0.4" height="15.0" fill="rgb(231,49,39)" rx="2" ry="2" />
<text text-anchor="" x="624.10" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1081.4" y="129" width="0.4" height="15.0" fill="rgb(241,74,33)" rx="2" ry="2" />
<text text-anchor="" x="1084.42" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('resched_task (26 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>resched_task (26 samples, 0.79%)</title><rect x="1123.6" y="97" width="9.4" height="15.0" fill="rgb(241,108,54)" rx="2" ry="2" />
<text text-anchor="" x="1126.62" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('handle_mm_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.03%)</title><rect x="11.4" y="241" width="0.4" height="15.0" fill="rgb(251,40,36)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="264.7" y="289" width="0.3" height="15.0" fill="rgb(223,197,28)" rx="2" ry="2" />
<text text-anchor="" x="267.69" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (1 samples, 0.03%)</title><rect x="142.0" y="273" width="0.4" height="15.0" fill="rgb(242,197,36)" rx="2" ry="2" />
<text text-anchor="" x="145.03" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (1 samples, 0.03%)</title><rect x="435.7" y="433" width="0.3" height="15.0" fill="rgb(216,223,35)" rx="2" ry="2" />
<text text-anchor="" x="438.68" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (1 samples, 0.03%)</title><rect x="1157.5" y="321" width="0.4" height="15.0" fill="rgb(222,16,41)" rx="2" ry="2" />
<text text-anchor="" x="1160.53" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (1 samples, 0.03%)</title><rect x="244.5" y="305" width="0.3" height="15.0" fill="rgb(213,154,15)" rx="2" ry="2" />
<text text-anchor="" x="247.48" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (176 samples, 5.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (176 samples, 5.38%)</title><rect x="749.2" y="273" width="63.5" height="15.0" fill="rgb(249,226,53)" rx="2" ry="2" />
<text text-anchor="" x="752.17" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf..</text>
</g>
<g class="func_g" onmouseover="s('futex_wait_setup (9 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (9 samples, 0.28%)</title><rect x="358.8" y="273" width="3.3" height="15.0" fill="rgb(244,207,8)" rx="2" ry="2" />
<text text-anchor="" x="361.84" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('insert_work (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>insert_work (1 samples, 0.03%)</title><rect x="713.5" y="161" width="0.3" height="15.0" fill="rgb(218,103,52)" rx="2" ry="2" />
<text text-anchor="" x="716.45" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (380 samples, 11.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (380 samples, 11.62%)</title><rect x="35.3" y="513" width="137.0" height="15.0" fill="rgb(228,113,5)" rx="2" ry="2" />
<text text-anchor="" x="38.25" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call_fastp..</text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (89 samples, 2.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (89 samples, 2.72%)</title><rect x="318.4" y="177" width="32.1" height="15.0" fill="rgb(211,206,33)" rx="2" ry="2" />
<text text-anchor="" x="321.44" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pe..</text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.03%)</title><rect x="1005.3" y="305" width="0.4" height="15.0" fill="rgb(227,95,6)" rx="2" ry="2" />
<text text-anchor="" x="1008.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.03%)</title><rect x="285.2" y="305" width="0.4" height="15.0" fill="rgb(236,163,41)" rx="2" ry="2" />
<text text-anchor="" x="288.25" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg_handler (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg_handler (5 samples, 0.15%)</title><rect x="44.6" y="401" width="1.8" height="15.0" fill="rgb(221,81,17)" rx="2" ry="2" />
<text text-anchor="" x="47.63" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (7 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (7 samples, 0.21%)</title><rect x="53.7" y="433" width="2.5" height="15.0" fill="rgb(213,181,37)" rx="2" ry="2" />
<text text-anchor="" x="56.65" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (2 samples, 0.06%)</title><rect x="499.2" y="337" width="0.7" height="15.0" fill="rgb(243,47,16)" rx="2" ry="2" />
<text text-anchor="" x="502.17" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (2 samples, 0.06%)</title><rect x="824.9" y="289" width="0.7" height="15.0" fill="rgb(219,142,18)" rx="2" ry="2" />
<text text-anchor="" x="827.93" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_munmap (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_munmap (1 samples, 0.03%)</title><rect x="17.9" y="497" width="0.4" height="15.0" fill="rgb(219,198,46)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('plist_add (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>plist_add (1 samples, 0.03%)</title><rect x="295.7" y="257" width="0.4" height="15.0" fill="rgb(254,28,43)" rx="2" ry="2" />
<text text-anchor="" x="298.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (6 samples, 0.18%)</title><rect x="1027.7" y="241" width="2.1" height="15.0" fill="rgb(207,152,28)" rx="2" ry="2" />
<text text-anchor="" x="1030.66" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.06%)</title><rect x="960.9" y="241" width="0.7" height="15.0" fill="rgb(228,199,11)" rx="2" ry="2" />
<text text-anchor="" x="963.93" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (2 samples, 0.06%)</title><rect x="1008.5" y="289" width="0.8" height="15.0" fill="rgb(216,133,1)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="624.7" y="209" width="0.4" height="15.0" fill="rgb(232,80,5)" rx="2" ry="2" />
<text text-anchor="" x="627.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (358 samples, 10.94%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (358 samples, 10.94%)</title><rect x="1013.6" y="273" width="129.1" height="15.0" fill="rgb(236,213,8)" rx="2" ry="2" />
<text text-anchor="" x="1016.60" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Aw..</text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (6 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (6 samples, 0.18%)</title><rect x="911.9" y="273" width="2.1" height="15.0" fill="rgb(225,10,38)" rx="2" ry="2" />
<text text-anchor="" x="914.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (1 samples, 0.03%)</title><rect x="825.6" y="289" width="0.4" height="15.0" fill="rgb(207,136,43)" rx="2" ry="2" />
<text text-anchor="" x="828.65" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_user (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (4 samples, 0.12%)</title><rect x="537.8" y="497" width="1.4" height="15.0" fill="rgb(207,2,25)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.03%)</title><rect x="463.5" y="401" width="0.3" height="15.0" fill="rgb(243,0,41)" rx="2" ry="2" />
<text text-anchor="" x="466.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (27 samples, 0.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (27 samples, 0.83%)</title><rect x="210.9" y="369" width="9.8" height="15.0" fill="rgb(225,73,14)" rx="2" ry="2" />
<text text-anchor="" x="213.94" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_comm (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_comm (1 samples, 0.03%)</title><rect x="17.6" y="401" width="0.3" height="15.0" fill="rgb(250,27,44)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.03%)</title><rect x="1019.7" y="241" width="0.4" height="15.0" fill="rgb(237,102,22)" rx="2" ry="2" />
<text text-anchor="" x="1022.73" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.12%)</title><rect x="374.7" y="113" width="1.5" height="15.0" fill="rgb(245,121,2)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (1 samples, 0.03%)</title><rect x="464.2" y="497" width="0.3" height="15.0" fill="rgb(245,108,47)" rx="2" ry="2" />
<text text-anchor="" x="467.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_match.9458 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_match.9458 (1 samples, 0.03%)</title><rect x="17.2" y="513" width="0.4" height="15.0" fill="rgb(215,108,53)" rx="2" ry="2" />
<text text-anchor="" x="20.21" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (111 samples, 3.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (111 samples, 3.39%)</title><rect x="483.7" y="449" width="40.0" height="15.0" fill="rgb(225,184,29)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_..</text>
</g>
<g class="func_g" onmouseover="s('testing::Test::Run (479 samples, 14.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::Test::Run (479 samples, 14.64%)</title><rect x="203.4" y="417" width="172.8" height="15.0" fill="rgb(244,53,53)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Test::Run</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="952.3" y="145" width="1.4" height="15.0" fill="rgb(221,161,9)" rx="2" ry="2" />
<text text-anchor="" x="955.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_task_comm (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_task_comm (1 samples, 0.03%)</title><rect x="17.6" y="417" width="0.3" height="15.0" fill="rgb(231,168,17)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="228.6" y="321" width="0.4" height="15.0" fill="rgb(221,174,13)" rx="2" ry="2" />
<text text-anchor="" x="231.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (47 samples, 1.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (47 samples, 1.44%)</title><rect x="723.9" y="241" width="17.0" height="15.0" fill="rgb(217,208,29)" rx="2" ry="2" />
<text text-anchor="" x="726.92" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (1 samples, 0.03%)</title><rect x="871.1" y="401" width="0.4" height="15.0" fill="rgb(230,68,48)" rx="2" ry="2" />
<text text-anchor="" x="874.10" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.12%)</title><rect x="536.0" y="417" width="1.4" height="15.0" fill="rgb(249,26,2)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.12%)</title><rect x="10.0" y="385" width="1.4" height="15.0" fill="rgb(215,194,41)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::__detail::_List_node_base::_M_unhook (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_unhook (2 samples, 0.06%)</title><rect x="469.6" y="465" width="0.7" height="15.0" fill="rgb(232,34,23)" rx="2" ry="2" />
<text text-anchor="" x="472.59" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (213 samples, 6.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (213 samples, 6.51%)</title><rect x="893.5" y="337" width="76.8" height="15.0" fill="rgb(216,220,54)" rx="2" ry="2" />
<text text-anchor="" x="896.47" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_recv..</text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="374.7" y="81" width="1.5" height="15.0" fill="rgb(209,176,12)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.03%)</title><rect x="314.1" y="209" width="0.4" height="15.0" fill="rgb(228,183,11)" rx="2" ry="2" />
<text text-anchor="" x="317.11" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_process (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.03%)</title><rect x="160.8" y="241" width="0.4" height="15.0" fill="rgb(236,76,13)" rx="2" ry="2" />
<text text-anchor="" x="163.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (8 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (8 samples, 0.24%)</title><rect x="826.0" y="289" width="2.9" height="15.0" fill="rgb(230,121,54)" rx="2" ry="2" />
<text text-anchor="" x="829.01" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (11 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (11 samples, 0.34%)</title><rect x="269.0" y="321" width="4.0" height="15.0" fill="rgb(207,68,12)" rx="2" ry="2" />
<text text-anchor="" x="272.02" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (5 samples, 0.15%)</title><rect x="511.8" y="273" width="1.8" height="15.0" fill="rgb(212,152,49)" rx="2" ry="2" />
<text text-anchor="" x="514.80" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unmap_single_vma (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unmap_single_vma (1 samples, 0.03%)</title><rect x="17.9" y="417" width="0.4" height="15.0" fill="rgb(243,53,12)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.12%)</title><rect x="537.8" y="433" width="1.4" height="15.0" fill="rgb(238,209,19)" rx="2" ry="2" />
<text text-anchor="" x="540.77" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (4 samples, 0.12%)</title><rect x="252.1" y="305" width="1.4" height="15.0" fill="rgb(251,13,42)" rx="2" ry="2" />
<text text-anchor="" x="255.06" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.12%)</title><rect x="374.7" y="257" width="1.5" height="15.0" fill="rgb(217,103,43)" rx="2" ry="2" />
<text text-anchor="" x="377.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (32 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (32 samples, 0.98%)</title><rect x="142.8" y="289" width="11.5" height="15.0" fill="rgb(214,67,49)" rx="2" ry="2" />
<text text-anchor="" x="145.75" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.03%)</title><rect x="310.9" y="145" width="0.3" height="15.0" fill="rgb(249,164,18)" rx="2" ry="2" />
<text text-anchor="" x="313.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_remove_rmap (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_remove_rmap (1 samples, 0.03%)</title><rect x="17.9" y="385" width="0.4" height="15.0" fill="rgb(224,0,36)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (1 samples, 0.03%)</title><rect x="741.2" y="241" width="0.4" height="15.0" fill="rgb(248,33,42)" rx="2" ry="2" />
<text text-anchor="" x="744.23" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="177.0" y="257" width="0.4" height="15.0" fill="rgb(245,187,30)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (2 samples, 0.06%)</title><rect x="683.9" y="305" width="0.7" height="15.0" fill="rgb(246,84,17)" rx="2" ry="2" />
<text text-anchor="" x="686.87" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_irq_enter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_irq_enter (1 samples, 0.03%)</title><rect x="1081.4" y="81" width="0.4" height="15.0" fill="rgb(213,4,11)" rx="2" ry="2" />
<text text-anchor="" x="1084.42" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base:: (1,737 samples, 53.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>base:: (1,737 samples, 53.10%)</title><rect x="563.4" y="513" width="626.6" height="15.0" fill="rgb(249,206,21)" rx="2" ry="2" />
<text text-anchor="" x="566.38" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::</text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (1 samples, 0.03%)</title><rect x="425.9" y="481" width="0.4" height="15.0" fill="rgb(226,154,3)" rx="2" ry="2" />
<text text-anchor="" x="428.94" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.03%)</title><rect x="268.7" y="321" width="0.3" height="15.0" fill="rgb(252,134,0)" rx="2" ry="2" />
<text text-anchor="" x="271.65" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.03%)</title><rect x="282.4" y="305" width="0.3" height="15.0" fill="rgb(248,37,47)" rx="2" ry="2" />
<text text-anchor="" x="285.36" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.12%)</title><rect x="353.8" y="129" width="1.4" height="15.0" fill="rgb(213,46,52)" rx="2" ry="2" />
<text text-anchor="" x="356.79" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_handle.isra.17 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (1 samples, 0.03%)</title><rect x="293.2" y="177" width="0.3" height="15.0" fill="rgb(236,123,39)" rx="2" ry="2" />
<text text-anchor="" x="296.19" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (5 samples, 0.15%)</title><rect x="1117.1" y="49" width="1.8" height="15.0" fill="rgb(252,222,45)" rx="2" ry="2" />
<text text-anchor="" x="1120.13" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.15%)</title><rect x="11.4" y="497" width="1.8" height="15.0" fill="rgb(235,40,10)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (3 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (3 samples, 0.09%)</title><rect x="642.4" y="401" width="1.1" height="15.0" fill="rgb(223,82,10)" rx="2" ry="2" />
<text text-anchor="" x="645.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (111 samples, 3.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (111 samples, 3.39%)</title><rect x="483.7" y="465" width="40.0" height="15.0" fill="rgb(233,49,53)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (5 samples, 0.15%)</title><rect x="511.8" y="305" width="1.8" height="15.0" fill="rgb(237,24,8)" rx="2" ry="2" />
<text text-anchor="" x="514.80" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.06%)</title><rect x="743.0" y="209" width="0.8" height="15.0" fill="rgb(249,175,54)" rx="2" ry="2" />
<text text-anchor="" x="746.04" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (5 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (5 samples, 0.15%)</title><rect x="451.9" y="465" width="1.8" height="15.0" fill="rgb(208,62,49)" rx="2" ry="2" />
<text text-anchor="" x="454.91" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.03%)</title><rect x="482.9" y="449" width="0.4" height="15.0" fill="rgb(217,108,43)" rx="2" ry="2" />
<text text-anchor="" x="485.94" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="397.8" y="481" width="0.4" height="15.0" fill="rgb(223,130,40)" rx="2" ry="2" />
<text text-anchor="" x="400.80" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (10 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (10 samples, 0.31%)</title><rect x="240.5" y="305" width="3.6" height="15.0" fill="rgb(224,116,44)" rx="2" ry="2" />
<text text-anchor="" x="243.52" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (1 samples, 0.03%)</title><rect x="177.0" y="81" width="0.4" height="15.0" fill="rgb(219,145,12)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('signal_wake_up_state (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>signal_wake_up_state (1 samples, 0.03%)</title><rect x="177.0" y="129" width="0.4" height="15.0" fill="rgb(230,37,3)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.12%)</title><rect x="536.0" y="433" width="1.4" height="15.0" fill="rgb(241,194,34)" rx="2" ry="2" />
<text text-anchor="" x="538.97" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment