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
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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="594" onload="init(evt)" viewBox="0 0 1200 594" 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="594.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="577" 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('do_page_fault (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.09%)</title><rect x="14.2" y="257" width="1.0" height="15.0" fill="rgb(206,198,14)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (8 samples, 0.71%)</title><rect x="978.3" y="177" width="8.4" height="15.0" fill="rgb(213,212,27)" rx="2" ry="2" />
<text text-anchor="" x="981.31" y="187.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.09%)</title><rect x="287.7" y="225" width="1.1" height="15.0" fill="rgb(211,177,10)" rx="2" ry="2" />
<text text-anchor="" x="290.71" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (2 samples, 0.18%)</title><rect x="826.4" y="241" width="2.1" height="15.0" fill="rgb(246,171,25)" rx="2" ry="2" />
<text text-anchor="" x="829.36" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (2 samples, 0.18%)</title><rect x="558.1" y="417" width="2.1" height="15.0" fill="rgb(211,166,51)" rx="2" ry="2" />
<text text-anchor="" x="561.08" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (50 samples, 4.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (50 samples, 4.44%)</title><rect x="990.9" y="225" width="52.4" height="15.0" fill="rgb(222,138,6)" rx="2" ry="2" />
<text text-anchor="" x="993.89" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >skb_c..</text>
</g>
<g class="func_g" onmouseover="s('fget_light (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (3 samples, 0.27%)</title><rect x="834.7" y="353" width="3.2" height="15.0" fill="rgb(208,205,25)" rx="2" ry="2" />
<text text-anchor="" x="837.74" y="363.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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (1 samples, 0.09%)</title><rect x="1178.5" y="353" width="1.0" height="15.0" fill="rgb(207,47,7)" rx="2" ry="2" />
<text text-anchor="" x="1181.47" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (65 samples, 5.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (65 samples, 5.77%)</title><rect x="393.6" y="289" width="68.1" height="15.0" fill="rgb(213,73,32)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_futex</text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (4 samples, 0.36%)</title><rect x="545.5" y="433" width="4.2" height="15.0" fill="rgb(249,100,13)" rx="2" ry="2" />
<text text-anchor="" x="548.51" y="443.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.09%)</title><rect x="287.7" y="241" width="1.1" height="15.0" fill="rgb(215,138,51)" rx="2" ry="2" />
<text text-anchor="" x="290.71" 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 (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.71%)</title><rect x="19.4" y="369" width="8.4" height="15.0" fill="rgb(228,110,44)" rx="2" ry="2" />
<text text-anchor="" x="22.43" 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::RemoveAwakable (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (2 samples, 0.18%)</title><rect x="270.9" y="417" width="2.1" height="15.0" fill="rgb(213,147,22)" rx="2" ry="2" />
<text text-anchor="" x="273.94" y="427.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.36%)</title><rect x="461.7" y="225" width="4.2" height="15.0" fill="rgb(241,131,51)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (65 samples, 5.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (65 samples, 5.77%)</title><rect x="393.6" y="273" width="68.1" height="15.0" fill="rgb(214,212,10)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_w..</text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (135 samples, 11.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (135 samples, 11.99%)</title><rect x="44.6" y="433" width="141.5" height="15.0" fill="rgb(244,13,20)" rx="2" ry="2" />
<text text-anchor="" x="47.58" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_stream_sendmsg</text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (2 samples, 0.18%)</title><rect x="1059.0" y="337" width="2.1" height="15.0" fill="rgb(239,216,46)" rx="2" ry="2" />
<text text-anchor="" x="1062.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (84 samples, 7.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (84 samples, 7.46%)</title><rect x="279.3" y="401" width="88.1" height="15.0" fill="rgb(249,199,2)" rx="2" ry="2" />
<text text-anchor="" x="282.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_futex</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (9 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (9 samples, 0.80%)</title><rect x="535.0" y="417" width="9.5" height="15.0" fill="rgb(228,169,51)" rx="2" ry="2" />
<text text-anchor="" x="538.03" 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::Awake (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Awake (1 samples, 0.09%)</title><rect x="1169.0" y="257" width="1.1" height="15.0" fill="rgb(249,11,53)" rx="2" ry="2" />
<text text-anchor="" x="1172.04" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.09%)</title><rect x="172.4" y="225" width="1.1" height="15.0" fill="rgb(210,116,46)" rx="2" ry="2" />
<text text-anchor="" x="175.43" y="235.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.09%)</title><rect x="465.9" y="161" width="1.0" height="15.0" fill="rgb(243,145,11)" rx="2" ry="2" />
<text text-anchor="" x="468.86" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (84 samples, 7.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (84 samples, 7.46%)</title><rect x="279.3" y="369" width="88.1" height="15.0" fill="rgb(222,161,49)" rx="2" ry="2" />
<text text-anchor="" x="282.33" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_wait</text>
</g>
<g class="func_g" onmouseover="s('schedule (65 samples, 5.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (65 samples, 5.77%)</title><rect x="393.6" y="241" width="68.1" height="15.0" fill="rgb(236,38,37)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.36%)</title><rect x="15.2" y="257" width="4.2" height="15.0" fill="rgb(235,78,13)" rx="2" ry="2" />
<text text-anchor="" x="18.24" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (18 samples, 1.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (18 samples, 1.60%)</title><rect x="510.9" y="433" width="18.9" height="15.0" fill="rgb(212,42,53)" rx="2" ry="2" />
<text text-anchor="" x="513.92" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (2 samples, 0.18%)</title><rect x="635.6" y="385" width="2.1" height="15.0" fill="rgb(242,229,11)" rx="2" ry="2" />
<text text-anchor="" x="638.63" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.09%)</title><rect x="465.9" y="193" width="1.0" height="15.0" fill="rgb(222,131,5)" rx="2" ry="2" />
<text text-anchor="" x="468.86" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (11 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (11 samples, 0.98%)</title><rect x="582.2" y="513" width="11.5" height="15.0" fill="rgb(225,136,49)" rx="2" ry="2" />
<text text-anchor="" x="585.18" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (5 samples, 0.44%)</title><rect x="117.9" y="385" width="5.3" height="15.0" fill="rgb(227,49,31)" rx="2" ry="2" />
<text text-anchor="" x="120.94" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (5 samples, 0.44%)</title><rect x="931.2" y="257" width="5.2" height="15.0" fill="rgb(237,120,50)" rx="2" ry="2" />
<text text-anchor="" x="934.15" 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::HasOneRef (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (1 samples, 0.09%)</title><rect x="848.4" y="385" width="1.0" height="15.0" fill="rgb(248,159,42)" rx="2" ry="2" />
<text text-anchor="" x="851.37" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (64 samples, 5.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (64 samples, 5.68%)</title><rect x="393.6" y="113" width="67.0" height="15.0" fill="rgb(239,176,18)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >native_..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::AddAwakable (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (1 samples, 0.09%)</title><rect x="550.7" y="417" width="1.1" height="15.0" fill="rgb(242,195,0)" rx="2" ry="2" />
<text text-anchor="" x="553.75" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="433" width="5.2" height="15.0" fill="rgb(230,210,31)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="443.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (1 samples, 0.09%)</title><rect x="897.6" y="289" width="1.1" height="15.0" fill="rgb(212,101,39)" rx="2" ry="2" />
<text text-anchor="" x="900.62" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (539 samples, 47.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (539 samples, 47.87%)</title><rect x="625.2" y="417" width="564.8" height="15.0" fill="rgb(227,126,9)" rx="2" ry="2" />
<text text-anchor="" x="628.15" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_base_loop</text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (1 samples, 0.09%)</title><rect x="1151.2" y="49" width="1.1" height="15.0" fill="rgb(239,144,42)" rx="2" ry="2" />
<text text-anchor="" x="1154.23" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (1 samples, 0.09%)</title><rect x="637.7" y="257" width="1.1" height="15.0" fill="rgb(206,200,35)" rx="2" ry="2" />
<text text-anchor="" x="640.73" y="267.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.18%)</title><rect x="150.4" y="289" width="2.1" height="15.0" fill="rgb(223,54,0)" rx="2" ry="2" />
<text text-anchor="" x="153.43" y="299.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 (6 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (6 samples, 0.53%)</title><rect x="653.4" y="337" width="6.3" height="15.0" fill="rgb(223,15,18)" rx="2" ry="2" />
<text text-anchor="" x="656.45" y="347.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.36%)</title><rect x="461.7" y="193" width="4.2" height="15.0" fill="rgb(224,94,34)" rx="2" ry="2" />
<text text-anchor="" x="464.67" 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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.36%)</title><rect x="10.0" y="337" width="4.2" height="15.0" fill="rgb(248,106,31)" 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('finish_task_switch (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.71%)</title><rect x="19.4" y="449" width="8.4" height="15.0" fill="rgb(222,220,34)" rx="2" ry="2" />
<text text-anchor="" x="22.43" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (2 samples, 0.18%)</title><rect x="1149.1" y="113" width="2.1" height="15.0" fill="rgb(244,223,17)" rx="2" ry="2" />
<text text-anchor="" x="1152.13" y="123.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (4 samples, 0.36%)</title><rect x="10.0" y="465" width="4.2" height="15.0" fill="rgb(242,197,41)" 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('[unknown] (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.36%)</title><rect x="10.0" y="513" width="4.2" height="15.0" fill="rgb(227,181,47)" 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('unix_stream_recvmsg (87 samples, 7.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (87 samples, 7.73%)</title><rect x="953.2" y="241" width="91.1" height="15.0" fill="rgb(214,56,47)" rx="2" ry="2" />
<text text-anchor="" x="956.16" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_strea..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (3 samples, 0.27%)</title><rect x="944.8" y="209" width="3.1" height="15.0" fill="rgb(230,81,38)" rx="2" ry="2" />
<text text-anchor="" x="947.78" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (12 samples, 1.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (12 samples, 1.07%)</title><rect x="562.3" y="321" width="12.5" height="15.0" fill="rgb(212,157,14)" rx="2" ry="2" />
<text text-anchor="" x="565.27" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (4 samples, 0.36%)</title><rect x="973.1" y="161" width="4.2" height="15.0" fill="rgb(247,131,27)" rx="2" ry="2" />
<text text-anchor="" x="976.07" 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::RemoveAwakable (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (3 samples, 0.27%)</title><rect x="390.4" y="337" width="3.2" height="15.0" fill="rgb(220,219,1)" rx="2" ry="2" />
<text text-anchor="" x="393.41" y="347.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (1 samples, 0.09%)</title><rect x="868.3" y="337" width="1.0" height="15.0" fill="rgb(214,55,0)" rx="2" ry="2" />
<text text-anchor="" x="871.28" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_blocked_averages (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.09%)</title><rect x="460.6" y="193" width="1.1" height="15.0" fill="rgb(253,211,25)" rx="2" ry="2" />
<text text-anchor="" x="463.62" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (1 samples, 0.09%)</title><rect x="573.8" y="289" width="1.0" height="15.0" fill="rgb(235,203,45)" rx="2" ry="2" />
<text text-anchor="" x="576.80" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo_message_pi (542 samples, 48.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo_message_pi (542 samples, 48.13%)</title><rect x="14.2" y="529" width="568.0" height="15.0" fill="rgb(253,63,54)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo_message_pi</text>
</g>
<g class="func_g" onmouseover="s('fget_light (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (2 samples, 0.18%)</title><rect x="187.1" y="433" width="2.1" height="15.0" fill="rgb(208,225,2)" rx="2" ry="2" />
<text text-anchor="" x="190.10" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.09%)</title><rect x="1136.6" y="161" width="1.0" height="15.0" fill="rgb(231,31,54)" rx="2" ry="2" />
<text text-anchor="" x="1139.55" y="171.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, 6.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (68 samples, 6.04%)</title><rect x="290.9" y="257" width="71.2" height="15.0" fill="rgb(226,130,44)" rx="2" ry="2" />
<text text-anchor="" x="293.85" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_pmu..</text>
</g>
<g class="func_g" onmouseover="s('testing::UnitTest::Run (89 samples, 7.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::UnitTest::Run (89 samples, 7.90%)</title><rect x="373.6" y="465" width="93.3" height="15.0" fill="rgb(220,3,48)" rx="2" ry="2" />
<text text-anchor="" x="376.64" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Un..</text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.09%)</title><rect x="171.4" y="209" width="1.0" height="15.0" fill="rgb(242,57,15)" rx="2" ry="2" />
<text text-anchor="" x="174.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (1 samples, 0.09%)</title><rect x="621.0" y="417" width="1.0" height="15.0" fill="rgb(231,92,12)" rx="2" ry="2" />
<text text-anchor="" x="623.96" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (4 samples, 0.36%)</title><rect x="1128.2" y="209" width="4.2" height="15.0" fill="rgb(253,161,47)" rx="2" ry="2" />
<text text-anchor="" x="1131.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (7 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (7 samples, 0.62%)</title><rect x="283.5" y="305" width="7.4" height="15.0" fill="rgb(214,20,53)" rx="2" ry="2" />
<text text-anchor="" x="286.52" 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 (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (8 samples, 0.71%)</title><rect x="19.4" y="353" width="8.4" height="15.0" fill="rgb(237,60,23)" rx="2" ry="2" />
<text text-anchor="" x="22.43" 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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.36%)</title><rect x="15.2" y="177" width="4.2" height="15.0" fill="rgb(228,93,32)" rx="2" ry="2" />
<text text-anchor="" x="18.24" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (2 samples, 0.18%)</title><rect x="566.5" y="241" width="2.1" height="15.0" fill="rgb(236,58,3)" rx="2" ry="2" />
<text text-anchor="" x="569.47" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (1 samples, 0.09%)</title><rect x="875.6" y="209" width="1.1" height="15.0" fill="rgb(240,191,11)" rx="2" ry="2" />
<text text-anchor="" x="878.61" 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 (54 samples, 4.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (54 samples, 4.80%)</title><rect x="1113.5" y="289" width="56.6" height="15.0" fill="rgb(243,181,9)" rx="2" ry="2" />
<text text-anchor="" x="1116.50" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::ChannelThread::Start (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::ChannelThread::Start (5 samples, 0.44%)</title><rect x="461.7" y="353" width="5.2" height="15.0" fill="rgb(235,153,2)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (161 samples, 14.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (161 samples, 14.30%)</title><rect x="660.8" y="289" width="168.7" height="15.0" fill="rgb(232,3,19)" rx="2" ry="2" />
<text text-anchor="" x="663.78" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__schedule</text>
</g>
<g class="func_g" onmouseover="s('do_futex (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.36%)</title><rect x="253.1" y="321" width="4.2" height="15.0" fill="rgb(245,39,17)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 0.27%)</title><rect x="851.5" y="385" width="3.2" height="15.0" fill="rgb(240,94,27)" rx="2" ry="2" />
<text text-anchor="" x="854.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (1 samples, 0.09%)</title><rect x="1042.2" y="209" width="1.1" height="15.0" fill="rgb(221,89,43)" rx="2" ry="2" />
<text text-anchor="" x="1045.24" y="219.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.36%)</title><rect x="253.1" y="353" width="4.2" height="15.0" fill="rgb(233,1,49)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="363.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.18%)</title><rect x="954.2" y="225" width="2.1" height="15.0" fill="rgb(206,100,36)" rx="2" ry="2" />
<text text-anchor="" x="957.21" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (12 samples, 1.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (12 samples, 1.07%)</title><rect x="1151.2" y="65" width="12.6" height="15.0" fill="rgb(229,129,51)" rx="2" ry="2" />
<text text-anchor="" x="1154.23" y="75.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (1 samples, 0.09%)</title><rect x="1050.6" y="273" width="1.1" height="15.0" fill="rgb(205,210,27)" rx="2" ry="2" />
<text text-anchor="" x="1053.62" y="283.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 (64 samples, 5.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (64 samples, 5.68%)</title><rect x="393.6" y="193" width="67.0" height="15.0" fill="rgb(228,194,5)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf_..</text>
</g>
<g class="func_g" onmouseover="s('free_hot_cold_page (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_hot_cold_page (4 samples, 0.36%)</title><rect x="965.7" y="145" width="4.2" height="15.0" fill="rgb(205,195,52)" rx="2" ry="2" />
<text text-anchor="" x="968.74" y="155.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (2 samples, 0.18%)</title><rect x="386.2" y="321" width="2.1" height="15.0" fill="rgb(219,93,13)" rx="2" ry="2" />
<text text-anchor="" x="389.22" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (183 samples, 16.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (183 samples, 16.25%)</title><rect x="648.2" y="369" width="191.8" height="15.0" fill="rgb(222,184,51)" rx="2" ry="2" />
<text text-anchor="" x="651.21" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_epoll_wait</text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.09%)</title><rect x="170.3" y="209" width="1.1" height="15.0" fill="rgb(214,182,12)" rx="2" ry="2" />
<text text-anchor="" x="173.34" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.09%)</title><rect x="572.8" y="289" width="1.0" height="15.0" fill="rgb(221,181,50)" rx="2" ry="2" />
<text text-anchor="" x="575.75" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (90 samples, 7.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (90 samples, 7.99%)</title><rect x="487.9" y="465" width="94.3" height="15.0" fill="rgb(253,70,3)" rx="2" ry="2" />
<text text-anchor="" x="490.87" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syste..</text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (7 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (7 samples, 0.62%)</title><rect x="918.6" y="321" width="7.3" height="15.0" fill="rgb(229,117,6)" rx="2" ry="2" />
<text text-anchor="" x="921.58" y="331.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.09%)</title><rect x="465.9" y="241" width="1.0" height="15.0" fill="rgb(210,144,42)" rx="2" ry="2" />
<text text-anchor="" x="468.86" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.09%)</title><rect x="362.1" y="289" width="1.1" height="15.0" fill="rgb(241,126,42)" rx="2" ry="2" />
<text text-anchor="" x="365.11" y="299.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.09%)</title><rect x="1121.9" y="241" width="1.0" height="15.0" fill="rgb(244,208,29)" rx="2" ry="2" />
<text text-anchor="" x="1124.88" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (91 samples, 8.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (91 samples, 8.08%)</title><rect x="486.8" y="481" width="95.4" height="15.0" fill="rgb(221,224,53)" rx="2" ry="2" />
<text text-anchor="" x="489.82" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syste..</text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (1 samples, 0.09%)</title><rect x="987.7" y="225" width="1.1" height="15.0" fill="rgb(251,140,3)" rx="2" ry="2" />
<text text-anchor="" x="990.74" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_compound_page (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_compound_page (3 samples, 0.27%)</title><rect x="969.9" y="161" width="3.2" height="15.0" fill="rgb(230,217,46)" rx="2" ry="2" />
<text text-anchor="" x="972.93" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (2 samples, 0.18%)</title><rect x="546.6" y="369" width="2.1" height="15.0" fill="rgb(216,31,32)" rx="2" ry="2" />
<text text-anchor="" x="549.55" y="379.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.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_tail (8 samples, 0.71%)</title><rect x="19.4" y="465" width="8.4" height="15.0" fill="rgb(211,197,19)" rx="2" ry="2" />
<text text-anchor="" x="22.43" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.09%)</title><rect x="14.2" y="241" width="1.0" height="15.0" fill="rgb(205,27,51)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('all (1,126 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
<title>all (1,126 samples, 100%)</title><rect x="10.0" y="545" width="1180.0" height="15.0" fill="rgb(233,26,39)" 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('testing::Test::Run (89 samples, 7.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::Test::Run (89 samples, 7.90%)</title><rect x="373.6" y="401" width="93.3" height="15.0" fill="rgb(210,17,4)" rx="2" ry="2" />
<text text-anchor="" x="376.64" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Te..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (1 samples, 0.09%)</title><rect x="553.9" y="417" width="1.0" height="15.0" fill="rgb(209,12,5)" rx="2" ry="2" />
<text text-anchor="" x="556.89" y="427.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.09%)</title><rect x="574.8" y="321" width="1.1" height="15.0" fill="rgb(244,60,17)" rx="2" ry="2" />
<text text-anchor="" x="577.85" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (6 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (6 samples, 0.53%)</title><rect x="593.7" y="513" width="6.3" height="15.0" fill="rgb(215,145,50)" rx="2" ry="2" />
<text text-anchor="" x="596.71" 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 (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (4 samples, 0.36%)</title><rect x="921.7" y="289" width="4.2" height="15.0" fill="rgb(236,64,36)" rx="2" ry="2" />
<text text-anchor="" x="924.72" y="299.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (1 samples, 0.09%)</title><rect x="1056.9" y="289" width="1.1" height="15.0" fill="rgb(206,80,46)" rx="2" ry="2" />
<text text-anchor="" x="1059.91" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::RemoveAwakable (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (2 samples, 0.18%)</title><rect x="270.9" y="433" width="2.1" height="15.0" fill="rgb(233,74,50)" rx="2" ry="2" />
<text text-anchor="" x="273.94" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (68 samples, 6.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (68 samples, 6.04%)</title><rect x="290.9" y="305" width="71.2" height="15.0" fill="rgb(212,0,3)" rx="2" ry="2" />
<text text-anchor="" x="293.85" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish_t..</text>
</g>
<g class="func_g" onmouseover="s('idle_balance (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.09%)</title><rect x="460.6" y="209" width="1.1" height="15.0" fill="rgb(218,8,11)" rx="2" ry="2" />
<text text-anchor="" x="463.62" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (27 samples, 2.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (27 samples, 2.40%)</title><rect x="958.4" y="209" width="28.3" height="15.0" fill="rgb(221,2,50)" rx="2" ry="2" />
<text text-anchor="" x="961.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.36%)</title><rect x="545.5" y="417" width="4.2" height="15.0" fill="rgb(244,6,21)" rx="2" ry="2" />
<text text-anchor="" x="548.51" y="427.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.09%)</title><rect x="362.1" y="305" width="1.1" height="15.0" fill="rgb(208,68,54)" rx="2" ry="2" />
<text text-anchor="" x="365.11" y="315.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.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (3 samples, 0.27%)</title><rect x="821.1" y="273" width="3.2" height="15.0" fill="rgb(249,55,17)" rx="2" ry="2" />
<text text-anchor="" x="824.12" y="283.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (1 samples, 0.09%)</title><rect x="288.8" y="241" width="1.0" height="15.0" fill="rgb(205,36,13)" rx="2" ry="2" />
<text text-anchor="" x="291.76" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.09%)</title><rect x="1140.7" y="113" width="1.1" height="15.0" fill="rgb(234,154,29)" rx="2" ry="2" />
<text text-anchor="" x="1143.75" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (33 samples, 2.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (33 samples, 2.93%)</title><rect x="147.3" y="305" width="34.6" height="15.0" fill="rgb(253,79,51)" rx="2" ry="2" />
<text text-anchor="" x="150.28" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tr..</text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (11 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (11 samples, 0.98%)</title><rect x="160.9" y="225" width="11.5" height="15.0" fill="rgb(251,181,12)" rx="2" ry="2" />
<text text-anchor="" x="163.91" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base:: (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>base:: (5 samples, 0.44%)</title><rect x="253.1" y="401" width="5.3" height="15.0" fill="rgb(212,85,16)" rx="2" ry="2" />
<text text-anchor="" x="256.13" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (1 samples, 0.09%)</title><rect x="557.0" y="401" width="1.1" height="15.0" fill="rgb(252,15,20)" rx="2" ry="2" />
<text text-anchor="" x="560.03" 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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::WaitableEvent::Wait (5 samples, 0.44%)</title><rect x="253.1" y="385" width="5.3" height="15.0" fill="rgb(228,33,36)" rx="2" ry="2" />
<text text-anchor="" x="256.13" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.09%)</title><rect x="1126.1" y="225" width="1.0" height="15.0" fill="rgb(245,22,34)" rx="2" ry="2" />
<text text-anchor="" x="1129.07" 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, 6.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (68 samples, 6.04%)</title><rect x="290.9" y="209" width="71.2" height="15.0" fill="rgb(239,18,47)" rx="2" ry="2" />
<text text-anchor="" x="293.85" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >native_w..</text>
</g>
<g class="func_g" onmouseover="s('sys_futex (17 samples, 1.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (17 samples, 1.51%)</title><rect x="560.2" y="401" width="17.8" height="15.0" fill="rgb(215,98,53)" rx="2" ry="2" />
<text text-anchor="" x="563.18" y="411.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.36%)</title><rect x="461.7" y="241" width="4.2" height="15.0" fill="rgb(237,86,54)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (12 samples, 1.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (12 samples, 1.07%)</title><rect x="1151.2" y="81" width="12.6" height="15.0" fill="rgb(221,182,33)" rx="2" ry="2" />
<text text-anchor="" x="1154.23" y="91.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (2 samples, 0.18%)</title><rect x="158.8" y="225" width="2.1" height="15.0" fill="rgb(212,17,49)" rx="2" ry="2" />
<text text-anchor="" x="161.81" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mmput (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mmput (1 samples, 0.09%)</title><rect x="485.8" y="449" width="1.0" height="15.0" fill="rgb(250,207,24)" rx="2" ry="2" />
<text text-anchor="" x="488.77" 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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.36%)</title><rect x="461.7" y="177" width="4.2" height="15.0" fill="rgb(224,126,44)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.09%)</title><rect x="280.4" y="337" width="1.0" height="15.0" fill="rgb(228,208,50)" rx="2" ry="2" />
<text text-anchor="" x="283.37" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('main (264 samples, 23.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>main (264 samples, 23.45%)</title><rect x="190.2" y="497" width="276.7" height="15.0" fill="rgb(233,202,34)" rx="2" ry="2" />
<text text-anchor="" x="193.25" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="337" width="5.2" height="15.0" fill="rgb(245,30,51)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="347.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.36%)</title><rect x="461.7" y="209" width="4.2" height="15.0" fill="rgb(214,151,14)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (200 samples, 17.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (200 samples, 17.76%)</title><rect x="630.4" y="401" width="209.6" height="15.0" fill="rgb(231,211,5)" rx="2" ry="2" />
<text text-anchor="" x="633.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="321" width="5.2" height="15.0" fill="rgb(218,104,42)" rx="2" ry="2" />
<text text-anchor="" x="17.19" 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 (139 samples, 12.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (139 samples, 12.34%)</title><rect x="674.4" y="177" width="145.7" height="15.0" fill="rgb(219,167,22)" rx="2" ry="2" />
<text text-anchor="" x="677.40" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >native_write_msr_s..</text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (3 samples, 0.27%)</title><rect x="40.4" y="401" width="3.1" height="15.0" fill="rgb(214,71,48)" rx="2" ry="2" />
<text text-anchor="" x="43.39" y="411.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>drop_futex_key_refs.isra.14 (1 samples, 0.09%)</title><rect x="560.2" y="369" width="1.0" height="15.0" fill="rgb(253,52,52)" rx="2" ry="2" />
<text text-anchor="" x="563.18" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_lookup_x (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_lookup_x (2 samples, 0.18%)</title><rect x="479.5" y="513" width="2.1" height="15.0" fill="rgb(214,80,2)" rx="2" ry="2" />
<text text-anchor="" x="482.48" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_free (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (2 samples, 0.18%)</title><rect x="975.2" y="145" width="2.1" height="15.0" fill="rgb(234,135,26)" rx="2" ry="2" />
<text text-anchor="" x="978.17" y="155.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.36%)</title><rect x="461.7" y="113" width="4.2" height="15.0" fill="rgb(227,162,8)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (3 samples, 0.27%)</title><rect x="1046.4" y="273" width="3.2" height="15.0" fill="rgb(206,59,2)" rx="2" ry="2" />
<text text-anchor="" x="1049.43" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.09%)</title><rect x="881.9" y="241" width="1.0" height="15.0" fill="rgb(252,21,25)" rx="2" ry="2" />
<text text-anchor="" x="884.90" y="251.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 (139 samples, 12.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (139 samples, 12.34%)</title><rect x="674.4" y="241" width="145.7" height="15.0" fill="rgb(244,141,37)" rx="2" ry="2" />
<text text-anchor="" x="677.40" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_event_context..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.09%)</title><rect x="1181.6" y="401" width="1.1" height="15.0" fill="rgb(254,201,18)" rx="2" ry="2" />
<text text-anchor="" x="1184.62" 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 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (2 samples, 0.18%)</title><rect x="1161.7" y="49" width="2.1" height="15.0" fill="rgb(227,138,38)" rx="2" ry="2" />
<text text-anchor="" x="1164.71" y="59.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.36%)</title><rect x="15.2" y="193" width="4.2" height="15.0" fill="rgb(211,188,28)" rx="2" ry="2" />
<text text-anchor="" x="18.24" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('resched_task (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>resched_task (2 samples, 0.18%)</title><rect x="175.6" y="257" width="2.1" height="15.0" fill="rgb(206,143,18)" rx="2" ry="2" />
<text text-anchor="" x="178.58" y="267.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 (61 samples, 5.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (61 samples, 5.42%)</title><rect x="47.7" y="417" width="64.0" height="15.0" fill="rgb(237,45,1)" rx="2" ry="2" />
<text text-anchor="" x="50.73" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >skb_cop..</text>
</g>
<g class="func_g" onmouseover="s('sys_execve (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (1 samples, 0.09%)</title><rect x="28.9" y="481" width="1.0" height="15.0" fill="rgb(228,74,1)" rx="2" ry="2" />
<text text-anchor="" x="31.86" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (2 samples, 0.18%)</title><rect x="238.5" y="433" width="2.1" height="15.0" fill="rgb(206,26,12)" rx="2" ry="2" />
<text text-anchor="" x="241.45" 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::GetHandleSignalsState (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (1 samples, 0.09%)</title><rect x="390.4" y="321" width="1.1" height="15.0" fill="rgb(248,218,7)" rx="2" ry="2" />
<text text-anchor="" x="393.41" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.09%)</title><rect x="622.0" y="401" width="1.1" height="15.0" fill="rgb(211,75,14)" rx="2" ry="2" />
<text text-anchor="" x="625.01" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('policy_zonelist (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>policy_zonelist (1 samples, 0.09%)</title><rect x="143.1" y="385" width="1.0" height="15.0" fill="rgb(242,27,41)" rx="2" ry="2" />
<text text-anchor="" x="146.09" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (7 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (7 samples, 0.62%)</title><rect x="665.0" y="273" width="7.3" height="15.0" fill="rgb(247,123,15)" rx="2" ry="2" />
<text text-anchor="" x="667.97" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (178 samples, 15.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (178 samples, 15.81%)</title><rect x="648.2" y="353" width="186.5" height="15.0" fill="rgb(211,133,25)" rx="2" ry="2" />
<text text-anchor="" x="651.21" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (46 samples, 4.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (46 samples, 4.09%)</title><rect x="994.0" y="209" width="48.2" height="15.0" fill="rgb(223,192,46)" rx="2" ry="2" />
<text text-anchor="" x="997.03" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >copy..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.09%)</title><rect x="850.5" y="385" width="1.0" height="15.0" fill="rgb(222,61,28)" rx="2" ry="2" />
<text text-anchor="" x="853.46" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (9 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (9 samples, 0.80%)</title><rect x="942.7" y="241" width="9.4" height="15.0" fill="rgb(220,67,19)" rx="2" ry="2" />
<text text-anchor="" x="945.68" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (113 samples, 10.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (113 samples, 10.04%)</title><rect x="928.0" y="273" width="118.4" height="15.0" fill="rgb(250,220,46)" rx="2" ry="2" />
<text text-anchor="" x="931.01" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >___sys_recvmsg</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (9 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (9 samples, 0.80%)</title><rect x="535.0" y="433" width="9.5" height="15.0" fill="rgb(207,92,19)" rx="2" ry="2" />
<text text-anchor="" x="538.03" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (6 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (6 samples, 0.53%)</title><rect x="262.6" y="385" width="6.2" height="15.0" fill="rgb(209,154,32)" rx="2" ry="2" />
<text text-anchor="" x="265.56" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (1 samples, 0.09%)</title><rect x="637.7" y="225" width="1.1" height="15.0" fill="rgb(237,75,50)" rx="2" ry="2" />
<text text-anchor="" x="640.73" y="235.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.36%)</title><rect x="545.5" y="401" width="4.2" height="15.0" fill="rgb(248,25,44)" rx="2" ry="2" />
<text text-anchor="" x="548.51" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.09%)</title><rect x="1043.3" y="225" width="1.0" height="15.0" fill="rgb(238,59,23)" rx="2" ry="2" />
<text text-anchor="" x="1046.29" y="235.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.09%)</title><rect x="669.2" y="225" width="1.0" height="15.0" fill="rgb(244,75,45)" rx="2" ry="2" />
<text text-anchor="" x="672.17" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_recvmsg (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recvmsg (1 samples, 0.09%)</title><rect x="906.0" y="353" width="1.1" height="15.0" fill="rgb(235,113,51)" rx="2" ry="2" />
<text text-anchor="" x="909.00" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.09%)</title><rect x="867.2" y="305" width="1.1" height="15.0" fill="rgb(219,8,27)" rx="2" ry="2" />
<text text-anchor="" x="870.23" y="315.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (1 samples, 0.09%)</title><rect x="820.1" y="241" width="1.0" height="15.0" fill="rgb(221,229,21)" rx="2" ry="2" />
<text text-anchor="" x="823.07" y="251.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.09%)</title><rect x="829.5" y="289" width="1.1" height="15.0" fill="rgb(209,20,45)" rx="2" ry="2" />
<text text-anchor="" x="832.50" y="299.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.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (8 samples, 0.71%)</title><rect x="19.4" y="417" width="8.4" height="15.0" fill="rgb(224,140,8)" rx="2" ry="2" />
<text text-anchor="" x="22.43" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (8 samples, 0.71%)</title><rect x="612.6" y="417" width="8.4" height="15.0" fill="rgb(249,108,42)" rx="2" ry="2" />
<text text-anchor="" x="615.58" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.18%)</title><rect x="610.5" y="417" width="2.1" height="15.0" fill="rgb(223,198,43)" rx="2" ry="2" />
<text text-anchor="" x="613.48" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (8 samples, 0.71%)</title><rect x="19.4" y="481" width="8.4" height="15.0" fill="rgb(212,40,53)" rx="2" ry="2" />
<text text-anchor="" x="22.43" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (3 samples, 0.27%)</title><rect x="386.2" y="337" width="3.2" height="15.0" fill="rgb(237,197,41)" rx="2" ry="2" />
<text text-anchor="" x="389.22" 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 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (2 samples, 0.18%)</title><rect x="391.5" y="321" width="2.1" height="15.0" fill="rgb(250,77,24)" rx="2" ry="2" />
<text text-anchor="" x="394.46" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (124 samples, 11.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (124 samples, 11.01%)</title><rect x="928.0" y="305" width="130.0" height="15.0" fill="rgb(209,210,9)" rx="2" ry="2" />
<text text-anchor="" x="931.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_recvmsg</text>
</g>
<g class="func_g" onmouseover="s('do_futex (33 samples, 2.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (33 samples, 2.93%)</title><rect x="1132.4" y="193" width="34.5" height="15.0" fill="rgb(224,64,46)" rx="2" ry="2" />
<text text-anchor="" x="1135.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.09%)</title><rect x="874.6" y="273" width="1.0" height="15.0" fill="rgb(206,26,35)" rx="2" ry="2" />
<text text-anchor="" x="877.56" y="283.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (1 samples, 0.09%)</title><rect x="389.4" y="337" width="1.0" height="15.0" fill="rgb(212,21,37)" rx="2" ry="2" />
<text text-anchor="" x="392.36" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (50 samples, 4.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (50 samples, 4.44%)</title><rect x="857.8" y="369" width="52.4" height="15.0" fill="rgb(229,103,37)" rx="2" ry="2" />
<text text-anchor="" x="860.80" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.09%)</title><rect x="983.6" y="81" width="1.0" height="15.0" fill="rgb(212,196,10)" rx="2" ry="2" />
<text text-anchor="" x="986.55" y="91.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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (5 samples, 0.44%)</title><rect x="1127.1" y="225" width="5.3" height="15.0" fill="rgb(253,135,26)" rx="2" ry="2" />
<text text-anchor="" x="1130.12" y="235.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (1 samples, 0.09%)</title><rect x="855.7" y="385" width="1.0" height="15.0" fill="rgb(217,183,12)" rx="2" ry="2" />
<text text-anchor="" x="858.70" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (23 samples, 2.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (23 samples, 2.04%)</title><rect x="191.3" y="433" width="24.1" height="15.0" fill="rgb(246,102,51)" rx="2" ry="2" />
<text text-anchor="" x="194.30" 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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="305" width="5.2" height="15.0" fill="rgb(247,142,22)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (1 samples, 0.09%)</title><rect x="608.4" y="433" width="1.0" height="15.0" fill="rgb(214,130,11)" rx="2" ry="2" />
<text text-anchor="" x="611.38" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.09%)</title><rect x="45.6" y="417" width="1.1" height="15.0" fill="rgb(215,190,9)" rx="2" ry="2" />
<text text-anchor="" x="48.63" 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 (64 samples, 5.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (64 samples, 5.68%)</title><rect x="393.6" y="177" width="67.0" height="15.0" fill="rgb(234,203,26)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_ev..</text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (1 samples, 0.09%)</title><rect x="986.7" y="209" width="1.0" height="15.0" fill="rgb(215,5,7)" rx="2" ry="2" />
<text text-anchor="" x="989.70" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base:: (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>base:: (4 samples, 0.36%)</title><rect x="461.7" y="305" width="4.2" height="15.0" fill="rgb(242,25,36)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (1 samples, 0.09%)</title><rect x="847.3" y="385" width="1.1" height="15.0" fill="rgb(251,65,53)" rx="2" ry="2" />
<text text-anchor="" x="850.32" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (2 samples, 0.18%)</title><rect x="532.9" y="417" width="2.1" height="15.0" fill="rgb(230,75,3)" rx="2" ry="2" />
<text text-anchor="" x="535.93" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (3 samples, 0.27%)</title><rect x="907.1" y="353" width="3.1" height="15.0" fill="rgb(218,3,12)" rx="2" ry="2" />
<text text-anchor="" x="910.05" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.09%)</title><rect x="252.1" y="417" width="1.0" height="15.0" fill="rgb(229,199,8)" rx="2" ry="2" />
<text text-anchor="" x="255.08" 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 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (2 samples, 0.18%)</title><rect x="1173.2" y="321" width="2.1" height="15.0" fill="rgb(222,161,13)" rx="2" ry="2" />
<text text-anchor="" x="1176.23" y="331.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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (5 samples, 0.44%)</title><rect x="14.2" y="289" width="5.2" height="15.0" fill="rgb(234,104,30)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (8 samples, 0.71%)</title><rect x="639.8" y="369" width="8.4" height="15.0" fill="rgb(240,115,14)" rx="2" ry="2" />
<text text-anchor="" x="642.82" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('setup_arg_pages (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_arg_pages (1 samples, 0.09%)</title><rect x="28.9" y="417" width="1.0" height="15.0" fill="rgb(214,34,40)" rx="2" ry="2" />
<text text-anchor="" x="31.86" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (1 samples, 0.09%)</title><rect x="530.8" y="433" width="1.1" height="15.0" fill="rgb(218,112,28)" rx="2" ry="2" />
<text text-anchor="" x="533.83" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (1 samples, 0.09%)</title><rect x="269.9" y="433" width="1.0" height="15.0" fill="rgb(241,47,40)" rx="2" ry="2" />
<text text-anchor="" x="272.89" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.09%)</title><rect x="547.6" y="353" width="1.1" height="15.0" fill="rgb(219,200,53)" rx="2" ry="2" />
<text text-anchor="" x="550.60" y="363.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 (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.71%)</title><rect x="19.4" y="433" width="8.4" height="15.0" fill="rgb(240,130,14)" rx="2" ry="2" />
<text text-anchor="" x="22.43" y="443.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 (14 samples, 1.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (14 samples, 1.24%)</title><rect x="1151.2" y="113" width="14.7" height="15.0" fill="rgb(236,137,50)" rx="2" ry="2" />
<text text-anchor="" x="1154.23" y="123.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.36%)</title><rect x="253.1" y="209" width="4.2" height="15.0" fill="rgb(233,176,32)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (15 samples, 1.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (15 samples, 1.33%)</title><rect x="157.8" y="257" width="15.7" height="15.0" fill="rgb(253,150,19)" rx="2" ry="2" />
<text text-anchor="" x="160.76" y="267.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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::MultiprocessMessagePipeTestBase::Init (5 samples, 0.44%)</title><rect x="461.7" y="369" width="5.2" height="15.0" fill="rgb(238,84,10)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="379.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.09%)</title><rect x="250.0" y="385" width="1.0" height="15.0" fill="rgb(227,101,36)" rx="2" ry="2" />
<text text-anchor="" x="252.98" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (1 samples, 0.09%)</title><rect x="637.7" y="321" width="1.1" height="15.0" fill="rgb(233,62,50)" rx="2" ry="2" />
<text text-anchor="" x="640.73" y="331.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (1 samples, 0.09%)</title><rect x="905.0" y="305" width="1.0" height="15.0" fill="rgb(251,128,16)" rx="2" ry="2" />
<text text-anchor="" x="907.96" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (23 samples, 2.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (23 samples, 2.04%)</title><rect x="873.5" y="289" width="24.1" height="15.0" fill="rgb(218,210,1)" rx="2" ry="2" />
<text text-anchor="" x="876.52" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (33 samples, 2.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (33 samples, 2.93%)</title><rect x="1132.4" y="225" width="34.5" height="15.0" fill="rgb(226,152,41)" rx="2" ry="2" />
<text text-anchor="" x="1135.36" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (2 samples, 0.18%)</title><rect x="266.7" y="353" width="2.1" height="15.0" fill="rgb(226,54,12)" rx="2" ry="2" />
<text text-anchor="" x="269.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (1 samples, 0.09%)</title><rect x="529.8" y="433" width="1.0" height="15.0" fill="rgb(239,206,29)" rx="2" ry="2" />
<text text-anchor="" x="532.79" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (1 samples, 0.09%)</title><rect x="828.5" y="273" width="1.0" height="15.0" fill="rgb(208,13,31)" rx="2" ry="2" />
<text text-anchor="" x="831.45" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="369" width="5.2" height="15.0" fill="rgb(235,96,1)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="379.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (1 samples, 0.09%)</title><rect x="957.4" y="177" width="1.0" height="15.0" fill="rgb(208,37,7)" rx="2" ry="2" />
<text text-anchor="" x="960.35" y="187.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.09%)</title><rect x="827.4" y="177" width="1.1" height="15.0" fill="rgb(251,93,7)" rx="2" ry="2" />
<text text-anchor="" x="830.41" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (5 samples, 0.44%)</title><rect x="245.8" y="401" width="5.2" height="15.0" fill="rgb(238,227,54)" rx="2" ry="2" />
<text text-anchor="" x="248.79" 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 (9 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (9 samples, 0.80%)</title><rect x="535.0" y="401" width="9.5" height="15.0" fill="rgb(251,180,45)" rx="2" ry="2" />
<text text-anchor="" x="538.03" y="411.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.09%)</title><rect x="1139.7" y="129" width="1.0" height="15.0" fill="rgb(211,189,48)" rx="2" ry="2" />
<text text-anchor="" x="1142.70" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (112 samples, 9.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (112 samples, 9.95%)</title><rect x="1061.1" y="353" width="117.4" height="15.0" fill="rgb(214,134,9)" rx="2" ry="2" />
<text text-anchor="" x="1064.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (50 samples, 4.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (50 samples, 4.44%)</title><rect x="1116.6" y="257" width="52.4" height="15.0" fill="rgb(207,177,11)" rx="2" ry="2" />
<text text-anchor="" x="1119.64" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (2 samples, 0.18%)</title><rect x="982.5" y="97" width="2.1" height="15.0" fill="rgb(224,72,42)" rx="2" ry="2" />
<text text-anchor="" x="985.50" y="107.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (2 samples, 0.18%)</title><rect x="945.8" y="193" width="2.1" height="15.0" fill="rgb(216,64,41)" rx="2" ry="2" />
<text text-anchor="" x="948.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_futex (27 samples, 2.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_futex (27 samples, 2.40%)</title><rect x="1138.7" y="161" width="28.2" height="15.0" fill="rgb(241,0,28)" rx="2" ry="2" />
<text text-anchor="" x="1141.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >w..</text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (1 samples, 0.09%)</title><rect x="827.4" y="193" width="1.1" height="15.0" fill="rgb(230,82,7)" rx="2" ry="2" />
<text text-anchor="" x="830.41" y="203.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.09%)</title><rect x="833.7" y="289" width="1.0" height="15.0" fill="rgb(254,172,27)" rx="2" ry="2" />
<text text-anchor="" x="836.69" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (2 samples, 0.18%)</title><rect x="558.1" y="401" width="2.1" height="15.0" fill="rgb(234,184,29)" rx="2" ry="2" />
<text text-anchor="" x="561.08" y="411.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.09%)</title><rect x="289.8" y="257" width="1.1" height="15.0" fill="rgb(219,144,26)" rx="2" ry="2" />
<text text-anchor="" x="292.80" y="267.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (1 samples, 0.09%)</title><rect x="536.1" y="385" width="1.0" height="15.0" fill="rgb(243,178,3)" rx="2" ry="2" />
<text text-anchor="" x="539.07" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (1 samples, 0.09%)</title><rect x="637.7" y="353" width="1.1" height="15.0" fill="rgb(243,55,14)" rx="2" ry="2" />
<text text-anchor="" x="640.73" y="363.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.36%)</title><rect x="15.2" y="241" width="4.2" height="15.0" fill="rgb(244,212,41)" rx="2" ry="2" />
<text text-anchor="" x="18.24" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (4 samples, 0.36%)</title><rect x="900.8" y="273" width="4.2" height="15.0" fill="rgb(240,76,10)" rx="2" ry="2" />
<text text-anchor="" x="903.76" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (1 samples, 0.09%)</title><rect x="830.6" y="289" width="1.0" height="15.0" fill="rgb(214,0,32)" rx="2" ry="2" />
<text text-anchor="" x="833.55" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (4 samples, 0.36%)</title><rect x="1052.7" y="257" width="4.2" height="15.0" fill="rgb(235,41,51)" rx="2" ry="2" />
<text text-anchor="" x="1055.72" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.09%)</title><rect x="537.1" y="369" width="1.1" height="15.0" fill="rgb(249,148,8)" rx="2" ry="2" />
<text text-anchor="" x="540.12" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (33 samples, 2.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (33 samples, 2.93%)</title><rect x="544.5" y="449" width="34.5" height="15.0" fill="rgb(212,164,30)" rx="2" ry="2" />
<text text-anchor="" x="547.46" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (15 samples, 1.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (15 samples, 1.33%)</title><rect x="14.2" y="513" width="15.7" height="15.0" fill="rgb(245,175,40)" rx="2" ry="2" />
<text text-anchor="" x="17.19" 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 (149 samples, 13.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (149 samples, 13.23%)</title><rect x="34.1" y="497" width="156.1" height="15.0" fill="rgb(226,96,39)" rx="2" ry="2" />
<text text-anchor="" x="37.10" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call_fastpath</text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (1 samples, 0.09%)</title><rect x="1137.6" y="161" width="1.1" height="15.0" fill="rgb(234,72,10)" rx="2" ry="2" />
<text text-anchor="" x="1140.60" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestInfo::Run (89 samples, 7.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestInfo::Run (89 samples, 7.90%)</title><rect x="373.6" y="417" width="93.3" height="15.0" fill="rgb(246,161,49)" rx="2" ry="2" />
<text text-anchor="" x="376.64" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Te..</text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.09%)</title><rect x="557.0" y="385" width="1.1" height="15.0" fill="rgb(250,63,9)" rx="2" ry="2" />
<text text-anchor="" x="560.03" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_pageblock_flags_mask (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_pageblock_flags_mask (2 samples, 0.18%)</title><rect x="141.0" y="353" width="2.1" height="15.0" fill="rgb(209,147,40)" rx="2" ry="2" />
<text text-anchor="" x="143.99" y="363.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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestIOThread::Start (5 samples, 0.44%)</title><rect x="461.7" y="337" width="5.2" height="15.0" fill="rgb(234,162,1)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="347.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (1 samples, 0.09%)</title><rect x="383.1" y="353" width="1.0" height="15.0" fill="rgb(248,120,5)" rx="2" ry="2" />
<text text-anchor="" x="386.07" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (6 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (6 samples, 0.53%)</title><rect x="980.4" y="161" width="6.3" height="15.0" fill="rgb(240,122,37)" rx="2" ry="2" />
<text text-anchor="" x="983.41" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (9 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (9 samples, 0.80%)</title><rect x="1152.3" y="49" width="9.4" height="15.0" fill="rgb(212,30,49)" rx="2" ry="2" />
<text text-anchor="" x="1155.27" 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 (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (3 samples, 0.27%)</title><rect x="263.6" y="353" width="3.1" height="15.0" fill="rgb(224,118,28)" rx="2" ry="2" />
<text text-anchor="" x="266.61" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.09%)</title><rect x="827.4" y="225" width="1.1" height="15.0" fill="rgb(226,86,18)" rx="2" ry="2" />
<text text-anchor="" x="830.41" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_blocked_averages (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.09%)</title><rect x="823.2" y="257" width="1.1" height="15.0" fill="rgb(252,96,19)" rx="2" ry="2" />
<text text-anchor="" x="826.21" y="267.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.09%)</title><rect x="568.6" y="241" width="1.0" height="15.0" fill="rgb(210,143,21)" rx="2" ry="2" />
<text text-anchor="" x="571.56" y="251.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.09%)</title><rect x="638.8" y="385" width="1.0" height="15.0" fill="rgb(234,127,21)" rx="2" ry="2" />
<text text-anchor="" x="641.77" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (8 samples, 0.71%)</title><rect x="562.3" y="305" width="8.4" height="15.0" fill="rgb(226,36,34)" rx="2" ry="2" />
<text text-anchor="" x="565.27" y="315.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (1 samples, 0.09%)</title><rect x="952.1" y="241" width="1.1" height="15.0" fill="rgb(232,224,44)" rx="2" ry="2" />
<text text-anchor="" x="955.11" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_unix_gc (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (1 samples, 0.09%)</title><rect x="186.1" y="433" width="1.0" height="15.0" fill="rgb(238,135,29)" rx="2" ry="2" />
<text text-anchor="" x="189.06" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (1 samples, 0.09%)</title><rect x="882.9" y="241" width="1.1" height="15.0" fill="rgb(206,155,16)" rx="2" ry="2" />
<text text-anchor="" x="885.95" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (555 samples, 49.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (555 samples, 49.29%)</title><rect x="608.4" y="449" width="581.6" height="15.0" fill="rgb(234,181,45)" rx="2" ry="2" />
<text text-anchor="" x="611.38" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::RunLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (139 samples, 12.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (139 samples, 12.34%)</title><rect x="674.4" y="193" width="145.7" height="15.0" fill="rgb(247,227,27)" rx="2" ry="2" />
<text text-anchor="" x="677.40" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_pmu_enable_all</text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (1 samples, 0.09%)</title><rect x="28.9" y="465" width="1.0" height="15.0" fill="rgb(209,77,45)" rx="2" ry="2" />
<text text-anchor="" x="31.86" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base:: (555 samples, 49.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>base:: (555 samples, 49.29%)</title><rect x="608.4" y="497" width="581.6" height="15.0" fill="rgb(206,19,9)" rx="2" ry="2" />
<text text-anchor="" x="611.38" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::</text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (30 samples, 2.66%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (30 samples, 2.66%)</title><rect x="873.5" y="305" width="31.5" height="15.0" fill="rgb(219,42,31)" rx="2" ry="2" />
<text text-anchor="" x="876.52" y="315.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.09%)</title><rect x="846.3" y="385" width="1.0" height="15.0" fill="rgb(218,54,14)" rx="2" ry="2" />
<text text-anchor="" x="849.27" y="395.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.09%)</title><rect x="1163.8" y="81" width="1.0" height="15.0" fill="rgb(231,70,22)" rx="2" ry="2" />
<text text-anchor="" x="1166.80" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_nv013276rm (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_nv013276rm (1 samples, 0.09%)</title><rect x="634.6" y="385" width="1.0" height="15.0" fill="rgb(205,129,45)" rx="2" ry="2" />
<text text-anchor="" x="637.58" y="395.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.36%)</title><rect x="461.7" y="257" width="4.2" height="15.0" fill="rgb(251,153,9)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (33 samples, 2.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (33 samples, 2.93%)</title><rect x="147.3" y="321" width="34.6" height="15.0" fill="rgb(205,206,24)" rx="2" ry="2" />
<text text-anchor="" x="150.28" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >de..</text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.09%)</title><rect x="173.5" y="273" width="1.0" height="15.0" fill="rgb(208,150,16)" rx="2" ry="2" />
<text text-anchor="" x="176.48" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (3 samples, 0.27%)</title><rect x="545.5" y="385" width="3.2" height="15.0" fill="rgb(238,73,14)" rx="2" ry="2" />
<text text-anchor="" x="548.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_pageblock_flags_mask (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_pageblock_flags_mask (1 samples, 0.09%)</title><rect x="968.9" y="129" width="1.0" height="15.0" fill="rgb(223,174,41)" rx="2" ry="2" />
<text text-anchor="" x="971.88" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_exit_group (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_exit_group (1 samples, 0.09%)</title><rect x="485.8" y="497" width="1.0" height="15.0" fill="rgb(212,169,1)" rx="2" ry="2" />
<text text-anchor="" x="488.77" y="507.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.36%)</title><rect x="253.1" y="289" width="4.2" height="15.0" fill="rgb(205,144,39)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="299.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (4 samples, 0.36%)</title><rect x="10.0" y="497" width="4.2" height="15.0" fill="rgb(243,125,4)" 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('system_call_after_swapgs (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (1 samples, 0.09%)</title><rect x="27.8" y="481" width="1.1" height="15.0" fill="rgb(224,156,53)" rx="2" ry="2" />
<text text-anchor="" x="30.82" 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 (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.36%)</title><rect x="253.1" y="177" width="4.2" height="15.0" fill="rgb(222,114,44)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="187.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_comm (4 samples, 0.36%)</title><rect x="10.0" y="385" width="4.2" height="15.0" fill="rgb(230,118,17)" 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('sys_execve (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (4 samples, 0.36%)</title><rect x="10.0" y="481" width="4.2" height="15.0" fill="rgb(230,190,54)" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (1 samples, 0.09%)</title><rect x="925.9" y="321" width="1.1" height="15.0" fill="rgb(229,220,32)" rx="2" ry="2" />
<text text-anchor="" x="928.91" 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 (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.36%)</title><rect x="461.7" y="145" width="4.2" height="15.0" fill="rgb(245,90,5)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="155.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.18%)</title><rect x="542.4" y="385" width="2.1" height="15.0" fill="rgb(235,141,18)" rx="2" ry="2" />
<text text-anchor="" x="545.36" y="395.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 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (2 samples, 0.18%)</title><rect x="1159.6" y="33" width="2.1" height="15.0" fill="rgb(221,75,47)" rx="2" ry="2" />
<text text-anchor="" x="1162.61" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (1 samples, 0.09%)</title><rect x="943.7" y="209" width="1.1" height="15.0" fill="rgb(232,38,39)" rx="2" ry="2" />
<text text-anchor="" x="946.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (5 samples, 0.44%)</title><rect x="981.5" y="129" width="5.2" height="15.0" fill="rgb(207,172,9)" rx="2" ry="2" />
<text text-anchor="" x="984.46" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (59 samples, 5.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (59 samples, 5.24%)</title><rect x="49.8" y="401" width="61.9" height="15.0" fill="rgb(212,120,14)" rx="2" ry="2" />
<text text-anchor="" x="52.82" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >copy_u..</text>
</g>
<g class="func_g" onmouseover="s('__mmdrop (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__mmdrop (1 samples, 0.09%)</title><rect x="673.4" y="257" width="1.0" height="15.0" fill="rgb(241,28,16)" rx="2" ry="2" />
<text text-anchor="" x="676.36" y="267.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.09%)</title><rect x="668.1" y="193" width="1.1" height="15.0" fill="rgb(224,26,6)" rx="2" ry="2" />
<text text-anchor="" x="671.12" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (6 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (6 samples, 0.53%)</title><rect x="665.0" y="241" width="6.3" height="15.0" fill="rgb(242,114,28)" rx="2" ry="2" />
<text text-anchor="" x="667.97" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_unix_gc (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (1 samples, 0.09%)</title><rect x="185.0" y="417" width="1.1" height="15.0" fill="rgb(208,136,52)" rx="2" ry="2" />
<text text-anchor="" x="188.01" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="401" width="5.2" height="15.0" fill="rgb(224,156,28)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (89 samples, 7.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (89 samples, 7.90%)</title><rect x="373.6" y="385" width="93.3" height="15.0" fill="rgb(225,61,26)" rx="2" ry="2" />
<text text-anchor="" x="376.64" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syste..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (1 samples, 0.09%)</title><rect x="37.2" y="433" width="1.1" height="15.0" fill="rgb(209,129,48)" rx="2" ry="2" />
<text text-anchor="" x="40.25" y="443.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (1 samples, 0.09%)</title><rect x="870.4" y="337" width="1.0" height="15.0" fill="rgb(223,114,24)" rx="2" ry="2" />
<text text-anchor="" x="873.37" 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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="449" width="5.2" height="15.0" fill="rgb(210,31,32)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="459.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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::Thread::StartWithOptions (5 samples, 0.44%)</title><rect x="461.7" y="321" width="5.2" height="15.0" fill="rgb(225,174,0)" rx="2" ry="2" />
<text text-anchor="" x="464.67" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.09%)</title><rect x="581.1" y="449" width="1.1" height="15.0" fill="rgb(212,97,11)" rx="2" ry="2" />
<text text-anchor="" x="584.14" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (166 samples, 14.74%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (166 samples, 14.74%)</title><rect x="660.8" y="321" width="173.9" height="15.0" fill="rgb(245,32,0)" rx="2" ry="2" />
<text text-anchor="" x="663.78" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule_hrtimeout_ran..</text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (3 samples, 0.27%)</title><rect x="981.5" y="113" width="3.1" height="15.0" fill="rgb(219,52,40)" rx="2" ry="2" />
<text text-anchor="" x="984.46" y="123.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.36%)</title><rect x="253.1" y="225" width="4.2" height="15.0" fill="rgb(239,12,2)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (183 samples, 16.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (183 samples, 16.25%)</title><rect x="648.2" y="385" width="191.8" height="15.0" fill="rgb(206,214,40)" rx="2" ry="2" />
<text text-anchor="" x="651.21" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call_fastpath</text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (35 samples, 3.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (35 samples, 3.11%)</title><rect x="147.3" y="369" width="36.7" height="15.0" fill="rgb(250,192,13)" rx="2" ry="2" />
<text text-anchor="" x="150.28" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_..</text>
</g>
<g class="func_g" onmouseover="s('do_futex (84 samples, 7.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (84 samples, 7.46%)</title><rect x="279.3" y="385" width="88.1" height="15.0" fill="rgb(243,225,42)" rx="2" ry="2" />
<text text-anchor="" x="282.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_futex</text>
</g>
<g class="func_g" onmouseover="s('start_thread (555 samples, 49.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (555 samples, 49.29%)</title><rect x="608.4" y="513" width="581.6" height="15.0" fill="rgb(222,35,8)" rx="2" ry="2" />
<text text-anchor="" x="611.38" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (2 samples, 0.18%)</title><rect x="1157.5" y="33" width="2.1" height="15.0" fill="rgb(235,172,35)" rx="2" ry="2" />
<text text-anchor="" x="1160.51" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (134 samples, 11.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (134 samples, 11.90%)</title><rect x="917.5" y="337" width="140.5" height="15.0" fill="rgb(235,65,40)" rx="2" ry="2" />
<text text-anchor="" x="920.53" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (1 samples, 0.09%)</title><rect x="668.1" y="177" width="1.1" height="15.0" fill="rgb(226,224,17)" rx="2" ry="2" />
<text text-anchor="" x="671.12" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (3 samples, 0.27%)</title><rect x="622.0" y="417" width="3.2" height="15.0" fill="rgb(231,138,54)" rx="2" ry="2" />
<text text-anchor="" x="625.01" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.09%)</title><rect x="364.2" y="257" width="1.1" height="15.0" fill="rgb(210,10,33)" rx="2" ry="2" />
<text text-anchor="" x="367.21" y="267.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.09%)</title><rect x="1058.0" y="337" width="1.0" height="15.0" fill="rgb(212,174,6)" rx="2" ry="2" />
<text text-anchor="" x="1060.96" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('test_io_thread (580 samples, 51.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>test_io_thread (580 samples, 51.51%)</title><rect x="582.2" y="529" width="607.8" height="15.0" fill="rgb(228,150,38)" rx="2" ry="2" />
<text text-anchor="" x="585.18" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test_io_thread</text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (88 samples, 7.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (88 samples, 7.82%)</title><rect x="275.1" y="433" width="92.3" height="15.0" fill="rgb(219,108,53)" rx="2" ry="2" />
<text text-anchor="" x="278.13" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthread_con..</text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (2 samples, 0.18%)</title><rect x="363.2" y="305" width="2.1" height="15.0" fill="rgb(234,43,40)" rx="2" ry="2" />
<text text-anchor="" x="366.16" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.09%)</title><rect x="576.9" y="337" width="1.1" height="15.0" fill="rgb(251,19,13)" rx="2" ry="2" />
<text text-anchor="" x="579.94" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sendto (149 samples, 13.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (149 samples, 13.23%)</title><rect x="34.1" y="481" width="156.1" height="15.0" fill="rgb(233,171,40)" rx="2" ry="2" />
<text text-anchor="" x="37.10" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_sendto</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Remove (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (1 samples, 0.09%)</title><rect x="551.8" y="417" width="1.0" height="15.0" fill="rgb(230,117,22)" rx="2" ry="2" />
<text text-anchor="" x="554.79" y="427.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.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (11 samples, 0.98%)</title><rect x="886.1" y="225" width="11.5" height="15.0" fill="rgb(224,225,44)" rx="2" ry="2" />
<text text-anchor="" x="889.09" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (39 samples, 3.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (39 samples, 3.46%)</title><rect x="144.1" y="417" width="40.9" height="15.0" fill="rgb(225,96,46)" rx="2" ry="2" />
<text text-anchor="" x="147.14" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >soc..</text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (1 samples, 0.09%)</title><rect x="465.9" y="129" width="1.0" height="15.0" fill="rgb(229,9,48)" rx="2" ry="2" />
<text text-anchor="" x="468.86" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (553 samples, 49.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (553 samples, 49.11%)</title><rect x="610.5" y="433" width="579.5" height="15.0" fill="rgb(211,130,29)" rx="2" ry="2" />
<text text-anchor="" x="613.48" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::Run</text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.09%)</title><rect x="382.0" y="337" width="1.1" height="15.0" fill="rgb(242,88,13)" rx="2" ry="2" />
<text text-anchor="" x="385.02" y="347.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (2 samples, 0.18%)</title><rect x="38.3" y="401" width="2.1" height="15.0" fill="rgb(221,192,42)" rx="2" ry="2" />
<text text-anchor="" x="41.29" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (11 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (11 samples, 0.98%)</title><rect x="466.9" y="513" width="11.5" height="15.0" fill="rgb(216,1,20)" rx="2" ry="2" />
<text text-anchor="" x="469.91" y="523.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.09%)</title><rect x="650.3" y="337" width="1.0" height="15.0" fill="rgb(217,54,0)" rx="2" ry="2" />
<text text-anchor="" x="653.30" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (1 samples, 0.09%)</title><rect x="478.4" y="513" width="1.1" height="15.0" fill="rgb(225,109,3)" rx="2" ry="2" />
<text text-anchor="" x="481.44" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (1 samples, 0.09%)</title><rect x="260.5" y="417" width="1.0" height="15.0" fill="rgb(242,9,0)" rx="2" ry="2" />
<text text-anchor="" x="263.46" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.09%)</title><rect x="573.8" y="257" width="1.0" height="15.0" fill="rgb(245,197,2)" rx="2" ry="2" />
<text text-anchor="" x="576.80" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_pages_prepare (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_pages_prepare (1 samples, 0.09%)</title><rect x="972.0" y="113" width="1.1" height="15.0" fill="rgb(208,188,35)" rx="2" ry="2" />
<text text-anchor="" x="975.02" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_tail (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_tail (4 samples, 0.36%)</title><rect x="15.2" y="273" width="4.2" height="15.0" fill="rgb(251,152,7)" rx="2" ry="2" />
<text text-anchor="" x="18.24" y="283.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.36%)</title><rect x="253.1" y="145" width="4.2" height="15.0" fill="rgb(227,70,48)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (174 samples, 15.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (174 samples, 15.45%)</title><rect x="191.3" y="465" width="182.3" height="15.0" fill="rgb(222,195,52)" rx="2" ry="2" />
<text text-anchor="" x="194.30" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.36%)</title><rect x="461.7" y="129" width="4.2" height="15.0" fill="rgb(223,155,20)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (17 samples, 1.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (17 samples, 1.51%)</title><rect x="560.2" y="385" width="17.8" height="15.0" fill="rgb(231,224,51)" rx="2" ry="2" />
<text text-anchor="" x="563.18" y="395.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>verify_iovec (1 samples, 0.09%)</title><rect x="1045.4" y="257" width="1.0" height="15.0" fill="rgb(214,21,1)" rx="2" ry="2" />
<text text-anchor="" x="1048.38" y="267.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (1 samples, 0.09%)</title><rect x="28.9" y="497" width="1.0" height="15.0" fill="rgb(247,107,43)" rx="2" ry="2" />
<text text-anchor="" x="31.86" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.09%)</title><rect x="879.8" y="257" width="1.1" height="15.0" fill="rgb(222,160,25)" rx="2" ry="2" />
<text text-anchor="" x="882.80" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (5 samples, 0.44%)</title><rect x="863.0" y="337" width="5.3" height="15.0" fill="rgb(230,117,8)" rx="2" ry="2" />
<text text-anchor="" x="866.04" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (13 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (13 samples, 1.15%)</title><rect x="562.3" y="353" width="13.6" height="15.0" fill="rgb(249,105,18)" rx="2" ry="2" />
<text text-anchor="" x="565.27" y="363.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.18%)</title><rect x="623.1" y="401" width="2.1" height="15.0" fill="rgb(223,158,37)" rx="2" ry="2" />
<text text-anchor="" x="626.06" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (56 samples, 4.97%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (56 samples, 4.97%)</title><rect x="1113.5" y="305" width="58.7" height="15.0" fill="rgb(233,124,47)" rx="2" ry="2" />
<text text-anchor="" x="1116.50" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (1 samples, 0.09%)</title><rect x="637.7" y="273" width="1.1" height="15.0" fill="rgb(248,222,54)" rx="2" ry="2" />
<text text-anchor="" x="640.73" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (2 samples, 0.18%)</title><rect x="988.8" y="225" width="2.1" height="15.0" fill="rgb(220,135,43)" rx="2" ry="2" />
<text text-anchor="" x="991.79" y="235.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.09%)</title><rect x="268.8" y="433" width="1.1" height="15.0" fill="rgb(222,103,48)" rx="2" ry="2" />
<text text-anchor="" x="271.85" y="443.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (1 samples, 0.09%)</title><rect x="573.8" y="225" width="1.0" height="15.0" fill="rgb(232,214,13)" rx="2" ry="2" />
<text text-anchor="" x="576.80" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (14 samples, 1.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (14 samples, 1.24%)</title><rect x="962.6" y="193" width="14.7" height="15.0" fill="rgb(220,1,13)" rx="2" ry="2" />
<text text-anchor="" x="965.59" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.09%)</title><rect x="363.2" y="273" width="1.0" height="15.0" fill="rgb(228,77,42)" rx="2" ry="2" />
<text text-anchor="" x="366.16" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (6 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (6 samples, 0.53%)</title><rect x="262.6" y="369" width="6.2" height="15.0" fill="rgb(245,76,11)" rx="2" ry="2" />
<text text-anchor="" x="265.56" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (4 samples, 0.36%)</title><rect x="123.2" y="385" width="4.2" height="15.0" fill="rgb(212,177,15)" rx="2" ry="2" />
<text text-anchor="" x="126.18" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (81 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (81 samples, 7.19%)</title><rect x="281.4" y="337" width="84.9" height="15.0" fill="rgb(219,181,19)" rx="2" ry="2" />
<text text-anchor="" x="284.42" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.18%)</title><rect x="1176.4" y="337" width="2.1" height="15.0" fill="rgb(223,110,3)" rx="2" ry="2" />
<text text-anchor="" x="1179.38" y="347.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.09%)</title><rect x="365.3" y="305" width="1.0" height="15.0" fill="rgb(247,205,39)" rx="2" ry="2" />
<text text-anchor="" x="368.26" y="315.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.36%)</title><rect x="10.0" y="353" width="4.2" height="15.0" fill="rgb(252,136,34)" 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('__schedule (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.36%)</title><rect x="253.1" y="257" width="4.2" height="15.0" fill="rgb(207,28,49)" rx="2" ry="2" />
<text text-anchor="" x="256.13" 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 (167 samples, 14.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (167 samples, 14.83%)</title><rect x="659.7" y="337" width="175.0" height="15.0" fill="rgb(231,148,29)" rx="2" ry="2" />
<text text-anchor="" x="662.73" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule_hrtimeout_range</text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.36%)</title><rect x="253.1" y="369" width="4.2" height="15.0" fill="rgb(246,152,23)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="379.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.09%)</title><rect x="572.8" y="305" width="1.0" height="15.0" fill="rgb(252,155,53)" rx="2" ry="2" />
<text text-anchor="" x="575.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (108 samples, 9.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (108 samples, 9.59%)</title><rect x="1062.1" y="337" width="113.2" height="15.0" fill="rgb(250,213,18)" rx="2" ry="2" />
<text text-anchor="" x="1065.15" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system:..</text>
</g>
<g class="func_g" onmouseover="s('alloc_pages_current (15 samples, 1.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_current (15 samples, 1.33%)</title><rect x="128.4" y="401" width="15.7" height="15.0" fill="rgb(253,12,22)" rx="2" ry="2" />
<text text-anchor="" x="131.42" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (4 samples, 0.36%)</title><rect x="973.1" y="177" width="4.2" height="15.0" fill="rgb(209,202,40)" rx="2" ry="2" />
<text text-anchor="" x="976.07" y="187.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 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (2 samples, 0.18%)</title><rect x="363.2" y="289" width="2.1" height="15.0" fill="rgb(227,228,48)" rx="2" ry="2" />
<text text-anchor="" x="366.16" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (166 samples, 14.74%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (166 samples, 14.74%)</title><rect x="660.8" y="305" width="173.9" height="15.0" fill="rgb(233,113,46)" rx="2" ry="2" />
<text text-anchor="" x="663.78" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.09%)</title><rect x="156.7" y="289" width="1.1" height="15.0" fill="rgb(248,169,29)" rx="2" ry="2" />
<text text-anchor="" x="159.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (1 samples, 0.09%)</title><rect x="673.4" y="241" width="1.0" height="15.0" fill="rgb(227,153,40)" rx="2" ry="2" />
<text text-anchor="" x="676.36" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (555 samples, 49.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (555 samples, 49.29%)</title><rect x="608.4" y="465" width="581.6" height="15.0" fill="rgb(241,145,6)" rx="2" ry="2" />
<text text-anchor="" x="611.38" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessageLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (7 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (7 samples, 0.62%)</title><rect x="283.5" y="289" width="7.4" height="15.0" fill="rgb(214,42,32)" rx="2" ry="2" />
<text text-anchor="" x="286.52" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.18%)</title><rect x="570.7" y="305" width="2.1" height="15.0" fill="rgb(205,8,1)" rx="2" ry="2" />
<text text-anchor="" x="573.66" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.09%)</title><rect x="637.7" y="385" width="1.1" height="15.0" fill="rgb(214,129,48)" rx="2" ry="2" />
<text text-anchor="" x="640.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::ChannelEndpoint::EnqueueMessage (7 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (7 samples, 0.62%)</title><rect x="244.7" y="417" width="7.4" height="15.0" fill="rgb(246,101,50)" rx="2" ry="2" />
<text text-anchor="" x="247.74" y="427.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.09%)</title><rect x="261.5" y="401" width="1.1" height="15.0" fill="rgb(254,52,7)" rx="2" ry="2" />
<text text-anchor="" x="264.51" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (4 samples, 0.36%)</title><rect x="117.9" y="369" width="4.2" height="15.0" fill="rgb(224,123,43)" rx="2" ry="2" />
<text text-anchor="" x="120.94" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (1 samples, 0.09%)</title><rect x="127.4" y="385" width="1.0" height="15.0" fill="rgb(221,30,9)" rx="2" ry="2" />
<text text-anchor="" x="130.37" y="395.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (1 samples, 0.09%)</title><rect x="364.2" y="225" width="1.1" height="15.0" fill="rgb(253,17,30)" rx="2" ry="2" />
<text text-anchor="" x="367.21" y="235.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.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (3 samples, 0.27%)</title><rect x="666.0" y="209" width="3.2" height="15.0" fill="rgb(224,53,31)" rx="2" ry="2" />
<text text-anchor="" x="669.02" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.09%)</title><rect x="550.7" y="401" width="1.1" height="15.0" fill="rgb(227,15,52)" rx="2" ry="2" />
<text text-anchor="" x="553.75" 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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.36%)</title><rect x="253.1" y="193" width="4.2" height="15.0" fill="rgb(235,61,20)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (1 samples, 0.09%)</title><rect x="1125.0" y="225" width="1.1" height="15.0" fill="rgb(233,157,24)" rx="2" ry="2" />
<text text-anchor="" x="1128.03" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.36%)</title><rect x="253.1" y="273" width="4.2" height="15.0" fill="rgb(237,9,1)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (21 samples, 1.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (21 samples, 1.87%)</title><rect x="875.6" y="273" width="22.0" height="15.0" fill="rgb(244,21,31)" rx="2" ry="2" />
<text text-anchor="" x="878.61" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (25 samples, 2.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (25 samples, 2.22%)</title><rect x="1140.7" y="129" width="26.2" height="15.0" fill="rgb(251,71,17)" rx="2" ry="2" />
<text text-anchor="" x="1143.75" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s('sched_clock (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.09%)</title><rect x="362.1" y="273" width="1.1" height="15.0" fill="rgb(229,31,44)" rx="2" ry="2" />
<text text-anchor="" x="365.11" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::WaitableEvent::Wait (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::WaitableEvent::Wait (1 samples, 0.09%)</title><rect x="465.9" y="305" width="1.0" height="15.0" fill="rgb(205,118,20)" rx="2" ry="2" />
<text text-anchor="" x="468.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (16 samples, 1.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (16 samples, 1.42%)</title><rect x="880.9" y="257" width="16.7" height="15.0" fill="rgb(215,205,14)" rx="2" ry="2" />
<text text-anchor="" x="883.85" 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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="481" width="5.2" height="15.0" fill="rgb(211,167,24)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (8 samples, 0.71%)</title><rect x="562.3" y="273" width="8.4" height="15.0" fill="rgb(206,119,46)" rx="2" ry="2" />
<text text-anchor="" x="565.27" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (9 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (9 samples, 0.80%)</title><rect x="243.7" y="433" width="9.4" height="15.0" fill="rgb(212,66,26)" rx="2" ry="2" />
<text text-anchor="" x="246.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (138 samples, 12.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (138 samples, 12.26%)</title><rect x="916.5" y="353" width="144.6" height="15.0" fill="rgb(236,30,51)" rx="2" ry="2" />
<text text-anchor="" x="919.48" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('put_page (9 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_page (9 samples, 0.80%)</title><rect x="963.6" y="177" width="9.5" height="15.0" fill="rgb(229,36,36)" rx="2" ry="2" />
<text text-anchor="" x="966.64" 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 (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.36%)</title><rect x="461.7" y="65" width="4.2" height="15.0" fill="rgb(215,118,40)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('source_load (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>source_load (1 samples, 0.09%)</title><rect x="155.7" y="289" width="1.0" height="15.0" fill="rgb(235,177,51)" rx="2" ry="2" />
<text text-anchor="" x="158.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_pgtables (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_pgtables (1 samples, 0.09%)</title><rect x="485.8" y="417" width="1.0" height="15.0" fill="rgb(227,121,23)" rx="2" ry="2" />
<text text-anchor="" x="488.77" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (2 samples, 0.18%)</title><rect x="1144.9" y="97" width="2.1" height="15.0" fill="rgb(249,88,2)" rx="2" ry="2" />
<text text-anchor="" x="1147.94" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_init (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_init (1 samples, 0.09%)</title><rect x="367.4" y="433" width="1.0" height="15.0" fill="rgb(227,79,36)" rx="2" ry="2" />
<text text-anchor="" x="370.35" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.09%)</title><rect x="272.0" y="401" width="1.0" height="15.0" fill="rgb(213,74,29)" rx="2" ry="2" />
<text text-anchor="" x="274.99" y="411.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (1 samples, 0.09%)</title><rect x="289.8" y="273" width="1.1" height="15.0" fill="rgb(242,13,47)" rx="2" ry="2" />
<text text-anchor="" x="292.80" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (17 samples, 1.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (17 samples, 1.51%)</title><rect x="560.2" y="417" width="17.8" height="15.0" fill="rgb(220,127,40)" rx="2" ry="2" />
<text text-anchor="" x="563.18" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.09%)</title><rect x="667.1" y="193" width="1.0" height="15.0" fill="rgb(214,69,53)" rx="2" ry="2" />
<text text-anchor="" x="670.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (1 samples, 0.09%)</title><rect x="884.0" y="241" width="1.0" height="15.0" fill="rgb(211,37,9)" rx="2" ry="2" />
<text text-anchor="" x="887.00" 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::WriteMessage (32 samples, 2.84%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (32 samples, 2.84%)</title><rect x="510.9" y="449" width="33.6" height="15.0" fill="rgb(227,57,40)" rx="2" ry="2" />
<text text-anchor="" x="513.92" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.36%)</title><rect x="10.0" y="321" width="4.2" height="15.0" fill="rgb(248,198,18)" 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('dequeue_entity (6 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (6 samples, 0.53%)</title><rect x="564.4" y="257" width="6.3" height="15.0" fill="rgb(250,83,18)" rx="2" ry="2" />
<text text-anchor="" x="567.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__put_single_page (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__put_single_page (4 samples, 0.36%)</title><rect x="965.7" y="161" width="4.2" height="15.0" fill="rgb(221,15,4)" rx="2" ry="2" />
<text text-anchor="" x="968.74" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.09%)</title><rect x="485.8" y="513" width="1.0" height="15.0" fill="rgb(245,137,50)" rx="2" ry="2" />
<text text-anchor="" x="488.77" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc_consolidate (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc_consolidate (3 samples, 0.27%)</title><rect x="482.6" y="513" width="3.2" height="15.0" fill="rgb(207,153,26)" rx="2" ry="2" />
<text text-anchor="" x="485.63" y="523.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.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (6 samples, 0.53%)</title><rect x="374.7" y="337" width="6.3" height="15.0" fill="rgb(235,46,31)" rx="2" ry="2" />
<text text-anchor="" x="377.69" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (3 samples, 0.27%)</title><rect x="538.2" y="369" width="3.1" height="15.0" fill="rgb(246,118,40)" rx="2" ry="2" />
<text text-anchor="" x="541.17" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (12 samples, 1.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (12 samples, 1.07%)</title><rect x="885.0" y="241" width="12.6" height="15.0" fill="rgb(216,28,40)" rx="2" ry="2" />
<text text-anchor="" x="888.04" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('select_task_rq_fair (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (5 samples, 0.44%)</title><rect x="1143.9" y="113" width="5.2" height="15.0" fill="rgb(241,91,24)" rx="2" ry="2" />
<text text-anchor="" x="1146.89" y="123.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.18%)</title><rect x="651.3" y="337" width="2.1" height="15.0" fill="rgb(242,16,52)" rx="2" ry="2" />
<text text-anchor="" x="654.35" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (5 samples, 0.44%)</title><rect x="899.7" y="289" width="5.3" height="15.0" fill="rgb(209,164,51)" rx="2" ry="2" />
<text text-anchor="" x="902.72" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (3 samples, 0.27%)</title><rect x="216.4" y="433" width="3.2" height="15.0" fill="rgb(207,42,31)" rx="2" ry="2" />
<text text-anchor="" x="219.45" 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::OnReadMessage (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (1 samples, 0.09%)</title><rect x="637.7" y="289" width="1.1" height="15.0" fill="rgb(247,79,35)" rx="2" ry="2" />
<text text-anchor="" x="640.73" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (84 samples, 7.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (84 samples, 7.46%)</title><rect x="279.3" y="417" width="88.1" height="15.0" fill="rgb(248,1,13)" rx="2" ry="2" />
<text text-anchor="" x="282.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_cal..</text>
</g>
<g class="func_g" onmouseover="s('shift_arg_pages (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>shift_arg_pages (1 samples, 0.09%)</title><rect x="28.9" y="401" width="1.0" height="15.0" fill="rgb(216,201,40)" rx="2" ry="2" />
<text text-anchor="" x="31.86" 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 (64 samples, 5.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (64 samples, 5.68%)</title><rect x="393.6" y="161" width="67.0" height="15.0" fill="rgb(209,88,49)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_pm..</text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (13 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (13 samples, 1.15%)</title><rect x="114.8" y="401" width="13.6" height="15.0" fill="rgb(217,174,38)" rx="2" ry="2" />
<text text-anchor="" x="117.80" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (4 samples, 0.36%)</title><rect x="655.5" y="321" width="4.2" height="15.0" fill="rgb(226,200,4)" rx="2" ry="2" />
<text text-anchor="" x="658.54" 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 (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (5 samples, 0.44%)</title><rect x="863.0" y="321" width="5.3" height="15.0" fill="rgb(241,56,28)" rx="2" ry="2" />
<text text-anchor="" x="866.04" y="331.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_task_comm (4 samples, 0.36%)</title><rect x="10.0" y="401" width="4.2" height="15.0" fill="rgb(219,202,5)" 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('mojo::system::RawChannel::OnReadCompleted (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (1 samples, 0.09%)</title><rect x="637.7" y="369" width="1.1" height="15.0" fill="rgb(209,167,25)" rx="2" ry="2" />
<text text-anchor="" x="640.73" 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 (7 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (7 samples, 0.62%)</title><rect x="918.6" y="305" width="7.3" height="15.0" fill="rgb(210,109,50)" rx="2" ry="2" />
<text text-anchor="" x="921.58" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="417" width="5.2" height="15.0" fill="rgb(219,133,30)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="497" width="5.2" height="15.0" fill="rgb(234,145,25)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (84 samples, 7.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (84 samples, 7.46%)</title><rect x="373.6" y="369" width="88.1" height="15.0" fill="rgb(234,135,41)" rx="2" ry="2" />
<text text-anchor="" x="376.64" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syst..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.09%)</title><rect x="184.0" y="385" width="1.0" height="15.0" fill="rgb(240,25,35)" rx="2" ry="2" />
<text text-anchor="" x="186.96" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (1 samples, 0.09%)</title><rect x="557.0" y="417" width="1.1" height="15.0" fill="rgb(222,109,9)" rx="2" ry="2" />
<text text-anchor="" x="560.03" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.09%)</title><rect x="659.7" y="321" width="1.1" height="15.0" fill="rgb(250,116,28)" rx="2" ry="2" />
<text text-anchor="" x="662.73" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_next_bit (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_next_bit (1 samples, 0.09%)</title><rect x="1147.0" y="97" width="1.1" height="15.0" fill="rgb(227,157,22)" rx="2" ry="2" />
<text text-anchor="" x="1150.03" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestCase::Run (89 samples, 7.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestCase::Run (89 samples, 7.90%)</title><rect x="373.6" y="433" width="93.3" height="15.0" fill="rgb(231,142,28)" rx="2" ry="2" />
<text text-anchor="" x="376.64" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Te..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (5 samples, 0.44%)</title><rect x="384.1" y="353" width="5.3" height="15.0" fill="rgb(230,156,32)" rx="2" ry="2" />
<text text-anchor="" x="387.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake_op (32 samples, 2.84%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (32 samples, 2.84%)</title><rect x="1133.4" y="177" width="33.5" height="15.0" fill="rgb(212,117,35)" rx="2" ry="2" />
<text text-anchor="" x="1136.41" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s('event_active (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (1 samples, 0.09%)</title><rect x="1185.8" y="401" width="1.1" height="15.0" fill="rgb(231,148,28)" rx="2" ry="2" />
<text text-anchor="" x="1188.81" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (33 samples, 2.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (33 samples, 2.93%)</title><rect x="147.3" y="337" width="34.6" height="15.0" fill="rgb(240,100,48)" rx="2" ry="2" />
<text text-anchor="" x="150.28" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::AddAwakable (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (1 samples, 0.09%)</title><rect x="550.7" y="433" width="1.1" height="15.0" fill="rgb(215,96,21)" rx="2" ry="2" />
<text text-anchor="" x="553.75" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_alloc (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (1 samples, 0.09%)</title><rect x="121.1" y="353" width="1.0" height="15.0" fill="rgb(221,66,19)" rx="2" ry="2" />
<text text-anchor="" x="124.08" 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 (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.36%)</title><rect x="15.2" y="161" width="4.2" height="15.0" fill="rgb(205,181,7)" rx="2" ry="2" />
<text text-anchor="" x="18.24" y="171.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:: (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (3 samples, 0.27%)</title><rect x="1186.9" y="401" width="3.1" height="15.0" fill="rgb(225,227,34)" rx="2" ry="2" />
<text text-anchor="" x="1189.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (139 samples, 12.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (139 samples, 12.34%)</title><rect x="674.4" y="209" width="145.7" height="15.0" fill="rgb(245,206,44)" rx="2" ry="2" />
<text text-anchor="" x="677.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_pmu_enable</text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (3 samples, 0.27%)</title><rect x="1182.7" y="401" width="3.1" height="15.0" fill="rgb(215,224,15)" rx="2" ry="2" />
<text text-anchor="" x="1185.66" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (12 samples, 1.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (12 samples, 1.07%)</title><rect x="1151.2" y="97" width="12.6" height="15.0" fill="rgb(249,58,48)" rx="2" ry="2" />
<text text-anchor="" x="1154.23" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (60 samples, 5.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (60 samples, 5.33%)</title><rect x="1110.4" y="321" width="62.8" height="15.0" fill="rgb(237,68,47)" rx="2" ry="2" />
<text text-anchor="" x="1113.36" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::..</text>
</g>
<g class="func_g" onmouseover="s('consume_skb (30 samples, 2.66%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (30 samples, 2.66%)</title><rect x="956.3" y="225" width="31.4" height="15.0" fill="rgb(239,2,1)" rx="2" ry="2" />
<text text-anchor="" x="959.31" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (2 samples, 0.18%)</title><rect x="187.1" y="449" width="2.1" height="15.0" fill="rgb(211,17,2)" rx="2" ry="2" />
<text text-anchor="" x="190.10" 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 (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.36%)</title><rect x="461.7" y="81" width="4.2" height="15.0" fill="rgb(244,110,24)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.09%)</title><rect x="822.2" y="257" width="1.0" height="15.0" fill="rgb(248,7,20)" rx="2" ry="2" />
<text text-anchor="" x="825.17" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (1 samples, 0.09%)</title><rect x="637.7" y="337" width="1.1" height="15.0" fill="rgb(248,12,44)" rx="2" ry="2" />
<text text-anchor="" x="640.73" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TestSuite::Run (264 samples, 23.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestSuite::Run (264 samples, 23.45%)</title><rect x="190.2" y="481" width="276.7" height="15.0" fill="rgb(242,9,37)" rx="2" ry="2" />
<text text-anchor="" x="193.25" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::TestSuite::Run</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.09%)</title><rect x="387.3" y="289" width="1.0" height="15.0" fill="rgb(229,183,27)" rx="2" ry="2" />
<text text-anchor="" x="390.26" y="299.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.09%)</title><rect x="1172.2" y="305" width="1.0" height="15.0" fill="rgb(250,95,37)" rx="2" ry="2" />
<text text-anchor="" x="1175.18" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (64 samples, 5.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (64 samples, 5.68%)</title><rect x="393.6" y="129" width="67.0" height="15.0" fill="rgb(237,75,23)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_p..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (41 samples, 3.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (41 samples, 3.64%)</title><rect x="863.0" y="353" width="43.0" height="15.0" fill="rgb(227,198,32)" rx="2" ry="2" />
<text text-anchor="" x="866.04" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s('select_task_rq_fair (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (2 samples, 0.18%)</title><rect x="153.6" y="289" width="2.1" height="15.0" fill="rgb(235,223,50)" rx="2" ry="2" />
<text text-anchor="" x="156.57" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.09%)</title><rect x="1180.6" y="401" width="1.0" height="15.0" fill="rgb(223,113,43)" rx="2" ry="2" />
<text text-anchor="" x="1183.57" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.18%)</title><rect x="1111.4" y="305" width="2.1" height="15.0" fill="rgb(218,95,4)" rx="2" ry="2" />
<text text-anchor="" x="1114.40" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="615.7" y="401" width="5.3" height="15.0" fill="rgb(226,33,10)" rx="2" ry="2" />
<text text-anchor="" x="618.72" 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::ReadMessage (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (1 samples, 0.09%)</title><rect x="509.9" y="433" width="1.0" height="15.0" fill="rgb(209,95,39)" rx="2" ry="2" />
<text text-anchor="" x="512.88" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.09%)</title><rect x="152.5" y="289" width="1.1" height="15.0" fill="rgb(232,104,2)" rx="2" ry="2" />
<text text-anchor="" x="155.52" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (1 samples, 0.09%)</title><rect x="1049.6" y="273" width="1.0" height="15.0" fill="rgb(205,21,25)" rx="2" ry="2" />
<text text-anchor="" x="1052.57" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.09%)</title><rect x="481.6" y="513" width="1.0" height="15.0" fill="rgb(235,215,51)" rx="2" ry="2" />
<text text-anchor="" x="484.58" y="523.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (1 samples, 0.09%)</title><rect x="364.2" y="241" width="1.1" height="15.0" fill="rgb(230,14,49)" rx="2" ry="2" />
<text text-anchor="" x="367.21" y="251.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (1 samples, 0.09%)</title><rect x="116.9" y="385" width="1.0" height="15.0" fill="rgb(211,180,1)" rx="2" ry="2" />
<text text-anchor="" x="119.89" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.09%)</title><rect x="257.3" y="369" width="1.1" height="15.0" fill="rgb(253,106,5)" rx="2" ry="2" />
<text text-anchor="" x="260.32" y="379.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, 6.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (68 samples, 6.04%)</title><rect x="290.9" y="241" width="71.2" height="15.0" fill="rgb(247,10,54)" rx="2" ry="2" />
<text text-anchor="" x="293.85" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_pmu_..</text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (8 samples, 0.71%)</title><rect x="562.3" y="289" width="8.4" height="15.0" fill="rgb(222,70,20)" rx="2" ry="2" />
<text text-anchor="" x="565.27" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (1 samples, 0.09%)</title><rect x="671.3" y="241" width="1.0" height="15.0" fill="rgb(237,116,48)" rx="2" ry="2" />
<text text-anchor="" x="674.26" y="251.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 (140 samples, 12.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (140 samples, 12.43%)</title><rect x="674.4" y="257" width="146.7" height="15.0" fill="rgb(248,90,54)" rx="2" ry="2" />
<text text-anchor="" x="677.40" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf_event_task_..</text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.36%)</title><rect x="461.7" y="161" width="4.2" height="15.0" fill="rgb(216,144,24)" rx="2" ry="2" />
<text text-anchor="" x="464.67" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.09%)</title><rect x="573.8" y="209" width="1.0" height="15.0" fill="rgb(242,137,6)" rx="2" ry="2" />
<text text-anchor="" x="576.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (6 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.53%)</title><rect x="262.6" y="401" width="6.2" height="15.0" fill="rgb(212,136,5)" rx="2" ry="2" />
<text text-anchor="" x="265.56" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.09%)</title><rect x="392.5" y="305" width="1.1" height="15.0" fill="rgb(252,13,16)" rx="2" ry="2" />
<text text-anchor="" x="395.50" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (2 samples, 0.18%)</title><rect x="956.3" y="193" width="2.1" height="15.0" fill="rgb(220,95,41)" rx="2" ry="2" />
<text text-anchor="" x="959.31" y="203.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.36%)</title><rect x="15.2" y="225" width="4.2" height="15.0" fill="rgb(205,39,2)" rx="2" ry="2" />
<text text-anchor="" x="18.24" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (3 samples, 0.27%)</title><rect x="246.8" y="385" width="3.2" height="15.0" fill="rgb(236,212,46)" rx="2" ry="2" />
<text text-anchor="" x="249.84" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.09%)</title><rect x="898.7" y="289" width="1.0" height="15.0" fill="rgb(213,81,42)" rx="2" ry="2" />
<text text-anchor="" x="901.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_pages_nodemask (14 samples, 1.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (14 samples, 1.24%)</title><rect x="128.4" y="385" width="14.7" height="15.0" fill="rgb(216,51,13)" rx="2" ry="2" />
<text text-anchor="" x="131.42" 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 (68 samples, 6.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (68 samples, 6.04%)</title><rect x="290.9" y="225" width="71.2" height="15.0" fill="rgb(209,144,4)" rx="2" ry="2" />
<text text-anchor="" x="293.85" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_pm..</text>
</g>
<g class="func_g" onmouseover="s('unix_write_space (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (5 samples, 0.44%)</title><rect x="981.5" y="145" width="5.2" height="15.0" fill="rgb(248,84,20)" rx="2" ry="2" />
<text text-anchor="" x="984.46" y="155.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (1 samples, 0.09%)</title><rect x="871.4" y="337" width="1.1" height="15.0" fill="rgb(240,128,38)" rx="2" ry="2" />
<text text-anchor="" x="874.42" y="347.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.09%)</title><rect x="286.7" y="241" width="1.0" height="15.0" fill="rgb(205,201,31)" rx="2" ry="2" />
<text text-anchor="" x="289.66" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (4 samples, 0.36%)</title><rect x="177.7" y="289" width="4.2" height="15.0" fill="rgb(206,6,50)" rx="2" ry="2" />
<text text-anchor="" x="180.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg_handler (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg_handler (1 samples, 0.09%)</title><rect x="878.8" y="225" width="1.0" height="15.0" fill="rgb(217,183,27)" rx="2" ry="2" />
<text text-anchor="" x="881.76" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (4 samples, 0.36%)</title><rect x="285.6" y="257" width="4.2" height="15.0" fill="rgb(222,1,22)" rx="2" ry="2" />
<text text-anchor="" x="288.61" 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::OnReadCompleted (257 samples, 22.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (257 samples, 22.82%)</title><rect x="910.2" y="369" width="269.3" height="15.0" fill="rgb(212,9,18)" rx="2" ry="2" />
<text text-anchor="" x="913.20" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::RawChannel::OnReadComp..</text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (9 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (9 samples, 0.80%)</title><rect x="977.3" y="193" width="9.4" height="15.0" fill="rgb(224,119,16)" rx="2" ry="2" />
<text text-anchor="" x="980.26" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (142 samples, 12.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (142 samples, 12.61%)</title><rect x="672.3" y="273" width="148.8" height="15.0" fill="rgb(206,30,10)" rx="2" ry="2" />
<text text-anchor="" x="675.31" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish_task_switch</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (1 samples, 0.09%)</title><rect x="849.4" y="385" width="1.1" height="15.0" fill="rgb(206,176,16)" rx="2" ry="2" />
<text text-anchor="" x="852.41" y="395.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 (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (4 samples, 0.36%)</title><rect x="824.3" y="257" width="4.2" height="15.0" fill="rgb(254,114,17)" rx="2" ry="2" />
<text text-anchor="" x="827.26" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (6 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (6 samples, 0.53%)</title><rect x="283.5" y="273" width="6.3" height="15.0" fill="rgb(220,172,22)" rx="2" ry="2" />
<text text-anchor="" x="286.52" y="283.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (1 samples, 0.09%)</title><rect x="872.5" y="321" width="1.0" height="15.0" fill="rgb(212,158,47)" rx="2" ry="2" />
<text text-anchor="" x="875.47" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (1 samples, 0.09%)</title><rect x="879.8" y="241" width="1.1" height="15.0" fill="rgb(249,102,12)" rx="2" ry="2" />
<text text-anchor="" x="882.80" y="251.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_wp_page (1 samples, 0.09%)</title><rect x="14.2" y="209" width="1.0" height="15.0" fill="rgb(213,88,8)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (2 samples, 0.18%)</title><rect x="153.6" y="273" width="2.1" height="15.0" fill="rgb(212,89,39)" rx="2" ry="2" />
<text text-anchor="" x="156.57" y="283.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.09%)</title><rect x="869.3" y="321" width="1.1" height="15.0" fill="rgb(228,202,47)" rx="2" ry="2" />
<text text-anchor="" x="872.33" 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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.18%)</title><rect x="32.0" y="465" width="2.1" height="15.0" fill="rgb(231,123,40)" rx="2" ry="2" />
<text text-anchor="" x="35.01" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (14 samples, 1.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (14 samples, 1.24%)</title><rect x="158.8" y="241" width="14.7" height="15.0" fill="rgb(232,71,20)" rx="2" ry="2" />
<text text-anchor="" x="161.81" 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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.36%)</title><rect x="461.7" y="97" width="4.2" height="15.0" fill="rgb(242,186,47)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="107.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, 2.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (27 samples, 2.40%)</title><rect x="191.3" y="449" width="28.3" height="15.0" fill="rgb(233,137,9)" rx="2" ry="2" />
<text text-anchor="" x="194.30" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.09%)</title><rect x="1148.1" y="97" width="1.0" height="15.0" fill="rgb(214,10,15)" rx="2" ry="2" />
<text text-anchor="" x="1151.08" y="107.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.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.71%)</title><rect x="19.4" y="385" width="8.4" height="15.0" fill="rgb(242,65,45)" rx="2" ry="2" />
<text text-anchor="" x="22.43" 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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (1 samples, 0.09%)</title><rect x="927.0" y="321" width="1.0" height="15.0" fill="rgb(245,0,53)" rx="2" ry="2" />
<text text-anchor="" x="929.96" y="331.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (1 samples, 0.09%)</title><rect x="875.6" y="225" width="1.1" height="15.0" fill="rgb(242,2,47)" rx="2" ry="2" />
<text text-anchor="" x="878.61" 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::Wait (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Wait (1 samples, 0.09%)</title><rect x="554.9" y="433" width="1.1" height="15.0" fill="rgb(212,86,46)" rx="2" ry="2" />
<text text-anchor="" x="557.94" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.09%)</title><rect x="251.0" y="401" width="1.1" height="15.0" fill="rgb(241,120,22)" rx="2" ry="2" />
<text text-anchor="" x="254.03" y="411.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (4 samples, 0.36%)</title><rect x="10.0" y="433" width="4.2" height="15.0" fill="rgb(205,134,50)" 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('sysret_audit (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (4 samples, 0.36%)</title><rect x="29.9" y="497" width="4.2" height="15.0" fill="rgb(225,162,44)" rx="2" ry="2" />
<text text-anchor="" x="32.91" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (1 samples, 0.09%)</title><rect x="1174.3" y="305" width="1.0" height="15.0" fill="rgb(220,156,22)" rx="2" ry="2" />
<text text-anchor="" x="1177.28" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_page (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_page (4 samples, 0.36%)</title><rect x="958.4" y="193" width="4.2" height="15.0" fill="rgb(214,168,24)" rx="2" ry="2" />
<text text-anchor="" x="961.40" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (69 samples, 6.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (69 samples, 6.13%)</title><rect x="389.4" y="353" width="72.3" height="15.0" fill="rgb(226,41,54)" rx="2" ry="2" />
<text text-anchor="" x="392.36" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::sy..</text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (42 samples, 3.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (42 samples, 3.73%)</title><rect x="1122.9" y="241" width="44.0" height="15.0" fill="rgb(223,128,22)" rx="2" ry="2" />
<text text-anchor="" x="1125.93" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthr..</text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (1 samples, 0.09%)</title><rect x="573.8" y="305" width="1.0" height="15.0" fill="rgb(209,106,54)" rx="2" ry="2" />
<text text-anchor="" x="576.80" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (8 samples, 0.71%)</title><rect x="639.8" y="385" width="8.4" height="15.0" fill="rgb(221,155,11)" rx="2" ry="2" />
<text text-anchor="" x="642.82" 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::RemoveAwakable (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (3 samples, 0.27%)</title><rect x="551.8" y="433" width="3.1" height="15.0" fill="rgb(212,124,5)" rx="2" ry="2" />
<text text-anchor="" x="554.79" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (33 samples, 2.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (33 samples, 2.93%)</title><rect x="147.3" y="353" width="34.6" height="15.0" fill="rgb(221,74,54)" rx="2" ry="2" />
<text text-anchor="" x="150.28" y="363.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.18%)</title><rect x="181.9" y="353" width="2.1" height="15.0" fill="rgb(216,137,5)" rx="2" ry="2" />
<text text-anchor="" x="184.87" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (1 samples, 0.09%)</title><rect x="43.5" y="417" width="1.1" height="15.0" fill="rgb(253,39,15)" rx="2" ry="2" />
<text text-anchor="" x="46.53" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.09%)</title><rect x="465.9" y="209" width="1.0" height="15.0" fill="rgb(223,31,2)" rx="2" ry="2" />
<text text-anchor="" x="468.86" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::Thread::ThreadMain (555 samples, 49.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::Thread::ThreadMain (555 samples, 49.29%)</title><rect x="608.4" y="481" width="581.6" height="15.0" fill="rgb(246,140,26)" rx="2" ry="2" />
<text text-anchor="" x="611.38" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::Thread::ThreadMain</text>
</g>
<g class="func_g" onmouseover="s('sys_futex (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.09%)</title><rect x="465.9" y="257" width="1.0" height="15.0" fill="rgb(231,43,46)" rx="2" ry="2" />
<text text-anchor="" x="468.86" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (13 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (13 samples, 1.15%)</title><rect x="562.3" y="337" width="13.6" height="15.0" fill="rgb(240,3,13)" rx="2" ry="2" />
<text text-anchor="" x="565.27" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (1 samples, 0.09%)</title><rect x="240.6" y="433" width="1.0" height="15.0" fill="rgb(232,221,5)" rx="2" ry="2" />
<text text-anchor="" x="243.55" y="443.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, 6.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (68 samples, 6.04%)</title><rect x="290.9" y="289" width="71.2" height="15.0" fill="rgb(230,114,31)" rx="2" ry="2" />
<text text-anchor="" x="293.85" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf_e..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (32 samples, 2.84%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (32 samples, 2.84%)</title><rect x="219.6" y="449" width="33.5" height="15.0" fill="rgb(217,20,31)" rx="2" ry="2" />
<text text-anchor="" x="222.59" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('unlink_anon_vmas (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>unlink_anon_vmas (1 samples, 0.09%)</title><rect x="485.8" y="401" width="1.0" height="15.0" fill="rgb(205,171,10)" rx="2" ry="2" />
<text text-anchor="" x="488.77" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (1 samples, 0.09%)</title><rect x="573.8" y="241" width="1.0" height="15.0" fill="rgb(245,178,51)" rx="2" ry="2" />
<text text-anchor="" x="576.80" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg (143 samples, 12.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (143 samples, 12.70%)</title><rect x="37.2" y="449" width="149.9" height="15.0" fill="rgb(225,217,30)" rx="2" ry="2" />
<text text-anchor="" x="40.25" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_sendmsg</text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (4 samples, 0.36%)</title><rect x="875.6" y="257" width="4.2" height="15.0" fill="rgb(240,152,9)" rx="2" ry="2" />
<text text-anchor="" x="878.61" 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 (7 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (7 samples, 0.62%)</title><rect x="261.5" y="417" width="7.3" height="15.0" fill="rgb(239,179,14)" rx="2" ry="2" />
<text text-anchor="" x="264.51" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (320 samples, 28.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (320 samples, 28.42%)</title><rect x="845.2" y="401" width="335.4" height="15.0" fill="rgb(219,153,40)" rx="2" ry="2" />
<text text-anchor="" x="848.22" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::OnLibeventNotifica..</text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.09%)</title><rect x="571.7" y="289" width="1.1" height="15.0" fill="rgb(245,5,36)" rx="2" ry="2" />
<text text-anchor="" x="574.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (31 samples, 2.75%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (31 samples, 2.75%)</title><rect x="873.5" y="321" width="32.5" height="15.0" fill="rgb(233,209,27)" rx="2" ry="2" />
<text text-anchor="" x="876.52" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_stub (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_stub (1 samples, 0.09%)</title><rect x="1051.7" y="273" width="1.0" height="15.0" fill="rgb(215,186,14)" rx="2" ry="2" />
<text text-anchor="" x="1054.67" y="283.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.09%)</title><rect x="391.5" y="305" width="1.0" height="15.0" fill="rgb(221,26,23)" rx="2" ry="2" />
<text text-anchor="" x="394.46" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_setup (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (2 samples, 0.18%)</title><rect x="575.9" y="353" width="2.1" height="15.0" fill="rgb(247,42,43)" rx="2" ry="2" />
<text text-anchor="" x="578.90" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::Test::Run (91 samples, 8.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::Test::Run (91 samples, 8.08%)</title><rect x="486.8" y="497" width="95.4" height="15.0" fill="rgb(217,104,12)" rx="2" ry="2" />
<text text-anchor="" x="489.82" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Te..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.18%)</title><rect x="1170.1" y="289" width="2.1" height="15.0" fill="rgb(249,60,0)" rx="2" ry="2" />
<text text-anchor="" x="1173.09" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (52 samples, 4.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (52 samples, 4.62%)</title><rect x="1115.6" y="273" width="54.5" height="15.0" fill="rgb(236,36,6)" rx="2" ry="2" />
<text text-anchor="" x="1118.60" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (5 samples, 0.44%)</title><rect x="537.1" y="385" width="5.3" height="15.0" fill="rgb(213,16,18)" rx="2" ry="2" />
<text text-anchor="" x="540.12" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (123 samples, 10.92%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (123 samples, 10.92%)</title><rect x="928.0" y="289" width="128.9" height="15.0" fill="rgb(223,25,41)" rx="2" ry="2" />
<text text-anchor="" x="931.01" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sys_recvmsg</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="353" width="5.2" height="15.0" fill="rgb(219,208,22)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_start_main (264 samples, 23.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (264 samples, 23.45%)</title><rect x="190.2" y="513" width="276.7" height="15.0" fill="rgb(242,48,43)" rx="2" ry="2" />
<text text-anchor="" x="193.25" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s('tlb_finish_mmu (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>tlb_finish_mmu (1 samples, 0.09%)</title><rect x="28.9" y="385" width="1.0" height="15.0" fill="rgb(252,146,25)" rx="2" ry="2" />
<text text-anchor="" x="31.86" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc_consolidate (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc_consolidate (8 samples, 0.71%)</title><rect x="600.0" y="513" width="8.4" height="15.0" fill="rgb(227,86,23)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="523.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.09%)</title><rect x="665.0" y="225" width="1.0" height="15.0" fill="rgb(232,144,4)" rx="2" ry="2" />
<text text-anchor="" x="667.97" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree_skbmem (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (2 samples, 0.18%)</title><rect x="956.3" y="209" width="2.1" height="15.0" fill="rgb(215,31,28)" rx="2" ry="2" />
<text text-anchor="" x="959.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (2 samples, 0.18%)</title><rect x="657.6" y="305" width="2.1" height="15.0" fill="rgb(246,77,27)" rx="2" ry="2" />
<text text-anchor="" x="660.64" y="315.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (1 samples, 0.09%)</title><rect x="28.9" y="433" width="1.0" height="15.0" fill="rgb(223,219,48)" rx="2" ry="2" />
<text text-anchor="" x="31.86" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::WaitableEvent::Wait (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::WaitableEvent::Wait (4 samples, 0.36%)</title><rect x="461.7" y="289" width="4.2" height="15.0" fill="rgb(248,76,51)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="299.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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestIOThread::Start (5 samples, 0.44%)</title><rect x="253.1" y="433" width="5.3" height="15.0" fill="rgb(218,184,37)" rx="2" ry="2" />
<text text-anchor="" x="256.13" 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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="385" width="5.2" height="15.0" fill="rgb(209,188,6)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="395.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 (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (4 samples, 0.36%)</title><rect x="824.3" y="273" width="4.2" height="15.0" fill="rgb(235,30,5)" rx="2" ry="2" />
<text text-anchor="" x="827.26" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__put_compound_page (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__put_compound_page (3 samples, 0.27%)</title><rect x="969.9" y="145" width="3.2" height="15.0" fill="rgb(230,170,47)" rx="2" ry="2" />
<text text-anchor="" x="972.93" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (139 samples, 12.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (139 samples, 12.34%)</title><rect x="674.4" y="225" width="145.7" height="15.0" fill="rgb(207,228,45)" rx="2" ry="2" />
<text text-anchor="" x="677.40" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_pmu_enable</text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (3 samples, 0.27%)</title><rect x="666.0" y="225" width="3.2" height="15.0" fill="rgb(233,148,15)" rx="2" ry="2" />
<text text-anchor="" x="669.02" y="235.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.36%)</title><rect x="253.1" y="161" width="4.2" height="15.0" fill="rgb(232,101,16)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (7 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (7 samples, 0.62%)</title><rect x="640.9" y="353" width="7.3" height="15.0" fill="rgb(207,0,8)" rx="2" ry="2" />
<text text-anchor="" x="643.87" 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::OnWriteCompletedNoLock (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (1 samples, 0.09%)</title><rect x="541.3" y="369" width="1.1" height="15.0" fill="rgb(216,187,7)" rx="2" ry="2" />
<text text-anchor="" x="544.31" y="379.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (1 samples, 0.09%)</title><rect x="364.2" y="273" width="1.1" height="15.0" fill="rgb(231,216,37)" rx="2" ry="2" />
<text text-anchor="" x="367.21" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_page_from_freelist (7 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_page_from_freelist (7 samples, 0.62%)</title><rect x="135.8" y="369" width="7.3" height="15.0" fill="rgb(241,72,10)" rx="2" ry="2" />
<text text-anchor="" x="138.75" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (46 samples, 4.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (46 samples, 4.09%)</title><rect x="1062.1" y="321" width="48.3" height="15.0" fill="rgb(246,60,21)" rx="2" ry="2" />
<text text-anchor="" x="1065.15" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__me..</text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1 samples, 0.09%)</title><rect x="27.8" y="497" width="1.1" height="15.0" fill="rgb(210,225,0)" rx="2" ry="2" />
<text text-anchor="" x="30.82" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (36 samples, 3.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (36 samples, 3.20%)</title><rect x="147.3" y="401" width="37.7" height="15.0" fill="rgb(212,211,21)" rx="2" ry="2" />
<text text-anchor="" x="150.28" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.09%)</title><rect x="569.6" y="241" width="1.1" height="15.0" fill="rgb(205,53,34)" rx="2" ry="2" />
<text text-anchor="" x="572.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (6 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (6 samples, 0.53%)</title><rect x="38.3" y="433" width="6.3" height="15.0" fill="rgb(215,70,27)" rx="2" ry="2" />
<text text-anchor="" x="41.29" y="443.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.36%)</title><rect x="10.0" y="305" width="4.2" height="15.0" fill="rgb(221,94,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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::MessageInTransit (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (3 samples, 0.27%)</title><rect x="531.9" y="433" width="3.1" height="15.0" fill="rgb(237,200,35)" rx="2" ry="2" />
<text text-anchor="" x="534.88" y="443.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.09%)</title><rect x="1179.5" y="385" width="1.1" height="15.0" fill="rgb(233,146,50)" rx="2" ry="2" />
<text text-anchor="" x="1182.52" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (64 samples, 5.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (64 samples, 5.68%)</title><rect x="393.6" y="145" width="67.0" height="15.0" fill="rgb(236,106,25)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_pmu..</text>
</g>
<g class="func_g" onmouseover="s('futex_wait_setup (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (1 samples, 0.09%)</title><rect x="366.3" y="353" width="1.1" height="15.0" fill="rgb(213,66,42)" rx="2" ry="2" />
<text text-anchor="" x="369.31" y="363.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 (65 samples, 5.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (65 samples, 5.77%)</title><rect x="393.6" y="337" width="68.1" height="15.0" fill="rgb(245,209,43)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthread..</text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (19 samples, 1.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (19 samples, 1.69%)</title><rect x="157.8" y="289" width="19.9" height="15.0" fill="rgb(220,170,9)" rx="2" ry="2" />
<text text-anchor="" x="160.76" y="299.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (2 samples, 0.18%)</title><rect x="635.6" y="369" width="2.1" height="15.0" fill="rgb(247,16,12)" rx="2" ry="2" />
<text text-anchor="" x="638.63" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (108 samples, 9.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (108 samples, 9.59%)</title><rect x="258.4" y="449" width="113.1" height="15.0" fill="rgb(222,180,5)" rx="2" ry="2" />
<text text-anchor="" x="261.37" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system:..</text>
</g>
<g class="func_g" onmouseover="s('load_balance (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.09%)</title><rect x="465.9" y="145" width="1.0" height="15.0" fill="rgb(209,197,33)" rx="2" ry="2" />
<text text-anchor="" x="468.86" y="155.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 (21 samples, 1.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (21 samples, 1.87%)</title><rect x="556.0" y="433" width="22.0" height="15.0" fill="rgb(251,188,6)" rx="2" ry="2" />
<text text-anchor="" x="558.99" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (1 samples, 0.09%)</title><rect x="854.7" y="385" width="1.0" height="15.0" fill="rgb(227,42,13)" rx="2" ry="2" />
<text text-anchor="" x="857.65" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (5 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (5 samples, 0.44%)</title><rect x="38.3" y="417" width="5.2" height="15.0" fill="rgb(207,219,45)" rx="2" ry="2" />
<text text-anchor="" x="41.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (83 samples, 7.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (83 samples, 7.37%)</title><rect x="279.3" y="353" width="87.0" height="15.0" fill="rgb(233,164,31)" rx="2" ry="2" />
<text text-anchor="" x="282.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_wait..</text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (1 samples, 0.09%)</title><rect x="573.8" y="273" width="1.0" height="15.0" fill="rgb(212,147,47)" rx="2" ry="2" />
<text text-anchor="" x="576.80" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (22 samples, 1.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (22 samples, 1.95%)</title><rect x="487.9" y="449" width="23.0" height="15.0" fill="rgb(240,147,34)" rx="2" ry="2" />
<text text-anchor="" x="490.87" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('__libc_enable_asynccancel (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (1 samples, 0.09%)</title><rect x="844.2" y="401" width="1.0" height="15.0" fill="rgb(224,64,20)" rx="2" ry="2" />
<text text-anchor="" x="847.17" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (2 samples, 0.18%)</title><rect x="657.6" y="289" width="2.1" height="15.0" fill="rgb(217,217,10)" rx="2" ry="2" />
<text text-anchor="" x="660.64" 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 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.18%)</title><rect x="984.6" y="113" width="2.1" height="15.0" fill="rgb(254,107,28)" rx="2" ry="2" />
<text text-anchor="" x="987.60" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (15 samples, 1.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (15 samples, 1.33%)</title><rect x="157.8" y="273" width="15.7" height="15.0" fill="rgb(216,104,7)" rx="2" ry="2" />
<text text-anchor="" x="160.76" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__rmqueue (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__rmqueue (2 samples, 0.18%)</title><rect x="138.9" y="353" width="2.1" height="15.0" fill="rgb(229,151,49)" rx="2" ry="2" />
<text text-anchor="" x="141.90" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (2 samples, 0.18%)</title><rect x="837.9" y="353" width="2.1" height="15.0" fill="rgb(218,153,29)" rx="2" ry="2" />
<text text-anchor="" x="840.89" y="363.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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="465.9" y="289" width="1.0" height="15.0" fill="rgb(219,43,10)" rx="2" ry="2" />
<text text-anchor="" x="468.86" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (65 samples, 5.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (65 samples, 5.77%)</title><rect x="393.6" y="305" width="68.1" height="15.0" fill="rgb(226,128,11)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_futex</text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (2 samples, 0.18%)</title><rect x="1163.8" y="97" width="2.1" height="15.0" fill="rgb(236,111,50)" rx="2" ry="2" />
<text text-anchor="" x="1166.80" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('SYSC_sendto (148 samples, 13.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (148 samples, 13.14%)</title><rect x="34.1" y="465" width="155.1" height="15.0" fill="rgb(221,40,4)" rx="2" ry="2" />
<text text-anchor="" x="37.10" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >SYSC_sendto</text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (1 samples, 0.09%)</title><rect x="28.9" y="449" width="1.0" height="15.0" fill="rgb(208,172,22)" rx="2" ry="2" />
<text text-anchor="" x="31.86" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (21 samples, 1.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (21 samples, 1.87%)</title><rect x="487.9" y="433" width="22.0" height="15.0" fill="rgb(230,50,4)" rx="2" ry="2" />
<text text-anchor="" x="490.87" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (9 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (9 samples, 0.80%)</title><rect x="942.7" y="225" width="9.4" height="15.0" fill="rgb(246,227,52)" rx="2" ry="2" />
<text text-anchor="" x="945.68" 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 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (2 samples, 0.18%)</title><rect x="384.1" y="337" width="2.1" height="15.0" fill="rgb(234,129,42)" rx="2" ry="2" />
<text text-anchor="" x="387.12" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_pageblock_flags_mask (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_pageblock_flags_mask (1 samples, 0.09%)</title><rect x="971.0" y="97" width="1.0" height="15.0" fill="rgb(240,115,30)" rx="2" ry="2" />
<text text-anchor="" x="973.98" y="107.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.18%)</title><rect x="1166.9" y="241" width="2.1" height="15.0" fill="rgb(225,21,11)" rx="2" ry="2" />
<text text-anchor="" x="1169.94" y="251.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (1 samples, 0.09%)</title><rect x="827.4" y="209" width="1.1" height="15.0" fill="rgb(229,11,46)" rx="2" ry="2" />
<text text-anchor="" x="830.41" y="219.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:: (308 samples, 27.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (308 samples, 27.35%)</title><rect x="856.7" y="385" width="322.8" height="15.0" fill="rgb(213,195,39)" rx="2" ry="2" />
<text text-anchor="" x="859.75" y="395.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('pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="637.7" y="241" width="1.1" height="15.0" fill="rgb(241,209,49)" rx="2" ry="2" />
<text text-anchor="" x="640.73" y="251.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.09%)</title><rect x="362.1" y="257" width="1.1" height="15.0" fill="rgb(230,162,46)" rx="2" ry="2" />
<text text-anchor="" x="365.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (1 samples, 0.09%)</title><rect x="609.4" y="433" width="1.1" height="15.0" fill="rgb(253,126,31)" rx="2" ry="2" />
<text text-anchor="" x="612.43" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (3 samples, 0.27%)</title><rect x="174.5" y="273" width="3.2" height="15.0" fill="rgb(233,19,2)" rx="2" ry="2" />
<text text-anchor="" x="177.53" 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 (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (8 samples, 0.71%)</title><rect x="19.4" y="401" width="8.4" height="15.0" fill="rgb(240,23,1)" rx="2" ry="2" />
<text text-anchor="" x="22.43" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (4 samples, 0.36%)</title><rect x="29.9" y="481" width="4.2" height="15.0" fill="rgb(215,59,46)" rx="2" ry="2" />
<text text-anchor="" x="32.91" 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 (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.27%)</title><rect x="368.4" y="433" width="3.1" height="15.0" fill="rgb(252,192,27)" rx="2" ry="2" />
<text text-anchor="" x="371.40" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('exit_mmap (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>exit_mmap (1 samples, 0.09%)</title><rect x="485.8" y="433" width="1.0" height="15.0" fill="rgb(228,152,34)" rx="2" ry="2" />
<text text-anchor="" x="488.77" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(':15114 (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>:15114 (4 samples, 0.36%)</title><rect x="10.0" y="529" width="4.2" height="15.0" fill="rgb(253,79,42)" 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('native_sched_clock (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.09%)</title><rect x="289.8" y="241" width="1.1" height="15.0" fill="rgb(236,169,45)" rx="2" ry="2" />
<text text-anchor="" x="292.80" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (1 samples, 0.09%)</title><rect x="39.3" y="385" width="1.1" height="15.0" fill="rgb(232,79,37)" rx="2" ry="2" />
<text text-anchor="" x="42.34" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__free_pages_ok.part.62 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__free_pages_ok.part.62 (2 samples, 0.18%)</title><rect x="969.9" y="113" width="2.1" height="15.0" fill="rgb(224,223,19)" rx="2" ry="2" />
<text text-anchor="" x="972.93" y="123.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (1 samples, 0.09%)</title><rect x="189.2" y="465" width="1.0" height="15.0" fill="rgb(224,36,22)" rx="2" ry="2" />
<text text-anchor="" x="192.20" y="475.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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::Thread::StartWithOptions (5 samples, 0.44%)</title><rect x="253.1" y="417" width="5.3" height="15.0" fill="rgb(251,162,42)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="427.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.09%)</title><rect x="14.2" y="225" width="1.0" height="15.0" fill="rgb(237,150,21)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.09%)</title><rect x="381.0" y="337" width="1.0" height="15.0" fill="rgb(250,24,25)" rx="2" ry="2" />
<text text-anchor="" x="383.98" 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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.44%)</title><rect x="14.2" y="465" width="5.2" height="15.0" fill="rgb(222,45,32)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.09%)</title><rect x="465.9" y="225" width="1.0" height="15.0" fill="rgb(231,70,54)" rx="2" ry="2" />
<text text-anchor="" x="468.86" y="235.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.09%)</title><rect x="654.5" y="321" width="1.0" height="15.0" fill="rgb(239,134,19)" rx="2" ry="2" />
<text text-anchor="" x="657.49" 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 (65 samples, 5.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (65 samples, 5.77%)</title><rect x="393.6" y="257" width="68.1" height="15.0" fill="rgb(239,8,12)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_w..</text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.09%)</title><rect x="553.9" y="401" width="1.0" height="15.0" fill="rgb(237,28,30)" rx="2" ry="2" />
<text text-anchor="" x="556.89" y="411.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.09%)</title><rect x="190.2" y="465" width="1.1" height="15.0" fill="rgb(232,34,49)" rx="2" ry="2" />
<text text-anchor="" x="193.25" y="475.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (1 samples, 0.09%)</title><rect x="621.0" y="401" width="1.0" height="15.0" fill="rgb(241,96,6)" rx="2" ry="2" />
<text text-anchor="" x="623.96" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_cond_lock (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (1 samples, 0.09%)</title><rect x="549.7" y="433" width="1.0" height="15.0" fill="rgb(232,142,7)" rx="2" ry="2" />
<text text-anchor="" x="552.70" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.09%)</title><rect x="571.7" y="273" width="1.1" height="15.0" fill="rgb(215,138,48)" rx="2" ry="2" />
<text text-anchor="" x="574.71" y="283.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_new_exec (4 samples, 0.36%)</title><rect x="10.0" y="417" width="4.2" height="15.0" fill="rgb(231,145,12)" 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('mojo::system::Waiter::Wait (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Wait (2 samples, 0.18%)</title><rect x="273.0" y="433" width="2.1" height="15.0" fill="rgb(250,156,43)" rx="2" ry="2" />
<text text-anchor="" x="276.04" 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 (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.18%)</title><rect x="558.1" y="385" width="2.1" height="15.0" fill="rgb(216,31,18)" rx="2" ry="2" />
<text text-anchor="" x="561.08" y="395.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.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (2 samples, 0.18%)</title><rect x="241.6" y="433" width="2.1" height="15.0" fill="rgb(251,160,42)" rx="2" ry="2" />
<text text-anchor="" x="244.60" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (33 samples, 2.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (33 samples, 2.93%)</title><rect x="1132.4" y="209" width="34.5" height="15.0" fill="rgb(208,181,47)" rx="2" ry="2" />
<text text-anchor="" x="1135.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (1 samples, 0.09%)</title><rect x="245.8" y="385" width="1.0" height="15.0" fill="rgb(236,0,30)" rx="2" ry="2" />
<text text-anchor="" x="248.79" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clone (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clone (8 samples, 0.71%)</title><rect x="19.4" y="497" width="8.4" height="15.0" fill="rgb(245,205,35)" rx="2" ry="2" />
<text text-anchor="" x="22.43" y="507.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.09%)</title><rect x="653.4" y="321" width="1.1" height="15.0" fill="rgb(226,186,54)" rx="2" ry="2" />
<text text-anchor="" x="656.45" y="331.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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_destroy@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="371.5" y="449" width="1.1" height="15.0" fill="rgb(222,139,20)" rx="2" ry="2" />
<text text-anchor="" x="374.55" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (4 samples, 0.36%)</title><rect x="947.9" y="209" width="4.2" height="15.0" fill="rgb(250,117,25)" rx="2" ry="2" />
<text text-anchor="" x="950.92" y="219.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.36%)</title><rect x="15.2" y="209" width="4.2" height="15.0" fill="rgb(238,29,11)" rx="2" ry="2" />
<text text-anchor="" x="18.24" y="219.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (1 samples, 0.09%)</title><rect x="548.7" y="385" width="1.0" height="15.0" fill="rgb(226,160,7)" rx="2" ry="2" />
<text text-anchor="" x="551.65" y="395.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.09%)</title><rect x="14.2" y="273" width="1.0" height="15.0" fill="rgb(236,51,38)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_state (26 samples, 2.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_state (26 samples, 2.31%)</title><rect x="1139.7" y="145" width="27.2" height="15.0" fill="rgb(242,44,54)" rx="2" ry="2" />
<text text-anchor="" x="1142.70" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >w..</text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (1 samples, 0.09%)</title><rect x="951.1" y="193" width="1.0" height="15.0" fill="rgb(213,59,13)" rx="2" ry="2" />
<text text-anchor="" x="954.07" y="203.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.09%)</title><rect x="364.2" y="209" width="1.1" height="15.0" fill="rgb(244,1,15)" rx="2" ry="2" />
<text text-anchor="" x="367.21" y="219.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.36%)</title><rect x="461.7" y="273" width="4.2" height="15.0" fill="rgb(216,118,47)" rx="2" ry="2" />
<text text-anchor="" x="464.67" 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_stop (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (2 samples, 0.18%)</title><rect x="831.6" y="289" width="2.1" height="15.0" fill="rgb(221,126,10)" rx="2" ry="2" />
<text text-anchor="" x="834.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (124 samples, 11.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (124 samples, 11.01%)</title><rect x="928.0" y="321" width="130.0" height="15.0" fill="rgb(249,110,14)" rx="2" ry="2" />
<text text-anchor="" x="931.01" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call_fast..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.18%)</title><rect x="1130.3" y="193" width="2.1" height="15.0" fill="rgb(218,148,36)" rx="2" ry="2" />
<text text-anchor="" x="1133.27" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (1 samples, 0.09%)</title><rect x="42.5" y="385" width="1.0" height="15.0" fill="rgb(211,57,35)" rx="2" ry="2" />
<text text-anchor="" x="45.49" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.09%)</title><rect x="386.2" y="289" width="1.1" height="15.0" fill="rgb(212,71,6)" rx="2" ry="2" />
<text text-anchor="" x="389.22" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (10 samples, 0.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (10 samples, 0.89%)</title><rect x="258.4" y="433" width="10.4" height="15.0" fill="rgb(233,127,30)" rx="2" ry="2" />
<text text-anchor="" x="261.37" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (1 samples, 0.09%)</title><rect x="1175.3" y="337" width="1.1" height="15.0" fill="rgb(210,198,23)" rx="2" ry="2" />
<text text-anchor="" x="1178.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (2 samples, 0.18%)</title><rect x="876.7" y="225" width="2.1" height="15.0" fill="rgb(210,140,48)" rx="2" ry="2" />
<text text-anchor="" x="879.66" y="235.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.09%)</title><rect x="486.8" y="465" width="1.1" height="15.0" fill="rgb(213,76,47)" rx="2" ry="2" />
<text text-anchor="" x="489.82" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (3 samples, 0.27%)</title><rect x="246.8" y="369" width="3.2" height="15.0" fill="rgb(216,87,22)" rx="2" ry="2" />
<text text-anchor="" x="249.84" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.09%)</title><rect x="465.9" y="177" width="1.0" height="15.0" fill="rgb(226,185,31)" rx="2" ry="2" />
<text text-anchor="" x="468.86" 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 (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.09%)</title><rect x="372.6" y="449" width="1.0" height="15.0" fill="rgb(237,192,27)" rx="2" ry="2" />
<text text-anchor="" x="375.59" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestInfo::Run (91 samples, 8.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestInfo::Run (91 samples, 8.08%)</title><rect x="486.8" y="513" width="95.4" height="15.0" fill="rgb(232,228,32)" rx="2" ry="2" />
<text text-anchor="" x="489.82" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Te..</text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (64 samples, 5.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (64 samples, 5.68%)</title><rect x="393.6" y="209" width="67.0" height="15.0" fill="rgb(211,156,20)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish_..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (1 samples, 0.09%)</title><rect x="552.8" y="417" width="1.1" height="15.0" fill="rgb(229,134,40)" rx="2" ry="2" />
<text text-anchor="" x="555.84" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (1 samples, 0.09%)</title><rect x="1044.3" y="257" width="1.1" height="15.0" fill="rgb(222,200,30)" rx="2" ry="2" />
<text text-anchor="" x="1047.33" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (1 samples, 0.09%)</title><rect x="48.8" y="401" width="1.0" height="15.0" fill="rgb(219,207,42)" rx="2" ry="2" />
<text text-anchor="" x="51.77" y="411.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (4 samples, 0.36%)</title><rect x="10.0" y="449" width="4.2" height="15.0" fill="rgb(237,69,37)" 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('native_write_msr_safe (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.36%)</title><rect x="461.7" y="49" width="4.2" height="15.0" fill="rgb(228,188,30)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (4 samples, 0.36%)</title><rect x="1052.7" y="273" width="4.2" height="15.0" fill="rgb(224,87,51)" rx="2" ry="2" />
<text text-anchor="" x="1055.72" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('resched_task (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>resched_task (1 samples, 0.09%)</title><rect x="1164.8" y="81" width="1.1" height="15.0" fill="rgb(248,72,14)" rx="2" ry="2" />
<text text-anchor="" x="1167.85" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (103 samples, 9.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (103 samples, 9.15%)</title><rect x="936.4" y="257" width="107.9" height="15.0" fill="rgb(219,12,12)" rx="2" ry="2" />
<text text-anchor="" x="939.39" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_recvmsg</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.09%)</title><rect x="465.9" y="273" width="1.0" height="15.0" fill="rgb(226,160,16)" rx="2" ry="2" />
<text text-anchor="" x="468.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (31 samples, 2.75%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (31 samples, 2.75%)</title><rect x="111.7" y="417" width="32.4" height="15.0" fill="rgb(251,225,52)" rx="2" ry="2" />
<text text-anchor="" x="114.65" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >so..</text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (68 samples, 6.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (68 samples, 6.04%)</title><rect x="290.9" y="273" width="71.2" height="15.0" fill="rgb(223,115,33)" rx="2" ry="2" />
<text text-anchor="" x="293.85" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_eve..</text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (1 samples, 0.09%)</title><rect x="485.8" y="385" width="1.0" height="15.0" fill="rgb(233,177,40)" rx="2" ry="2" />
<text text-anchor="" x="488.77" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_compound_page (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_compound_page (3 samples, 0.27%)</title><rect x="969.9" y="129" width="3.2" height="15.0" fill="rgb(218,48,53)" rx="2" ry="2" />
<text text-anchor="" x="972.93" y="139.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.09%)</title><rect x="670.2" y="225" width="1.1" height="15.0" fill="rgb(226,64,2)" rx="2" ry="2" />
<text text-anchor="" x="673.21" y="235.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (1 samples, 0.09%)</title><rect x="46.7" y="417" width="1.0" height="15.0" fill="rgb(227,31,47)" rx="2" ry="2" />
<text text-anchor="" x="49.68" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (2 samples, 0.18%)</title><rect x="579.0" y="449" width="2.1" height="15.0" fill="rgb(226,98,27)" rx="2" ry="2" />
<text text-anchor="" x="582.04" y="459.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.36%)</title><rect x="10.0" y="369" width="4.2" height="15.0" fill="rgb(251,150,27)" 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('__audit_syscall_entry (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (1 samples, 0.09%)</title><rect x="260.5" y="401" width="1.0" height="15.0" fill="rgb(241,71,9)" rx="2" ry="2" />
<text text-anchor="" x="263.46" y="411.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (1 samples, 0.09%)</title><rect x="1165.9" y="113" width="1.0" height="15.0" fill="rgb(236,155,28)" rx="2" ry="2" />
<text text-anchor="" x="1168.90" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (4 samples, 0.36%)</title><rect x="875.6" y="241" width="4.2" height="15.0" fill="rgb(235,72,22)" rx="2" ry="2" />
<text text-anchor="" x="878.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (2 samples, 0.18%)</title><rect x="386.2" y="305" width="2.1" height="15.0" fill="rgb(243,133,22)" rx="2" ry="2" />
<text text-anchor="" x="389.22" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::internal::UnitTestImpl::RunAllTests (89 samples, 7.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::internal::UnitTestImpl::RunAllTests (89 samples, 7.90%)</title><rect x="373.6" y="449" width="93.3" height="15.0" fill="rgb(239,106,17)" rx="2" ry="2" />
<text text-anchor="" x="376.64" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::in..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.09%)</title><rect x="578.0" y="433" width="1.0" height="15.0" fill="rgb(253,217,10)" rx="2" ry="2" />
<text text-anchor="" x="580.99" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (1 samples, 0.09%)</title><rect x="869.3" y="337" width="1.1" height="15.0" fill="rgb(241,214,29)" rx="2" ry="2" />
<text text-anchor="" x="872.33" 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 (35 samples, 3.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (35 samples, 3.11%)</title><rect x="147.3" y="385" width="36.7" height="15.0" fill="rgb(210,30,1)" rx="2" ry="2" />
<text text-anchor="" x="150.28" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.09%)</title><rect x="270.9" y="401" width="1.1" height="15.0" fill="rgb(231,64,35)" rx="2" ry="2" />
<text text-anchor="" x="273.94" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_disable_asynccancel (4 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (4 samples, 0.36%)</title><rect x="840.0" y="401" width="4.2" height="15.0" fill="rgb(212,34,31)" rx="2" ry="2" />
<text text-anchor="" x="842.98" 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 (8 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (8 samples, 0.71%)</title><rect x="374.7" y="353" width="8.4" height="15.0" fill="rgb(240,18,11)" rx="2" ry="2" />
<text text-anchor="" x="377.69" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_pcppages_bulk (3 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_pcppages_bulk (3 samples, 0.27%)</title><rect x="965.7" y="129" width="3.2" height="15.0" fill="rgb(246,151,52)" rx="2" ry="2" />
<text text-anchor="" x="968.74" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (1 samples, 0.09%)</title><rect x="637.7" y="305" width="1.1" height="15.0" fill="rgb(234,126,47)" rx="2" ry="2" />
<text text-anchor="" x="640.73" y="315.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (1 samples, 0.09%)</title><rect x="287.7" y="209" width="1.1" height="15.0" fill="rgb(243,186,42)" rx="2" ry="2" />
<text text-anchor="" x="290.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (18 samples, 1.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (18 samples, 1.60%)</title><rect x="219.6" y="433" width="18.9" height="15.0" fill="rgb(235,202,51)" rx="2" ry="2" />
<text text-anchor="" x="222.59" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmalloc_slab (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (1 samples, 0.09%)</title><rect x="122.1" y="369" width="1.1" height="15.0" fill="rgb(227,172,34)" rx="2" ry="2" />
<text text-anchor="" x="125.13" y="379.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.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (3 samples, 0.27%)</title><rect x="167.2" y="209" width="3.1" height="15.0" fill="rgb(205,18,13)" rx="2" ry="2" />
<text text-anchor="" x="170.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (32 samples, 2.84%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (32 samples, 2.84%)</title><rect x="872.5" y="337" width="33.5" height="15.0" fill="rgb(241,125,2)" rx="2" ry="2" />
<text text-anchor="" x="875.47" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.18%)</title><rect x="1141.8" y="113" width="2.1" height="15.0" fill="rgb(242,37,49)" rx="2" ry="2" />
<text text-anchor="" x="1144.79" y="123.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.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::ChannelThread::Start (5 samples, 0.44%)</title><rect x="253.1" y="449" width="5.3" height="15.0" fill="rgb(223,38,19)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (65 samples, 5.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (65 samples, 5.77%)</title><rect x="393.6" y="321" width="68.1" height="15.0" fill="rgb(229,168,49)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_..</text>
</g>
<g class="func_g" onmouseover="s('__schedule (65 samples, 5.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (65 samples, 5.77%)</title><rect x="393.6" y="225" width="68.1" height="15.0" fill="rgb(221,36,43)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sched..</text>
</g>
<g class="func_g" onmouseover="s('__schedule (81 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (81 samples, 7.19%)</title><rect x="281.4" y="321" width="84.9" height="15.0" fill="rgb(240,175,20)" rx="2" ry="2" />
<text text-anchor="" x="284.42" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__schedule</text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (1 samples, 0.09%)</title><rect x="1125.0" y="209" width="1.1" height="15.0" fill="rgb(227,7,16)" rx="2" ry="2" />
<text text-anchor="" x="1128.03" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.09%)</title><rect x="215.4" y="433" width="1.0" height="15.0" fill="rgb(248,96,44)" rx="2" ry="2" />
<text text-anchor="" x="218.40" y="443.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.09%)</title><rect x="388.3" y="321" width="1.1" height="15.0" fill="rgb(224,178,1)" rx="2" ry="2" />
<text text-anchor="" x="391.31" 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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.36%)</title><rect x="253.1" y="305" width="4.2" height="15.0" fill="rgb(217,143,31)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="315.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.36%)</title><rect x="253.1" y="241" width="4.2" height="15.0" fill="rgb(209,189,34)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_exit (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_exit (1 samples, 0.09%)</title><rect x="485.8" y="465" width="1.0" height="15.0" fill="rgb(210,110,32)" rx="2" ry="2" />
<text text-anchor="" x="488.77" y="475.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.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.36%)</title><rect x="253.1" y="337" width="4.2" height="15.0" fill="rgb(225,28,49)" rx="2" ry="2" />
<text text-anchor="" x="256.13" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (16 samples, 1.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (16 samples, 1.42%)</title><rect x="561.2" y="369" width="16.8" height="15.0" fill="rgb(222,223,41)" rx="2" ry="2" />
<text text-anchor="" x="564.23" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_group_exit (1 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_group_exit (1 samples, 0.09%)</title><rect x="485.8" y="481" width="1.0" height="15.0" fill="rgb(240,122,15)" rx="2" ry="2" />
<text text-anchor="" x="488.77" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (153 samples, 13.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (153 samples, 13.59%)</title><rect x="29.9" y="513" width="160.3" height="15.0" fill="rgb(205,98,24)" rx="2" ry="2" />
<text text-anchor="" x="32.91" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_send</text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (7 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (7 samples, 0.62%)</title><rect x="665.0" y="257" width="7.3" height="15.0" fill="rgb(232,96,52)" rx="2" ry="2" />
<text text-anchor="" x="667.97" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment