Skip to content

Instantly share code, notes, and snippets.

@omo
Created February 14, 2015 01:14
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/4f234d1152b5f7793b04 to your computer and use it in GitHub Desktop.
Save omo/4f234d1152b5f7793b04 to your computer and use it in GitHub Desktop.
Benchmark results
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="2114" onload="init(evt)" viewBox="0 0 1200 2114" 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="2114.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="2097" 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('memset (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (4 samples, 0.09%)</title><rect x="439.7" y="1777" width="1.1" height="15.0" fill="rgb(230,0,41)" rx="2" ry="2" />
<text text-anchor="" x="442.74" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('numa_migrate_prep (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>numa_migrate_prep (1 samples, 0.02%)</title><rect x="1182.3" y="1825" width="0.3" height="15.0" fill="rgb(241,169,54)" rx="2" ry="2" />
<text text-anchor="" x="1185.33" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.04%)</title><rect x="1115.7" y="1857" width="0.5" height="15.0" fill="rgb(251,143,28)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (6 samples, 0.13%)</title><rect x="148.3" y="1729" width="1.6" height="15.0" fill="rgb(254,221,52)" rx="2" ry="2" />
<text text-anchor="" x="151.31" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1025" width="0.3" height="15.0" fill="rgb(249,47,21)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (12 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (12 samples, 0.27%)</title><rect x="105.2" y="1889" width="3.2" height="15.0" fill="rgb(211,125,22)" rx="2" ry="2" />
<text text-anchor="" x="108.20" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="26.4" y="1969" width="0.3" height="15.0" fill="rgb(227,31,27)" rx="2" ry="2" />
<text text-anchor="" x="29.40" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="98.3" y="1777" width="0.3" height="15.0" fill="rgb(216,118,5)" rx="2" ry="2" />
<text text-anchor="" x="101.33" y="1787.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="1100.9" y="1921" width="0.5" height="15.0" fill="rgb(223,19,48)" rx="2" ry="2" />
<text text-anchor="" x="1103.88" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="181.6" y="1905" width="0.3" height="15.0" fill="rgb(237,30,30)" rx="2" ry="2" />
<text text-anchor="" x="184.63" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('timerqueue_del (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_del (1 samples, 0.02%)</title><rect x="1157.5" y="1873" width="0.2" height="15.0" fill="rgb(217,42,13)" rx="2" ry="2" />
<text text-anchor="" x="1160.47" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (2 samples, 0.04%)</title><rect x="524.6" y="1777" width="0.6" height="15.0" fill="rgb(209,117,14)" rx="2" ry="2" />
<text text-anchor="" x="527.63" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.02%)</title><rect x="16.6" y="1857" width="0.3" height="15.0" fill="rgb(227,190,19)" rx="2" ry="2" />
<text text-anchor="" x="19.61" y="1867.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="878.5" y="2017" width="0.2" height="15.0" fill="rgb(229,66,40)" rx="2" ry="2" />
<text text-anchor="" x="881.47" y="2027.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.02%)</title><rect x="282.4" y="1745" width="0.3" height="15.0" fill="rgb(215,60,54)" rx="2" ry="2" />
<text text-anchor="" x="285.39" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_read (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.04%)</title><rect x="86.7" y="1985" width="0.5" height="15.0" fill="rgb(241,75,20)" rx="2" ry="2" />
<text text-anchor="" x="89.69" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (33 samples, 0.74%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (33 samples, 0.74%)</title><rect x="785.6" y="1713" width="8.8" height="15.0" fill="rgb(241,18,4)" rx="2" ry="2" />
<text text-anchor="" x="788.65" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1160.6" y="2017" width="0.3" height="15.0" fill="rgb(234,30,27)" rx="2" ry="2" />
<text text-anchor="" x="1163.65" y="2027.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.02%)</title><rect x="284.0" y="1777" width="0.2" height="15.0" fill="rgb(234,135,46)" rx="2" ry="2" />
<text text-anchor="" x="286.98" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('filename_lookup (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (1 samples, 0.02%)</title><rect x="1164.6" y="1921" width="0.3" height="15.0" fill="rgb(251,33,38)" rx="2" ry="2" />
<text text-anchor="" x="1167.61" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (96 samples, 2.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (96 samples, 2.15%)</title><rect x="775.3" y="1777" width="25.4" height="15.0" fill="rgb(220,34,51)" rx="2" ry="2" />
<text text-anchor="" x="778.33" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1569" width="0.3" height="15.0" fill="rgb(230,226,0)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="148.8" y="1537" width="1.1" height="15.0" fill="rgb(233,96,3)" rx="2" ry="2" />
<text text-anchor="" x="151.84" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.04%)</title><rect x="542.3" y="1713" width="0.6" height="15.0" fill="rgb(218,18,44)" rx="2" ry="2" />
<text text-anchor="" x="545.35" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_nl_find_locale (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_nl_find_locale (1 samples, 0.02%)</title><rect x="95.4" y="2017" width="0.3" height="15.0" fill="rgb(238,170,0)" rx="2" ry="2" />
<text text-anchor="" x="98.42" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_process (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.02%)</title><rect x="912.6" y="1809" width="0.3" height="15.0" fill="rgb(217,77,37)" rx="2" ry="2" />
<text text-anchor="" x="915.59" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="1169.6" y="2001" width="0.6" height="15.0" fill="rgb(231,218,44)" rx="2" ry="2" />
<text text-anchor="" x="1172.64" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_readv (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_readv (1 samples, 0.02%)</title><rect x="1174.9" y="2001" width="0.3" height="15.0" fill="rgb(244,224,16)" rx="2" ry="2" />
<text text-anchor="" x="1177.93" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('stub_execve (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>stub_execve (4 samples, 0.09%)</title><rect x="83.3" y="2017" width="1.0" height="15.0" fill="rgb(233,161,10)" rx="2" ry="2" />
<text text-anchor="" x="86.25" y="2027.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (1 samples, 0.02%)</title><rect x="181.6" y="1793" width="0.3" height="15.0" fill="rgb(246,38,38)" rx="2" ry="2" />
<text text-anchor="" x="184.63" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__poll_nocancel (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__poll_nocancel (2 samples, 0.04%)</title><rect x="1175.2" y="2033" width="0.5" height="15.0" fill="rgb(218,153,15)" rx="2" ry="2" />
<text text-anchor="" x="1178.19" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="1160.6" y="1857" width="0.3" height="15.0" fill="rgb(226,195,22)" rx="2" ry="2" />
<text text-anchor="" x="1163.65" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="871.1" y="1985" width="0.2" height="15.0" fill="rgb(215,129,12)" rx="2" ry="2" />
<text text-anchor="" x="874.07" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="159.2" y="1937" width="0.2" height="15.0" fill="rgb(249,12,43)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::current (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::current (3 samples, 0.07%)</title><rect x="787.5" y="1665" width="0.8" height="15.0" fill="rgb(216,173,48)" rx="2" ry="2" />
<text text-anchor="" x="790.50" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_release (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_release (1 samples, 0.02%)</title><rect x="1181.0" y="1889" width="0.3" height="15.0" fill="rgb(240,91,54)" rx="2" ry="2" />
<text text-anchor="" x="1184.01" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (7 samples, 0.16%)</title><rect x="318.1" y="1889" width="1.8" height="15.0" fill="rgb(209,73,28)" rx="2" ry="2" />
<text text-anchor="" x="321.09" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="129" width="0.3" height="15.0" fill="rgb(235,150,22)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scheduler_ipi (9 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_ipi (9 samples, 0.20%)</title><rect x="1146.6" y="1889" width="2.4" height="15.0" fill="rgb(206,31,33)" rx="2" ry="2" />
<text text-anchor="" x="1149.63" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (161 samples, 3.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (161 samples, 3.61%)</title><rect x="333.2" y="1873" width="42.5" height="15.0" fill="rgb(211,204,7)" rx="2" ry="2" />
<text text-anchor="" x="336.16" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_..</text>
</g>
<g class="func_g" onmouseover="s('rb_erase (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (1 samples, 0.02%)</title><rect x="1099.0" y="1905" width="0.3" height="15.0" fill="rgb(241,226,31)" rx="2" ry="2" />
<text text-anchor="" x="1102.03" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="289" width="0.8" height="15.0" fill="rgb(236,17,31)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.04%)</title><rect x="380.8" y="1889" width="0.5" height="15.0" fill="rgb(222,23,39)" rx="2" ry="2" />
<text text-anchor="" x="383.77" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pollwake (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pollwake (1 samples, 0.02%)</title><rect x="1164.9" y="1825" width="0.2" height="15.0" fill="rgb(212,110,19)" rx="2" ry="2" />
<text text-anchor="" x="1167.88" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (6 samples, 0.13%)</title><rect x="408.3" y="1665" width="1.6" height="15.0" fill="rgb(211,15,23)" rx="2" ry="2" />
<text text-anchor="" x="411.27" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fuse_dev_read (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fuse_dev_read (2 samples, 0.04%)</title><rect x="1189.2" y="1905" width="0.5" height="15.0" fill="rgb(235,30,38)" rx="2" ry="2" />
<text text-anchor="" x="1192.21" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (42 samples, 0.94%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (42 samples, 0.94%)</title><rect x="507.7" y="1729" width="11.1" height="15.0" fill="rgb(249,8,31)" rx="2" ry="2" />
<text text-anchor="" x="510.71" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="41.5" y="1985" width="0.2" height="15.0" fill="rgb(241,90,30)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (1 samples, 0.02%)</title><rect x="26.9" y="1921" width="0.3" height="15.0" fill="rgb(246,115,53)" rx="2" ry="2" />
<text text-anchor="" x="29.93" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="870.8" y="1921" width="0.3" height="15.0" fill="rgb(220,59,12)" rx="2" ry="2" />
<text text-anchor="" x="873.80" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="181.6" y="1985" width="0.3" height="15.0" fill="rgb(236,229,27)" rx="2" ry="2" />
<text text-anchor="" x="184.63" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_fault (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (4 samples, 0.09%)</title><rect x="63.4" y="2001" width="1.1" height="15.0" fill="rgb(232,131,51)" rx="2" ry="2" />
<text text-anchor="" x="66.42" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.04%)</title><rect x="790.4" y="1649" width="0.5" height="15.0" fill="rgb(246,154,22)" rx="2" ry="2" />
<text text-anchor="" x="793.41" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_notify_resume (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_notify_resume (1 samples, 0.02%)</title><rect x="164.4" y="2001" width="0.3" height="15.0" fill="rgb(230,131,44)" rx="2" ry="2" />
<text text-anchor="" x="167.44" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (2 samples, 0.04%)</title><rect x="624.3" y="1617" width="0.6" height="15.0" fill="rgb(211,136,7)" rx="2" ry="2" />
<text text-anchor="" x="627.33" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (20 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (20 samples, 0.45%)</title><rect x="1184.4" y="1985" width="5.3" height="15.0" fill="rgb(224,87,8)" rx="2" ry="2" />
<text text-anchor="" x="1187.45" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_check_oneshot_broadcast (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_check_oneshot_broadcast (1 samples, 0.02%)</title><rect x="911.8" y="1921" width="0.3" height="15.0" fill="rgb(245,80,44)" rx="2" ry="2" />
<text text-anchor="" x="914.79" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (36 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (36 samples, 0.81%)</title><rect x="753.6" y="1665" width="9.6" height="15.0" fill="rgb(208,149,4)" rx="2" ry="2" />
<text text-anchor="" x="756.65" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('insert_work (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>insert_work (1 samples, 0.02%)</title><rect x="912.6" y="1841" width="0.3" height="15.0" fill="rgb(219,188,38)" rx="2" ry="2" />
<text text-anchor="" x="915.59" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dispose_command (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dispose_command (1 samples, 0.02%)</title><rect x="78.2" y="2017" width="0.3" height="15.0" fill="rgb(235,172,52)" rx="2" ry="2" />
<text text-anchor="" x="81.23" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (2 samples, 0.04%)</title><rect x="1151.9" y="1921" width="0.5" height="15.0" fill="rgb(213,15,17)" rx="2" ry="2" />
<text text-anchor="" x="1154.92" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__hrtimer_start_range_ns (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_start_range_ns (6 samples, 0.13%)</title><rect x="1154.8" y="1889" width="1.6" height="15.0" fill="rgb(243,20,10)" rx="2" ry="2" />
<text text-anchor="" x="1157.83" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_call_function_single_interrupt (120 samples, 2.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_call_function_single_interrupt (120 samples, 2.69%)</title><rect x="921.0" y="1953" width="31.8" height="15.0" fill="rgb(251,119,31)" rx="2" ry="2" />
<text text-anchor="" x="924.05" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sm..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (45 samples, 1.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (45 samples, 1.01%)</title><rect x="140.6" y="1969" width="11.9" height="15.0" fill="rgb(210,152,29)" rx="2" ry="2" />
<text text-anchor="" x="143.64" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_nohz_idle_enter (115 samples, 2.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_nohz_idle_enter (115 samples, 2.58%)</title><rect x="1081.6" y="2001" width="30.4" height="15.0" fill="rgb(208,42,1)" rx="2" ry="2" />
<text text-anchor="" x="1084.57" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ti..</text>
</g>
<g class="func_g" onmouseover="s('__GI___libc_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_open (1 samples, 0.02%)</title><rect x="1168.1" y="2001" width="0.2" height="15.0" fill="rgb(240,198,54)" rx="2" ry="2" />
<text text-anchor="" x="1171.05" y="2011.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="1092.2" y="1921" width="0.2" height="15.0" fill="rgb(251,149,51)" rx="2" ry="2" />
<text text-anchor="" x="1095.15" y="1931.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (1 samples, 0.02%)</title><rect x="631.2" y="1713" width="0.3" height="15.0" fill="rgb(253,161,16)" rx="2" ry="2" />
<text text-anchor="" x="634.21" y="1723.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.02%)</title><rect x="33.0" y="1873" width="0.3" height="15.0" fill="rgb(245,202,25)" rx="2" ry="2" />
<text text-anchor="" x="36.01" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_file_free (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_file_free (1 samples, 0.02%)</title><rect x="877.1" y="1937" width="0.3" height="15.0" fill="rgb(205,153,22)" rx="2" ry="2" />
<text text-anchor="" x="880.15" y="1947.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_next_bit (1 samples, 0.02%)</title><rect x="98.3" y="1649" width="0.3" height="15.0" fill="rgb(206,172,46)" rx="2" ry="2" />
<text text-anchor="" x="101.33" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_numa_page (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_numa_page (1 samples, 0.02%)</title><rect x="1182.3" y="1841" width="0.3" height="15.0" fill="rgb(253,106,13)" rx="2" ry="2" />
<text text-anchor="" x="1185.33" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_release_sock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_release_sock (1 samples, 0.02%)</title><rect x="98.3" y="1873" width="0.3" height="15.0" fill="rgb(226,58,9)" rx="2" ry="2" />
<text text-anchor="" x="101.33" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (48 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (48 samples, 1.08%)</title><rect x="410.9" y="1649" width="12.7" height="15.0" fill="rgb(244,91,11)" rx="2" ry="2" />
<text text-anchor="" x="413.91" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_write (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.02%)</title><rect x="153.3" y="1953" width="0.3" height="15.0" fill="rgb(226,214,54)" rx="2" ry="2" />
<text text-anchor="" x="156.33" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_pte_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_pte_range (1 samples, 0.02%)</title><rect x="1166.5" y="1889" width="0.2" height="15.0" fill="rgb(218,154,0)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__GI___readlink (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__GI___readlink (1 samples, 0.02%)</title><rect x="1164.6" y="1985" width="0.3" height="15.0" fill="rgb(213,177,19)" rx="2" ry="2" />
<text text-anchor="" x="1167.61" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (11 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (11 samples, 0.25%)</title><rect x="743.9" y="1745" width="2.9" height="15.0" fill="rgb(210,14,33)" rx="2" ry="2" />
<text text-anchor="" x="746.86" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (9 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (9 samples, 0.20%)</title><rect x="115.8" y="1873" width="2.4" height="15.0" fill="rgb(223,18,35)" rx="2" ry="2" />
<text text-anchor="" x="118.78" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (1 samples, 0.02%)</title><rect x="309.9" y="1905" width="0.3" height="15.0" fill="rgb(216,210,17)" rx="2" ry="2" />
<text text-anchor="" x="312.89" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unmap_single_vma (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unmap_single_vma (1 samples, 0.02%)</title><rect x="1180.7" y="1921" width="0.3" height="15.0" fill="rgb(225,160,24)" rx="2" ry="2" />
<text text-anchor="" x="1183.74" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_last (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_last (1 samples, 0.02%)</title><rect x="1167.8" y="1921" width="0.3" height="15.0" fill="rgb(208,142,47)" rx="2" ry="2" />
<text text-anchor="" x="1170.79" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.02%)</title><rect x="1157.2" y="1905" width="0.3" height="15.0" fill="rgb(206,51,16)" rx="2" ry="2" />
<text text-anchor="" x="1160.21" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('proc_tgid_base_lookup (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>proc_tgid_base_lookup (1 samples, 0.02%)</title><rect x="1167.8" y="1889" width="0.3" height="15.0" fill="rgb(240,10,41)" rx="2" ry="2" />
<text text-anchor="" x="1170.79" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (3 samples, 0.07%)</title><rect x="407.5" y="1665" width="0.8" height="15.0" fill="rgb(243,31,36)" rx="2" ry="2" />
<text text-anchor="" x="410.48" y="1675.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="151.0" y="1889" width="0.2" height="15.0" fill="rgb(216,39,53)" rx="2" ry="2" />
<text text-anchor="" x="153.95" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::ReadMessage (29 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::ReadMessage (29 samples, 0.65%)</title><rect x="458.3" y="1777" width="7.6" height="15.0" fill="rgb(231,58,40)" rx="2" ry="2" />
<text text-anchor="" x="461.25" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (1 samples, 0.02%)</title><rect x="15.0" y="1889" width="0.3" height="15.0" fill="rgb(243,214,1)" rx="2" ry="2" />
<text text-anchor="" x="18.02" y="1899.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="252.2" y="1809" width="0.6" height="15.0" fill="rgb(225,41,41)" rx="2" ry="2" />
<text text-anchor="" x="255.24" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="149.1" y="193" width="0.5" height="15.0" fill="rgb(234,49,1)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="166.3" y="2001" width="0.3" height="15.0" fill="rgb(220,157,13)" rx="2" ry="2" />
<text text-anchor="" x="169.29" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_handle.isra.17 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (1 samples, 0.02%)</title><rect x="41.5" y="1729" width="0.2" height="15.0" fill="rgb(242,179,21)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dl_main (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dl_main (1 samples, 0.02%)</title><rect x="872.7" y="2017" width="0.2" height="15.0" fill="rgb(210,74,31)" rx="2" ry="2" />
<text text-anchor="" x="875.65" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="871.1" y="1969" width="0.2" height="15.0" fill="rgb(220,45,42)" rx="2" ry="2" />
<text text-anchor="" x="874.07" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('new_inode (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>new_inode (1 samples, 0.02%)</title><rect x="1167.8" y="1825" width="0.3" height="15.0" fill="rgb(217,226,15)" rx="2" ry="2" />
<text text-anchor="" x="1170.79" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('stub_execve (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>stub_execve (1 samples, 0.02%)</title><rect x="876.9" y="2017" width="0.2" height="15.0" fill="rgb(252,93,28)" rx="2" ry="2" />
<text text-anchor="" x="879.88" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mission-control (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mission-control (1 samples, 0.02%)</title><rect x="871.3" y="2049" width="0.3" height="15.0" fill="rgb(252,159,19)" rx="2" ry="2" />
<text text-anchor="" x="874.33" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (1 samples, 0.02%)</title><rect x="1136.1" y="1761" width="0.2" height="15.0" fill="rgb(243,79,39)" rx="2" ry="2" />
<text text-anchor="" x="1139.05" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_numa_work (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_numa_work (3 samples, 0.07%)</title><rect x="162.3" y="1969" width="0.8" height="15.0" fill="rgb(209,28,53)" rx="2" ry="2" />
<text text-anchor="" x="165.33" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('nv_verify_pci_config (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>nv_verify_pci_config (1 samples, 0.02%)</title><rect x="894.1" y="2017" width="0.2" height="15.0" fill="rgb(244,101,10)" rx="2" ry="2" />
<text text-anchor="" x="897.07" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_last (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_last (1 samples, 0.02%)</title><rect x="1176.2" y="1921" width="0.3" height="15.0" fill="rgb(214,91,44)" rx="2" ry="2" />
<text text-anchor="" x="1179.25" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('handle_mm_fault (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (3 samples, 0.07%)</title><rect x="156.8" y="1953" width="0.8" height="15.0" fill="rgb(248,38,13)" rx="2" ry="2" />
<text text-anchor="" x="159.77" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('lapic_next_deadline (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>lapic_next_deadline (4 samples, 0.09%)</title><rect x="1104.8" y="1889" width="1.1" height="15.0" fill="rgb(251,74,54)" rx="2" ry="2" />
<text text-anchor="" x="1107.85" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="148.8" y="1649" width="1.1" height="15.0" fill="rgb(224,115,50)" rx="2" ry="2" />
<text text-anchor="" x="151.84" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1793" width="0.3" height="15.0" fill="rgb(225,42,35)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_IO_list_unlock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_IO_list_unlock (1 samples, 0.02%)</title><rect x="1166.2" y="2001" width="0.3" height="15.0" fill="rgb(208,186,36)" rx="2" ry="2" />
<text text-anchor="" x="1169.20" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="42.0" y="1921" width="0.3" height="15.0" fill="rgb(243,42,41)" rx="2" ry="2" />
<text text-anchor="" x="45.00" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('int_signal (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>int_signal (1 samples, 0.02%)</title><rect x="1182.1" y="1905" width="0.2" height="15.0" fill="rgb(215,4,13)" rx="2" ry="2" />
<text text-anchor="" x="1185.07" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="417" width="0.3" height="15.0" fill="rgb(241,158,51)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clockevents_program_event (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>clockevents_program_event (3 samples, 0.07%)</title><rect x="1158.8" y="1873" width="0.8" height="15.0" fill="rgb(219,123,54)" rx="2" ry="2" />
<text text-anchor="" x="1161.79" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="641" width="0.8" height="15.0" fill="rgb(221,104,33)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('read_tsc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>read_tsc (1 samples, 0.02%)</title><rect x="1095.3" y="1841" width="0.3" height="15.0" fill="rgb(222,21,42)" rx="2" ry="2" />
<text text-anchor="" x="1098.32" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_irq_exit (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_irq_exit (2 samples, 0.04%)</title><rect x="913.1" y="1921" width="0.5" height="15.0" fill="rgb(247,226,43)" rx="2" ry="2" />
<text text-anchor="" x="916.12" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_nohz_idle_exit (71 samples, 1.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_nohz_idle_exit (71 samples, 1.59%)</title><rect x="1112.0" y="2001" width="18.8" height="15.0" fill="rgb(239,58,50)" rx="2" ry="2" />
<text text-anchor="" x="1114.99" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_writev (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.02%)</title><rect x="41.5" y="1937" width="0.2" height="15.0" fill="rgb(233,120,40)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1169" width="0.3" height="15.0" fill="rgb(224,216,12)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_erase (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (3 samples, 0.07%)</title><rect x="1073.9" y="1937" width="0.8" height="15.0" fill="rgb(225,148,26)" rx="2" ry="2" />
<text text-anchor="" x="1076.90" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="10.0" y="1905" width="0.3" height="15.0" fill="rgb(233,15,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="1175.2" y="2017" width="0.5" height="15.0" fill="rgb(243,3,40)" rx="2" ry="2" />
<text text-anchor="" x="1178.19" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZNK4base6subtle24RefCountedThreadSafeBase6AddRefEv@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK4base6subtle24RefCountedThreadSafeBase6AddRefEv@plt (1 samples, 0.02%)</title><rect x="475.2" y="1841" width="0.2" height="15.0" fill="rgb(236,184,6)" rx="2" ry="2" />
<text text-anchor="" x="478.18" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_process.part.26 (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_process.part.26 (2 samples, 0.04%)</title><rect x="1166.5" y="1937" width="0.5" height="15.0" fill="rgb(238,14,24)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (18 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (18 samples, 0.40%)</title><rect x="758.4" y="1617" width="4.8" height="15.0" fill="rgb(210,146,29)" rx="2" ry="2" />
<text text-anchor="" x="761.41" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1181.8" y="1889" width="0.3" height="15.0" fill="rgb(233,73,45)" rx="2" ry="2" />
<text text-anchor="" x="1184.80" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.02%)</title><rect x="341.1" y="1777" width="0.3" height="15.0" fill="rgb(254,168,9)" rx="2" ry="2" />
<text text-anchor="" x="344.10" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZdlPv@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (1 samples, 0.02%)</title><rect x="640.2" y="1809" width="0.3" height="15.0" fill="rgb(247,18,8)" rx="2" ry="2" />
<text text-anchor="" x="643.20" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('menu_reflect (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>menu_reflect (2 samples, 0.04%)</title><rect x="1024.5" y="1969" width="0.5" height="15.0" fill="rgb(227,112,6)" rx="2" ry="2" />
<text text-anchor="" x="1027.45" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (31 samples, 0.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (31 samples, 0.69%)</title><rect x="619.6" y="1697" width="8.2" height="15.0" fill="rgb(238,156,6)" rx="2" ry="2" />
<text text-anchor="" x="622.57" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (1 samples, 0.02%)</title><rect x="680.7" y="1601" width="0.2" height="15.0" fill="rgb(214,25,39)" rx="2" ry="2" />
<text text-anchor="" x="683.66" y="1611.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.09%)</title><rect x="158.1" y="1969" width="1.1" height="15.0" fill="rgb(240,217,22)" rx="2" ry="2" />
<text text-anchor="" x="161.10" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (5 samples, 0.11%)</title><rect x="771.9" y="1793" width="1.3" height="15.0" fill="rgb(220,48,28)" rx="2" ry="2" />
<text text-anchor="" x="774.90" y="1803.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="884.0" y="1969" width="0.3" height="15.0" fill="rgb(247,196,51)" rx="2" ry="2" />
<text text-anchor="" x="887.03" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="41.5" y="1809" width="0.2" height="15.0" fill="rgb(223,178,27)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (15 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (15 samples, 0.34%)</title><rect x="514.8" y="1649" width="4.0" height="15.0" fill="rgb(224,185,22)" rx="2" ry="2" />
<text text-anchor="" x="517.85" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_call_function_single_interrupt (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_call_function_single_interrupt (4 samples, 0.09%)</title><rect x="1136.3" y="1905" width="1.1" height="15.0" fill="rgb(246,25,44)" rx="2" ry="2" />
<text text-anchor="" x="1139.32" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_alloc_name (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_alloc_name (1 samples, 0.02%)</title><rect x="76.9" y="1873" width="0.3" height="15.0" fill="rgb(250,125,51)" rx="2" ry="2" />
<text text-anchor="" x="79.91" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_readv (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_readv (1 samples, 0.02%)</title><rect x="1174.9" y="2033" width="0.3" height="15.0" fill="rgb(234,18,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.93" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('create_elf_tables (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>create_elf_tables (1 samples, 0.02%)</title><rect x="876.9" y="1937" width="0.2" height="15.0" fill="rgb(211,175,11)" rx="2" ry="2" />
<text text-anchor="" x="879.88" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (7 samples, 0.16%)</title><rect x="469.6" y="1793" width="1.9" height="15.0" fill="rgb(207,116,26)" rx="2" ry="2" />
<text text-anchor="" x="472.62" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_mmap (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_mmap (1 samples, 0.02%)</title><rect x="878.5" y="1921" width="0.2" height="15.0" fill="rgb(227,55,4)" rx="2" ry="2" />
<text text-anchor="" x="881.47" y="1931.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="883.0" y="2017" width="0.2" height="15.0" fill="rgb(253,56,14)" rx="2" ry="2" />
<text text-anchor="" x="885.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_idle_exit (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_idle_exit (3 samples, 0.07%)</title><rect x="1149.3" y="1953" width="0.8" height="15.0" fill="rgb(222,95,53)" rx="2" ry="2" />
<text text-anchor="" x="1152.27" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_get_next_event (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_get_next_event (1 samples, 0.02%)</title><rect x="1154.6" y="1889" width="0.2" height="15.0" fill="rgb(212,30,49)" rx="2" ry="2" />
<text text-anchor="" x="1157.56" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('blk_done_softirq (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>blk_done_softirq (1 samples, 0.02%)</title><rect x="1038.7" y="1905" width="0.3" height="15.0" fill="rgb(226,127,41)" rx="2" ry="2" />
<text text-anchor="" x="1041.73" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.02%)</title><rect x="569.3" y="1825" width="0.3" height="15.0" fill="rgb(221,215,27)" rx="2" ry="2" />
<text text-anchor="" x="572.32" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree_skbmem (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (7 samples, 0.16%)</title><rect x="753.6" y="1649" width="1.9" height="15.0" fill="rgb(221,200,41)" rx="2" ry="2" />
<text text-anchor="" x="756.65" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ip_rcv (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.02%)</title><rect x="1039.3" y="1777" width="0.2" height="15.0" fill="rgb(242,18,34)" rx="2" ry="2" />
<text text-anchor="" x="1042.26" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__GI___getgid (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__GI___getgid (1 samples, 0.02%)</title><rect x="882.7" y="2033" width="0.3" height="15.0" fill="rgb(221,148,34)" rx="2" ry="2" />
<text text-anchor="" x="885.70" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.09%)</title><rect x="735.7" y="1809" width="1.0" height="15.0" fill="rgb(246,30,1)" rx="2" ry="2" />
<text text-anchor="" x="738.67" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (3 samples, 0.07%)</title><rect x="308.3" y="1905" width="0.8" height="15.0" fill="rgb(219,103,52)" rx="2" ry="2" />
<text text-anchor="" x="311.31" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_notify_resume (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_notify_resume (1 samples, 0.02%)</title><rect x="24.8" y="1985" width="0.3" height="15.0" fill="rgb(210,23,0)" rx="2" ry="2" />
<text text-anchor="" x="27.81" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('discard_unwind_frame (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>discard_unwind_frame (1 samples, 0.02%)</title><rect x="78.0" y="2017" width="0.2" height="15.0" fill="rgb(242,197,5)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mv (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mv (3 samples, 0.07%)</title><rect x="872.1" y="2049" width="0.8" height="15.0" fill="rgb(226,129,48)" rx="2" ry="2" />
<text text-anchor="" x="875.12" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (2 samples, 0.04%)</title><rect x="203.8" y="1953" width="0.6" height="15.0" fill="rgb(228,187,36)" rx="2" ry="2" />
<text text-anchor="" x="206.85" y="1963.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.02%)</title><rect x="107.8" y="1793" width="0.3" height="15.0" fill="rgb(226,69,17)" rx="2" ry="2" />
<text text-anchor="" x="110.85" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (11 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (11 samples, 0.25%)</title><rect x="105.5" y="1841" width="2.9" height="15.0" fill="rgb(254,186,25)" rx="2" ry="2" />
<text text-anchor="" x="108.47" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2 (1 samples, 0.02%)</title><rect x="880.3" y="2017" width="0.3" height="15.0" fill="rgb(207,105,8)" rx="2" ry="2" />
<text text-anchor="" x="883.32" y="2027.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.02%)</title><rect x="118.4" y="1793" width="0.3" height="15.0" fill="rgb(223,111,18)" rx="2" ry="2" />
<text text-anchor="" x="121.43" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_page_fault (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (2 samples, 0.04%)</title><rect x="1179.2" y="1985" width="0.5" height="15.0" fill="rgb(232,191,5)" rx="2" ry="2" />
<text text-anchor="" x="1182.16" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::internal::UnitTestImpl::RunAllTests (946 samples, 21.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::internal::UnitTestImpl::RunAllTests (946 samples, 21.20%)</title><rect x="559.0" y="1969" width="250.2" height="15.0" fill="rgb(211,183,16)" rx="2" ry="2" />
<text text-anchor="" x="562.01" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::internal::UnitTestImpl::..</text>
</g>
<g class="func_g" onmouseover="s('sys_munmap (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_munmap (1 samples, 0.02%)</title><rect x="1177.0" y="1985" width="0.3" height="15.0" fill="rgb(244,58,34)" rx="2" ry="2" />
<text text-anchor="" x="1180.04" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="993" width="0.3" height="15.0" fill="rgb(206,163,44)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('getmaxchild (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>getmaxchild (1 samples, 0.02%)</title><rect x="885.3" y="2033" width="0.3" height="15.0" fill="rgb(225,161,4)" rx="2" ry="2" />
<text text-anchor="" x="888.35" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (34 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (34 samples, 0.76%)</title><rect x="412.0" y="1617" width="9.0" height="15.0" fill="rgb(217,157,12)" rx="2" ry="2" />
<text text-anchor="" x="414.97" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::HandleIsReady (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::HandleIsReady (1 samples, 0.02%)</title><rect x="538.4" y="1761" width="0.2" height="15.0" fill="rgb(223,70,53)" rx="2" ry="2" />
<text text-anchor="" x="541.38" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__vsnprintf_chk (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__vsnprintf_chk (1 samples, 0.02%)</title><rect x="1169.4" y="2017" width="0.2" height="15.0" fill="rgb(225,82,28)" rx="2" ry="2" />
<text text-anchor="" x="1172.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_work_run (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_work_run (1 samples, 0.02%)</title><rect x="151.2" y="1905" width="0.3" height="15.0" fill="rgb(224,3,37)" rx="2" ry="2" />
<text text-anchor="" x="154.22" y="1915.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.02%)</title><rect x="86.7" y="1889" width="0.3" height="15.0" fill="rgb(251,125,26)" rx="2" ry="2" />
<text text-anchor="" x="89.69" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (1 samples, 0.02%)</title><rect x="26.9" y="1969" width="0.3" height="15.0" fill="rgb(237,153,16)" rx="2" ry="2" />
<text text-anchor="" x="29.93" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (6 samples, 0.13%)</title><rect x="22.7" y="1985" width="1.6" height="15.0" fill="rgb(240,189,15)" rx="2" ry="2" />
<text text-anchor="" x="25.69" y="1995.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.04%)</title><rect x="485.5" y="1889" width="0.5" height="15.0" fill="rgb(211,88,3)" rx="2" ry="2" />
<text text-anchor="" x="488.49" y="1899.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.04%)</title><rect x="713.7" y="1665" width="0.5" height="15.0" fill="rgb(240,120,26)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoReadMessage (67 samples, 1.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoReadMessage (67 samples, 1.50%)</title><rect x="454.8" y="1809" width="17.7" height="15.0" fill="rgb(237,65,33)" rx="2" ry="2" />
<text text-anchor="" x="457.81" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.09%)</title><rect x="646.5" y="1729" width="1.1" height="15.0" fill="rgb(249,147,32)" rx="2" ry="2" />
<text text-anchor="" x="649.54" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (1 samples, 0.02%)</title><rect x="93.6" y="2001" width="0.2" height="15.0" fill="rgb(243,169,11)" rx="2" ry="2" />
<text text-anchor="" x="96.57" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpu_startup_entry (879 samples, 19.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpu_startup_entry (879 samples, 19.70%)</title><rect x="899.4" y="2017" width="232.4" height="15.0" fill="rgb(228,87,34)" rx="2" ry="2" />
<text text-anchor="" x="902.36" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cpu_startup_entry</text>
</g>
<g class="func_g" onmouseover="s('base::internal::BindStatebase::internal::RunnableAdaptervoid (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::BindStatebase::internal::RunnableAdaptervoid (2 samples, 0.04%)</title><rect x="542.3" y="1729" width="0.6" height="15.0" fill="rgb(237,195,50)" rx="2" ry="2" />
<text text-anchor="" x="545.35" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_readv_writev (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.02%)</title><rect x="1174.9" y="1969" width="0.3" height="15.0" fill="rgb(240,219,1)" rx="2" ry="2" />
<text text-anchor="" x="1177.93" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::CallbackBase::CallbackBase (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::CallbackBase::CallbackBase (4 samples, 0.09%)</title><rect x="722.7" y="1761" width="1.1" height="15.0" fill="rgb(254,40,6)" rx="2" ry="2" />
<text text-anchor="" x="725.71" y="1771.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.04%)</title><rect x="776.4" y="1761" width="0.5" height="15.0" fill="rgb(206,156,30)" rx="2" ry="2" />
<text text-anchor="" x="779.39" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.04%)</title><rect x="167.6" y="1921" width="0.5" height="15.0" fill="rgb(239,29,29)" rx="2" ry="2" />
<text text-anchor="" x="170.62" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (71 samples, 1.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (71 samples, 1.59%)</title><rect x="353.3" y="1809" width="18.7" height="15.0" fill="rgb(229,142,49)" rx="2" ry="2" />
<text text-anchor="" x="356.26" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (1 samples, 0.02%)</title><rect x="883.5" y="1969" width="0.3" height="15.0" fill="rgb(215,45,23)" rx="2" ry="2" />
<text text-anchor="" x="886.50" y="1979.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (2 samples, 0.04%)</title><rect x="629.9" y="1697" width="0.5" height="15.0" fill="rgb(233,180,51)" rx="2" ry="2" />
<text text-anchor="" x="632.88" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (5 samples, 0.11%)</title><rect x="29.6" y="1921" width="1.3" height="15.0" fill="rgb(251,110,15)" rx="2" ry="2" />
<text text-anchor="" x="32.57" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (3 samples, 0.07%)</title><rect x="567.5" y="1825" width="0.8" height="15.0" fill="rgb(253,92,38)" rx="2" ry="2" />
<text text-anchor="" x="570.47" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (1 samples, 0.02%)</title><rect x="350.4" y="1809" width="0.2" height="15.0" fill="rgb(242,120,46)" rx="2" ry="2" />
<text text-anchor="" x="353.35" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="34.6" y="1985" width="0.3" height="15.0" fill="rgb(205,182,16)" rx="2" ry="2" />
<text text-anchor="" x="37.59" y="1995.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>source_load (1 samples, 0.02%)</title><rect x="262.0" y="1809" width="0.3" height="15.0" fill="rgb(251,202,40)" rx="2" ry="2" />
<text text-anchor="" x="265.03" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::ReadMessage (22 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::ReadMessage (22 samples, 0.49%)</title><rect x="710.0" y="1697" width="5.8" height="15.0" fill="rgb(242,43,30)" rx="2" ry="2" />
<text text-anchor="" x="713.01" y="1707.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="1182.3" y="1889" width="0.3" height="15.0" fill="rgb(206,47,45)" rx="2" ry="2" />
<text text-anchor="" x="1185.33" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('user_statfs (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>user_statfs (1 samples, 0.02%)</title><rect x="872.4" y="1953" width="0.3" height="15.0" fill="rgb(220,86,4)" rx="2" ry="2" />
<text text-anchor="" x="875.39" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kthread (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kthread (1 samples, 0.02%)</title><rect x="869.5" y="2017" width="0.2" height="15.0" fill="rgb(207,31,43)" rx="2" ry="2" />
<text text-anchor="" x="872.48" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('handle_irq_event (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event (2 samples, 0.04%)</title><rect x="1037.9" y="1905" width="0.6" height="15.0" fill="rgb(216,106,35)" rx="2" ry="2" />
<text text-anchor="" x="1040.94" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="481" width="0.8" height="15.0" fill="rgb(224,110,53)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('read_tsc (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>read_tsc (2 samples, 0.04%)</title><rect x="1082.4" y="1953" width="0.5" height="15.0" fill="rgb(242,216,18)" rx="2" ry="2" />
<text text-anchor="" x="1085.37" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_reschedule_interrupt (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_reschedule_interrupt (4 samples, 0.09%)</title><rect x="1036.9" y="1953" width="1.0" height="15.0" fill="rgb(214,195,47)" rx="2" ry="2" />
<text text-anchor="" x="1039.88" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mnp_logger (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mnp_logger (2 samples, 0.04%)</title><rect x="871.6" y="2049" width="0.5" height="15.0" fill="rgb(250,206,0)" rx="2" ry="2" />
<text text-anchor="" x="874.60" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_worker (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_worker (1 samples, 0.02%)</title><rect x="912.6" y="1825" width="0.3" height="15.0" fill="rgb(240,51,3)" rx="2" ry="2" />
<text text-anchor="" x="915.59" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sigprocmask (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sigprocmask (1 samples, 0.02%)</title><rect x="89.9" y="2033" width="0.2" height="15.0" fill="rgb(252,225,9)" rx="2" ry="2" />
<text text-anchor="" x="92.87" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unmap_single_vma (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>unmap_single_vma (5 samples, 0.11%)</title><rect x="1173.1" y="1873" width="1.3" height="15.0" fill="rgb(205,65,26)" rx="2" ry="2" />
<text text-anchor="" x="1176.07" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ktime_get (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get (1 samples, 0.02%)</title><rect x="341.1" y="1761" width="0.3" height="15.0" fill="rgb(209,6,27)" rx="2" ry="2" />
<text text-anchor="" x="344.10" y="1771.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.02%)</title><rect x="32.2" y="1793" width="0.3" height="15.0" fill="rgb(214,117,3)" rx="2" ry="2" />
<text text-anchor="" x="35.21" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="34.6" y="2001" width="0.3" height="15.0" fill="rgb(246,156,4)" rx="2" ry="2" />
<text text-anchor="" x="37.59" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (4 samples, 0.09%)</title><rect x="197.8" y="2017" width="1.0" height="15.0" fill="rgb(231,228,17)" rx="2" ry="2" />
<text text-anchor="" x="200.76" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_intr (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (6 samples, 0.13%)</title><rect x="1037.9" y="1969" width="1.6" height="15.0" fill="rgb(242,176,29)" rx="2" ry="2" />
<text text-anchor="" x="1040.94" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.02%)</title><rect x="588.4" y="1777" width="0.2" height="15.0" fill="rgb(252,43,54)" rx="2" ry="2" />
<text text-anchor="" x="591.36" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_notify_resume (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_notify_resume (1 samples, 0.02%)</title><rect x="877.1" y="2001" width="0.3" height="15.0" fill="rgb(229,157,9)" rx="2" ry="2" />
<text text-anchor="" x="880.15" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_last (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_last (1 samples, 0.02%)</title><rect x="90.9" y="1921" width="0.3" height="15.0" fill="rgb(235,29,46)" rx="2" ry="2" />
<text text-anchor="" x="93.92" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (1 samples, 0.02%)</title><rect x="367.8" y="1777" width="0.3" height="15.0" fill="rgb(251,129,22)" rx="2" ry="2" />
<text text-anchor="" x="370.81" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="609" width="0.3" height="15.0" fill="rgb(215,145,21)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_hot_cold_page (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_hot_cold_page (1 samples, 0.02%)</title><rect x="879.0" y="1857" width="0.3" height="15.0" fill="rgb(240,170,2)" rx="2" ry="2" />
<text text-anchor="" x="882.00" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::PerformanceChannelListener::OnMessageReceived (156 samples, 3.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PerformanceChannelListener::OnMessageReceived (156 samples, 3.50%)</title><rect x="655.3" y="1713" width="41.2" height="15.0" fill="rgb(247,184,0)" rx="2" ry="2" />
<text text-anchor="" x="658.27" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC..</text>
</g>
<g class="func_g" onmouseover="s('putback_lru_page (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>putback_lru_page (1 samples, 0.02%)</title><rect x="151.0" y="1809" width="0.2" height="15.0" fill="rgb(225,198,24)" rx="2" ry="2" />
<text text-anchor="" x="153.95" y="1819.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.02%)</title><rect x="367.0" y="1713" width="0.3" height="15.0" fill="rgb(243,168,50)" rx="2" ry="2" />
<text text-anchor="" x="370.01" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('nr_iowait_cpu (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>nr_iowait_cpu (1 samples, 0.02%)</title><rect x="1159.9" y="1921" width="0.2" height="15.0" fill="rgb(227,47,32)" rx="2" ry="2" />
<text text-anchor="" x="1162.85" y="1931.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (1 samples, 0.02%)</title><rect x="507.4" y="1697" width="0.3" height="15.0" fill="rgb(224,225,40)" rx="2" ry="2" />
<text text-anchor="" x="510.44" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="118.4" y="1953" width="0.3" height="15.0" fill="rgb(246,156,22)" rx="2" ry="2" />
<text text-anchor="" x="121.43" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.02%)</title><rect x="24.0" y="1745" width="0.3" height="15.0" fill="rgb(244,165,39)" rx="2" ry="2" />
<text text-anchor="" x="27.02" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_newstat (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_newstat (1 samples, 0.02%)</title><rect x="90.7" y="2001" width="0.2" height="15.0" fill="rgb(231,92,5)" rx="2" ry="2" />
<text text-anchor="" x="93.66" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__ctype_get_mb_cur_max (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__ctype_get_mb_cur_max (1 samples, 0.02%)</title><rect x="65.8" y="2017" width="0.3" height="15.0" fill="rgb(220,200,7)" rx="2" ry="2" />
<text text-anchor="" x="68.80" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="41.5" y="1793" width="0.2" height="15.0" fill="rgb(216,97,4)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (1 samples, 0.02%)</title><rect x="869.7" y="1985" width="0.3" height="15.0" fill="rgb(227,26,10)" rx="2" ry="2" />
<text text-anchor="" x="872.74" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base8internal8LockImpl6UnlockEv@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base8internal8LockImpl6UnlockEv@plt (1 samples, 0.02%)</title><rect x="783.5" y="1729" width="0.3" height="15.0" fill="rgb(230,48,30)" rx="2" ry="2" />
<text text-anchor="" x="786.53" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (1 samples, 0.02%)</title><rect x="150.7" y="1793" width="0.3" height="15.0" fill="rgb(233,206,49)" rx="2" ry="2" />
<text text-anchor="" x="153.69" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('lapic_next_deadline (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>lapic_next_deadline (2 samples, 0.04%)</title><rect x="1115.7" y="1873" width="0.5" height="15.0" fill="rgb(217,169,46)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="1883.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="407.2" y="1489" width="0.3" height="15.0" fill="rgb(207,201,31)" rx="2" ry="2" />
<text text-anchor="" x="410.21" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.02%)</title><rect x="384.2" y="1809" width="0.3" height="15.0" fill="rgb(248,83,49)" rx="2" ry="2" />
<text text-anchor="" x="387.20" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('alloc_pages_vma (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_vma (1 samples, 0.02%)</title><rect x="1165.7" y="1905" width="0.2" height="15.0" fill="rgb(244,118,31)" rx="2" ry="2" />
<text text-anchor="" x="1168.67" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_alloc (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (3 samples, 0.07%)</title><rect x="234.8" y="1889" width="0.8" height="15.0" fill="rgb(250,26,41)" rx="2" ry="2" />
<text text-anchor="" x="237.79" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.02%)</title><rect x="1183.9" y="1777" width="0.3" height="15.0" fill="rgb(238,166,20)" rx="2" ry="2" />
<text text-anchor="" x="1186.92" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('alloc_pages_current (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_current (1 samples, 0.02%)</title><rect x="83.3" y="1857" width="0.2" height="15.0" fill="rgb(235,149,39)" rx="2" ry="2" />
<text text-anchor="" x="86.25" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuidle_enter_state (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuidle_enter_state (1 samples, 0.02%)</title><rect x="1135.3" y="1937" width="0.2" height="15.0" fill="rgb(233,155,48)" rx="2" ry="2" />
<text text-anchor="" x="1138.26" y="1947.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.09%)</title><rect x="158.1" y="1985" width="1.1" height="15.0" fill="rgb(208,61,17)" rx="2" ry="2" />
<text text-anchor="" x="161.10" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('notifier_call_chain (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>notifier_call_chain (3 samples, 0.07%)</title><rect x="1041.1" y="1985" width="0.8" height="15.0" fill="rgb(235,78,37)" rx="2" ry="2" />
<text text-anchor="" x="1044.11" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('realloc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>realloc (1 samples, 0.02%)</title><rect x="685.7" y="1665" width="0.2" height="15.0" fill="rgb(249,44,34)" rx="2" ry="2" />
<text text-anchor="" x="688.68" y="1675.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.02%)</title><rect x="1184.2" y="1953" width="0.2" height="15.0" fill="rgb(217,128,11)" rx="2" ry="2" />
<text text-anchor="" x="1187.18" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('common_file_perm (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="153.1" y="1873" width="0.2" height="15.0" fill="rgb(230,55,33)" rx="2" ry="2" />
<text text-anchor="" x="156.07" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1153" width="0.3" height="15.0" fill="rgb(245,193,25)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (1 samples, 0.02%)</title><rect x="463.5" y="1713" width="0.3" height="15.0" fill="rgb(220,116,32)" rx="2" ry="2" />
<text text-anchor="" x="466.54" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.02%)</title><rect x="746.0" y="1729" width="0.2" height="15.0" fill="rgb(253,207,38)" rx="2" ry="2" />
<text text-anchor="" x="748.98" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1393" width="0.3" height="15.0" fill="rgb(234,148,37)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.02%)</title><rect x="531.5" y="1841" width="0.3" height="15.0" fill="rgb(216,138,7)" rx="2" ry="2" />
<text text-anchor="" x="534.51" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (3 samples, 0.07%)</title><rect x="1183.1" y="1793" width="0.8" height="15.0" fill="rgb(209,3,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.12" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1121" width="0.3" height="15.0" fill="rgb(237,46,22)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.22%)</title><rect x="1181.5" y="1937" width="2.7" height="15.0" fill="rgb(239,1,26)" rx="2" ry="2" />
<text text-anchor="" x="1184.54" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vma_interval_tree_insert (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vma_interval_tree_insert (1 samples, 0.02%)</title><rect x="1176.0" y="1921" width="0.2" height="15.0" fill="rgb(213,42,52)" rx="2" ry="2" />
<text text-anchor="" x="1178.98" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="871.9" y="1857" width="0.2" height="15.0" fill="rgb(212,154,46)" rx="2" ry="2" />
<text text-anchor="" x="874.86" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pte_alloc_one (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pte_alloc_one (1 samples, 0.02%)</title><rect x="94.4" y="1873" width="0.2" height="15.0" fill="rgb(211,205,30)" rx="2" ry="2" />
<text text-anchor="" x="97.36" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__inode_permission (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__inode_permission (1 samples, 0.02%)</title><rect x="1169.9" y="1841" width="0.3" height="15.0" fill="rgb(210,56,42)" rx="2" ry="2" />
<text text-anchor="" x="1172.90" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.09%)</title><rect x="875.0" y="1953" width="1.1" height="15.0" fill="rgb(243,9,5)" rx="2" ry="2" />
<text text-anchor="" x="878.03" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_process (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.02%)</title><rect x="1136.1" y="1825" width="0.2" height="15.0" fill="rgb(231,96,11)" rx="2" ry="2" />
<text text-anchor="" x="1139.05" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="34.6" y="1937" width="0.3" height="15.0" fill="rgb(235,127,13)" rx="2" ry="2" />
<text text-anchor="" x="37.59" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZNK4base6subtle24RefCountedThreadSafeBase7ReleaseEv@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK4base6subtle24RefCountedThreadSafeBase7ReleaseEv@plt (1 samples, 0.02%)</title><rect x="787.0" y="1665" width="0.2" height="15.0" fill="rgb(253,128,37)" rx="2" ry="2" />
<text text-anchor="" x="789.97" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="1186.3" y="1713" width="0.5" height="15.0" fill="rgb(250,156,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.04%)</title><rect x="534.7" y="1825" width="0.5" height="15.0" fill="rgb(239,207,11)" rx="2" ry="2" />
<text text-anchor="" x="537.68" y="1835.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="115.3" y="1873" width="0.2" height="15.0" fill="rgb(205,160,4)" rx="2" ry="2" />
<text text-anchor="" x="118.25" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('evmap_io_active (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>evmap_io_active (1 samples, 0.02%)</title><rect x="1180.0" y="2033" width="0.2" height="15.0" fill="rgb(227,96,10)" rx="2" ry="2" />
<text text-anchor="" x="1182.95" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadAvailableMessages (307 samples, 6.88%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadAvailableMessages (307 samples, 6.88%)</title><rect x="393.2" y="1841" width="81.2" height="15.0" fill="rgb(214,10,44)" rx="2" ry="2" />
<text text-anchor="" x="396.20" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::inte..</text>
</g>
<g class="func_g" onmouseover="s('schedule (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.04%)</title><rect x="167.6" y="1937" width="0.5" height="15.0" fill="rgb(227,24,41)" rx="2" ry="2" />
<text text-anchor="" x="170.62" y="1947.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="518.0" y="1601" width="0.5" height="15.0" fill="rgb(233,146,32)" rx="2" ry="2" />
<text text-anchor="" x="521.02" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dispose_words (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dispose_words (1 samples, 0.02%)</title><rect x="92.2" y="2033" width="0.3" height="15.0" fill="rgb(225,39,16)" rx="2" ry="2" />
<text text-anchor="" x="95.25" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_map_object (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_map_object (2 samples, 0.04%)</title><rect x="1176.0" y="2033" width="0.5" height="15.0" fill="rgb(207,5,7)" rx="2" ry="2" />
<text text-anchor="" x="1178.98" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="113" width="0.3" height="15.0" fill="rgb(206,35,33)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('timerqueue_del (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_del (3 samples, 0.07%)</title><rect x="1100.1" y="1905" width="0.8" height="15.0" fill="rgb(207,2,27)" rx="2" ry="2" />
<text text-anchor="" x="1103.09" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_write (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.02%)</title><rect x="65.3" y="1969" width="0.2" height="15.0" fill="rgb(207,197,44)" rx="2" ry="2" />
<text text-anchor="" x="68.27" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="993" width="0.3" height="15.0" fill="rgb(241,44,47)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1217" width="0.3" height="15.0" fill="rgb(209,216,1)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_fstatat (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_fstatat (1 samples, 0.02%)</title><rect x="90.7" y="1969" width="0.2" height="15.0" fill="rgb(210,24,4)" rx="2" ry="2" />
<text text-anchor="" x="93.66" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.02%)</title><rect x="16.6" y="2017" width="0.3" height="15.0" fill="rgb(242,61,52)" rx="2" ry="2" />
<text text-anchor="" x="19.61" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (13 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (13 samples, 0.29%)</title><rect x="1184.4" y="1969" width="3.5" height="15.0" fill="rgb(235,134,5)" rx="2" ry="2" />
<text text-anchor="" x="1187.45" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="149.1" y="145" width="0.5" height="15.0" fill="rgb(253,144,48)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_normal_page (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_normal_page (1 samples, 0.02%)</title><rect x="1180.7" y="1905" width="0.3" height="15.0" fill="rgb(217,214,2)" rx="2" ry="2" />
<text text-anchor="" x="1183.74" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="645.2" y="1713" width="0.3" height="15.0" fill="rgb(244,85,12)" rx="2" ry="2" />
<text text-anchor="" x="648.22" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_prot_numa (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_prot_numa (1 samples, 0.02%)</title><rect x="14.5" y="1953" width="0.3" height="15.0" fill="rgb(218,210,13)" rx="2" ry="2" />
<text text-anchor="" x="17.50" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (2 samples, 0.04%)</title><rect x="215.0" y="1921" width="0.5" height="15.0" fill="rgb(230,137,41)" rx="2" ry="2" />
<text text-anchor="" x="217.95" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.02%)</title><rect x="367.3" y="1681" width="0.2" height="15.0" fill="rgb(239,227,22)" rx="2" ry="2" />
<text text-anchor="" x="370.28" y="1691.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.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (3 samples, 0.07%)</title><rect x="158.1" y="1889" width="0.8" height="15.0" fill="rgb(217,162,51)" rx="2" ry="2" />
<text text-anchor="" x="161.10" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (1 samples, 0.02%)</title><rect x="1187.4" y="1681" width="0.2" height="15.0" fill="rgb(207,145,9)" rx="2" ry="2" />
<text text-anchor="" x="1190.36" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (1 samples, 0.02%)</title><rect x="451.6" y="1809" width="0.3" height="15.0" fill="rgb(253,67,15)" rx="2" ry="2" />
<text text-anchor="" x="454.64" y="1819.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (2 samples, 0.04%)</title><rect x="621.7" y="1633" width="0.5" height="15.0" fill="rgb(251,2,27)" rx="2" ry="2" />
<text text-anchor="" x="624.69" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_commit_txn (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_commit_txn (4 samples, 0.09%)</title><rect x="873.4" y="1777" width="1.1" height="15.0" fill="rgb(242,212,12)" rx="2" ry="2" />
<text text-anchor="" x="876.45" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (3 samples, 0.07%)</title><rect x="677.2" y="1521" width="0.8" height="15.0" fill="rgb(253,12,18)" rx="2" ry="2" />
<text text-anchor="" x="680.22" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="593" width="0.3" height="15.0" fill="rgb(250,35,38)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1377" width="0.3" height="15.0" fill="rgb(215,147,19)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (2 samples, 0.04%)</title><rect x="409.1" y="1649" width="0.5" height="15.0" fill="rgb(212,171,49)" rx="2" ry="2" />
<text text-anchor="" x="412.06" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lru_cache_add (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lru_cache_add (1 samples, 0.02%)</title><rect x="151.0" y="1777" width="0.2" height="15.0" fill="rgb(243,222,29)" rx="2" ry="2" />
<text text-anchor="" x="153.95" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__vasprintf_chk (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__vasprintf_chk (1 samples, 0.02%)</title><rect x="1175.7" y="2033" width="0.3" height="15.0" fill="rgb(215,126,40)" rx="2" ry="2" />
<text text-anchor="" x="1178.72" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (2 samples, 0.04%)</title><rect x="195.6" y="1985" width="0.6" height="15.0" fill="rgb(215,133,21)" rx="2" ry="2" />
<text text-anchor="" x="198.65" y="1995.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="882.7" y="2017" width="0.3" height="15.0" fill="rgb(236,130,36)" rx="2" ry="2" />
<text text-anchor="" x="885.70" y="2027.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="1164.1" y="1937" width="0.2" height="15.0" fill="rgb(252,113,7)" rx="2" ry="2" />
<text text-anchor="" x="1167.08" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (1 samples, 0.02%)</title><rect x="612.2" y="1729" width="0.2" height="15.0" fill="rgb(249,77,22)" rx="2" ry="2" />
<text text-anchor="" x="615.16" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::WriteToMessageAttachmentSet (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::WriteToMessageAttachmentSet (1 samples, 0.02%)</title><rect x="652.1" y="1745" width="0.3" height="15.0" fill="rgb(239,12,19)" rx="2" ry="2" />
<text text-anchor="" x="655.10" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_start_range_ns (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (6 samples, 0.13%)</title><rect x="1158.3" y="1921" width="1.6" height="15.0" fill="rgb(213,68,23)" rx="2" ry="2" />
<text text-anchor="" x="1161.27" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_sysidle_exit (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_sysidle_exit (1 samples, 0.02%)</title><rect x="1149.8" y="1937" width="0.3" height="15.0" fill="rgb(217,145,34)" rx="2" ry="2" />
<text text-anchor="" x="1152.80" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kthread (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kthread (1 samples, 0.02%)</title><rect x="867.9" y="2017" width="0.3" height="15.0" fill="rgb(209,2,21)" rx="2" ry="2" />
<text text-anchor="" x="870.89" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (1 samples, 0.02%)</title><rect x="163.1" y="2001" width="0.3" height="15.0" fill="rgb(205,144,53)" rx="2" ry="2" />
<text text-anchor="" x="166.12" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('link_path_walk (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (1 samples, 0.02%)</title><rect x="881.1" y="1857" width="0.3" height="15.0" fill="rgb(254,35,47)" rx="2" ry="2" />
<text text-anchor="" x="884.12" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1457" width="0.3" height="15.0" fill="rgb(237,104,34)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1345" width="0.3" height="15.0" fill="rgb(209,55,21)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tlb_finish_mmu (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tlb_finish_mmu (1 samples, 0.02%)</title><rect x="97.8" y="1937" width="0.3" height="15.0" fill="rgb(230,22,1)" rx="2" ry="2" />
<text text-anchor="" x="100.80" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('lapic_next_deadline (15 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>lapic_next_deadline (15 samples, 0.34%)</title><rect x="1122.3" y="1905" width="4.0" height="15.0" fill="rgb(222,63,37)" rx="2" ry="2" />
<text text-anchor="" x="1125.30" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (6 samples, 0.13%)</title><rect x="1177.3" y="2033" width="1.6" height="15.0" fill="rgb(232,185,23)" rx="2" ry="2" />
<text text-anchor="" x="1180.31" y="2043.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="650.2" y="1713" width="0.3" height="15.0" fill="rgb(238,88,19)" rx="2" ry="2" />
<text text-anchor="" x="653.25" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mgagentxp.par (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mgagentxp.par (1 samples, 0.02%)</title><rect x="870.0" y="2049" width="0.3" height="15.0" fill="rgb(252,201,37)" rx="2" ry="2" />
<text text-anchor="" x="873.01" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="163.4" y="1937" width="0.2" height="15.0" fill="rgb(214,229,18)" rx="2" ry="2" />
<text text-anchor="" x="166.38" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('select_estimate_accuracy (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_estimate_accuracy (1 samples, 0.02%)</title><rect x="168.1" y="1969" width="0.3" height="15.0" fill="rgb(235,203,15)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('new_inode_pseudo (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>new_inode_pseudo (1 samples, 0.02%)</title><rect x="92.5" y="1825" width="0.3" height="15.0" fill="rgb(236,161,17)" rx="2" ry="2" />
<text text-anchor="" x="95.51" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pipe_write (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.02%)</title><rect x="153.3" y="1905" width="0.3" height="15.0" fill="rgb(205,217,1)" rx="2" ry="2" />
<text text-anchor="" x="156.33" y="1915.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (2 samples, 0.04%)</title><rect x="281.6" y="1745" width="0.5" height="15.0" fill="rgb(233,175,2)" rx="2" ry="2" />
<text text-anchor="" x="284.60" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="401" width="0.3" height="15.0" fill="rgb(212,128,42)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_new_object (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_new_object (1 samples, 0.02%)</title><rect x="1176.5" y="2033" width="0.3" height="15.0" fill="rgb(218,117,41)" rx="2" ry="2" />
<text text-anchor="" x="1179.51" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__ctype_get_mb_cur_max (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__ctype_get_mb_cur_max (1 samples, 0.02%)</title><rect x="88.0" y="2033" width="0.3" height="15.0" fill="rgb(210,93,52)" rx="2" ry="2" />
<text text-anchor="" x="91.01" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ktime_get_update_offsets (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_update_offsets (1 samples, 0.02%)</title><rect x="150.4" y="1841" width="0.3" height="15.0" fill="rgb(245,80,14)" rx="2" ry="2" />
<text text-anchor="" x="153.43" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_pages_nodemask (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (1 samples, 0.02%)</title><rect x="83.5" y="1873" width="0.3" height="15.0" fill="rgb(206,206,41)" rx="2" ry="2" />
<text text-anchor="" x="86.52" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Add (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Add (1 samples, 0.02%)</title><rect x="649.7" y="1665" width="0.3" height="15.0" fill="rgb(210,114,3)" rx="2" ry="2" />
<text text-anchor="" x="652.72" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_fault (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (3 samples, 0.07%)</title><rect x="161.3" y="2017" width="0.8" height="15.0" fill="rgb(216,43,30)" rx="2" ry="2" />
<text text-anchor="" x="164.27" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unmap_region (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unmap_region (1 samples, 0.02%)</title><rect x="35.4" y="1953" width="0.3" height="15.0" fill="rgb(206,32,15)" rx="2" ry="2" />
<text text-anchor="" x="38.39" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="1165.4" y="1937" width="0.3" height="15.0" fill="rgb(243,217,31)" rx="2" ry="2" />
<text text-anchor="" x="1168.41" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ptep_clear_flush (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ptep_clear_flush (1 samples, 0.02%)</title><rect x="161.8" y="1857" width="0.3" height="15.0" fill="rgb(244,139,32)" rx="2" ry="2" />
<text text-anchor="" x="164.80" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (3 samples, 0.07%)</title><rect x="340.3" y="1841" width="0.8" height="15.0" fill="rgb(208,102,30)" rx="2" ry="2" />
<text text-anchor="" x="343.30" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_wait (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="807.6" y="1825" width="0.3" height="15.0" fill="rgb(250,41,23)" rx="2" ry="2" />
<text text-anchor="" x="810.60" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_ioctl (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_ioctl (5 samples, 0.11%)</title><rect x="873.2" y="1905" width="1.3" height="15.0" fill="rgb(221,106,28)" rx="2" ry="2" />
<text text-anchor="" x="876.18" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="473.9" y="1809" width="0.2" height="15.0" fill="rgb(216,204,28)" rx="2" ry="2" />
<text text-anchor="" x="476.85" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__bitmap_andnot (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__bitmap_andnot (1 samples, 0.02%)</title><rect x="874.5" y="1857" width="0.3" height="15.0" fill="rgb(223,57,30)" rx="2" ry="2" />
<text text-anchor="" x="877.50" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_elf_interp.constprop.9 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_interp.constprop.9 (1 samples, 0.02%)</title><rect x="88.3" y="1905" width="0.2" height="15.0" fill="rgb(212,176,10)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="1915.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.02%)</title><rect x="645.2" y="1585" width="0.3" height="15.0" fill="rgb(245,132,37)" rx="2" ry="2" />
<text text-anchor="" x="648.22" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (4 samples, 0.09%)</title><rect x="547.6" y="1841" width="1.1" height="15.0" fill="rgb(248,200,53)" rx="2" ry="2" />
<text text-anchor="" x="550.64" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1160.6" y="1985" width="0.3" height="15.0" fill="rgb(209,75,45)" rx="2" ry="2" />
<text text-anchor="" x="1163.65" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('poll_schedule_timeout (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (1 samples, 0.02%)</title><rect x="1175.2" y="1969" width="0.3" height="15.0" fill="rgb(253,1,40)" rx="2" ry="2" />
<text text-anchor="" x="1178.19" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (7 samples, 0.16%)</title><rect x="295.6" y="1953" width="1.9" height="15.0" fill="rgb(236,22,50)" rx="2" ry="2" />
<text text-anchor="" x="298.61" y="1963.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.02%)</title><rect x="525.4" y="1857" width="0.3" height="15.0" fill="rgb(239,191,33)" rx="2" ry="2" />
<text text-anchor="" x="528.42" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.02%)</title><rect x="86.4" y="2001" width="0.3" height="15.0" fill="rgb(234,196,36)" rx="2" ry="2" />
<text text-anchor="" x="89.43" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('read_tsc (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>read_tsc (5 samples, 0.11%)</title><rect x="1083.4" y="1969" width="1.3" height="15.0" fill="rgb(206,160,6)" rx="2" ry="2" />
<text text-anchor="" x="1086.42" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.02%)</title><rect x="1188.4" y="1777" width="0.3" height="15.0" fill="rgb(242,179,40)" rx="2" ry="2" />
<text text-anchor="" x="1191.41" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_openat (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_openat (1 samples, 0.02%)</title><rect x="1167.8" y="1937" width="0.3" height="15.0" fill="rgb(231,93,33)" rx="2" ry="2" />
<text text-anchor="" x="1170.79" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (3 samples, 0.07%)</title><rect x="1021.0" y="1921" width="0.8" height="15.0" fill="rgb(234,97,1)" rx="2" ry="2" />
<text text-anchor="" x="1024.01" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1905" width="0.3" height="15.0" fill="rgb(231,109,15)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__secure_computing (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__secure_computing (2 samples, 0.04%)</title><rect x="155.5" y="1953" width="0.5" height="15.0" fill="rgb(227,156,32)" rx="2" ry="2" />
<text text-anchor="" x="158.45" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kernel_read (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kernel_read (1 samples, 0.02%)</title><rect x="88.3" y="1889" width="0.2" height="15.0" fill="rgb(229,154,16)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sh_xmalloc (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sh_xmalloc (5 samples, 0.11%)</title><rect x="95.9" y="2033" width="1.4" height="15.0" fill="rgb(254,24,17)" rx="2" ry="2" />
<text text-anchor="" x="98.95" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('nohz_balance_enter_idle (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>nohz_balance_enter_idle (3 samples, 0.07%)</title><rect x="1106.7" y="1953" width="0.8" height="15.0" fill="rgb(221,155,30)" rx="2" ry="2" />
<text text-anchor="" x="1109.70" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('EventManager_De (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>EventManager_De (4 samples, 0.09%)</title><rect x="31.4" y="2049" width="1.1" height="15.0" fill="rgb(206,105,41)" rx="2" ry="2" />
<text text-anchor="" x="34.42" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.22%)</title><rect x="111.3" y="1905" width="2.6" height="15.0" fill="rgb(234,126,2)" rx="2" ry="2" />
<text text-anchor="" x="114.29" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_scan_min (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_scan_min (1 samples, 0.02%)</title><rect x="1187.9" y="1873" width="0.2" height="15.0" fill="rgb(219,6,8)" rx="2" ry="2" />
<text text-anchor="" x="1190.88" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_brk (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_brk (1 samples, 0.02%)</title><rect x="883.2" y="1985" width="0.3" height="15.0" fill="rgb(216,38,3)" rx="2" ry="2" />
<text text-anchor="" x="886.23" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_mmap_pgoff (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_mmap_pgoff (1 samples, 0.02%)</title><rect x="95.2" y="1953" width="0.2" height="15.0" fill="rgb(242,104,43)" rx="2" ry="2" />
<text text-anchor="" x="98.15" y="1963.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.02%)</title><rect x="871.9" y="1825" width="0.2" height="15.0" fill="rgb(252,166,47)" rx="2" ry="2" />
<text text-anchor="" x="874.86" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_Rep::_S_create (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_Rep::_S_create (5 samples, 0.11%)</title><rect x="866.3" y="2033" width="1.3" height="15.0" fill="rgb(229,83,2)" rx="2" ry="2" />
<text text-anchor="" x="869.31" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.26 (8 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.26 (8 samples, 0.18%)</title><rect x="230.8" y="1905" width="2.1" height="15.0" fill="rgb(211,24,11)" rx="2" ry="2" />
<text text-anchor="" x="233.82" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('arch_cpu_idle (500 samples, 11.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>arch_cpu_idle (500 samples, 11.21%)</title><rect x="908.9" y="2001" width="132.2" height="15.0" fill="rgb(227,159,51)" rx="2" ry="2" />
<text text-anchor="" x="911.88" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >arch_cpu_idle</text>
</g>
<g class="func_g" onmouseover="s('void Pickle::WriteBytesStatic4ul (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic4ul (1 samples, 0.02%)</title><rect x="442.6" y="1777" width="0.3" height="15.0" fill="rgb(254,83,45)" rx="2" ry="2" />
<text text-anchor="" x="445.65" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="150.7" y="1905" width="0.3" height="15.0" fill="rgb(243,172,45)" rx="2" ry="2" />
<text text-anchor="" x="153.69" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (37 samples, 0.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (37 samples, 0.83%)</title><rect x="108.6" y="1985" width="9.8" height="15.0" fill="rgb(240,111,0)" rx="2" ry="2" />
<text text-anchor="" x="111.64" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (6 samples, 0.13%)</title><rect x="103.1" y="1873" width="1.6" height="15.0" fill="rgb(237,169,24)" rx="2" ry="2" />
<text text-anchor="" x="106.09" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_preempt_disabled (110 samples, 2.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_preempt_disabled (110 samples, 2.47%)</title><rect x="1052.0" y="2001" width="29.0" height="15.0" fill="rgb(213,121,35)" rx="2" ry="2" />
<text text-anchor="" x="1054.95" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (13 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (13 samples, 0.29%)</title><rect x="146.5" y="1825" width="3.4" height="15.0" fill="rgb(240,189,15)" rx="2" ry="2" />
<text text-anchor="" x="149.46" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (1 samples, 0.02%)</title><rect x="1164.9" y="1889" width="0.2" height="15.0" fill="rgb(216,195,45)" rx="2" ry="2" />
<text text-anchor="" x="1167.88" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('int_sqrt (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>int_sqrt (5 samples, 0.11%)</title><rect x="1032.6" y="1953" width="1.4" height="15.0" fill="rgb(229,106,13)" rx="2" ry="2" />
<text text-anchor="" x="1035.65" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (3 samples, 0.07%)</title><rect x="776.9" y="1761" width="0.8" height="15.0" fill="rgb(232,43,37)" rx="2" ry="2" />
<text text-anchor="" x="779.92" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="545" width="0.3" height="15.0" fill="rgb(251,155,27)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (4 samples, 0.09%)</title><rect x="727.7" y="1809" width="1.1" height="15.0" fill="rgb(247,131,53)" rx="2" ry="2" />
<text text-anchor="" x="730.73" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="1057" width="0.8" height="15.0" fill="rgb(232,203,47)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_fault (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (6 samples, 0.13%)</title><rect x="1170.2" y="2017" width="1.6" height="15.0" fill="rgb(241,73,38)" rx="2" ry="2" />
<text text-anchor="" x="1173.17" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_active (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (2 samples, 0.04%)</title><rect x="807.9" y="1825" width="0.5" height="15.0" fill="rgb(243,209,23)" rx="2" ry="2" />
<text text-anchor="" x="810.86" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpumask_set_cpu (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_set_cpu (1 samples, 0.02%)</title><rect x="1066.5" y="1969" width="0.3" height="15.0" fill="rgb(220,125,27)" rx="2" ry="2" />
<text text-anchor="" x="1069.50" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection (1 samples, 0.02%)</title><rect x="164.4" y="1937" width="0.3" height="15.0" fill="rgb(221,2,32)" rx="2" ry="2" />
<text text-anchor="" x="167.44" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection_range (1 samples, 0.02%)</title><rect x="164.4" y="1921" width="0.3" height="15.0" fill="rgb(244,170,31)" rx="2" ry="2" />
<text text-anchor="" x="167.44" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (5 samples, 0.11%)</title><rect x="29.6" y="1969" width="1.3" height="15.0" fill="rgb(229,194,14)" rx="2" ry="2" />
<text text-anchor="" x="32.57" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (1 samples, 0.02%)</title><rect x="875.0" y="1921" width="0.3" height="15.0" fill="rgb(211,59,6)" rx="2" ry="2" />
<text text-anchor="" x="878.03" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::assign (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::assign (7 samples, 0.16%)</title><rect x="694.7" y="1697" width="1.8" height="15.0" fill="rgb(213,201,19)" rx="2" ry="2" />
<text text-anchor="" x="697.68" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (1 samples, 0.02%)</title><rect x="497.9" y="1841" width="0.3" height="15.0" fill="rgb(228,80,4)" rx="2" ry="2" />
<text text-anchor="" x="500.92" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (1 samples, 0.02%)</title><rect x="88.3" y="1825" width="0.2" height="15.0" fill="rgb(230,217,51)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (1 samples, 0.02%)</title><rect x="569.1" y="1825" width="0.2" height="15.0" fill="rgb(205,190,34)" rx="2" ry="2" />
<text text-anchor="" x="572.06" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_write (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.02%)</title><rect x="153.3" y="1937" width="0.3" height="15.0" fill="rgb(252,178,37)" rx="2" ry="2" />
<text text-anchor="" x="156.33" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1697" width="0.3" height="15.0" fill="rgb(215,49,31)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (27 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (27 samples, 0.61%)</title><rect x="511.7" y="1681" width="7.1" height="15.0" fill="rgb(243,26,51)" rx="2" ry="2" />
<text text-anchor="" x="514.67" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.02%)</title><rect x="407.2" y="1537" width="0.3" height="15.0" fill="rgb(224,83,17)" rx="2" ry="2" />
<text text-anchor="" x="410.21" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_mmap_pgoff (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap_pgoff (1 samples, 0.02%)</title><rect x="878.5" y="1969" width="0.2" height="15.0" fill="rgb(246,6,52)" rx="2" ry="2" />
<text text-anchor="" x="881.47" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_enable (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_enable (5 samples, 0.11%)</title><rect x="873.2" y="1873" width="1.3" height="15.0" fill="rgb(215,100,5)" rx="2" ry="2" />
<text text-anchor="" x="876.18" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('e1000_check_phy_82574 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>e1000_check_phy_82574 (1 samples, 0.02%)</title><rect x="867.9" y="1953" width="0.3" height="15.0" fill="rgb(207,149,2)" rx="2" ry="2" />
<text text-anchor="" x="870.89" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (1 samples, 0.02%)</title><rect x="177.4" y="2017" width="0.3" height="15.0" fill="rgb(230,9,40)" rx="2" ry="2" />
<text text-anchor="" x="180.40" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_aux (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_aux (1 samples, 0.02%)</title><rect x="878.5" y="1905" width="0.2" height="15.0" fill="rgb(254,59,20)" rx="2" ry="2" />
<text text-anchor="" x="881.47" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memchr (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>memchr (1 samples, 0.02%)</title><rect x="25.9" y="2017" width="0.2" height="15.0" fill="rgb(210,131,34)" rx="2" ry="2" />
<text text-anchor="" x="28.87" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (2 samples, 0.04%)</title><rect x="117.1" y="1777" width="0.5" height="15.0" fill="rgb(247,72,9)" rx="2" ry="2" />
<text text-anchor="" x="120.10" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_page_fault (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (2 samples, 0.04%)</title><rect x="1179.2" y="2001" width="0.5" height="15.0" fill="rgb(241,45,17)" rx="2" ry="2" />
<text text-anchor="" x="1182.16" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (11 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (11 samples, 0.25%)</title><rect x="568.3" y="1841" width="2.9" height="15.0" fill="rgb(208,59,53)" rx="2" ry="2" />
<text text-anchor="" x="571.27" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_free (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (6 samples, 0.13%)</title><rect x="753.9" y="1617" width="1.6" height="15.0" fill="rgb(241,62,7)" rx="2" ry="2" />
<text text-anchor="" x="756.91" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="104.4" y="1857" width="0.3" height="15.0" fill="rgb(234,190,27)" rx="2" ry="2" />
<text text-anchor="" x="107.41" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::GetNextMessageSize (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::GetNextMessageSize (3 samples, 0.07%)</title><rect x="527.5" y="1873" width="0.8" height="15.0" fill="rgb(230,35,8)" rx="2" ry="2" />
<text text-anchor="" x="530.54" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('numa_migrate_prep (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>numa_migrate_prep (1 samples, 0.02%)</title><rect x="1189.7" y="1921" width="0.3" height="15.0" fill="rgb(222,155,18)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (10 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (10 samples, 0.22%)</title><rect x="519.9" y="1745" width="2.6" height="15.0" fill="rgb(223,219,17)" rx="2" ry="2" />
<text text-anchor="" x="522.87" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (12 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (12 samples, 0.27%)</title><rect x="415.1" y="1601" width="3.2" height="15.0" fill="rgb(216,195,43)" rx="2" ry="2" />
<text text-anchor="" x="418.15" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.02%)</title><rect x="329.7" y="1841" width="0.3" height="15.0" fill="rgb(239,1,30)" rx="2" ry="2" />
<text text-anchor="" x="332.73" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_numa_work (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_numa_work (1 samples, 0.02%)</title><rect x="160.7" y="1969" width="0.3" height="15.0" fill="rgb(219,196,28)" rx="2" ry="2" />
<text text-anchor="" x="163.74" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (74 samples, 1.66%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (74 samples, 1.66%)</title><rect x="405.4" y="1681" width="19.5" height="15.0" fill="rgb(218,131,23)" rx="2" ry="2" />
<text text-anchor="" x="408.36" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (8 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (8 samples, 0.18%)</title><rect x="509.3" y="1697" width="2.1" height="15.0" fill="rgb(242,112,0)" rx="2" ry="2" />
<text text-anchor="" x="512.29" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdaptervoid (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdaptervoid (1 samples, 0.02%)</title><rect x="725.1" y="1793" width="0.3" height="15.0" fill="rgb(237,70,19)" rx="2" ry="2" />
<text text-anchor="" x="728.09" y="1803.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="161.5" y="1841" width="0.3" height="15.0" fill="rgb(230,4,23)" rx="2" ry="2" />
<text text-anchor="" x="164.53" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (34 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (34 samples, 0.76%)</title><rect x="142.5" y="1953" width="9.0" height="15.0" fill="rgb(208,199,51)" rx="2" ry="2" />
<text text-anchor="" x="145.49" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (3 samples, 0.07%)</title><rect x="158.1" y="1905" width="0.8" height="15.0" fill="rgb(222,110,31)" rx="2" ry="2" />
<text text-anchor="" x="161.10" y="1915.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 (12 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (12 samples, 0.27%)</title><rect x="916.3" y="1841" width="3.2" height="15.0" fill="rgb(254,205,4)" rx="2" ry="2" />
<text text-anchor="" x="919.29" y="1851.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="152.8" y="1937" width="0.3" height="15.0" fill="rgb(241,141,15)" rx="2" ry="2" />
<text text-anchor="" x="155.81" y="1947.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.09%)</title><rect x="158.1" y="1937" width="1.1" height="15.0" fill="rgb(235,55,38)" rx="2" ry="2" />
<text text-anchor="" x="161.10" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1160.6" y="2001" width="0.3" height="15.0" fill="rgb(246,51,31)" rx="2" ry="2" />
<text text-anchor="" x="1163.65" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pipe_write (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.02%)</title><rect x="153.6" y="1905" width="0.3" height="15.0" fill="rgb(249,201,3)" rx="2" ry="2" />
<text text-anchor="" x="156.60" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="273" width="0.3" height="15.0" fill="rgb(222,152,23)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('timerqueue_del (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_del (1 samples, 0.02%)</title><rect x="914.7" y="1873" width="0.3" height="15.0" fill="rgb(228,97,11)" rx="2" ry="2" />
<text text-anchor="" x="917.70" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection (1 samples, 0.02%)</title><rect x="157.6" y="1921" width="0.2" height="15.0" fill="rgb(243,200,38)" rx="2" ry="2" />
<text text-anchor="" x="160.57" y="1931.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="218.7" y="1921" width="0.5" height="15.0" fill="rgb(206,35,51)" rx="2" ry="2" />
<text text-anchor="" x="221.66" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_timeout (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_timeout (4 samples, 0.09%)</title><rect x="875.0" y="1985" width="1.1" height="15.0" fill="rgb(251,3,19)" rx="2" ry="2" />
<text text-anchor="" x="878.03" y="1995.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="1186.8" y="1825" width="0.3" height="15.0" fill="rgb(227,68,31)" rx="2" ry="2" />
<text text-anchor="" x="1189.83" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (4 samples, 0.09%)</title><rect x="1183.1" y="1905" width="1.1" height="15.0" fill="rgb(254,14,37)" rx="2" ry="2" />
<text text-anchor="" x="1186.12" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_exit (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.02%)</title><rect x="1135.8" y="1889" width="0.3" height="15.0" fill="rgb(208,44,51)" rx="2" ry="2" />
<text text-anchor="" x="1138.79" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_wp_page (1 samples, 0.02%)</title><rect x="1167.3" y="1921" width="0.2" height="15.0" fill="rgb(215,165,6)" rx="2" ry="2" />
<text text-anchor="" x="1170.26" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_clone (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_clone (2 samples, 0.04%)</title><rect x="1166.5" y="1969" width="0.5" height="15.0" fill="rgb(229,166,8)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (1 samples, 0.02%)</title><rect x="482.8" y="1873" width="0.3" height="15.0" fill="rgb(230,186,29)" rx="2" ry="2" />
<text text-anchor="" x="485.85" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.09%)</title><rect x="15.0" y="1937" width="1.1" height="15.0" fill="rgb(254,64,39)" rx="2" ry="2" />
<text text-anchor="" x="18.02" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dup_mm (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dup_mm (2 samples, 0.04%)</title><rect x="94.1" y="1937" width="0.5" height="15.0" fill="rgb(213,50,49)" rx="2" ry="2" />
<text text-anchor="" x="97.10" y="1947.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (4 samples, 0.09%)</title><rect x="83.3" y="2001" width="1.0" height="15.0" fill="rgb(209,75,17)" rx="2" ry="2" />
<text text-anchor="" x="86.25" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_vma (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_vma (1 samples, 0.02%)</title><rect x="152.8" y="1921" width="0.3" height="15.0" fill="rgb(205,96,34)" rx="2" ry="2" />
<text text-anchor="" x="155.81" y="1931.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (2 samples, 0.04%)</title><rect x="253.0" y="1809" width="0.6" height="15.0" fill="rgb(207,208,36)" rx="2" ry="2" />
<text text-anchor="" x="256.03" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="25.3" y="1937" width="0.3" height="15.0" fill="rgb(217,16,22)" rx="2" ry="2" />
<text text-anchor="" x="28.34" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="769" width="0.8" height="15.0" fill="rgb(213,208,48)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_process_times (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.02%)</title><rect x="26.7" y="1825" width="0.2" height="15.0" fill="rgb(232,123,6)" rx="2" ry="2" />
<text text-anchor="" x="29.66" y="1835.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="1165.1" y="1969" width="0.3" height="15.0" fill="rgb(213,118,32)" rx="2" ry="2" />
<text text-anchor="" x="1168.14" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (2 samples, 0.04%)</title><rect x="1152.4" y="1921" width="0.6" height="15.0" fill="rgb(250,136,49)" rx="2" ry="2" />
<text text-anchor="" x="1155.45" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void std::vectormojo::system::RawChannel::WriteBuffer::Buffer, std::allocatormojo::system::RawChannel::WriteBuffer::Buffer ::_M_emplace_back_auxmojo::system::RawChannel::WriteBuffer::Buffer const&amp; (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>void std::vectormojo::system::RawChannel::WriteBuffer::Buffer, std::allocatormojo::system::RawChannel::WriteBuffer::Buffer ::_M_emplace_back_auxmojo::system::RawChannel::WriteBuffer::Buffer const&amp; (2 samples, 0.04%)</title><rect x="675.1" y="1489" width="0.5" height="15.0" fill="rgb(249,134,41)" rx="2" ry="2" />
<text text-anchor="" x="678.11" y="1499.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (5 samples, 0.11%)</title><rect x="761.8" y="1569" width="1.4" height="15.0" fill="rgb(222,179,29)" rx="2" ry="2" />
<text text-anchor="" x="764.85" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_IO_putc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_IO_putc (1 samples, 0.02%)</title><rect x="86.2" y="2033" width="0.2" height="15.0" fill="rgb(208,141,15)" rx="2" ry="2" />
<text text-anchor="" x="89.16" y="2043.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="881.6" y="1953" width="0.3" height="15.0" fill="rgb(249,13,33)" rx="2" ry="2" />
<text text-anchor="" x="884.65" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('acct_collect (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>acct_collect (1 samples, 0.02%)</title><rect x="64.7" y="1937" width="0.3" height="15.0" fill="rgb(251,22,42)" rx="2" ry="2" />
<text text-anchor="" x="67.74" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="407.2" y="1617" width="0.3" height="15.0" fill="rgb(249,137,7)" rx="2" ry="2" />
<text text-anchor="" x="410.21" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::OnMessageReceived (177 samples, 3.97%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::OnMessageReceived (177 samples, 3.97%)</title><rect x="654.2" y="1729" width="46.8" height="15.0" fill="rgb(246,189,51)" rx="2" ry="2" />
<text text-anchor="" x="657.21" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC:..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (8 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8 samples, 0.18%)</title><rect x="1185.0" y="1873" width="2.1" height="15.0" fill="rgb(235,202,16)" rx="2" ry="2" />
<text text-anchor="" x="1187.98" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('alloc_pages_vma (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_vma (1 samples, 0.02%)</title><rect x="1178.1" y="1937" width="0.3" height="15.0" fill="rgb(240,11,42)" rx="2" ry="2" />
<text text-anchor="" x="1181.10" y="1947.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="867.6" y="1985" width="0.3" height="15.0" fill="rgb(243,200,10)" rx="2" ry="2" />
<text text-anchor="" x="870.63" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (11 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (11 samples, 0.25%)</title><rect x="632.3" y="1777" width="2.9" height="15.0" fill="rgb(209,184,51)" rx="2" ry="2" />
<text text-anchor="" x="635.26" y="1787.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="62.1" y="1985" width="0.3" height="15.0" fill="rgb(247,7,25)" rx="2" ry="2" />
<text text-anchor="" x="65.10" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.02%)</title><rect x="329.7" y="1857" width="0.3" height="15.0" fill="rgb(225,1,21)" rx="2" ry="2" />
<text text-anchor="" x="332.73" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="225" width="0.3" height="15.0" fill="rgb(213,212,45)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.04%)</title><rect x="423.1" y="1633" width="0.5" height="15.0" fill="rgb(216,18,9)" rx="2" ry="2" />
<text text-anchor="" x="426.08" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1025" width="0.3" height="15.0" fill="rgb(240,19,6)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1035.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.02%)</title><rect x="10.0" y="1873" width="0.3" height="15.0" fill="rgb(230,210,43)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('lookup_real (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>lookup_real (1 samples, 0.02%)</title><rect x="1167.8" y="1905" width="0.3" height="15.0" fill="rgb(240,185,21)" rx="2" ry="2" />
<text text-anchor="" x="1170.79" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (2 samples, 0.04%)</title><rect x="116.0" y="1793" width="0.6" height="15.0" fill="rgb(254,19,19)" rx="2" ry="2" />
<text text-anchor="" x="119.05" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('execute_command_internal (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>execute_command_internal (2 samples, 0.04%)</title><rect x="93.0" y="2033" width="0.6" height="15.0" fill="rgb(217,221,37)" rx="2" ry="2" />
<text text-anchor="" x="96.04" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::__detail::_List_node_base::_M_unhook (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_unhook (2 samples, 0.04%)</title><rect x="543.4" y="1777" width="0.5" height="15.0" fill="rgb(214,111,8)" rx="2" ry="2" />
<text text-anchor="" x="546.41" y="1787.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.02%)</title><rect x="711.6" y="1649" width="0.3" height="15.0" fill="rgb(248,94,26)" rx="2" ry="2" />
<text text-anchor="" x="714.60" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection (1 samples, 0.02%)</title><rect x="14.5" y="1937" width="0.3" height="15.0" fill="rgb(243,154,2)" rx="2" ry="2" />
<text text-anchor="" x="17.50" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (1 samples, 0.02%)</title><rect x="118.4" y="1761" width="0.3" height="15.0" fill="rgb(235,213,48)" rx="2" ry="2" />
<text text-anchor="" x="121.43" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__hrtimer_start_range_ns (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="105.2" y="1841" width="0.3" height="15.0" fill="rgb(253,13,40)" rx="2" ry="2" />
<text text-anchor="" x="108.20" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (48 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (48 samples, 1.08%)</title><rect x="668.0" y="1585" width="12.7" height="15.0" fill="rgb(224,94,14)" rx="2" ry="2" />
<text text-anchor="" x="670.97" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('e1000_clean_rx_irq (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>e1000_clean_rx_irq (2 samples, 0.04%)</title><rect x="1039.0" y="1873" width="0.5" height="15.0" fill="rgb(205,150,19)" rx="2" ry="2" />
<text text-anchor="" x="1042.00" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('gov_queue_work (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>gov_queue_work (1 samples, 0.02%)</title><rect x="868.2" y="1953" width="0.2" height="15.0" fill="rgb(223,175,19)" rx="2" ry="2" />
<text text-anchor="" x="871.16" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_forward (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_forward (1 samples, 0.02%)</title><rect x="920.0" y="1873" width="0.3" height="15.0" fill="rgb(253,185,29)" rx="2" ry="2" />
<text text-anchor="" x="922.99" y="1883.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.02%)</title><rect x="876.1" y="1953" width="0.3" height="15.0" fill="rgb(223,80,2)" rx="2" ry="2" />
<text text-anchor="" x="879.09" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('handle_mm_fault (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (3 samples, 0.07%)</title><rect x="1177.8" y="1969" width="0.8" height="15.0" fill="rgb(240,56,8)" rx="2" ry="2" />
<text text-anchor="" x="1180.84" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="401" width="0.8" height="15.0" fill="rgb(246,161,37)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_idle (244 samples, 5.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_idle (244 samples, 5.47%)</title><rect x="955.7" y="1953" width="64.5" height="15.0" fill="rgb(223,66,34)" rx="2" ry="2" />
<text text-anchor="" x="958.69" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_i..</text>
</g>
<g class="func_g" onmouseover="s('do_sync_write (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_write (2 samples, 0.04%)</title><rect x="23.8" y="1921" width="0.5" height="15.0" fill="rgb(238,90,2)" rx="2" ry="2" />
<text text-anchor="" x="26.75" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="193" width="0.3" height="15.0" fill="rgb(211,54,19)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1825" width="0.3" height="15.0" fill="rgb(244,65,44)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_wakeup (19 samples, 0.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (19 samples, 0.43%)</title><rect x="915.0" y="1889" width="5.0" height="15.0" fill="rgb(218,206,25)" rx="2" ry="2" />
<text text-anchor="" x="917.97" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (6 samples, 0.13%)</title><rect x="566.7" y="1841" width="1.6" height="15.0" fill="rgb(246,45,19)" rx="2" ry="2" />
<text text-anchor="" x="569.68" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.07%)</title><rect x="570.4" y="1825" width="0.8" height="15.0" fill="rgb(241,215,42)" rx="2" ry="2" />
<text text-anchor="" x="573.38" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (10 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (10 samples, 0.22%)</title><rect x="755.5" y="1633" width="2.6" height="15.0" fill="rgb(237,98,48)" rx="2" ry="2" />
<text text-anchor="" x="758.50" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sk_run_filter (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sk_run_filter (1 samples, 0.02%)</title><rect x="155.7" y="1937" width="0.3" height="15.0" fill="rgb(251,6,16)" rx="2" ry="2" />
<text text-anchor="" x="158.71" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="153.1" y="1969" width="0.5" height="15.0" fill="rgb(235,116,24)" rx="2" ry="2" />
<text text-anchor="" x="156.07" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="64.5" y="1937" width="0.2" height="15.0" fill="rgb(210,31,31)" rx="2" ry="2" />
<text text-anchor="" x="67.48" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.04%)</title><rect x="1098.2" y="1857" width="0.6" height="15.0" fill="rgb(236,107,3)" rx="2" ry="2" />
<text text-anchor="" x="1101.23" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (4 samples, 0.09%)</title><rect x="580.2" y="1809" width="1.0" height="15.0" fill="rgb(208,65,9)" rx="2" ry="2" />
<text text-anchor="" x="583.17" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pte_alloc_one (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pte_alloc_one (1 samples, 0.02%)</title><rect x="83.3" y="1873" width="0.2" height="15.0" fill="rgb(207,15,13)" rx="2" ry="2" />
<text text-anchor="" x="86.25" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_readv_writev (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.02%)</title><rect x="41.5" y="1921" width="0.2" height="15.0" fill="rgb(234,140,29)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="41.5" y="1857" width="0.2" height="15.0" fill="rgb(215,85,7)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (5 samples, 0.11%)</title><rect x="75.8" y="2001" width="1.4" height="15.0" fill="rgb(227,99,53)" rx="2" ry="2" />
<text text-anchor="" x="78.85" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('groups_search (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>groups_search (1 samples, 0.02%)</title><rect x="884.3" y="1809" width="0.3" height="15.0" fill="rgb(221,211,20)" rx="2" ry="2" />
<text text-anchor="" x="887.29" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_map_object (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_map_object (1 samples, 0.02%)</title><rect x="90.9" y="2033" width="0.3" height="15.0" fill="rgb(219,214,48)" rx="2" ry="2" />
<text text-anchor="" x="93.92" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (6 samples, 0.13%)</title><rect x="1188.1" y="1969" width="1.6" height="15.0" fill="rgb(217,139,25)" rx="2" ry="2" />
<text text-anchor="" x="1191.15" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::~Pickle (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::~Pickle (2 samples, 0.04%)</title><rect x="683.6" y="1681" width="0.5" height="15.0" fill="rgb(220,171,37)" rx="2" ry="2" />
<text text-anchor="" x="686.57" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (1 samples, 0.02%)</title><rect x="16.6" y="1873" width="0.3" height="15.0" fill="rgb(220,19,43)" rx="2" ry="2" />
<text text-anchor="" x="19.61" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="433" width="0.3" height="15.0" fill="rgb(241,124,35)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (2 samples, 0.04%)</title><rect x="804.4" y="1825" width="0.6" height="15.0" fill="rgb(238,30,40)" rx="2" ry="2" />
<text text-anchor="" x="807.42" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (1 samples, 0.02%)</title><rect x="871.1" y="2033" width="0.2" height="15.0" fill="rgb(215,136,38)" rx="2" ry="2" />
<text text-anchor="" x="874.07" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1265" width="0.3" height="15.0" fill="rgb(228,24,54)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (13 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (13 samples, 0.29%)</title><rect x="192.2" y="1985" width="3.4" height="15.0" fill="rgb(219,207,7)" rx="2" ry="2" />
<text text-anchor="" x="195.21" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="870.0" y="1841" width="0.3" height="15.0" fill="rgb(210,113,48)" rx="2" ry="2" />
<text text-anchor="" x="873.01" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (5 samples, 0.11%)</title><rect x="549.0" y="1841" width="1.3" height="15.0" fill="rgb(211,45,3)" rx="2" ry="2" />
<text text-anchor="" x="551.96" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.02%)</title><rect x="362.3" y="1713" width="0.2" height="15.0" fill="rgb(237,61,39)" rx="2" ry="2" />
<text text-anchor="" x="365.25" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="181.6" y="1809" width="0.3" height="15.0" fill="rgb(247,132,38)" rx="2" ry="2" />
<text text-anchor="" x="184.63" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="42.0" y="1905" width="0.3" height="15.0" fill="rgb(251,11,52)" rx="2" ry="2" />
<text text-anchor="" x="45.00" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('putback_lru_page (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>putback_lru_page (1 samples, 0.02%)</title><rect x="161.5" y="1905" width="0.3" height="15.0" fill="rgb(227,189,33)" rx="2" ry="2" />
<text text-anchor="" x="164.53" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.02%)</title><rect x="24.0" y="1793" width="0.3" height="15.0" fill="rgb(216,125,44)" rx="2" ry="2" />
<text text-anchor="" x="27.02" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__fput (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fput (1 samples, 0.02%)</title><rect x="1181.0" y="1937" width="0.3" height="15.0" fill="rgb(253,195,50)" rx="2" ry="2" />
<text text-anchor="" x="1184.01" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (2 samples, 0.04%)</title><rect x="504.0" y="1761" width="0.5" height="15.0" fill="rgb(239,197,47)" rx="2" ry="2" />
<text text-anchor="" x="507.00" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_pte_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_pte_range (1 samples, 0.02%)</title><rect x="94.4" y="1905" width="0.2" height="15.0" fill="rgb(227,134,42)" rx="2" ry="2" />
<text text-anchor="" x="97.36" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sendto (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.02%)</title><rect x="27.2" y="2001" width="0.3" height="15.0" fill="rgb(219,45,41)" rx="2" ry="2" />
<text text-anchor="" x="30.19" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.02%)</title><rect x="27.2" y="1969" width="0.3" height="15.0" fill="rgb(237,81,47)" rx="2" ry="2" />
<text text-anchor="" x="30.19" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (2 samples, 0.04%)</title><rect x="332.6" y="1889" width="0.6" height="15.0" fill="rgb(231,193,13)" rx="2" ry="2" />
<text text-anchor="" x="335.64" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="1164.9" y="1873" width="0.2" height="15.0" fill="rgb(213,151,27)" rx="2" ry="2" />
<text text-anchor="" x="1167.88" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (1 samples, 0.02%)</title><rect x="42.3" y="1921" width="0.2" height="15.0" fill="rgb(218,9,30)" rx="2" ry="2" />
<text text-anchor="" x="45.26" y="1931.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.02%)</title><rect x="80.3" y="1937" width="0.3" height="15.0" fill="rgb(208,201,4)" rx="2" ry="2" />
<text text-anchor="" x="83.35" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (1 samples, 0.02%)</title><rect x="518.8" y="1729" width="0.3" height="15.0" fill="rgb(220,90,0)" rx="2" ry="2" />
<text text-anchor="" x="521.81" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('int_sqrt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>int_sqrt (1 samples, 0.02%)</title><rect x="1023.1" y="1969" width="0.3" height="15.0" fill="rgb(222,213,27)" rx="2" ry="2" />
<text text-anchor="" x="1026.13" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (9 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (9 samples, 0.20%)</title><rect x="115.8" y="1841" width="2.4" height="15.0" fill="rgb(252,191,31)" rx="2" ry="2" />
<text text-anchor="" x="118.78" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.02%)</title><rect x="14.2" y="1969" width="0.3" height="15.0" fill="rgb(229,219,53)" rx="2" ry="2" />
<text text-anchor="" x="17.23" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (9 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (9 samples, 0.20%)</title><rect x="1172.0" y="1969" width="2.4" height="15.0" fill="rgb(216,36,48)" rx="2" ry="2" />
<text text-anchor="" x="1175.02" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_readv_writev (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_readv_writev (1 samples, 0.02%)</title><rect x="1174.9" y="1953" width="0.3" height="15.0" fill="rgb(250,84,35)" rx="2" ry="2" />
<text text-anchor="" x="1177.93" y="1963.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="1167.3" y="1953" width="0.2" height="15.0" fill="rgb(248,86,28)" rx="2" ry="2" />
<text text-anchor="" x="1170.26" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_work_run (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_work_run (1 samples, 0.02%)</title><rect x="24.8" y="1969" width="0.3" height="15.0" fill="rgb(218,151,46)" rx="2" ry="2" />
<text text-anchor="" x="27.81" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_munmap (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_munmap (1 samples, 0.02%)</title><rect x="1177.0" y="1953" width="0.3" height="15.0" fill="rgb(235,149,49)" rx="2" ry="2" />
<text text-anchor="" x="1180.04" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('proc_get_inode (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>proc_get_inode (1 samples, 0.02%)</title><rect x="92.5" y="1841" width="0.3" height="15.0" fill="rgb(224,192,47)" rx="2" ry="2" />
<text text-anchor="" x="95.51" y="1851.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.04%)</title><rect x="466.5" y="1777" width="0.5" height="15.0" fill="rgb(252,18,31)" rx="2" ry="2" />
<text text-anchor="" x="469.45" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('handle_edge_irq (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_edge_irq (2 samples, 0.04%)</title><rect x="1037.9" y="1921" width="0.6" height="15.0" fill="rgb(250,109,9)" rx="2" ry="2" />
<text text-anchor="" x="1040.94" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_wait4 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_wait4 (1 samples, 0.02%)</title><rect x="87.2" y="2001" width="0.3" height="15.0" fill="rgb(253,45,33)" rx="2" ry="2" />
<text text-anchor="" x="90.22" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('follow_managed (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>follow_managed (1 samples, 0.02%)</title><rect x="881.1" y="1809" width="0.3" height="15.0" fill="rgb(246,106,52)" rx="2" ry="2" />
<text text-anchor="" x="884.12" y="1819.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.02%)</title><rect x="371.8" y="1793" width="0.2" height="15.0" fill="rgb(211,12,24)" rx="2" ry="2" />
<text text-anchor="" x="374.77" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (1 samples, 0.02%)</title><rect x="14.2" y="1985" width="0.3" height="15.0" fill="rgb(238,37,49)" rx="2" ry="2" />
<text text-anchor="" x="17.23" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('filename_lookup (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (4 samples, 0.09%)</title><rect x="75.8" y="1905" width="1.1" height="15.0" fill="rgb(209,12,24)" rx="2" ry="2" />
<text text-anchor="" x="78.85" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (191 samples, 4.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (191 samples, 4.28%)</title><rect x="241.7" y="1873" width="50.5" height="15.0" fill="rgb(227,47,26)" rx="2" ry="2" />
<text text-anchor="" x="244.66" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wak..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1473" width="0.3" height="15.0" fill="rgb(246,148,32)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ns_to_timeval (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ns_to_timeval (1 samples, 0.02%)</title><rect x="1146.4" y="1921" width="0.2" height="15.0" fill="rgb(209,58,28)" rx="2" ry="2" />
<text text-anchor="" x="1149.36" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ipc_mojo_perfte (2,594 samples, 58.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>ipc_mojo_perfte (2,594 samples, 58.14%)</title><rect x="181.6" y="2049" width="686.0" height="15.0" fill="rgb(229,68,47)" rx="2" ry="2" />
<text text-anchor="" x="184.63" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ipc_mojo_perfte</text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (1 samples, 0.02%)</title><rect x="1176.5" y="2017" width="0.3" height="15.0" fill="rgb(207,179,40)" rx="2" ry="2" />
<text text-anchor="" x="1179.51" y="2027.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_group_exit (1 samples, 0.02%)</title><rect x="64.7" y="1969" width="0.3" height="15.0" fill="rgb(222,111,43)" rx="2" ry="2" />
<text text-anchor="" x="67.74" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (120 samples, 2.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (120 samples, 2.69%)</title><rect x="493.4" y="1857" width="31.8" height="15.0" fill="rgb(208,32,9)" rx="2" ry="2" />
<text text-anchor="" x="496.42" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[u..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="13.2" y="1985" width="1.0" height="15.0" fill="rgb(243,112,45)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_active (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (2 samples, 0.04%)</title><rect x="558.0" y="1905" width="0.5" height="15.0" fill="rgb(206,210,17)" rx="2" ry="2" />
<text text-anchor="" x="560.95" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (2 samples, 0.04%)</title><rect x="875.6" y="1921" width="0.5" height="15.0" fill="rgb(225,127,4)" rx="2" ry="2" />
<text text-anchor="" x="878.56" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('____fput (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>____fput (1 samples, 0.02%)</title><rect x="1181.0" y="1953" width="0.3" height="15.0" fill="rgb(238,217,45)" rx="2" ry="2" />
<text text-anchor="" x="1184.01" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_file_free_security (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_free_security (1 samples, 0.02%)</title><rect x="877.1" y="1921" width="0.3" height="15.0" fill="rgb(225,41,17)" rx="2" ry="2" />
<text text-anchor="" x="880.15" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.02%)</title><rect x="674.3" y="1505" width="0.3" height="15.0" fill="rgb(245,38,27)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (4 samples, 0.09%)</title><rect x="1183.1" y="1809" width="1.1" height="15.0" fill="rgb(218,204,30)" rx="2" ry="2" />
<text text-anchor="" x="1186.12" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('lock_hrtimer_base.isra.19 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>lock_hrtimer_base.isra.19 (1 samples, 0.02%)</title><rect x="1157.7" y="1889" width="0.3" height="15.0" fill="rgb(246,128,11)" rx="2" ry="2" />
<text text-anchor="" x="1160.74" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.04%)</title><rect x="31.9" y="1905" width="0.6" height="15.0" fill="rgb(222,25,18)" rx="2" ry="2" />
<text text-anchor="" x="34.95" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_irq_enter (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_irq_enter (1 samples, 0.02%)</title><rect x="1038.5" y="1921" width="0.2" height="15.0" fill="rgb(228,126,30)" rx="2" ry="2" />
<text text-anchor="" x="1041.47" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ns_to_timespec (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>ns_to_timespec (3 samples, 0.07%)</title><rect x="1034.0" y="1953" width="0.8" height="15.0" fill="rgb(240,60,17)" rx="2" ry="2" />
<text text-anchor="" x="1036.97" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (20 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (20 samples, 0.45%)</title><rect x="538.1" y="1777" width="5.3" height="15.0" fill="rgb(231,91,6)" rx="2" ry="2" />
<text text-anchor="" x="541.12" y="1787.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.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (3 samples, 0.07%)</title><rect x="875.3" y="1937" width="0.8" height="15.0" fill="rgb(209,131,29)" rx="2" ry="2" />
<text text-anchor="" x="878.30" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__queue_delayed_work (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__queue_delayed_work (1 samples, 0.02%)</title><rect x="868.2" y="1921" width="0.2" height="15.0" fill="rgb(254,24,11)" rx="2" ry="2" />
<text text-anchor="" x="871.16" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (2 samples, 0.04%)</title><rect x="489.5" y="1889" width="0.5" height="15.0" fill="rgb(226,47,22)" rx="2" ry="2" />
<text text-anchor="" x="492.46" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (1 samples, 0.02%)</title><rect x="394.8" y="1825" width="0.2" height="15.0" fill="rgb(221,214,21)" rx="2" ry="2" />
<text text-anchor="" x="397.78" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpumask_next_and (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_and (1 samples, 0.02%)</title><rect x="1188.9" y="1793" width="0.3" height="15.0" fill="rgb(227,69,8)" rx="2" ry="2" />
<text text-anchor="" x="1191.94" y="1803.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 (40 samples, 0.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (40 samples, 0.90%)</title><rect x="341.4" y="1841" width="10.5" height="15.0" fill="rgb(234,87,30)" rx="2" ry="2" />
<text text-anchor="" x="344.36" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="769" width="0.3" height="15.0" fill="rgb(212,9,15)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_handle.isra.17 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (1 samples, 0.02%)</title><rect x="26.7" y="1841" width="0.2" height="15.0" fill="rgb(248,47,43)" rx="2" ry="2" />
<text text-anchor="" x="29.66" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1361" width="0.3" height="15.0" fill="rgb(213,148,23)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.02%)</title><rect x="645.2" y="1649" width="0.3" height="15.0" fill="rgb(223,199,30)" rx="2" ry="2" />
<text text-anchor="" x="648.22" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZNK4base8internal13WeakReference8is_validEv@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK4base8internal13WeakReference8is_validEv@plt (1 samples, 0.02%)</title><rect x="380.5" y="1889" width="0.3" height="15.0" fill="rgb(243,16,22)" rx="2" ry="2" />
<text text-anchor="" x="383.50" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4mojo6system8internal16CheckUserPointerILm4ELm4EEEvPKv@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4mojo6system8internal16CheckUserPointerILm4ELm4EEEvPKv@plt (1 samples, 0.02%)</title><rect x="455.3" y="1793" width="0.3" height="15.0" fill="rgb(217,216,20)" rx="2" ry="2" />
<text text-anchor="" x="458.34" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="16.6" y="1921" width="0.3" height="15.0" fill="rgb(232,56,32)" rx="2" ry="2" />
<text text-anchor="" x="19.61" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoReadMessage (55 samples, 1.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoReadMessage (55 samples, 1.23%)</title><rect x="705.5" y="1729" width="14.6" height="15.0" fill="rgb(253,197,18)" rx="2" ry="2" />
<text text-anchor="" x="708.52" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_page_rep (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_rep (4 samples, 0.09%)</title><rect x="1170.7" y="1953" width="1.1" height="15.0" fill="rgb(218,56,1)" rx="2" ry="2" />
<text text-anchor="" x="1173.69" y="1963.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="1186.8" y="1793" width="0.3" height="15.0" fill="rgb(205,204,47)" rx="2" ry="2" />
<text text-anchor="" x="1189.83" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('retint_signal (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>retint_signal (3 samples, 0.07%)</title><rect x="162.3" y="2017" width="0.8" height="15.0" fill="rgb(210,29,9)" rx="2" ry="2" />
<text text-anchor="" x="165.33" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('link_path_walk (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (1 samples, 0.02%)</title><rect x="881.1" y="1873" width="0.3" height="15.0" fill="rgb(226,197,15)" rx="2" ry="2" />
<text text-anchor="" x="884.12" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcmp_sse4_1 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcmp_sse4_1 (1 samples, 0.02%)</title><rect x="160.2" y="2017" width="0.3" height="15.0" fill="rgb(236,141,54)" rx="2" ry="2" />
<text text-anchor="" x="163.21" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection_range (1 samples, 0.02%)</title><rect x="151.2" y="1841" width="0.3" height="15.0" fill="rgb(206,156,0)" rx="2" ry="2" />
<text text-anchor="" x="154.22" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="31.9" y="1921" width="0.6" height="15.0" fill="rgb(231,213,27)" rx="2" ry="2" />
<text text-anchor="" x="34.95" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_numa_fault (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_numa_fault (1 samples, 0.02%)</title><rect x="149.6" y="177" width="0.3" height="15.0" fill="rgb(208,16,10)" rx="2" ry="2" />
<text text-anchor="" x="152.63" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="41.5" y="1825" width="0.2" height="15.0" fill="rgb(219,176,10)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::TraceMessageBegin (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageBegin (1 samples, 0.02%)</title><rect x="400.9" y="1745" width="0.2" height="15.0" fill="rgb(208,24,51)" rx="2" ry="2" />
<text text-anchor="" x="403.87" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_tick_fair (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_tick_fair (1 samples, 0.02%)</title><rect x="41.5" y="1681" width="0.2" height="15.0" fill="rgb(241,188,33)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.11%)</title><rect x="12.9" y="2001" width="1.3" height="15.0" fill="rgb(223,83,0)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.02%)</title><rect x="920.0" y="1889" width="0.3" height="15.0" fill="rgb(243,56,0)" rx="2" ry="2" />
<text text-anchor="" x="922.99" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ahci_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ahci_interrupt (1 samples, 0.02%)</title><rect x="1037.9" y="1873" width="0.3" height="15.0" fill="rgb(235,2,32)" rx="2" ry="2" />
<text text-anchor="" x="1040.94" y="1883.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="1167.8" y="2001" width="0.3" height="15.0" fill="rgb(246,27,27)" rx="2" ry="2" />
<text text-anchor="" x="1170.79" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (2 samples, 0.04%)</title><rect x="1188.1" y="1825" width="0.6" height="15.0" fill="rgb(242,138,20)" rx="2" ry="2" />
<text text-anchor="" x="1191.15" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (2 samples, 0.04%)</title><rect x="795.4" y="1745" width="0.6" height="15.0" fill="rgb(208,128,38)" rx="2" ry="2" />
<text text-anchor="" x="798.43" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_64_start_kernel (99 samples, 2.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_64_start_kernel (99 samples, 2.22%)</title><rect x="1134.5" y="2033" width="26.1" height="15.0" fill="rgb(208,193,34)" rx="2" ry="2" />
<text text-anchor="" x="1137.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x..</text>
</g>
<g class="func_g" onmouseover="s('do_futex (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.04%)</title><rect x="1182.6" y="1873" width="0.5" height="15.0" fill="rgb(216,178,8)" rx="2" ry="2" />
<text text-anchor="" x="1185.60" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_get_next_event (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_get_next_event (7 samples, 0.16%)</title><rect x="1090.6" y="1937" width="1.8" height="15.0" fill="rgb(240,152,11)" rx="2" ry="2" />
<text text-anchor="" x="1093.56" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('calc_load_enter_idle (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>calc_load_enter_idle (1 samples, 0.02%)</title><rect x="1154.0" y="1905" width="0.3" height="15.0" fill="rgb(206,3,41)" rx="2" ry="2" />
<text text-anchor="" x="1157.03" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_erase (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (1 samples, 0.02%)</title><rect x="1152.7" y="1889" width="0.3" height="15.0" fill="rgb(236,180,5)" rx="2" ry="2" />
<text text-anchor="" x="1155.71" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_munmap (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_munmap (1 samples, 0.02%)</title><rect x="35.4" y="1985" width="0.3" height="15.0" fill="rgb(233,115,28)" rx="2" ry="2" />
<text text-anchor="" x="38.39" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('file_update_time (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>file_update_time (1 samples, 0.02%)</title><rect x="153.3" y="1889" width="0.3" height="15.0" fill="rgb(253,67,3)" rx="2" ry="2" />
<text text-anchor="" x="156.33" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="881.6" y="1985" width="0.3" height="15.0" fill="rgb(205,67,11)" rx="2" ry="2" />
<text text-anchor="" x="884.65" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_fault (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (2 samples, 0.04%)</title><rect x="1179.2" y="2017" width="0.5" height="15.0" fill="rgb(242,68,43)" rx="2" ry="2" />
<text text-anchor="" x="1182.16" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_fixup (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_fixup (1 samples, 0.02%)</title><rect x="872.4" y="2033" width="0.3" height="15.0" fill="rgb(243,133,8)" rx="2" ry="2" />
<text text-anchor="" x="875.39" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1857" width="0.3" height="15.0" fill="rgb(239,225,52)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('flush_tlb_mm_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>flush_tlb_mm_range (1 samples, 0.02%)</title><rect x="162.9" y="1905" width="0.2" height="15.0" fill="rgb(239,45,10)" rx="2" ry="2" />
<text text-anchor="" x="165.86" y="1915.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (1 samples, 0.02%)</title><rect x="232.4" y="1873" width="0.3" height="15.0" fill="rgb(234,32,21)" rx="2" ry="2" />
<text text-anchor="" x="235.41" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_start (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start (1 samples, 0.02%)</title><rect x="1148.7" y="1809" width="0.3" height="15.0" fill="rgb(241,224,47)" rx="2" ry="2" />
<text text-anchor="" x="1151.74" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="2001" width="0.3" height="15.0" fill="rgb(243,91,3)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="2011.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>exit_mmap (1 samples, 0.02%)</title><rect x="1180.7" y="1953" width="0.3" height="15.0" fill="rgb(209,175,7)" rx="2" ry="2" />
<text text-anchor="" x="1183.74" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('link_path_walk (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (1 samples, 0.02%)</title><rect x="881.1" y="1841" width="0.3" height="15.0" fill="rgb(250,72,7)" rx="2" ry="2" />
<text text-anchor="" x="884.12" y="1851.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.09%)</title><rect x="158.1" y="1953" width="1.1" height="15.0" fill="rgb(226,178,43)" rx="2" ry="2" />
<text text-anchor="" x="161.10" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::Send (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (2 samples, 0.04%)</title><rect x="654.7" y="1713" width="0.6" height="15.0" fill="rgb(253,124,42)" rx="2" ry="2" />
<text text-anchor="" x="657.74" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('handle_mm_fault (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (6 samples, 0.13%)</title><rect x="80.1" y="1969" width="1.6" height="15.0" fill="rgb(233,199,52)" rx="2" ry="2" />
<text text-anchor="" x="83.08" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('call_timer_fn (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>call_timer_fn (2 samples, 0.04%)</title><rect x="912.6" y="1889" width="0.5" height="15.0" fill="rgb(247,24,33)" rx="2" ry="2" />
<text text-anchor="" x="915.59" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1041" width="0.3" height="15.0" fill="rgb(234,206,14)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('posix_cpu_timers_exit (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>posix_cpu_timers_exit (1 samples, 0.02%)</title><rect x="87.2" y="1937" width="0.3" height="15.0" fill="rgb(226,127,49)" rx="2" ry="2" />
<text text-anchor="" x="90.22" y="1947.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="25.3" y="2001" width="0.3" height="15.0" fill="rgb(224,74,0)" rx="2" ry="2" />
<text text-anchor="" x="28.34" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (37 samples, 0.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (37 samples, 0.83%)</title><rect x="108.6" y="2017" width="9.8" height="15.0" fill="rgb(207,58,45)" rx="2" ry="2" />
<text text-anchor="" x="111.64" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_softirq (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (4 samples, 0.09%)</title><rect x="912.1" y="1921" width="1.0" height="15.0" fill="rgb(231,197,38)" rx="2" ry="2" />
<text text-anchor="" x="915.06" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (11 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (11 samples, 0.25%)</title><rect x="604.2" y="1745" width="2.9" height="15.0" fill="rgb(225,77,50)" rx="2" ry="2" />
<text text-anchor="" x="607.23" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rebalance_domains (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (7 samples, 0.16%)</title><rect x="1146.6" y="1825" width="1.9" height="15.0" fill="rgb(239,3,53)" rx="2" ry="2" />
<text text-anchor="" x="1149.63" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('read_tsc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>read_tsc (1 samples, 0.02%)</title><rect x="1157.2" y="1921" width="0.3" height="15.0" fill="rgb(227,71,23)" rx="2" ry="2" />
<text text-anchor="" x="1160.21" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (28 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (28 samples, 0.63%)</title><rect x="582.0" y="1793" width="7.4" height="15.0" fill="rgb(246,63,34)" rx="2" ry="2" />
<text text-anchor="" x="585.02" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_mmap_pgoff (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap_pgoff (1 samples, 0.02%)</title><rect x="95.2" y="1969" width="0.2" height="15.0" fill="rgb(220,6,21)" rx="2" ry="2" />
<text text-anchor="" x="98.15" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sys_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_open (1 samples, 0.02%)</title><rect x="1168.1" y="1953" width="0.2" height="15.0" fill="rgb(207,214,29)" rx="2" ry="2" />
<text text-anchor="" x="1171.05" y="1963.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (1 samples, 0.02%)</title><rect x="767.4" y="1697" width="0.3" height="15.0" fill="rgb(209,201,33)" rx="2" ry="2" />
<text text-anchor="" x="770.40" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="513" width="0.3" height="15.0" fill="rgb(220,41,3)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdaptervoid (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdaptervoid (2 samples, 0.04%)</title><rect x="478.1" y="1873" width="0.5" height="15.0" fill="rgb(245,17,30)" rx="2" ry="2" />
<text text-anchor="" x="481.09" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="1186.0" y="1825" width="0.8" height="15.0" fill="rgb(234,124,54)" rx="2" ry="2" />
<text text-anchor="" x="1189.03" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4mojo6system8internal25CheckUserPointerWithCountILm1ELm1EEEvPKvm@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4mojo6system8internal25CheckUserPointerWithCountILm1ELm1EEEvPKvm@plt (1 samples, 0.02%)</title><rect x="459.8" y="1729" width="0.3" height="15.0" fill="rgb(205,52,7)" rx="2" ry="2" />
<text text-anchor="" x="462.84" y="1739.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.02%)</title><rect x="569.6" y="1825" width="0.3" height="15.0" fill="rgb(232,147,23)" rx="2" ry="2" />
<text text-anchor="" x="572.59" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_hrtimer (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (2 samples, 0.04%)</title><rect x="1106.2" y="1937" width="0.5" height="15.0" fill="rgb(231,98,49)" rx="2" ry="2" />
<text text-anchor="" x="1109.17" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="785" width="0.8" height="15.0" fill="rgb(208,181,50)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (2 samples, 0.04%)</title><rect x="167.6" y="1873" width="0.5" height="15.0" fill="rgb(226,76,41)" rx="2" ry="2" />
<text text-anchor="" x="170.62" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sys_poll (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_poll (1 samples, 0.02%)</title><rect x="870.8" y="1953" width="0.3" height="15.0" fill="rgb(242,122,19)" rx="2" ry="2" />
<text text-anchor="" x="873.80" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (38 samples, 0.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (38 samples, 0.85%)</title><rect x="784.6" y="1729" width="10.0" height="15.0" fill="rgb(251,200,17)" rx="2" ry="2" />
<text text-anchor="" x="787.59" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (1 samples, 0.02%)</title><rect x="31.7" y="1825" width="0.2" height="15.0" fill="rgb(250,211,52)" rx="2" ry="2" />
<text text-anchor="" x="34.69" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (9 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (9 samples, 0.20%)</title><rect x="115.8" y="1857" width="2.4" height="15.0" fill="rgb(207,94,6)" rx="2" ry="2" />
<text text-anchor="" x="118.78" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_nohz_idle_exit (13 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_nohz_idle_exit (13 samples, 0.29%)</title><rect x="1156.9" y="1953" width="3.5" height="15.0" fill="rgb(239,191,13)" rx="2" ry="2" />
<text text-anchor="" x="1159.94" y="1963.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="91.2" y="2001" width="0.3" height="15.0" fill="rgb(216,33,2)" rx="2" ry="2" />
<text text-anchor="" x="94.19" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_futex (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_futex (2 samples, 0.04%)</title><rect x="1182.6" y="1841" width="0.5" height="15.0" fill="rgb(232,107,31)" rx="2" ry="2" />
<text text-anchor="" x="1185.60" y="1851.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.02%)</title><rect x="387.4" y="1793" width="0.2" height="15.0" fill="rgb(242,75,40)" rx="2" ry="2" />
<text text-anchor="" x="390.38" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (15 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (15 samples, 0.34%)</title><rect x="174.5" y="2033" width="4.0" height="15.0" fill="rgb(205,66,10)" rx="2" ry="2" />
<text text-anchor="" x="177.49" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sed (10 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>sed (10 samples, 0.22%)</title><rect x="876.6" y="2049" width="2.7" height="15.0" fill="rgb(241,38,48)" rx="2" ry="2" />
<text text-anchor="" x="879.62" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tcp_rcv_established (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="1039.3" y="1681" width="0.2" height="15.0" fill="rgb(216,175,8)" rx="2" ry="2" />
<text text-anchor="" x="1042.26" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (13 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (13 samples, 0.29%)</title><rect x="515.1" y="1633" width="3.4" height="15.0" fill="rgb(226,29,22)" rx="2" ry="2" />
<text text-anchor="" x="518.11" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (2 samples, 0.04%)</title><rect x="370.5" y="1777" width="0.5" height="15.0" fill="rgb(226,222,21)" rx="2" ry="2" />
<text text-anchor="" x="373.45" y="1787.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.02%)</title><rect x="871.1" y="1937" width="0.2" height="15.0" fill="rgb(219,107,23)" rx="2" ry="2" />
<text text-anchor="" x="874.07" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('XPending@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>XPending@plt (1 samples, 0.02%)</title><rect x="138.3" y="1985" width="0.2" height="15.0" fill="rgb(252,122,15)" rx="2" ry="2" />
<text text-anchor="" x="141.26" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (2 samples, 0.04%)</title><rect x="359.1" y="1729" width="0.5" height="15.0" fill="rgb(221,129,6)" rx="2" ry="2" />
<text text-anchor="" x="362.08" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="673" width="0.8" height="15.0" fill="rgb(247,159,37)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="870.0" y="1889" width="0.3" height="15.0" fill="rgb(229,105,50)" rx="2" ry="2" />
<text text-anchor="" x="873.01" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::WriteMessage (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::WriteMessage (3 samples, 0.07%)</title><rect x="682.2" y="1665" width="0.8" height="15.0" fill="rgb(242,179,32)" rx="2" ry="2" />
<text text-anchor="" x="685.25" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (32 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (32 samples, 0.72%)</title><rect x="669.6" y="1537" width="8.4" height="15.0" fill="rgb(222,83,34)" rx="2" ry="2" />
<text text-anchor="" x="672.55" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="869.0" y="1969" width="0.2" height="15.0" fill="rgb(210,60,5)" rx="2" ry="2" />
<text text-anchor="" x="871.95" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="97.5" y="2001" width="0.3" height="15.0" fill="rgb(251,45,13)" rx="2" ry="2" />
<text text-anchor="" x="100.53" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="897" width="0.3" height="15.0" fill="rgb(243,73,34)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scsi_finish_command (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>scsi_finish_command (1 samples, 0.02%)</title><rect x="1038.7" y="1873" width="0.3" height="15.0" fill="rgb(246,4,9)" rx="2" ry="2" />
<text text-anchor="" x="1041.73" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (101 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (101 samples, 2.26%)</title><rect x="498.4" y="1841" width="26.8" height="15.0" fill="rgb(214,30,26)" rx="2" ry="2" />
<text text-anchor="" x="501.45" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (2 samples, 0.04%)</title><rect x="116.0" y="1809" width="0.6" height="15.0" fill="rgb(212,18,20)" rx="2" ry="2" />
<text text-anchor="" x="119.05" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_cpu_has_callbacks (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_cpu_has_callbacks (1 samples, 0.02%)</title><rect x="1156.4" y="1889" width="0.3" height="15.0" fill="rgb(231,150,13)" rx="2" ry="2" />
<text text-anchor="" x="1159.41" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_hot_cold_page (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_hot_cold_page (1 samples, 0.02%)</title><rect x="1172.8" y="1809" width="0.3" height="15.0" fill="rgb(241,109,12)" rx="2" ry="2" />
<text text-anchor="" x="1175.81" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_enable (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_enable (4 samples, 0.09%)</title><rect x="1136.3" y="1857" width="1.1" height="15.0" fill="rgb(230,217,53)" rx="2" ry="2" />
<text text-anchor="" x="1139.32" y="1867.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="882.2" y="1889" width="0.2" height="15.0" fill="rgb(222,83,26)" rx="2" ry="2" />
<text text-anchor="" x="885.17" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (2 samples, 0.04%)</title><rect x="524.1" y="1793" width="0.5" height="15.0" fill="rgb(253,51,9)" rx="2" ry="2" />
<text text-anchor="" x="527.10" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_page_fault (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (3 samples, 0.07%)</title><rect x="156.8" y="1969" width="0.8" height="15.0" fill="rgb(231,18,7)" rx="2" ry="2" />
<text text-anchor="" x="159.77" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('lookup_real (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>lookup_real (1 samples, 0.02%)</title><rect x="92.5" y="1905" width="0.3" height="15.0" fill="rgb(231,24,26)" rx="2" ry="2" />
<text text-anchor="" x="95.51" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tlb_flush_mmu.part.56 (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>tlb_flush_mmu.part.56 (4 samples, 0.09%)</title><rect x="1172.0" y="1873" width="1.1" height="15.0" fill="rgb(215,112,45)" rx="2" ry="2" />
<text text-anchor="" x="1175.02" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_exit (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (3 samples, 0.07%)</title><rect x="1038.7" y="1937" width="0.8" height="15.0" fill="rgb(212,68,20)" rx="2" ry="2" />
<text text-anchor="" x="1041.73" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="481" width="0.3" height="15.0" fill="rgb(244,200,38)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('int_with_check (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>int_with_check (1 samples, 0.02%)</title><rect x="161.0" y="2017" width="0.3" height="15.0" fill="rgb(216,187,45)" rx="2" ry="2" />
<text text-anchor="" x="164.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1105" width="0.3" height="15.0" fill="rgb(227,86,41)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_write (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_write (1 samples, 0.02%)</title><rect x="65.3" y="1937" width="0.2" height="15.0" fill="rgb(241,66,30)" rx="2" ry="2" />
<text text-anchor="" x="68.27" y="1947.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.02%)</title><rect x="743.3" y="1745" width="0.3" height="15.0" fill="rgb(237,58,48)" rx="2" ry="2" />
<text text-anchor="" x="746.33" y="1755.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.02%)</title><rect x="724.3" y="1777" width="0.3" height="15.0" fill="rgb(238,9,40)" rx="2" ry="2" />
<text text-anchor="" x="727.29" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadMessageBytes (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadMessageBytes (3 samples, 0.07%)</title><rect x="474.4" y="1841" width="0.8" height="15.0" fill="rgb(240,3,32)" rx="2" ry="2" />
<text text-anchor="" x="477.38" y="1851.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.02%)</title><rect x="330.0" y="1857" width="0.3" height="15.0" fill="rgb(211,168,33)" rx="2" ry="2" />
<text text-anchor="" x="332.99" y="1867.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="592.1" y="1777" width="0.2" height="15.0" fill="rgb(233,181,40)" rx="2" ry="2" />
<text text-anchor="" x="595.07" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_file_perm (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (1 samples, 0.02%)</title><rect x="153.1" y="1857" width="0.2" height="15.0" fill="rgb(225,193,26)" rx="2" ry="2" />
<text text-anchor="" x="156.07" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::ReadMessage (37 samples, 0.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::ReadMessage (37 samples, 0.83%)</title><rect x="457.5" y="1793" width="9.7" height="15.0" fill="rgb(246,153,45)" rx="2" ry="2" />
<text text-anchor="" x="460.46" y="1803.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="878.7" y="2017" width="0.3" height="15.0" fill="rgb(207,60,30)" rx="2" ry="2" />
<text text-anchor="" x="881.74" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('poll_schedule_timeout (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (4 samples, 0.09%)</title><rect x="1188.1" y="1921" width="1.1" height="15.0" fill="rgb(231,100,33)" rx="2" ry="2" />
<text text-anchor="" x="1191.15" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('migrate_page (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>migrate_page (1 samples, 0.02%)</title><rect x="156.8" y="1873" width="0.2" height="15.0" fill="rgb(232,48,20)" rx="2" ry="2" />
<text text-anchor="" x="159.77" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_irq_enter (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_irq_enter (2 samples, 0.04%)</title><rect x="911.0" y="1921" width="0.5" height="15.0" fill="rgb(220,49,45)" rx="2" ry="2" />
<text text-anchor="" x="914.00" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_page_rep (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_rep (1 samples, 0.02%)</title><rect x="882.2" y="1841" width="0.2" height="15.0" fill="rgb(225,95,40)" rx="2" ry="2" />
<text text-anchor="" x="885.17" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_process (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.02%)</title><rect x="912.9" y="1857" width="0.2" height="15.0" fill="rgb(206,162,11)" rx="2" ry="2" />
<text text-anchor="" x="915.85" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.04%)</title><rect x="581.5" y="1809" width="0.5" height="15.0" fill="rgb(229,196,13)" rx="2" ry="2" />
<text text-anchor="" x="584.49" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('process_timeout (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>process_timeout (1 samples, 0.02%)</title><rect x="912.9" y="1873" width="0.2" height="15.0" fill="rgb(242,132,36)" rx="2" ry="2" />
<text text-anchor="" x="915.85" y="1883.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.02%)</title><rect x="404.6" y="1681" width="0.2" height="15.0" fill="rgb(216,72,23)" rx="2" ry="2" />
<text text-anchor="" x="407.57" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_blocked_averages (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (2 samples, 0.04%)</title><rect x="114.5" y="1777" width="0.5" height="15.0" fill="rgb(209,127,0)" rx="2" ry="2" />
<text text-anchor="" x="117.46" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('filename_lookup (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (1 samples, 0.02%)</title><rect x="884.3" y="1921" width="0.3" height="15.0" fill="rgb(219,148,13)" rx="2" ry="2" />
<text text-anchor="" x="887.29" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.02%)</title><rect x="875.0" y="1905" width="0.3" height="15.0" fill="rgb(230,99,50)" rx="2" ry="2" />
<text text-anchor="" x="878.03" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_inode (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_inode (1 samples, 0.02%)</title><rect x="1169.6" y="1889" width="0.3" height="15.0" fill="rgb(234,74,22)" rx="2" ry="2" />
<text text-anchor="" x="1172.64" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_exit_group (1 samples, 0.02%)</title><rect x="879.0" y="2017" width="0.3" height="15.0" fill="rgb(238,45,22)" rx="2" ry="2" />
<text text-anchor="" x="882.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_openat (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_openat (1 samples, 0.02%)</title><rect x="883.0" y="1953" width="0.2" height="15.0" fill="rgb(244,22,11)" rx="2" ry="2" />
<text text-anchor="" x="885.97" y="1963.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.02%)</title><rect x="310.7" y="1905" width="0.3" height="15.0" fill="rgb(227,190,49)" rx="2" ry="2" />
<text text-anchor="" x="313.69" y="1915.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (1 samples, 0.02%)</title><rect x="26.9" y="1985" width="0.3" height="15.0" fill="rgb(216,182,43)" rx="2" ry="2" />
<text text-anchor="" x="29.93" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (47 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (47 samples, 1.05%)</title><rect x="506.6" y="1745" width="12.5" height="15.0" fill="rgb(244,34,18)" rx="2" ry="2" />
<text text-anchor="" x="509.65" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (4 samples, 0.09%)</title><rect x="674.6" y="1505" width="1.0" height="15.0" fill="rgb(241,19,36)" rx="2" ry="2" />
<text text-anchor="" x="677.58" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (4 samples, 0.09%)</title><rect x="113.9" y="1841" width="1.1" height="15.0" fill="rgb(215,53,28)" rx="2" ry="2" />
<text text-anchor="" x="116.93" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="209" width="0.3" height="15.0" fill="rgb(207,95,19)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="219.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>exit_mmap (1 samples, 0.02%)</title><rect x="879.0" y="1953" width="0.3" height="15.0" fill="rgb(208,195,37)" rx="2" ry="2" />
<text text-anchor="" x="882.00" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1041" width="0.3" height="15.0" fill="rgb(208,125,19)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.04%)</title><rect x="31.9" y="1825" width="0.6" height="15.0" fill="rgb(213,159,26)" rx="2" ry="2" />
<text text-anchor="" x="34.95" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sigsetjmp (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sigsetjmp (1 samples, 0.02%)</title><rect x="884.0" y="2033" width="0.3" height="15.0" fill="rgb(246,5,45)" rx="2" ry="2" />
<text text-anchor="" x="887.03" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_open (1 samples, 0.02%)</title><rect x="1176.2" y="1985" width="0.3" height="15.0" fill="rgb(226,215,7)" rx="2" ry="2" />
<text text-anchor="" x="1179.25" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1297" width="0.3" height="15.0" fill="rgb(223,2,0)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1307.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="92.5" y="2001" width="0.3" height="15.0" fill="rgb(254,182,7)" rx="2" ry="2" />
<text text-anchor="" x="95.51" y="2011.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.02%)</title><rect x="627.5" y="1617" width="0.3" height="15.0" fill="rgb(217,32,8)" rx="2" ry="2" />
<text text-anchor="" x="630.50" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (36 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (36 samples, 0.81%)</title><rect x="358.3" y="1777" width="9.5" height="15.0" fill="rgb(206,133,47)" rx="2" ry="2" />
<text text-anchor="" x="361.29" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_openat (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_openat (1 samples, 0.02%)</title><rect x="90.9" y="1937" width="0.3" height="15.0" fill="rgb(241,151,33)" rx="2" ry="2" />
<text text-anchor="" x="93.92" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('flush_old_exec (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>flush_old_exec (1 samples, 0.02%)</title><rect x="83.8" y="1937" width="0.2" height="15.0" fill="rgb(213,81,38)" rx="2" ry="2" />
<text text-anchor="" x="86.78" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="118.4" y="1857" width="0.3" height="15.0" fill="rgb(244,27,46)" rx="2" ry="2" />
<text text-anchor="" x="121.43" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpumask_next_and (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_and (1 samples, 0.02%)</title><rect x="1147.2" y="1777" width="0.2" height="15.0" fill="rgb(216,55,23)" rx="2" ry="2" />
<text text-anchor="" x="1150.16" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_enable_asynccancel (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (3 samples, 0.07%)</title><rect x="638.3" y="1825" width="0.8" height="15.0" fill="rgb(221,25,13)" rx="2" ry="2" />
<text text-anchor="" x="641.35" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ktime_get (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get (2 samples, 0.04%)</title><rect x="1113.6" y="1985" width="0.5" height="15.0" fill="rgb(243,92,14)" rx="2" ry="2" />
<text text-anchor="" x="1116.57" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_get_page (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_get_page (1 samples, 0.02%)</title><rect x="97.5" y="1921" width="0.3" height="15.0" fill="rgb(214,176,23)" rx="2" ry="2" />
<text text-anchor="" x="100.53" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kthread (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kthread (1 samples, 0.02%)</title><rect x="868.4" y="2017" width="0.3" height="15.0" fill="rgb(235,221,21)" rx="2" ry="2" />
<text text-anchor="" x="871.42" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.04%)</title><rect x="167.6" y="1953" width="0.5" height="15.0" fill="rgb(226,122,30)" rx="2" ry="2" />
<text text-anchor="" x="170.62" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="337" width="0.8" height="15.0" fill="rgb(225,163,30)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="347.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.04%)</title><rect x="650.5" y="1729" width="0.5" height="15.0" fill="rgb(237,214,2)" rx="2" ry="2" />
<text text-anchor="" x="653.51" y="1739.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.02%)</title><rect x="869.0" y="1953" width="0.2" height="15.0" fill="rgb(209,103,10)" rx="2" ry="2" />
<text text-anchor="" x="871.95" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('g_utf8_pointer_to_offset (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>g_utf8_pointer_to_offset (2 samples, 0.04%)</title><rect x="180.8" y="2033" width="0.6" height="15.0" fill="rgb(251,136,39)" rx="2" ry="2" />
<text text-anchor="" x="183.84" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="427.3" y="1649" width="0.3" height="15.0" fill="rgb(207,112,52)" rx="2" ry="2" />
<text text-anchor="" x="430.31" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (3 samples, 0.07%)</title><rect x="197.0" y="2017" width="0.8" height="15.0" fill="rgb(205,19,38)" rx="2" ry="2" />
<text text-anchor="" x="199.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (1 samples, 0.02%)</title><rect x="42.0" y="1825" width="0.3" height="15.0" fill="rgb(219,69,39)" rx="2" ry="2" />
<text text-anchor="" x="45.00" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('proc_root_lookup (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>proc_root_lookup (1 samples, 0.02%)</title><rect x="92.5" y="1889" width="0.3" height="15.0" fill="rgb(226,117,47)" rx="2" ry="2" />
<text text-anchor="" x="95.51" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (12 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (12 samples, 0.27%)</title><rect x="1181.3" y="2001" width="3.1" height="15.0" fill="rgb(243,68,29)" rx="2" ry="2" />
<text text-anchor="" x="1184.27" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::ReadBuffer::GetBuffer (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::ReadBuffer::GetBuffer (4 samples, 0.09%)</title><rect x="552.4" y="1873" width="1.1" height="15.0" fill="rgb(206,28,52)" rx="2" ry="2" />
<text text-anchor="" x="555.40" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="34.3" y="2033" width="0.3" height="15.0" fill="rgb(209,151,17)" rx="2" ry="2" />
<text text-anchor="" x="37.33" y="2043.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.02%)</title><rect x="421.0" y="1617" width="0.2" height="15.0" fill="rgb(209,81,54)" rx="2" ry="2" />
<text text-anchor="" x="423.96" y="1627.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.02%)</title><rect x="42.0" y="1841" width="0.3" height="15.0" fill="rgb(233,139,0)" rx="2" ry="2" />
<text text-anchor="" x="45.00" y="1851.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (1 samples, 0.02%)</title><rect x="369.7" y="1777" width="0.2" height="15.0" fill="rgb(238,157,47)" rx="2" ry="2" />
<text text-anchor="" x="372.66" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="353" width="0.3" height="15.0" fill="rgb(215,215,2)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (1 samples, 0.02%)</title><rect x="502.2" y="1761" width="0.2" height="15.0" fill="rgb(216,144,53)" rx="2" ry="2" />
<text text-anchor="" x="505.15" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1297" width="0.3" height="15.0" fill="rgb(246,105,15)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fuse_lookup (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>fuse_lookup (1 samples, 0.02%)</title><rect x="76.4" y="1825" width="0.2" height="15.0" fill="rgb(241,4,43)" rx="2" ry="2" />
<text text-anchor="" x="79.38" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('numa_migrate_prep (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>numa_migrate_prep (1 samples, 0.02%)</title><rect x="157.0" y="1921" width="0.3" height="15.0" fill="rgb(208,119,1)" rx="2" ry="2" />
<text text-anchor="" x="160.04" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clone (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clone (1 samples, 0.02%)</title><rect x="187.2" y="2017" width="0.2" height="15.0" fill="rgb(221,70,49)" rx="2" ry="2" />
<text text-anchor="" x="190.19" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_64_start_reservations (99 samples, 2.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_64_start_reservations (99 samples, 2.22%)</title><rect x="1134.5" y="2017" width="26.1" height="15.0" fill="rgb(221,28,24)" rx="2" ry="2" />
<text text-anchor="" x="1137.46" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x..</text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (1 samples, 0.02%)</title><rect x="499.8" y="1777" width="0.2" height="15.0" fill="rgb(212,118,13)" rx="2" ry="2" />
<text text-anchor="" x="502.77" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_enable (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_enable (4 samples, 0.09%)</title><rect x="873.4" y="1809" width="1.1" height="15.0" fill="rgb(219,186,41)" rx="2" ry="2" />
<text text-anchor="" x="876.45" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_IO_ferror (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_IO_ferror (1 samples, 0.02%)</title><rect x="65.0" y="2017" width="0.3" height="15.0" fill="rgb(236,147,23)" rx="2" ry="2" />
<text text-anchor="" x="68.01" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (28 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (28 samples, 0.63%)</title><rect x="511.4" y="1697" width="7.4" height="15.0" fill="rgb(218,117,13)" rx="2" ry="2" />
<text text-anchor="" x="514.41" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="305" width="0.8" height="15.0" fill="rgb(247,114,20)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="76.6" y="1809" width="0.3" height="15.0" fill="rgb(244,173,30)" rx="2" ry="2" />
<text text-anchor="" x="79.64" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_fault (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (4 samples, 0.09%)</title><rect x="1177.8" y="2017" width="1.1" height="15.0" fill="rgb(206,193,14)" rx="2" ry="2" />
<text text-anchor="" x="1180.84" y="2027.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="1167.3" y="1969" width="0.2" height="15.0" fill="rgb(227,27,39)" rx="2" ry="2" />
<text text-anchor="" x="1170.26" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="880.3" y="1969" width="0.3" height="15.0" fill="rgb(228,217,19)" rx="2" ry="2" />
<text text-anchor="" x="883.32" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (1 samples, 0.02%)</title><rect x="153.6" y="1777" width="0.3" height="15.0" fill="rgb(240,111,40)" rx="2" ry="2" />
<text text-anchor="" x="156.60" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (10 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (10 samples, 0.22%)</title><rect x="1095.6" y="1841" width="2.6" height="15.0" fill="rgb(225,204,40)" rx="2" ry="2" />
<text text-anchor="" x="1098.59" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1873" width="0.3" height="15.0" fill="rgb(241,219,5)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_fault (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (2 samples, 0.04%)</title><rect x="1165.7" y="1985" width="0.5" height="15.0" fill="rgb(229,144,29)" rx="2" ry="2" />
<text text-anchor="" x="1168.67" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="165.8" y="1985" width="0.2" height="15.0" fill="rgb(205,219,51)" rx="2" ry="2" />
<text text-anchor="" x="168.76" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.02%)</title><rect x="31.9" y="1777" width="0.3" height="15.0" fill="rgb(254,212,51)" rx="2" ry="2" />
<text text-anchor="" x="34.95" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1281" width="0.3" height="15.0" fill="rgb(251,101,23)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="341.1" y="1793" width="0.3" height="15.0" fill="rgb(217,104,14)" rx="2" ry="2" />
<text text-anchor="" x="344.10" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_commit_txn (120 samples, 2.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_commit_txn (120 samples, 2.69%)</title><rect x="921.0" y="1873" width="31.8" height="15.0" fill="rgb(246,185,20)" rx="2" ry="2" />
<text text-anchor="" x="924.05" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x8..</text>
</g>
<g class="func_g" onmouseover="s('strlen@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>strlen@plt (1 samples, 0.02%)</title><rect x="83.0" y="2017" width="0.3" height="15.0" fill="rgb(238,183,49)" rx="2" ry="2" />
<text text-anchor="" x="85.99" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.02%)</title><rect x="367.3" y="1713" width="0.2" height="15.0" fill="rgb(250,45,1)" rx="2" ry="2" />
<text text-anchor="" x="370.28" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('od_dbs_timer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>od_dbs_timer (1 samples, 0.02%)</title><rect x="868.2" y="1969" width="0.2" height="15.0" fill="rgb(215,197,26)" rx="2" ry="2" />
<text text-anchor="" x="871.16" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_start_main (1,934 samples, 43.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (1,934 samples, 43.34%)</title><rect x="297.7" y="2033" width="511.5" height="15.0" fill="rgb(239,77,27)" rx="2" ry="2" />
<text text-anchor="" x="300.73" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (7 samples, 0.16%)</title><rect x="309.1" y="1921" width="1.9" height="15.0" fill="rgb(223,56,24)" rx="2" ry="2" />
<text text-anchor="" x="312.10" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1186.6" y="1665" width="0.2" height="15.0" fill="rgb(220,107,30)" rx="2" ry="2" />
<text text-anchor="" x="1189.56" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clockevents_program_event (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clockevents_program_event (2 samples, 0.04%)</title><rect x="920.3" y="1889" width="0.5" height="15.0" fill="rgb(221,110,54)" rx="2" ry="2" />
<text text-anchor="" x="923.26" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="151.0" y="1873" width="0.2" height="15.0" fill="rgb(240,15,0)" rx="2" ry="2" />
<text text-anchor="" x="153.95" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__queue_work (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__queue_work (1 samples, 0.02%)</title><rect x="912.6" y="1857" width="0.3" height="15.0" fill="rgb(240,114,28)" rx="2" ry="2" />
<text text-anchor="" x="915.59" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('realloc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>realloc (1 samples, 0.02%)</title><rect x="172.1" y="2017" width="0.3" height="15.0" fill="rgb(253,163,30)" rx="2" ry="2" />
<text text-anchor="" x="175.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_cpu_sd_state_idle (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_cpu_sd_state_idle (5 samples, 0.11%)</title><rect x="1110.7" y="1985" width="1.3" height="15.0" fill="rgb(211,206,36)" rx="2" ry="2" />
<text text-anchor="" x="1113.66" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pm_qos_request (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>pm_qos_request (3 samples, 0.07%)</title><rect x="1036.1" y="1969" width="0.8" height="15.0" fill="rgb(253,148,10)" rx="2" ry="2" />
<text text-anchor="" x="1039.09" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (6 samples, 0.13%)</title><rect x="756.6" y="1617" width="1.5" height="15.0" fill="rgb(233,104,51)" rx="2" ry="2" />
<text text-anchor="" x="759.56" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_group_power (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_group_power (1 samples, 0.02%)</title><rect x="114.2" y="1745" width="0.3" height="15.0" fill="rgb(246,108,5)" rx="2" ry="2" />
<text text-anchor="" x="117.20" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="870.3" y="2001" width="0.8" height="15.0" fill="rgb(211,127,10)" rx="2" ry="2" />
<text text-anchor="" x="873.27" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_notify_resume (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_notify_resume (1 samples, 0.02%)</title><rect x="157.6" y="1985" width="0.2" height="15.0" fill="rgb(217,185,2)" rx="2" ry="2" />
<text text-anchor="" x="160.57" y="1995.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.02%)</title><rect x="874.8" y="1937" width="0.2" height="15.0" fill="rgb(230,174,3)" rx="2" ry="2" />
<text text-anchor="" x="877.77" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_select (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_select (1 samples, 0.02%)</title><rect x="871.9" y="1937" width="0.2" height="15.0" fill="rgb(220,182,22)" rx="2" ry="2" />
<text text-anchor="" x="874.86" y="1947.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (2 samples, 0.04%)</title><rect x="278.4" y="1729" width="0.6" height="15.0" fill="rgb(222,18,17)" rx="2" ry="2" />
<text text-anchor="" x="281.42" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="149.1" y="113" width="0.5" height="15.0" fill="rgb(211,194,26)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (2 samples, 0.04%)</title><rect x="205.2" y="1937" width="0.5" height="15.0" fill="rgb(226,160,28)" rx="2" ry="2" />
<text text-anchor="" x="208.17" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('e1000e_write_phy_reg_mdic.part.3 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>e1000e_write_phy_reg_mdic.part.3 (1 samples, 0.02%)</title><rect x="867.9" y="1921" width="0.3" height="15.0" fill="rgb(252,25,10)" rx="2" ry="2" />
<text text-anchor="" x="870.89" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (360 samples, 8.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (360 samples, 8.07%)</title><rect x="382.1" y="1873" width="95.2" height="15.0" fill="rgb(242,163,52)" rx="2" ry="2" />
<text text-anchor="" x="385.09" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::intern..</text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (1 samples, 0.02%)</title><rect x="252.8" y="1809" width="0.2" height="15.0" fill="rgb(229,149,0)" rx="2" ry="2" />
<text text-anchor="" x="255.77" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (37 samples, 0.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (37 samples, 0.83%)</title><rect x="98.6" y="2033" width="9.8" height="15.0" fill="rgb(224,84,21)" rx="2" ry="2" />
<text text-anchor="" x="101.59" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_next (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (1 samples, 0.02%)</title><rect x="914.7" y="1857" width="0.3" height="15.0" fill="rgb(252,105,2)" rx="2" ry="2" />
<text text-anchor="" x="917.70" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1537" width="0.3" height="15.0" fill="rgb(215,28,38)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1547.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="118.4" y="1889" width="0.3" height="15.0" fill="rgb(217,58,33)" rx="2" ry="2" />
<text text-anchor="" x="121.43" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (5 samples, 0.11%)</title><rect x="744.7" y="1729" width="1.3" height="15.0" fill="rgb(231,92,46)" rx="2" ry="2" />
<text text-anchor="" x="747.66" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('blk_end_bidi_request (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>blk_end_bidi_request (1 samples, 0.02%)</title><rect x="1038.7" y="1825" width="0.3" height="15.0" fill="rgb(247,185,21)" rx="2" ry="2" />
<text text-anchor="" x="1041.73" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1937" width="0.3" height="15.0" fill="rgb(249,186,14)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_work_run (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_work_run (1 samples, 0.02%)</title><rect x="1181.0" y="1969" width="0.3" height="15.0" fill="rgb(229,53,4)" rx="2" ry="2" />
<text text-anchor="" x="1184.01" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (1 samples, 0.02%)</title><rect x="1167.0" y="2001" width="0.3" height="15.0" fill="rgb(250,222,21)" rx="2" ry="2" />
<text text-anchor="" x="1169.99" y="2011.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.02%)</title><rect x="876.1" y="1937" width="0.3" height="15.0" fill="rgb(253,61,40)" rx="2" ry="2" />
<text text-anchor="" x="879.09" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (1 samples, 0.02%)</title><rect x="867.9" y="2033" width="0.3" height="15.0" fill="rgb(210,95,31)" rx="2" ry="2" />
<text text-anchor="" x="870.89" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base8internal8LockImpl4LockEv@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base8internal8LockImpl4LockEv@plt (1 samples, 0.02%)</title><rect x="568.5" y="1825" width="0.3" height="15.0" fill="rgb(225,158,20)" rx="2" ry="2" />
<text text-anchor="" x="571.53" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.02%)</title><rect x="15.0" y="1873" width="0.3" height="15.0" fill="rgb(221,167,17)" rx="2" ry="2" />
<text text-anchor="" x="18.02" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_readv_writev (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_readv_writev (1 samples, 0.02%)</title><rect x="1187.4" y="1857" width="0.2" height="15.0" fill="rgb(245,72,13)" rx="2" ry="2" />
<text text-anchor="" x="1190.36" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.02%)</title><rect x="105.5" y="1777" width="0.2" height="15.0" fill="rgb(231,155,6)" rx="2" ry="2" />
<text text-anchor="" x="108.47" y="1787.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="324.4" y="1889" width="0.3" height="15.0" fill="rgb(213,220,13)" rx="2" ry="2" />
<text text-anchor="" x="327.44" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.02%)</title><rect x="1182.9" y="1777" width="0.2" height="15.0" fill="rgb(217,92,19)" rx="2" ry="2" />
<text text-anchor="" x="1185.86" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unmap_vmas (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>unmap_vmas (5 samples, 0.11%)</title><rect x="1173.1" y="1889" width="1.3" height="15.0" fill="rgb(252,24,33)" rx="2" ry="2" />
<text text-anchor="" x="1176.07" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('leave_mm (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>leave_mm (1 samples, 0.02%)</title><rect x="1144.2" y="1889" width="0.3" height="15.0" fill="rgb(254,195,44)" rx="2" ry="2" />
<text text-anchor="" x="1147.25" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1160.6" y="1969" width="0.3" height="15.0" fill="rgb(213,114,36)" rx="2" ry="2" />
<text text-anchor="" x="1163.65" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.02%)</title><rect x="865.8" y="2033" width="0.2" height="15.0" fill="rgb(208,212,5)" rx="2" ry="2" />
<text text-anchor="" x="868.78" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (58 samples, 1.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (58 samples, 1.30%)</title><rect x="532.3" y="1841" width="15.3" height="15.0" fill="rgb(207,4,48)" rx="2" ry="2" />
<text text-anchor="" x="535.30" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.02%)</title><rect x="15.0" y="1841" width="0.3" height="15.0" fill="rgb(241,64,54)" rx="2" ry="2" />
<text text-anchor="" x="18.02" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sys_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_open (1 samples, 0.02%)</title><rect x="867.6" y="1953" width="0.3" height="15.0" fill="rgb(234,93,1)" rx="2" ry="2" />
<text text-anchor="" x="870.63" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (2 samples, 0.04%)</title><rect x="15.3" y="1889" width="0.5" height="15.0" fill="rgb(223,183,51)" rx="2" ry="2" />
<text text-anchor="" x="18.29" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.02%)</title><rect x="463.3" y="1713" width="0.2" height="15.0" fill="rgb(254,54,14)" rx="2" ry="2" />
<text text-anchor="" x="466.28" y="1723.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.02%)</title><rect x="34.6" y="1857" width="0.3" height="15.0" fill="rgb(206,49,23)" rx="2" ry="2" />
<text text-anchor="" x="37.59" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (6 samples, 0.13%)</title><rect x="802.0" y="1809" width="1.6" height="15.0" fill="rgb(207,209,10)" rx="2" ry="2" />
<text text-anchor="" x="805.04" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.02%)</title><rect x="645.2" y="1633" width="0.3" height="15.0" fill="rgb(247,118,28)" rx="2" ry="2" />
<text text-anchor="" x="648.22" y="1643.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.02%)</title><rect x="10.0" y="1889" width="0.3" height="15.0" fill="rgb(226,217,10)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.02%)</title><rect x="161.3" y="1937" width="0.2" height="15.0" fill="rgb(236,105,45)" rx="2" ry="2" />
<text text-anchor="" x="164.27" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (5 samples, 0.11%)</title><rect x="478.9" y="1873" width="1.3" height="15.0" fill="rgb(219,84,13)" rx="2" ry="2" />
<text text-anchor="" x="481.88" y="1883.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.02%)</title><rect x="389.2" y="1745" width="0.3" height="15.0" fill="rgb(212,185,34)" rx="2" ry="2" />
<text text-anchor="" x="392.23" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="961" width="0.3" height="15.0" fill="rgb(231,219,7)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__hrtimer_start_range_ns (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="1148.7" y="1793" width="0.3" height="15.0" fill="rgb(242,116,46)" rx="2" ry="2" />
<text text-anchor="" x="1151.74" y="1803.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (1 samples, 0.02%)</title><rect x="92.8" y="2001" width="0.2" height="15.0" fill="rgb(216,175,33)" rx="2" ry="2" />
<text text-anchor="" x="95.77" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.02%)</title><rect x="483.6" y="1873" width="0.3" height="15.0" fill="rgb(247,72,42)" rx="2" ry="2" />
<text text-anchor="" x="486.64" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_brk (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_brk (2 samples, 0.04%)</title><rect x="87.5" y="1985" width="0.5" height="15.0" fill="rgb(238,138,18)" rx="2" ry="2" />
<text text-anchor="" x="90.49" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="1025" width="0.8" height="15.0" fill="rgb(208,68,3)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_program_event (15 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_program_event (15 samples, 0.34%)</title><rect x="1095.1" y="1889" width="3.9" height="15.0" fill="rgb(248,13,42)" rx="2" ry="2" />
<text text-anchor="" x="1098.06" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_read (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.02%)</title><rect x="88.3" y="1873" width="0.2" height="15.0" fill="rgb(206,174,22)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_group_exit (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_group_exit (2 samples, 0.04%)</title><rect x="1180.7" y="2001" width="0.6" height="15.0" fill="rgb(211,134,39)" rx="2" ry="2" />
<text text-anchor="" x="1183.74" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_poll (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_poll (1 samples, 0.02%)</title><rect x="159.2" y="1985" width="0.2" height="15.0" fill="rgb(239,84,29)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_pages_and_swap_cache (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_pages_and_swap_cache (1 samples, 0.02%)</title><rect x="97.8" y="1905" width="0.3" height="15.0" fill="rgb(254,130,22)" rx="2" ry="2" />
<text text-anchor="" x="100.80" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.02%)</title><rect x="1039.3" y="1569" width="0.2" height="15.0" fill="rgb(237,0,6)" rx="2" ry="2" />
<text text-anchor="" x="1042.26" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_page_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_range (1 samples, 0.02%)</title><rect x="94.4" y="1921" width="0.2" height="15.0" fill="rgb(209,50,27)" rx="2" ry="2" />
<text text-anchor="" x="97.36" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="181.6" y="1889" width="0.3" height="15.0" fill="rgb(217,101,8)" rx="2" ry="2" />
<text text-anchor="" x="184.63" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (2 samples, 0.04%)</title><rect x="168.7" y="2033" width="0.5" height="15.0" fill="rgb(219,117,8)" rx="2" ry="2" />
<text text-anchor="" x="171.67" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1617" width="0.3" height="15.0" fill="rgb(229,207,40)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (68 samples, 1.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (68 samples, 1.52%)</title><rect x="749.4" y="1697" width="18.0" height="15.0" fill="rgb(254,95,1)" rx="2" ry="2" />
<text text-anchor="" x="752.42" y="1707.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.02%)</title><rect x="495.3" y="1825" width="0.2" height="15.0" fill="rgb(236,214,53)" rx="2" ry="2" />
<text text-anchor="" x="498.28" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="1182.6" y="1905" width="0.5" height="15.0" fill="rgb(230,45,41)" rx="2" ry="2" />
<text text-anchor="" x="1185.60" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="177" width="0.3" height="15.0" fill="rgb(207,94,0)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="81" width="0.3" height="15.0" fill="rgb(212,5,3)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_exit_group (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_exit_group (3 samples, 0.07%)</title><rect x="97.8" y="2017" width="0.8" height="15.0" fill="rgb(212,229,38)" rx="2" ry="2" />
<text text-anchor="" x="100.80" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mem_cgroup_newpage_charge (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mem_cgroup_newpage_charge (1 samples, 0.02%)</title><rect x="1164.1" y="1889" width="0.2" height="15.0" fill="rgb(215,55,35)" rx="2" ry="2" />
<text text-anchor="" x="1167.08" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (3 samples, 0.07%)</title><rect x="698.9" y="1713" width="0.8" height="15.0" fill="rgb(212,88,19)" rx="2" ry="2" />
<text text-anchor="" x="701.91" y="1723.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (1 samples, 0.02%)</title><rect x="883.5" y="1921" width="0.3" height="15.0" fill="rgb(211,102,42)" rx="2" ry="2" />
<text text-anchor="" x="886.50" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('group_sched_in (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (4 samples, 0.09%)</title><rect x="873.4" y="1793" width="1.1" height="15.0" fill="rgb(241,163,32)" rx="2" ry="2" />
<text text-anchor="" x="876.45" y="1803.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="1180.2" y="2017" width="0.3" height="15.0" fill="rgb(225,128,11)" rx="2" ry="2" />
<text text-anchor="" x="1183.22" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (2 samples, 0.04%)</title><rect x="417.5" y="1585" width="0.6" height="15.0" fill="rgb(240,118,27)" rx="2" ry="2" />
<text text-anchor="" x="420.53" y="1595.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (1 samples, 0.02%)</title><rect x="490.5" y="1889" width="0.3" height="15.0" fill="rgb(217,117,3)" rx="2" ry="2" />
<text text-anchor="" x="493.52" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up (1 samples, 0.02%)</title><rect x="874.5" y="1985" width="0.3" height="15.0" fill="rgb(253,70,28)" rx="2" ry="2" />
<text text-anchor="" x="877.50" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::ReadFromMessageAttachmentSet (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::ReadFromMessageAttachmentSet (3 samples, 0.07%)</title><rect x="658.7" y="1681" width="0.8" height="15.0" fill="rgb(206,54,20)" rx="2" ry="2" />
<text text-anchor="" x="661.71" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_numa_page (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_numa_page (1 samples, 0.02%)</title><rect x="1189.7" y="1937" width="0.3" height="15.0" fill="rgb(240,69,7)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_lookupat (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_lookupat (1 samples, 0.02%)</title><rect x="881.1" y="1889" width="0.3" height="15.0" fill="rgb(230,184,39)" rx="2" ry="2" />
<text text-anchor="" x="884.12" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="1163.8" y="1985" width="0.8" height="15.0" fill="rgb(232,25,21)" rx="2" ry="2" />
<text text-anchor="" x="1166.82" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="148.8" y="1281" width="1.1" height="15.0" fill="rgb(250,117,35)" rx="2" ry="2" />
<text text-anchor="" x="151.84" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4mojo6system10RawChannel20EnqueueMessageNoLockE10scoped_ptrINS0_16MessageInTransitEN4base14DefaultDeleterIS3_EEE@plt (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4mojo6system10RawChannel20EnqueueMessageNoLockE10scoped_ptrINS0_16MessageInTransitEN4base14DefaultDeleterIS3_EEE@plt (2 samples, 0.04%)</title><rect x="412.0" y="1601" width="0.5" height="15.0" fill="rgb(227,162,4)" rx="2" ry="2" />
<text text-anchor="" x="414.97" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_softirq (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (7 samples, 0.16%)</title><rect x="1146.6" y="1857" width="1.9" height="15.0" fill="rgb(247,164,44)" rx="2" ry="2" />
<text text-anchor="" x="1149.63" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('e1000e_poll (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>e1000e_poll (2 samples, 0.04%)</title><rect x="1039.0" y="1889" width="0.5" height="15.0" fill="rgb(216,28,43)" rx="2" ry="2" />
<text text-anchor="" x="1042.00" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.04%)</title><rect x="648.4" y="1713" width="0.5" height="15.0" fill="rgb(215,167,27)" rx="2" ry="2" />
<text text-anchor="" x="651.40" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::SerializeAndCloseDispatchers (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::SerializeAndCloseDispatchers (1 samples, 0.02%)</title><rect x="678.8" y="1553" width="0.3" height="15.0" fill="rgb(211,163,3)" rx="2" ry="2" />
<text text-anchor="" x="681.81" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="977" width="0.8" height="15.0" fill="rgb(220,166,16)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_command (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_command (1 samples, 0.02%)</title><rect x="77.4" y="2017" width="0.3" height="15.0" fill="rgb(232,11,46)" rx="2" ry="2" />
<text text-anchor="" x="80.44" y="2027.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.02%)</title><rect x="42.0" y="1857" width="0.3" height="15.0" fill="rgb(213,186,29)" rx="2" ry="2" />
<text text-anchor="" x="45.00" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (36 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (36 samples, 0.81%)</title><rect x="227.1" y="1921" width="9.5" height="15.0" fill="rgb(208,221,16)" rx="2" ry="2" />
<text text-anchor="" x="230.12" y="1931.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="1174.4" y="1953" width="0.3" height="15.0" fill="rgb(227,181,31)" rx="2" ry="2" />
<text text-anchor="" x="1177.40" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.13%)</title><rect x="522.5" y="1729" width="1.6" height="15.0" fill="rgb(230,223,4)" rx="2" ry="2" />
<text text-anchor="" x="525.51" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (4 samples, 0.09%)</title><rect x="350.6" y="1825" width="1.1" height="15.0" fill="rgb(244,138,16)" rx="2" ry="2" />
<text text-anchor="" x="353.62" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_user_pages (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_user_pages (2 samples, 0.04%)</title><rect x="83.3" y="1937" width="0.5" height="15.0" fill="rgb(213,106,26)" rx="2" ry="2" />
<text text-anchor="" x="86.25" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="721" width="0.3" height="15.0" fill="rgb(226,223,3)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.02%)</title><rect x="26.7" y="1873" width="0.2" height="15.0" fill="rgb(206,208,49)" rx="2" ry="2" />
<text text-anchor="" x="29.66" y="1883.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="333.4" y="1857" width="0.6" height="15.0" fill="rgb(231,20,3)" rx="2" ry="2" />
<text text-anchor="" x="336.43" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="118.4" y="1969" width="0.3" height="15.0" fill="rgb(250,90,36)" rx="2" ry="2" />
<text text-anchor="" x="121.43" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x2apic_send_IPI_mask (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="874.5" y="1889" width="0.3" height="15.0" fill="rgb(226,23,46)" rx="2" ry="2" />
<text text-anchor="" x="877.50" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="1175.2" y="1953" width="0.3" height="15.0" fill="rgb(250,89,8)" rx="2" ry="2" />
<text text-anchor="" x="1178.19" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (1 samples, 0.02%)</title><rect x="872.9" y="1985" width="0.3" height="15.0" fill="rgb(214,75,26)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1553" width="0.3" height="15.0" fill="rgb(218,103,7)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__mbrtowc (17 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>__mbrtowc (17 samples, 0.38%)</title><rect x="70.0" y="2017" width="4.5" height="15.0" fill="rgb(225,136,38)" rx="2" ry="2" />
<text text-anchor="" x="73.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_sysdep_start (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_sysdep_start (2 samples, 0.04%)</title><rect x="881.4" y="2017" width="0.5" height="15.0" fill="rgb(221,130,28)" rx="2" ry="2" />
<text text-anchor="" x="884.38" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="26.7" y="1921" width="0.2" height="15.0" fill="rgb(211,0,2)" rx="2" ry="2" />
<text text-anchor="" x="29.66" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_pages_nodemask (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (1 samples, 0.02%)</title><rect x="872.1" y="1921" width="0.3" height="15.0" fill="rgb(238,175,15)" rx="2" ry="2" />
<text text-anchor="" x="875.12" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('retint_signal (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>retint_signal (1 samples, 0.02%)</title><rect x="164.4" y="2017" width="0.3" height="15.0" fill="rgb(246,78,3)" rx="2" ry="2" />
<text text-anchor="" x="167.44" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (22 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (22 samples, 0.49%)</title><rect x="144.6" y="1905" width="5.8" height="15.0" fill="rgb(246,174,41)" rx="2" ry="2" />
<text text-anchor="" x="147.61" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (12 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (12 samples, 0.27%)</title><rect x="1181.3" y="2033" width="3.1" height="15.0" fill="rgb(216,202,5)" rx="2" ry="2" />
<text text-anchor="" x="1184.27" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__remove_hrtimer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__remove_hrtimer (1 samples, 0.02%)</title><rect x="1105.9" y="1937" width="0.3" height="15.0" fill="rgb(235,205,16)" rx="2" ry="2" />
<text text-anchor="" x="1108.90" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.02%)</title><rect x="407.2" y="1569" width="0.3" height="15.0" fill="rgb(228,179,14)" rx="2" ry="2" />
<text text-anchor="" x="410.21" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (13 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (13 samples, 0.29%)</title><rect x="672.5" y="1521" width="3.4" height="15.0" fill="rgb(228,160,15)" rx="2" ry="2" />
<text text-anchor="" x="675.46" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_sendmsg (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_sendmsg (1 samples, 0.02%)</title><rect x="1164.9" y="1937" width="0.2" height="15.0" fill="rgb(244,43,46)" rx="2" ry="2" />
<text text-anchor="" x="1167.88" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="1233" width="0.8" height="15.0" fill="rgb(217,137,51)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_load_tls (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_load_tls (4 samples, 0.09%)</title><rect x="894.3" y="2033" width="1.1" height="15.0" fill="rgb(207,0,13)" rx="2" ry="2" />
<text text-anchor="" x="897.34" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="1164.9" y="1793" width="0.2" height="15.0" fill="rgb(216,208,2)" rx="2" ry="2" />
<text text-anchor="" x="1167.88" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (4 samples, 0.09%)</title><rect x="742.3" y="1745" width="1.0" height="15.0" fill="rgb(210,160,42)" rx="2" ry="2" />
<text text-anchor="" x="745.28" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_write (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_write (1 samples, 0.02%)</title><rect x="65.3" y="1953" width="0.2" height="15.0" fill="rgb(224,91,31)" rx="2" ry="2" />
<text text-anchor="" x="68.27" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="97" width="0.3" height="15.0" fill="rgb(237,123,0)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="785" width="0.3" height="15.0" fill="rgb(215,172,17)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__GI___libc_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_open (1 samples, 0.02%)</title><rect x="883.0" y="2033" width="0.2" height="15.0" fill="rgb(210,68,53)" rx="2" ry="2" />
<text text-anchor="" x="885.97" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_exit (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (3 samples, 0.07%)</title><rect x="1036.9" y="1921" width="0.8" height="15.0" fill="rgb(219,7,5)" rx="2" ry="2" />
<text text-anchor="" x="1039.88" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.11%)</title><rect x="148.6" y="1697" width="1.3" height="15.0" fill="rgb(228,170,23)" rx="2" ry="2" />
<text text-anchor="" x="151.57" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_open (1 samples, 0.02%)</title><rect x="1168.1" y="1969" width="0.2" height="15.0" fill="rgb(209,117,25)" rx="2" ry="2" />
<text text-anchor="" x="1171.05" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="273" width="0.3" height="15.0" fill="rgb(217,198,54)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_select (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (1 samples, 0.02%)</title><rect x="871.9" y="1969" width="0.2" height="15.0" fill="rgb(241,139,18)" rx="2" ry="2" />
<text text-anchor="" x="874.86" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_pages_nodemask (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (2 samples, 0.04%)</title><rect x="80.6" y="1937" width="0.5" height="15.0" fill="rgb(224,165,39)" rx="2" ry="2" />
<text text-anchor="" x="83.61" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.02%)</title><rect x="86.7" y="1841" width="0.3" height="15.0" fill="rgb(241,28,34)" rx="2" ry="2" />
<text text-anchor="" x="89.69" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__strcmp_sse2_unaligned (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_sse2_unaligned (2 samples, 0.04%)</title><rect x="62.4" y="2001" width="0.5" height="15.0" fill="rgb(226,80,2)" rx="2" ry="2" />
<text text-anchor="" x="65.36" y="2011.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (1 samples, 0.02%)</title><rect x="650.0" y="1713" width="0.2" height="15.0" fill="rgb(221,99,24)" rx="2" ry="2" />
<text text-anchor="" x="652.98" y="1723.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.02%)</title><rect x="27.2" y="2033" width="0.3" height="15.0" fill="rgb(250,229,48)" rx="2" ry="2" />
<text text-anchor="" x="30.19" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.04%)</title><rect x="177.9" y="1921" width="0.6" height="15.0" fill="rgb(234,97,27)" rx="2" ry="2" />
<text text-anchor="" x="180.93" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::CallbackBase::CallbackBase (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::CallbackBase::CallbackBase (1 samples, 0.02%)</title><rect x="383.1" y="1825" width="0.3" height="15.0" fill="rgb(205,111,48)" rx="2" ry="2" />
<text text-anchor="" x="386.15" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('compiz (14 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>compiz (14 samples, 0.31%)</title><rect x="169.7" y="2049" width="3.7" height="15.0" fill="rgb(217,140,48)" rx="2" ry="2" />
<text text-anchor="" x="172.73" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('migrate_pages (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>migrate_pages (1 samples, 0.02%)</title><rect x="156.8" y="1905" width="0.2" height="15.0" fill="rgb(220,206,40)" rx="2" ry="2" />
<text text-anchor="" x="159.77" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_program_event (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_program_event (2 samples, 0.04%)</title><rect x="920.3" y="1905" width="0.5" height="15.0" fill="rgb(237,16,4)" rx="2" ry="2" />
<text text-anchor="" x="923.26" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('seccomp_bpf_load (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>seccomp_bpf_load (1 samples, 0.02%)</title><rect x="163.9" y="1969" width="0.3" height="15.0" fill="rgb(248,161,40)" rx="2" ry="2" />
<text text-anchor="" x="166.91" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (4 samples, 0.09%)</title><rect x="15.0" y="1953" width="1.1" height="15.0" fill="rgb(238,175,12)" rx="2" ry="2" />
<text text-anchor="" x="18.02" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (5 samples, 0.11%)</title><rect x="765.8" y="1649" width="1.3" height="15.0" fill="rgb(222,71,30)" rx="2" ry="2" />
<text text-anchor="" x="768.81" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (5 samples, 0.11%)</title><rect x="424.9" y="1681" width="1.4" height="15.0" fill="rgb(245,114,3)" rx="2" ry="2" />
<text text-anchor="" x="427.93" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (2 samples, 0.04%)</title><rect x="1188.1" y="1793" width="0.6" height="15.0" fill="rgb(246,220,21)" rx="2" ry="2" />
<text text-anchor="" x="1191.15" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="161" width="0.3" height="15.0" fill="rgb(223,127,45)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_recvmsg (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recvmsg (4 samples, 0.09%)</title><rect x="768.5" y="1777" width="1.0" height="15.0" fill="rgb(246,42,19)" rx="2" ry="2" />
<text text-anchor="" x="771.46" y="1787.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="1176.0" y="2001" width="0.2" height="15.0" fill="rgb(216,94,10)" rx="2" ry="2" />
<text text-anchor="" x="1178.98" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="1175.2" y="1921" width="0.3" height="15.0" fill="rgb(250,54,6)" rx="2" ry="2" />
<text text-anchor="" x="1178.19" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (2 samples, 0.04%)</title><rect x="584.4" y="1777" width="0.5" height="15.0" fill="rgb(205,173,16)" rx="2" ry="2" />
<text text-anchor="" x="587.40" y="1787.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.02%)</title><rect x="870.8" y="1857" width="0.3" height="15.0" fill="rgb(235,135,19)" rx="2" ry="2" />
<text text-anchor="" x="873.80" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_normal_page (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_normal_page (1 samples, 0.02%)</title><rect x="160.7" y="1905" width="0.3" height="15.0" fill="rgb(247,101,8)" rx="2" ry="2" />
<text text-anchor="" x="163.74" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tracesys (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>tracesys (6 samples, 0.13%)</title><rect x="29.6" y="2001" width="1.6" height="15.0" fill="rgb(245,12,50)" rx="2" ry="2" />
<text text-anchor="" x="32.57" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="23.8" y="1969" width="0.5" height="15.0" fill="rgb(230,85,34)" rx="2" ry="2" />
<text text-anchor="" x="26.75" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (1 samples, 0.02%)</title><rect x="785.4" y="1713" width="0.2" height="15.0" fill="rgb(207,24,8)" rx="2" ry="2" />
<text text-anchor="" x="788.38" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__xstat64 (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__xstat64 (2 samples, 0.04%)</title><rect x="1169.6" y="2017" width="0.6" height="15.0" fill="rgb(213,26,34)" rx="2" ry="2" />
<text text-anchor="" x="1172.64" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (1 samples, 0.02%)</title><rect x="491.6" y="1873" width="0.2" height="15.0" fill="rgb(233,11,40)" rx="2" ry="2" />
<text text-anchor="" x="494.57" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (6 samples, 0.13%)</title><rect x="627.8" y="1697" width="1.6" height="15.0" fill="rgb(219,207,20)" rx="2" ry="2" />
<text text-anchor="" x="630.77" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::Send (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::Send (1 samples, 0.02%)</title><rect x="687.0" y="1697" width="0.3" height="15.0" fill="rgb(224,123,36)" rx="2" ry="2" />
<text text-anchor="" x="690.01" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="173.7" y="2033" width="0.5" height="15.0" fill="rgb(233,57,12)" rx="2" ry="2" />
<text text-anchor="" x="176.70" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (2 samples, 0.04%)</title><rect x="1113.6" y="1953" width="0.5" height="15.0" fill="rgb(252,184,7)" rx="2" ry="2" />
<text text-anchor="" x="1116.57" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('yyparse (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>yyparse (4 samples, 0.09%)</title><rect x="85.1" y="2017" width="1.1" height="15.0" fill="rgb(252,29,36)" rx="2" ry="2" />
<text text-anchor="" x="88.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('gtk_label_get_type (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>gtk_label_get_type (1 samples, 0.02%)</title><rect x="176.9" y="1985" width="0.2" height="15.0" fill="rgb(237,49,49)" rx="2" ry="2" />
<text text-anchor="" x="179.87" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="737" width="0.8" height="15.0" fill="rgb(208,214,16)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('calc_load_enter_idle (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>calc_load_enter_idle (5 samples, 0.11%)</title><rect x="1087.4" y="1953" width="1.3" height="15.0" fill="rgb(244,119,37)" rx="2" ry="2" />
<text text-anchor="" x="1090.39" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.02%)</title><rect x="283.2" y="1729" width="0.2" height="15.0" fill="rgb(210,161,38)" rx="2" ry="2" />
<text text-anchor="" x="286.18" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfprintf (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (1 samples, 0.02%)</title><rect x="1169.4" y="2001" width="0.2" height="15.0" fill="rgb(230,65,51)" rx="2" ry="2" />
<text text-anchor="" x="1172.37" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__GI___libc_close (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_close (1 samples, 0.02%)</title><rect x="86.4" y="2033" width="0.3" height="15.0" fill="rgb(242,91,49)" rx="2" ry="2" />
<text text-anchor="" x="89.43" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.02%)</title><rect x="407.2" y="1553" width="0.3" height="15.0" fill="rgb(207,228,3)" rx="2" ry="2" />
<text text-anchor="" x="410.21" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('poll_schedule_timeout (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (2 samples, 0.04%)</title><rect x="177.9" y="1969" width="0.6" height="15.0" fill="rgb(226,9,17)" rx="2" ry="2" />
<text text-anchor="" x="180.93" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="149.6" y="209" width="0.3" height="15.0" fill="rgb(213,209,3)" rx="2" ry="2" />
<text text-anchor="" x="152.63" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (48 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (48 samples, 1.08%)</title><rect x="781.9" y="1745" width="12.7" height="15.0" fill="rgb(211,194,54)" rx="2" ry="2" />
<text text-anchor="" x="784.95" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_unmap_one (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_unmap_one (1 samples, 0.02%)</title><rect x="161.8" y="1873" width="0.3" height="15.0" fill="rgb(232,174,38)" rx="2" ry="2" />
<text text-anchor="" x="164.80" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (1 samples, 0.02%)</title><rect x="476.0" y="1841" width="0.2" height="15.0" fill="rgb(241,158,41)" rx="2" ry="2" />
<text text-anchor="" x="478.97" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.02%)</title><rect x="107.6" y="1761" width="0.2" height="15.0" fill="rgb(252,25,46)" rx="2" ry="2" />
<text text-anchor="" x="110.58" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="625" width="0.3" height="15.0" fill="rgb(246,172,41)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (3 samples, 0.07%)</title><rect x="533.6" y="1825" width="0.8" height="15.0" fill="rgb(238,87,9)" rx="2" ry="2" />
<text text-anchor="" x="536.62" y="1835.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (2 samples, 0.04%)</title><rect x="460.1" y="1729" width="0.5" height="15.0" fill="rgb(231,2,10)" rx="2" ry="2" />
<text text-anchor="" x="463.10" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="148.8" y="1425" width="1.1" height="15.0" fill="rgb(207,153,25)" rx="2" ry="2" />
<text text-anchor="" x="151.84" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="149.1" y="257" width="0.5" height="15.0" fill="rgb(237,3,35)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('may_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>may_open (1 samples, 0.02%)</title><rect x="84.0" y="1889" width="0.3" height="15.0" fill="rgb(207,142,28)" rx="2" ry="2" />
<text text-anchor="" x="87.05" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="651.0" y="1729" width="0.3" height="15.0" fill="rgb(248,88,6)" rx="2" ry="2" />
<text text-anchor="" x="654.04" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (1 samples, 0.02%)</title><rect x="88.3" y="1969" width="0.2" height="15.0" fill="rgb(209,200,25)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_pages_nodemask (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (1 samples, 0.02%)</title><rect x="83.3" y="1841" width="0.2" height="15.0" fill="rgb(240,108,12)" rx="2" ry="2" />
<text text-anchor="" x="86.25" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__switch_to (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to (1 samples, 0.02%)</title><rect x="577.5" y="1793" width="0.3" height="15.0" fill="rgb(211,38,7)" rx="2" ry="2" />
<text text-anchor="" x="580.52" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::OnMessageReceived (189 samples, 4.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::OnMessageReceived (189 samples, 4.24%)</title><rect x="653.9" y="1745" width="50.0" height="15.0" fill="rgb(225,65,34)" rx="2" ry="2" />
<text text-anchor="" x="656.95" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::..</text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (14 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (14 samples, 0.31%)</title><rect x="1122.6" y="1889" width="3.7" height="15.0" fill="rgb(223,79,40)" rx="2" ry="2" />
<text text-anchor="" x="1125.56" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('anon_vma_interval_tree_insert (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>anon_vma_interval_tree_insert (1 samples, 0.02%)</title><rect x="94.1" y="1889" width="0.3" height="15.0" fill="rgb(222,46,47)" rx="2" ry="2" />
<text text-anchor="" x="97.10" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (1 samples, 0.02%)</title><rect x="1037.7" y="1905" width="0.2" height="15.0" fill="rgb(224,182,21)" rx="2" ry="2" />
<text text-anchor="" x="1040.67" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="113.4" y="1873" width="0.5" height="15.0" fill="rgb(213,138,35)" rx="2" ry="2" />
<text text-anchor="" x="116.40" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1841" width="0.3" height="15.0" fill="rgb(247,144,42)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('user_path_at_empty (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (2 samples, 0.04%)</title><rect x="1169.6" y="1921" width="0.6" height="15.0" fill="rgb(237,127,31)" rx="2" ry="2" />
<text text-anchor="" x="1172.64" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (6 samples, 0.13%)</title><rect x="290.1" y="1809" width="1.5" height="15.0" fill="rgb(238,215,2)" rx="2" ry="2" />
<text text-anchor="" x="293.06" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('handle_mm_fault (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (4 samples, 0.09%)</title><rect x="1170.7" y="1969" width="1.1" height="15.0" fill="rgb(205,203,43)" rx="2" ry="2" />
<text text-anchor="" x="1173.69" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.02%)</title><rect x="16.6" y="1969" width="0.3" height="15.0" fill="rgb(252,39,12)" rx="2" ry="2" />
<text text-anchor="" x="19.61" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tmux (77 samples, 1.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>tmux (77 samples, 1.73%)</title><rect x="1160.9" y="2049" width="20.4" height="15.0" fill="rgb(254,29,35)" rx="2" ry="2" />
<text text-anchor="" x="1163.91" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (3 samples, 0.07%)</title><rect x="803.6" y="1809" width="0.8" height="15.0" fill="rgb(223,74,39)" rx="2" ry="2" />
<text text-anchor="" x="806.63" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('xattr_resolve_name (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>xattr_resolve_name (1 samples, 0.02%)</title><rect x="880.9" y="1825" width="0.2" height="15.0" fill="rgb(206,71,30)" rx="2" ry="2" />
<text text-anchor="" x="883.85" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (1 samples, 0.02%)</title><rect x="33.0" y="1857" width="0.3" height="15.0" fill="rgb(252,127,21)" rx="2" ry="2" />
<text text-anchor="" x="36.01" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1441" width="0.3" height="15.0" fill="rgb(249,178,6)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="26.7" y="2017" width="0.5" height="15.0" fill="rgb(227,24,11)" rx="2" ry="2" />
<text text-anchor="" x="29.66" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_sysidle_force_exit (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_sysidle_force_exit (2 samples, 0.04%)</title><rect x="1050.9" y="1969" width="0.5" height="15.0" fill="rgb(240,57,16)" rx="2" ry="2" />
<text text-anchor="" x="1053.90" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__fprintf_chk (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fprintf_chk (1 samples, 0.02%)</title><rect x="877.4" y="2033" width="0.3" height="15.0" fill="rgb(232,62,52)" rx="2" ry="2" />
<text text-anchor="" x="880.41" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.02%)</title><rect x="407.2" y="1585" width="0.3" height="15.0" fill="rgb(226,64,1)" rx="2" ry="2" />
<text text-anchor="" x="410.21" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (67 samples, 1.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (67 samples, 1.50%)</title><rect x="614.3" y="1745" width="17.7" height="15.0" fill="rgb(236,124,37)" rx="2" ry="2" />
<text text-anchor="" x="617.28" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.02%)</title><rect x="98.3" y="1745" width="0.3" height="15.0" fill="rgb(231,168,38)" rx="2" ry="2" />
<text text-anchor="" x="101.33" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (2 samples, 0.04%)</title><rect x="775.9" y="1761" width="0.5" height="15.0" fill="rgb(238,20,17)" rx="2" ry="2" />
<text text-anchor="" x="778.86" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="1201" width="0.8" height="15.0" fill="rgb(230,178,16)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="1211.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="293.5" y="1905" width="0.3" height="15.0" fill="rgb(241,32,31)" rx="2" ry="2" />
<text text-anchor="" x="296.50" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('calc_load_exit_idle (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>calc_load_exit_idle (2 samples, 0.04%)</title><rect x="1112.5" y="1985" width="0.5" height="15.0" fill="rgb(212,199,46)" rx="2" ry="2" />
<text text-anchor="" x="1115.51" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_openat (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_openat (1 samples, 0.02%)</title><rect x="1167.8" y="1985" width="0.3" height="15.0" fill="rgb(252,80,6)" rx="2" ry="2" />
<text text-anchor="" x="1170.79" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_page_c (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_page_c (1 samples, 0.02%)</title><rect x="94.4" y="1825" width="0.2" height="15.0" fill="rgb(230,214,49)" rx="2" ry="2" />
<text text-anchor="" x="97.36" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::HandleTable::GetDispatcher (8 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::HandleTable::GetDispatcher (8 samples, 0.18%)</title><rect x="467.5" y="1793" width="2.1" height="15.0" fill="rgb(253,149,47)" rx="2" ry="2" />
<text text-anchor="" x="470.51" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('crudd (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>crudd (1 samples, 0.02%)</title><rect x="173.4" y="2049" width="0.3" height="15.0" fill="rgb(205,96,31)" rx="2" ry="2" />
<text text-anchor="" x="176.43" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_page_c (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_page_c (2 samples, 0.04%)</title><rect x="80.6" y="1921" width="0.5" height="15.0" fill="rgb(241,166,35)" rx="2" ry="2" />
<text text-anchor="" x="83.61" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.09%)</title><rect x="158.1" y="1921" width="1.1" height="15.0" fill="rgb(233,209,2)" rx="2" ry="2" />
<text text-anchor="" x="161.10" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_program_event (17 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_program_event (17 samples, 0.38%)</title><rect x="1122.0" y="1937" width="4.5" height="15.0" fill="rgb(253,204,15)" rx="2" ry="2" />
<text text-anchor="" x="1125.03" y="1947.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.02%)</title><rect x="1175.2" y="1889" width="0.3" height="15.0" fill="rgb(218,163,15)" rx="2" ry="2" />
<text text-anchor="" x="1178.19" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rebalance_domains (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (3 samples, 0.07%)</title><rect x="1036.9" y="1873" width="0.8" height="15.0" fill="rgb(251,163,5)" rx="2" ry="2" />
<text text-anchor="" x="1039.88" y="1883.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.02%)</title><rect x="114.2" y="1777" width="0.3" height="15.0" fill="rgb(223,157,28)" rx="2" ry="2" />
<text text-anchor="" x="117.20" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('worker_thread (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>worker_thread (1 samples, 0.02%)</title><rect x="869.5" y="2001" width="0.2" height="15.0" fill="rgb(233,115,23)" rx="2" ry="2" />
<text text-anchor="" x="872.48" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (3 samples, 0.07%)</title><rect x="357.5" y="1777" width="0.8" height="15.0" fill="rgb(234,118,52)" rx="2" ry="2" />
<text text-anchor="" x="360.49" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (1 samples, 0.02%)</title><rect x="868.2" y="2033" width="0.2" height="15.0" fill="rgb(205,170,21)" rx="2" ry="2" />
<text text-anchor="" x="871.16" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base19MessagePumpLibevent17DidProcessIOEventEv@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base19MessagePumpLibevent17DidProcessIOEventEv@plt (1 samples, 0.02%)</title><rect x="375.7" y="1905" width="0.3" height="15.0" fill="rgb(235,12,51)" rx="2" ry="2" />
<text text-anchor="" x="378.74" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('SYSC_sendto (367 samples, 8.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (367 samples, 8.23%)</title><rect x="200.4" y="1985" width="97.1" height="15.0" fill="rgb(220,62,36)" rx="2" ry="2" />
<text text-anchor="" x="203.41" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >SYSC_sendto</text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (4 samples, 0.09%)</title><rect x="113.9" y="1857" width="1.1" height="15.0" fill="rgb(233,145,34)" rx="2" ry="2" />
<text text-anchor="" x="116.93" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_read (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.04%)</title><rect x="1189.2" y="1937" width="0.5" height="15.0" fill="rgb(221,13,51)" rx="2" ry="2" />
<text text-anchor="" x="1192.21" y="1947.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (1 samples, 0.02%)</title><rect x="919.2" y="1793" width="0.3" height="15.0" fill="rgb(213,213,51)" rx="2" ry="2" />
<text text-anchor="" x="922.20" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="753" width="0.3" height="15.0" fill="rgb(229,97,4)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="763.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.02%)</title><rect x="875.0" y="1857" width="0.3" height="15.0" fill="rgb(230,194,22)" rx="2" ry="2" />
<text text-anchor="" x="878.03" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::SerializeAndCloseDispatchers (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::SerializeAndCloseDispatchers (1 samples, 0.02%)</title><rect x="422.0" y="1633" width="0.3" height="15.0" fill="rgb(228,118,6)" rx="2" ry="2" />
<text text-anchor="" x="425.02" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.11%)</title><rect x="1185.5" y="1841" width="1.3" height="15.0" fill="rgb(239,45,16)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="870.8" y="1905" width="0.3" height="15.0" fill="rgb(228,198,36)" rx="2" ry="2" />
<text text-anchor="" x="873.80" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (3 samples, 0.07%)</title><rect x="671.7" y="1521" width="0.8" height="15.0" fill="rgb(236,65,48)" rx="2" ry="2" />
<text text-anchor="" x="674.67" y="1531.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>exit_mmap (1 samples, 0.02%)</title><rect x="97.8" y="1953" width="0.3" height="15.0" fill="rgb(231,69,44)" rx="2" ry="2" />
<text text-anchor="" x="100.80" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('target_load (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>target_load (1 samples, 0.02%)</title><rect x="875.8" y="1905" width="0.3" height="15.0" fill="rgb(237,205,34)" rx="2" ry="2" />
<text text-anchor="" x="878.83" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_numa_work (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_numa_work (1 samples, 0.02%)</title><rect x="152.3" y="1905" width="0.2" height="15.0" fill="rgb(207,4,9)" rx="2" ry="2" />
<text text-anchor="" x="155.28" y="1915.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.02%)</title><rect x="743.1" y="1729" width="0.2" height="15.0" fill="rgb(246,18,33)" rx="2" ry="2" />
<text text-anchor="" x="746.07" y="1739.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_wp_page (1 samples, 0.02%)</title><rect x="1164.1" y="1905" width="0.2" height="15.0" fill="rgb(245,207,12)" rx="2" ry="2" />
<text text-anchor="" x="1167.08" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_fault (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (6 samples, 0.13%)</title><rect x="80.1" y="2017" width="1.6" height="15.0" fill="rgb(209,209,6)" rx="2" ry="2" />
<text text-anchor="" x="83.08" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_script (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_script (1 samples, 0.02%)</title><rect x="88.3" y="1953" width="0.2" height="15.0" fill="rgb(250,88,25)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="33.0" y="1921" width="0.3" height="15.0" fill="rgb(247,129,7)" rx="2" ry="2" />
<text text-anchor="" x="36.01" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (2 samples, 0.04%)</title><rect x="1037.1" y="1841" width="0.6" height="15.0" fill="rgb(209,170,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.14" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_page_fault (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (2 samples, 0.04%)</title><rect x="1165.7" y="1953" width="0.5" height="15.0" fill="rgb(214,125,39)" rx="2" ry="2" />
<text text-anchor="" x="1168.67" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.07%)</title><rect x="796.5" y="1745" width="0.8" height="15.0" fill="rgb(252,111,8)" rx="2" ry="2" />
<text text-anchor="" x="799.49" y="1755.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.02%)</title><rect x="365.4" y="1729" width="0.3" height="15.0" fill="rgb(234,168,41)" rx="2" ry="2" />
<text text-anchor="" x="368.43" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (231 samples, 5.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (231 samples, 5.18%)</title><rect x="574.9" y="1825" width="61.1" height="15.0" fill="rgb(253,97,36)" rx="2" ry="2" />
<text text-anchor="" x="577.88" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unkno..</text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (7 samples, 0.16%)</title><rect x="322.6" y="1873" width="1.8" height="15.0" fill="rgb(248,11,38)" rx="2" ry="2" />
<text text-anchor="" x="325.59" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="305" width="0.3" height="15.0" fill="rgb(221,191,31)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="148.8" y="1473" width="1.1" height="15.0" fill="rgb(246,34,4)" rx="2" ry="2" />
<text text-anchor="" x="151.84" y="1483.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="1187.9" y="1953" width="0.2" height="15.0" fill="rgb(233,136,41)" rx="2" ry="2" />
<text text-anchor="" x="1190.88" y="1963.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.02%)</title><rect x="16.6" y="1825" width="0.3" height="15.0" fill="rgb(205,161,19)" rx="2" ry="2" />
<text text-anchor="" x="19.61" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (39 samples, 0.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (39 samples, 0.87%)</title><rect x="16.9" y="2033" width="10.3" height="15.0" fill="rgb(251,101,4)" rx="2" ry="2" />
<text text-anchor="" x="19.88" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="689" width="0.3" height="15.0" fill="rgb(244,161,2)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="870.0" y="1873" width="0.3" height="15.0" fill="rgb(253,182,1)" rx="2" ry="2" />
<text text-anchor="" x="873.01" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_smp_send_reschedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_smp_send_reschedule (1 samples, 0.02%)</title><rect x="874.5" y="1905" width="0.3" height="15.0" fill="rgb(216,17,10)" rx="2" ry="2" />
<text text-anchor="" x="877.50" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection_range (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection_range (3 samples, 0.07%)</title><rect x="154.7" y="1889" width="0.8" height="15.0" fill="rgb(247,177,39)" rx="2" ry="2" />
<text text-anchor="" x="157.66" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="1186.3" y="1761" width="0.5" height="15.0" fill="rgb(218,106,1)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__x2apic_send_IPI_mask (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="874.5" y="1873" width="0.3" height="15.0" fill="rgb(212,31,31)" rx="2" ry="2" />
<text text-anchor="" x="877.50" y="1883.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (1 samples, 0.02%)</title><rect x="872.9" y="1953" width="0.3" height="15.0" fill="rgb(236,0,33)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('flush_old_exec (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>flush_old_exec (1 samples, 0.02%)</title><rect x="883.5" y="1905" width="0.3" height="15.0" fill="rgb(240,112,48)" rx="2" ry="2" />
<text text-anchor="" x="886.50" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="150.7" y="1809" width="0.3" height="15.0" fill="rgb(218,162,34)" rx="2" ry="2" />
<text text-anchor="" x="153.69" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (1 samples, 0.02%)</title><rect x="789.1" y="1665" width="0.3" height="15.0" fill="rgb(215,140,6)" rx="2" ry="2" />
<text text-anchor="" x="792.09" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="737" width="0.3" height="15.0" fill="rgb(215,58,26)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="747.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="881.9" y="2017" width="0.3" height="15.0" fill="rgb(245,148,10)" rx="2" ry="2" />
<text text-anchor="" x="884.91" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_nohz_stop_idle (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_nohz_stop_idle (2 samples, 0.04%)</title><rect x="1159.9" y="1937" width="0.5" height="15.0" fill="rgb(211,216,4)" rx="2" ry="2" />
<text text-anchor="" x="1162.85" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('group_sched_in (120 samples, 2.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (120 samples, 2.69%)</title><rect x="921.0" y="1889" width="31.8" height="15.0" fill="rgb(232,9,14)" rx="2" ry="2" />
<text text-anchor="" x="924.05" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gr..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.04%)</title><rect x="679.3" y="1553" width="0.6" height="15.0" fill="rgb(231,16,4)" rx="2" ry="2" />
<text text-anchor="" x="682.34" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="871.9" y="1889" width="0.2" height="15.0" fill="rgb(212,92,34)" rx="2" ry="2" />
<text text-anchor="" x="874.86" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::Send (100 samples, 2.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (100 samples, 2.24%)</title><rect x="658.2" y="1697" width="26.4" height="15.0" fill="rgb(230,6,37)" rx="2" ry="2" />
<text text-anchor="" x="661.18" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (8 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8 samples, 0.18%)</title><rect x="147.8" y="1777" width="2.1" height="15.0" fill="rgb(208,124,34)" rx="2" ry="2" />
<text text-anchor="" x="150.78" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_program_event (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_program_event (2 samples, 0.04%)</title><rect x="1155.6" y="1873" width="0.5" height="15.0" fill="rgb(236,173,45)" rx="2" ry="2" />
<text text-anchor="" x="1158.62" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sys_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_open (1 samples, 0.02%)</title><rect x="90.9" y="1969" width="0.3" height="15.0" fill="rgb(247,27,32)" rx="2" ry="2" />
<text text-anchor="" x="93.92" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (1 samples, 0.02%)</title><rect x="183.0" y="1985" width="0.2" height="15.0" fill="rgb(212,142,52)" rx="2" ry="2" />
<text text-anchor="" x="185.95" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('notifier_call_chain (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>notifier_call_chain (1 samples, 0.02%)</title><rect x="1042.2" y="1985" width="0.2" height="15.0" fill="rgb(211,197,23)" rx="2" ry="2" />
<text text-anchor="" x="1045.17" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.02%)</title><rect x="874.5" y="1937" width="0.3" height="15.0" fill="rgb(245,67,45)" rx="2" ry="2" />
<text text-anchor="" x="877.50" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.07%)</title><rect x="780.1" y="1745" width="0.8" height="15.0" fill="rgb(219,155,29)" rx="2" ry="2" />
<text text-anchor="" x="783.09" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="833" width="0.3" height="15.0" fill="rgb(238,208,7)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.02%)</title><rect x="41.5" y="1761" width="0.2" height="15.0" fill="rgb(247,176,36)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="449" width="0.8" height="15.0" fill="rgb(250,53,48)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__execve (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__execve (1 samples, 0.02%)</title><rect x="88.3" y="2033" width="0.2" height="15.0" fill="rgb(253,36,54)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_start (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start (6 samples, 0.13%)</title><rect x="1154.8" y="1905" width="1.6" height="15.0" fill="rgb(221,170,5)" rx="2" ry="2" />
<text text-anchor="" x="1157.83" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::WriteToMessageAttachmentSet (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::WriteToMessageAttachmentSet (3 samples, 0.07%)</title><rect x="393.2" y="1825" width="0.8" height="15.0" fill="rgb(252,195,8)" rx="2" ry="2" />
<text text-anchor="" x="396.20" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (42 samples, 0.94%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (42 samples, 0.94%)</title><rect x="270.5" y="1745" width="11.1" height="15.0" fill="rgb(238,212,44)" rx="2" ry="2" />
<text text-anchor="" x="273.49" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (28 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (28 samples, 0.63%)</title><rect x="511.4" y="1713" width="7.4" height="15.0" fill="rgb(213,48,31)" rx="2" ry="2" />
<text text-anchor="" x="514.41" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1073" width="0.3" height="15.0" fill="rgb(251,36,17)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (2 samples, 0.04%)</title><rect x="495.5" y="1841" width="0.6" height="15.0" fill="rgb(236,198,34)" rx="2" ry="2" />
<text text-anchor="" x="498.54" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (21 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (21 samples, 0.47%)</title><rect x="144.9" y="1889" width="5.5" height="15.0" fill="rgb(238,208,1)" rx="2" ry="2" />
<text text-anchor="" x="147.87" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (11 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (11 samples, 0.25%)</title><rect x="115.3" y="1889" width="2.9" height="15.0" fill="rgb(237,49,7)" rx="2" ry="2" />
<text text-anchor="" x="118.25" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="433" width="0.3" height="15.0" fill="rgb(219,62,19)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base8internal8LockImpl4LockEv@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base8internal8LockImpl4LockEv@plt (1 samples, 0.02%)</title><rect x="669.0" y="1537" width="0.3" height="15.0" fill="rgb(209,141,29)" rx="2" ry="2" />
<text text-anchor="" x="672.02" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (211 samples, 4.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (211 samples, 4.73%)</title><rect x="238.5" y="1921" width="55.8" height="15.0" fill="rgb(246,5,24)" rx="2" ry="2" />
<text text-anchor="" x="241.49" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wak..</text>
</g>
<g class="func_g" onmouseover="s('copy_page_rep (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_rep (1 samples, 0.02%)</title><rect x="1177.8" y="1953" width="0.3" height="15.0" fill="rgb(206,33,18)" rx="2" ry="2" />
<text text-anchor="" x="1180.84" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_openat (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_openat (1 samples, 0.02%)</title><rect x="867.6" y="1921" width="0.3" height="15.0" fill="rgb(247,147,46)" rx="2" ry="2" />
<text text-anchor="" x="870.63" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (3 samples, 0.07%)</title><rect x="590.7" y="1809" width="0.8" height="15.0" fill="rgb(223,122,27)" rx="2" ry="2" />
<text text-anchor="" x="593.74" y="1819.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="1117.0" y="1937" width="0.5" height="15.0" fill="rgb(221,100,30)" rx="2" ry="2" />
<text text-anchor="" x="1120.01" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TestSuite::Run (1,934 samples, 43.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestSuite::Run (1,934 samples, 43.34%)</title><rect x="297.7" y="2001" width="511.5" height="15.0" fill="rgb(239,26,7)" rx="2" ry="2" />
<text text-anchor="" x="300.73" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::TestSuite::Run</text>
</g>
<g class="func_g" onmouseover="s('verify_iovec (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>verify_iovec (1 samples, 0.02%)</title><rect x="768.2" y="1713" width="0.3" height="15.0" fill="rgb(250,76,33)" rx="2" ry="2" />
<text text-anchor="" x="771.19" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="31.4" y="2033" width="1.1" height="15.0" fill="rgb(253,31,44)" rx="2" ry="2" />
<text text-anchor="" x="34.42" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (7 samples, 0.16%)</title><rect x="624.9" y="1633" width="1.8" height="15.0" fill="rgb(227,176,50)" rx="2" ry="2" />
<text text-anchor="" x="627.86" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.02%)</title><rect x="297.5" y="1985" width="0.2" height="15.0" fill="rgb(213,101,26)" rx="2" ry="2" />
<text text-anchor="" x="300.46" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AsyncWaiter::~AsyncWaiter (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AsyncWaiter::~AsyncWaiter (6 samples, 0.13%)</title><rect x="789.4" y="1665" width="1.5" height="15.0" fill="rgb(236,164,29)" rx="2" ry="2" />
<text text-anchor="" x="792.35" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (1 samples, 0.02%)</title><rect x="351.7" y="1825" width="0.2" height="15.0" fill="rgb(216,27,3)" rx="2" ry="2" />
<text text-anchor="" x="354.68" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fuse_dev_do_read.isra.16 (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fuse_dev_do_read.isra.16 (2 samples, 0.04%)</title><rect x="1189.2" y="1889" width="0.5" height="15.0" fill="rgb(206,214,38)" rx="2" ry="2" />
<text text-anchor="" x="1192.21" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (3 samples, 0.07%)</title><rect x="627.0" y="1665" width="0.8" height="15.0" fill="rgb(205,24,49)" rx="2" ry="2" />
<text text-anchor="" x="629.97" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.02%)</title><rect x="1165.4" y="1921" width="0.3" height="15.0" fill="rgb(231,168,7)" rx="2" ry="2" />
<text text-anchor="" x="1168.41" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (1 samples, 0.02%)</title><rect x="869.0" y="2033" width="0.2" height="15.0" fill="rgb(222,40,29)" rx="2" ry="2" />
<text text-anchor="" x="871.95" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('lookup_fast (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>lookup_fast (1 samples, 0.02%)</title><rect x="881.1" y="1825" width="0.3" height="15.0" fill="rgb(224,16,29)" rx="2" ry="2" />
<text text-anchor="" x="884.12" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (35 samples, 0.78%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (35 samples, 0.78%)</title><rect x="358.3" y="1761" width="9.2" height="15.0" fill="rgb(214,91,44)" rx="2" ry="2" />
<text text-anchor="" x="361.29" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (57 samples, 1.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (57 samples, 1.28%)</title><rect x="409.9" y="1665" width="15.0" height="15.0" fill="rgb(230,229,32)" rx="2" ry="2" />
<text text-anchor="" x="412.86" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="870.0" y="2033" width="0.3" height="15.0" fill="rgb(233,210,44)" rx="2" ry="2" />
<text text-anchor="" x="873.01" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__secure_computing (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__secure_computing (1 samples, 0.02%)</title><rect x="163.9" y="1985" width="0.3" height="15.0" fill="rgb(208,116,10)" rx="2" ry="2" />
<text text-anchor="" x="166.91" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (5 samples, 0.11%)</title><rect x="113.9" y="1905" width="1.4" height="15.0" fill="rgb(237,101,23)" rx="2" ry="2" />
<text text-anchor="" x="116.93" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pre_schedule_idle (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pre_schedule_idle (1 samples, 0.02%)</title><rect x="1153.2" y="1937" width="0.3" height="15.0" fill="rgb(224,30,40)" rx="2" ry="2" />
<text text-anchor="" x="1156.24" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (1 samples, 0.02%)</title><rect x="464.3" y="1729" width="0.3" height="15.0" fill="rgb(229,217,26)" rx="2" ry="2" />
<text text-anchor="" x="467.33" y="1739.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="1186.8" y="1841" width="0.3" height="15.0" fill="rgb(205,46,22)" rx="2" ry="2" />
<text text-anchor="" x="1189.83" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_for_each_child (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_for_each_child (5 samples, 0.11%)</title><rect x="873.2" y="1889" width="1.3" height="15.0" fill="rgb(232,58,48)" rx="2" ry="2" />
<text text-anchor="" x="876.18" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (1 samples, 0.02%)</title><rect x="743.6" y="1761" width="0.3" height="15.0" fill="rgb(216,99,2)" rx="2" ry="2" />
<text text-anchor="" x="746.60" y="1771.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="26.4" y="1985" width="0.3" height="15.0" fill="rgb(246,166,38)" rx="2" ry="2" />
<text text-anchor="" x="29.40" y="1995.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="1182.3" y="1873" width="0.3" height="15.0" fill="rgb(251,102,14)" rx="2" ry="2" />
<text text-anchor="" x="1185.33" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::PickleIterator (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::PickleIterator (4 samples, 0.09%)</title><rect x="696.5" y="1713" width="1.1" height="15.0" fill="rgb(224,0,37)" rx="2" ry="2" />
<text text-anchor="" x="699.53" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1009" width="0.3" height="15.0" fill="rgb(214,186,46)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1019.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.02%)</title><rect x="31.7" y="1857" width="0.2" height="15.0" fill="rgb(233,53,26)" rx="2" ry="2" />
<text text-anchor="" x="34.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_write (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_write (1 samples, 0.02%)</title><rect x="41.5" y="1889" width="0.2" height="15.0" fill="rgb(211,55,17)" rx="2" ry="2" />
<text text-anchor="" x="44.47" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="759.2" y="1601" width="0.3" height="15.0" fill="rgb(215,69,34)" rx="2" ry="2" />
<text text-anchor="" x="762.20" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tracesys (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tracesys (1 samples, 0.02%)</title><rect x="183.2" y="1985" width="0.3" height="15.0" fill="rgb(213,22,25)" rx="2" ry="2" />
<text text-anchor="" x="186.22" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.11%)</title><rect x="148.6" y="1681" width="1.3" height="15.0" fill="rgb(211,52,14)" rx="2" ry="2" />
<text text-anchor="" x="151.57" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_last (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_last (1 samples, 0.02%)</title><rect x="867.6" y="1905" width="0.3" height="15.0" fill="rgb(216,196,41)" rx="2" ry="2" />
<text text-anchor="" x="870.63" y="1915.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="64.5" y="1953" width="0.2" height="15.0" fill="rgb(252,202,45)" rx="2" ry="2" />
<text text-anchor="" x="67.48" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (16 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (16 samples, 0.36%)</title><rect x="561.4" y="1825" width="4.2" height="15.0" fill="rgb(226,107,23)" rx="2" ry="2" />
<text text-anchor="" x="564.39" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (1 samples, 0.02%)</title><rect x="559.0" y="1857" width="0.3" height="15.0" fill="rgb(219,34,16)" rx="2" ry="2" />
<text text-anchor="" x="562.01" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.02%)</title><rect x="153.6" y="1729" width="0.3" height="15.0" fill="rgb(213,130,8)" rx="2" ry="2" />
<text text-anchor="" x="156.60" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc (1 samples, 0.02%)</title><rect x="884.0" y="1921" width="0.3" height="15.0" fill="rgb(234,7,41)" rx="2" ry="2" />
<text text-anchor="" x="887.03" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::GetNextMessageSize (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::GetNextMessageSize (2 samples, 0.04%)</title><rect x="773.2" y="1793" width="0.5" height="15.0" fill="rgb(209,0,52)" rx="2" ry="2" />
<text text-anchor="" x="776.22" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_wakeup (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_wakeup (1 samples, 0.02%)</title><rect x="98.3" y="1857" width="0.3" height="15.0" fill="rgb(231,14,22)" rx="2" ry="2" />
<text text-anchor="" x="101.33" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_Znwm@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm@plt (1 samples, 0.02%)</title><rect x="445.8" y="1793" width="0.3" height="15.0" fill="rgb(219,220,43)" rx="2" ry="2" />
<text text-anchor="" x="448.82" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1729" width="0.3" height="15.0" fill="rgb(250,99,23)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_XFreeReplyData (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_XFreeReplyData (1 samples, 0.02%)</title><rect x="177.1" y="2017" width="0.3" height="15.0" fill="rgb(240,37,31)" rx="2" ry="2" />
<text text-anchor="" x="180.14" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1969" width="0.3" height="15.0" fill="rgb(208,188,8)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="148.8" y="1633" width="1.1" height="15.0" fill="rgb(220,87,41)" rx="2" ry="2" />
<text text-anchor="" x="151.84" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (12 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (12 samples, 0.27%)</title><rect x="916.3" y="1809" width="3.2" height="15.0" fill="rgb(232,163,32)" rx="2" ry="2" />
<text text-anchor="" x="919.29" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (1 samples, 0.02%)</title><rect x="666.1" y="1585" width="0.3" height="15.0" fill="rgb(245,176,20)" rx="2" ry="2" />
<text text-anchor="" x="669.11" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_file_permission (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="1187.6" y="1825" width="0.3" height="15.0" fill="rgb(244,97,35)" rx="2" ry="2" />
<text text-anchor="" x="1190.62" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::PickleIterator (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::PickleIterator (5 samples, 0.11%)</title><rect x="443.4" y="1793" width="1.4" height="15.0" fill="rgb(245,172,52)" rx="2" ry="2" />
<text text-anchor="" x="446.44" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kthread (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kthread (1 samples, 0.02%)</title><rect x="876.4" y="2017" width="0.2" height="15.0" fill="rgb(254,20,41)" rx="2" ry="2" />
<text text-anchor="" x="879.36" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (5 samples, 0.11%)</title><rect x="610.8" y="1713" width="1.4" height="15.0" fill="rgb(235,22,39)" rx="2" ry="2" />
<text text-anchor="" x="613.84" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__cmpxchg_double_slab.isra.40 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__cmpxchg_double_slab.isra.40 (1 samples, 0.02%)</title><rect x="235.3" y="1873" width="0.3" height="15.0" fill="rgb(227,65,20)" rx="2" ry="2" />
<text text-anchor="" x="238.32" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="417" width="0.8" height="15.0" fill="rgb(228,102,28)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_hrtimer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (1 samples, 0.02%)</title><rect x="1155.4" y="1873" width="0.2" height="15.0" fill="rgb(208,84,51)" rx="2" ry="2" />
<text text-anchor="" x="1158.36" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (1 samples, 0.02%)</title><rect x="799.7" y="1761" width="0.2" height="15.0" fill="rgb(227,24,30)" rx="2" ry="2" />
<text text-anchor="" x="802.66" y="1771.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.02%)</title><rect x="918.4" y="1777" width="0.3" height="15.0" fill="rgb(205,117,16)" rx="2" ry="2" />
<text text-anchor="" x="921.40" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (3 samples, 0.07%)</title><rect x="349.6" y="1793" width="0.8" height="15.0" fill="rgb(216,153,37)" rx="2" ry="2" />
<text text-anchor="" x="352.56" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="49" width="0.3" height="15.0" fill="rgb(224,82,32)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('proc_pident_lookup (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>proc_pident_lookup (1 samples, 0.02%)</title><rect x="1167.8" y="1873" width="0.3" height="15.0" fill="rgb(206,186,9)" rx="2" ry="2" />
<text text-anchor="" x="1170.79" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('retint_signal (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>retint_signal (1 samples, 0.02%)</title><rect x="152.3" y="1953" width="0.2" height="15.0" fill="rgb(229,215,43)" rx="2" ry="2" />
<text text-anchor="" x="155.28" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (25 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (25 samples, 0.56%)</title><rect x="620.4" y="1649" width="6.6" height="15.0" fill="rgb(241,144,27)" rx="2" ry="2" />
<text text-anchor="" x="623.36" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="385" width="0.3" height="15.0" fill="rgb(253,72,27)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (3 samples, 0.07%)</title><rect x="1065.4" y="1969" width="0.8" height="15.0" fill="rgb(240,178,45)" rx="2" ry="2" />
<text text-anchor="" x="1068.44" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::PipeIsReady (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::PipeIsReady (1 samples, 0.02%)</title><rect x="477.3" y="1873" width="0.3" height="15.0" fill="rgb(214,201,23)" rx="2" ry="2" />
<text text-anchor="" x="480.29" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1585" width="0.3" height="15.0" fill="rgb(212,34,30)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1595.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (1 samples, 0.02%)</title><rect x="61.8" y="1953" width="0.3" height="15.0" fill="rgb(235,120,37)" rx="2" ry="2" />
<text text-anchor="" x="64.83" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('call_function_single_interrupt (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>call_function_single_interrupt (4 samples, 0.09%)</title><rect x="1136.3" y="1921" width="1.1" height="15.0" fill="rgb(219,51,9)" rx="2" ry="2" />
<text text-anchor="" x="1139.32" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="769" width="0.3" height="15.0" fill="rgb(208,175,6)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (1 samples, 0.02%)</title><rect x="868.7" y="2033" width="0.3" height="15.0" fill="rgb(223,155,26)" rx="2" ry="2" />
<text text-anchor="" x="871.69" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (7 samples, 0.16%)</title><rect x="520.4" y="1729" width="1.9" height="15.0" fill="rgb(218,115,27)" rx="2" ry="2" />
<text text-anchor="" x="523.40" y="1739.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (1 samples, 0.02%)</title><rect x="544.5" y="1809" width="0.2" height="15.0" fill="rgb(212,219,3)" rx="2" ry="2" />
<text text-anchor="" x="547.46" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.02%)</title><rect x="10.0" y="2017" width="0.3" height="15.0" fill="rgb(226,21,24)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_idle (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (1 samples, 0.02%)</title><rect x="158.9" y="1905" width="0.3" height="15.0" fill="rgb(226,159,6)" rx="2" ry="2" />
<text text-anchor="" x="161.89" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="369" width="0.3" height="15.0" fill="rgb(238,60,27)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_writev (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (2 samples, 0.04%)</title><rect x="1187.4" y="1905" width="0.5" height="15.0" fill="rgb(235,216,8)" rx="2" ry="2" />
<text text-anchor="" x="1190.36" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sys_poll (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_poll (1 samples, 0.02%)</title><rect x="163.4" y="1985" width="0.2" height="15.0" fill="rgb(218,123,12)" rx="2" ry="2" />
<text text-anchor="" x="166.38" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::TraceMessageEnd (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageEnd (1 samples, 0.02%)</title><rect x="701.0" y="1729" width="0.3" height="15.0" fill="rgb(248,182,9)" rx="2" ry="2" />
<text text-anchor="" x="704.02" y="1739.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="880.3" y="1985" width="0.3" height="15.0" fill="rgb(205,121,7)" rx="2" ry="2" />
<text text-anchor="" x="883.32" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_copy_inode (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_copy_inode (1 samples, 0.02%)</title><rect x="90.9" y="1889" width="0.3" height="15.0" fill="rgb(217,223,18)" rx="2" ry="2" />
<text text-anchor="" x="93.92" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.02%)</title><rect x="418.3" y="1601" width="0.3" height="15.0" fill="rgb(219,228,16)" rx="2" ry="2" />
<text text-anchor="" x="421.32" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (1 samples, 0.02%)</title><rect x="872.9" y="1969" width="0.3" height="15.0" fill="rgb(237,174,52)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.02%)</title><rect x="746.8" y="1745" width="0.2" height="15.0" fill="rgb(240,185,27)" rx="2" ry="2" />
<text text-anchor="" x="749.77" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scheduler_ipi (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_ipi (4 samples, 0.09%)</title><rect x="1036.9" y="1937" width="1.0" height="15.0" fill="rgb(217,64,3)" rx="2" ry="2" />
<text text-anchor="" x="1039.88" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (943 samples, 21.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (943 samples, 21.13%)</title><rect x="559.8" y="1857" width="249.4" height="15.0" fill="rgb(248,35,41)" rx="2" ry="2" />
<text text-anchor="" x="562.80" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::Run</text>
</g>
<g class="func_g" onmouseover="s('g_string_insert_unichar (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>g_string_insert_unichar (3 samples, 0.07%)</title><rect x="179.8" y="2033" width="0.8" height="15.0" fill="rgb(206,26,3)" rx="2" ry="2" />
<text text-anchor="" x="182.78" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_notify_resume (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_notify_resume (3 samples, 0.07%)</title><rect x="162.3" y="2001" width="0.8" height="15.0" fill="rgb(207,159,20)" rx="2" ry="2" />
<text text-anchor="" x="165.33" y="2011.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="23.2" y="1937" width="0.3" height="15.0" fill="rgb(209,156,23)" rx="2" ry="2" />
<text text-anchor="" x="26.22" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_read (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_read (1 samples, 0.02%)</title><rect x="1174.9" y="1937" width="0.3" height="15.0" fill="rgb(205,213,27)" rx="2" ry="2" />
<text text-anchor="" x="1177.93" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1745" width="0.3" height="15.0" fill="rgb(207,99,26)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="173.7" y="2017" width="0.5" height="15.0" fill="rgb(220,112,29)" rx="2" ry="2" />
<text text-anchor="" x="176.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sys_poll (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_poll (2 samples, 0.04%)</title><rect x="177.9" y="1985" width="0.6" height="15.0" fill="rgb(239,152,40)" rx="2" ry="2" />
<text text-anchor="" x="180.93" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="163.4" y="1953" width="0.2" height="15.0" fill="rgb(221,5,31)" rx="2" ry="2" />
<text text-anchor="" x="166.38" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base11MessageLoop10DoIdleWorkEv@plt (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base11MessageLoop10DoIdleWorkEv@plt (2 samples, 0.04%)</title><rect x="297.7" y="1937" width="0.6" height="15.0" fill="rgb(209,4,39)" rx="2" ry="2" />
<text text-anchor="" x="300.73" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (79 samples, 1.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (79 samples, 1.77%)</title><rect x="747.6" y="1745" width="20.9" height="15.0" fill="rgb(250,120,39)" rx="2" ry="2" />
<text text-anchor="" x="750.57" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="148.8" y="1617" width="1.1" height="15.0" fill="rgb(249,219,38)" rx="2" ry="2" />
<text text-anchor="" x="151.84" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.02%)</title><rect x="407.2" y="1505" width="0.3" height="15.0" fill="rgb(219,58,51)" rx="2" ry="2" />
<text text-anchor="" x="410.21" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (103 samples, 2.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (103 samples, 2.31%)</title><rect x="1053.0" y="1985" width="27.3" height="15.0" fill="rgb(210,31,21)" rx="2" ry="2" />
<text text-anchor="" x="1056.01" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="163.4" y="1905" width="0.2" height="15.0" fill="rgb(241,86,46)" rx="2" ry="2" />
<text text-anchor="" x="166.38" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (935 samples, 20.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (935 samples, 20.95%)</title><rect x="311.7" y="1921" width="247.3" height="15.0" fill="rgb(237,69,21)" rx="2" ry="2" />
<text text-anchor="" x="314.74" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_base_loop</text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.02%)</title><rect x="364.1" y="1697" width="0.3" height="15.0" fill="rgb(228,79,14)" rx="2" ry="2" />
<text text-anchor="" x="367.11" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="31.7" y="1921" width="0.2" height="15.0" fill="rgb(214,77,26)" rx="2" ry="2" />
<text text-anchor="" x="34.69" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('nr_iowait_cpu (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>nr_iowait_cpu (1 samples, 0.02%)</title><rect x="1034.8" y="1969" width="0.2" height="15.0" fill="rgb(221,42,47)" rx="2" ry="2" />
<text text-anchor="" x="1037.76" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_add_file_rmap (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_add_file_rmap (1 samples, 0.02%)</title><rect x="885.3" y="1937" width="0.3" height="15.0" fill="rgb(240,108,44)" rx="2" ry="2" />
<text text-anchor="" x="888.35" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Compositor (13 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>Compositor (13 samples, 0.29%)</title><rect x="27.7" y="2049" width="3.5" height="15.0" fill="rgb(220,123,29)" rx="2" ry="2" />
<text text-anchor="" x="30.72" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (5 samples, 0.11%)</title><rect x="706.6" y="1713" width="1.3" height="15.0" fill="rgb(244,206,32)" rx="2" ry="2" />
<text text-anchor="" x="709.58" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('lapic_next_deadline (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>lapic_next_deadline (1 samples, 0.02%)</title><rect x="1098.8" y="1873" width="0.2" height="15.0" fill="rgb(237,57,25)" rx="2" ry="2" />
<text text-anchor="" x="1101.76" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mbrtowc@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mbrtowc@plt (1 samples, 0.02%)</title><rect x="94.6" y="2033" width="0.3" height="15.0" fill="rgb(235,95,15)" rx="2" ry="2" />
<text text-anchor="" x="97.63" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (1 samples, 0.02%)</title><rect x="171.8" y="1969" width="0.3" height="15.0" fill="rgb(215,210,50)" rx="2" ry="2" />
<text text-anchor="" x="174.85" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>int_check_syscall_exit_work (1 samples, 0.02%)</title><rect x="14.2" y="2017" width="0.3" height="15.0" fill="rgb(207,43,6)" rx="2" ry="2" />
<text text-anchor="" x="17.23" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (36 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (36 samples, 0.81%)</title><rect x="108.6" y="1969" width="9.6" height="15.0" fill="rgb(212,142,29)" rx="2" ry="2" />
<text text-anchor="" x="111.64" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::Send (116 samples, 2.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::Send (116 samples, 2.60%)</title><rect x="400.3" y="1761" width="30.7" height="15.0" fill="rgb(214,25,17)" rx="2" ry="2" />
<text text-anchor="" x="403.34" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IP..</text>
</g>
<g class="func_g" onmouseover="s('g_mutex_get_impl (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>g_mutex_get_impl (3 samples, 0.07%)</title><rect x="156.0" y="2001" width="0.8" height="15.0" fill="rgb(211,97,27)" rx="2" ry="2" />
<text text-anchor="" x="158.98" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mmput (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mmput (1 samples, 0.02%)</title><rect x="97.8" y="1969" width="0.3" height="15.0" fill="rgb(245,186,49)" rx="2" ry="2" />
<text text-anchor="" x="100.80" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (2 samples, 0.04%)</title><rect x="158.4" y="1857" width="0.5" height="15.0" fill="rgb(246,135,28)" rx="2" ry="2" />
<text text-anchor="" x="161.36" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1745" width="0.3" height="15.0" fill="rgb(225,156,18)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1755.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.02%)</title><rect x="915.5" y="1857" width="0.3" height="15.0" fill="rgb(223,192,33)" rx="2" ry="2" />
<text text-anchor="" x="918.50" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.02%)</title><rect x="645.2" y="1601" width="0.3" height="15.0" fill="rgb(251,209,45)" rx="2" ry="2" />
<text text-anchor="" x="648.22" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::HasOneRef (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (3 samples, 0.07%)</title><rect x="486.0" y="1889" width="0.8" height="15.0" fill="rgb(230,163,33)" rx="2" ry="2" />
<text text-anchor="" x="489.02" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.02%)</title><rect x="153.6" y="1857" width="0.3" height="15.0" fill="rgb(246,71,47)" rx="2" ry="2" />
<text text-anchor="" x="156.60" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (1 samples, 0.02%)</title><rect x="88.3" y="1985" width="0.2" height="15.0" fill="rgb(225,126,42)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.02%)</title><rect x="589.4" y="1793" width="0.3" height="15.0" fill="rgb(249,40,26)" rx="2" ry="2" />
<text text-anchor="" x="592.42" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (8 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (8 samples, 0.18%)</title><rect x="256.2" y="1793" width="2.1" height="15.0" fill="rgb(230,35,37)" rx="2" ry="2" />
<text text-anchor="" x="259.21" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (27 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (27 samples, 0.61%)</title><rect x="458.8" y="1761" width="7.1" height="15.0" fill="rgb(216,36,10)" rx="2" ry="2" />
<text text-anchor="" x="461.78" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('inode_permission (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>inode_permission (2 samples, 0.04%)</title><rect x="75.8" y="1857" width="0.6" height="15.0" fill="rgb(219,76,53)" rx="2" ry="2" />
<text text-anchor="" x="78.85" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fuse_dev_do_write (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>fuse_dev_do_write (1 samples, 0.02%)</title><rect x="1187.4" y="1825" width="0.2" height="15.0" fill="rgb(239,186,22)" rx="2" ry="2" />
<text text-anchor="" x="1190.36" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (120 samples, 2.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (120 samples, 2.69%)</title><rect x="921.0" y="1841" width="31.8" height="15.0" fill="rgb(234,154,25)" rx="2" ry="2" />
<text text-anchor="" x="924.05" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x8..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1697" width="0.3" height="15.0" fill="rgb(217,22,6)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_force_reprogram (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_force_reprogram (2 samples, 0.04%)</title><rect x="1115.7" y="1921" width="0.5" height="15.0" fill="rgb(210,37,48)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="945" width="0.3" height="15.0" fill="rgb(245,155,28)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1329" width="0.3" height="15.0" fill="rgb(239,143,17)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.07%)</title><rect x="679.9" y="1569" width="0.8" height="15.0" fill="rgb(240,133,46)" rx="2" ry="2" />
<text text-anchor="" x="682.87" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.04%)</title><rect x="196.2" y="2001" width="0.5" height="15.0" fill="rgb(235,108,51)" rx="2" ry="2" />
<text text-anchor="" x="199.18" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.07%)</title><rect x="799.9" y="1761" width="0.8" height="15.0" fill="rgb(222,27,41)" rx="2" ry="2" />
<text text-anchor="" x="802.93" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection (1 samples, 0.02%)</title><rect x="1182.1" y="1825" width="0.2" height="15.0" fill="rgb(241,161,0)" rx="2" ry="2" />
<text text-anchor="" x="1185.07" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('process_one_work (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>process_one_work (1 samples, 0.02%)</title><rect x="868.2" y="1985" width="0.2" height="15.0" fill="rgb(228,129,37)" rx="2" ry="2" />
<text text-anchor="" x="871.16" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_open (1 samples, 0.02%)</title><rect x="25.6" y="1969" width="0.3" height="15.0" fill="rgb(231,115,6)" rx="2" ry="2" />
<text text-anchor="" x="28.60" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.02%)</title><rect x="187.2" y="1985" width="0.2" height="15.0" fill="rgb(206,93,3)" rx="2" ry="2" />
<text text-anchor="" x="190.19" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_page_fault (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (3 samples, 0.07%)</title><rect x="161.3" y="2001" width="0.8" height="15.0" fill="rgb(224,32,36)" rx="2" ry="2" />
<text text-anchor="" x="164.27" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="209" width="0.3" height="15.0" fill="rgb(227,131,20)" rx="2" ry="2" />
<text text-anchor="" x="32.31" 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 (29 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (29 samples, 0.65%)</title><rect x="755.5" y="1649" width="7.7" height="15.0" fill="rgb(205,95,19)" rx="2" ry="2" />
<text text-anchor="" x="758.50" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fuse_copy_args (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>fuse_copy_args (1 samples, 0.02%)</title><rect x="1189.2" y="1873" width="0.3" height="15.0" fill="rgb(232,62,21)" rx="2" ry="2" />
<text text-anchor="" x="1192.21" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (1 samples, 0.02%)</title><rect x="684.4" y="1681" width="0.2" height="15.0" fill="rgb(248,58,44)" rx="2" ry="2" />
<text text-anchor="" x="687.36" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_idle (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (1 samples, 0.02%)</title><rect x="630.9" y="1713" width="0.3" height="15.0" fill="rgb(228,49,38)" rx="2" ry="2" />
<text text-anchor="" x="633.94" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ahci_handle_port_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ahci_handle_port_interrupt (1 samples, 0.02%)</title><rect x="1037.9" y="1841" width="0.3" height="15.0" fill="rgb(217,62,22)" rx="2" ry="2" />
<text text-anchor="" x="1040.94" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="33.0" y="1905" width="0.3" height="15.0" fill="rgb(210,49,38)" rx="2" ry="2" />
<text text-anchor="" x="36.01" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (10 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (10 samples, 0.22%)</title><rect x="344.5" y="1825" width="2.7" height="15.0" fill="rgb(206,185,11)" rx="2" ry="2" />
<text text-anchor="" x="347.54" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="870.3" y="2033" width="0.8" height="15.0" fill="rgb(229,70,41)" rx="2" ry="2" />
<text text-anchor="" x="873.27" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('emacs (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>emacs (3 samples, 0.07%)</title><rect x="173.7" y="2049" width="0.8" height="15.0" fill="rgb(253,80,44)" rx="2" ry="2" />
<text text-anchor="" x="176.70" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuidle_enter_state (266 samples, 5.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuidle_enter_state (266 samples, 5.96%)</title><rect x="952.8" y="1969" width="70.3" height="15.0" fill="rgb(233,16,31)" rx="2" ry="2" />
<text text-anchor="" x="955.78" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cpuidle..</text>
</g>
<g class="func_g" onmouseover="s('atomic_notifier_call_chain (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>atomic_notifier_call_chain (2 samples, 0.04%)</title><rect x="1042.4" y="2001" width="0.6" height="15.0" fill="rgb(239,158,31)" rx="2" ry="2" />
<text text-anchor="" x="1045.43" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (68 samples, 1.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (68 samples, 1.52%)</title><rect x="614.0" y="1761" width="18.0" height="15.0" fill="rgb(249,222,52)" rx="2" ry="2" />
<text text-anchor="" x="617.02" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elv_completed_request (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>elv_completed_request (1 samples, 0.02%)</title><rect x="1038.7" y="1777" width="0.3" height="15.0" fill="rgb(211,162,43)" rx="2" ry="2" />
<text text-anchor="" x="1041.73" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (11 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (11 samples, 0.25%)</title><rect x="431.5" y="1777" width="3.0" height="15.0" fill="rgb(248,210,50)" rx="2" ry="2" />
<text text-anchor="" x="434.54" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.02%)</title><rect x="627.5" y="1601" width="0.3" height="15.0" fill="rgb(233,37,43)" rx="2" ry="2" />
<text text-anchor="" x="630.50" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="148.8" y="1313" width="1.1" height="15.0" fill="rgb(247,188,40)" rx="2" ry="2" />
<text text-anchor="" x="151.84" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('e1000_receive_skb (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>e1000_receive_skb (2 samples, 0.04%)</title><rect x="1039.0" y="1857" width="0.5" height="15.0" fill="rgb(210,217,53)" rx="2" ry="2" />
<text text-anchor="" x="1042.00" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="1186.3" y="1793" width="0.5" height="15.0" fill="rgb(223,161,4)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.09%)</title><rect x="1188.1" y="1873" width="1.1" height="15.0" fill="rgb(219,149,25)" rx="2" ry="2" />
<text text-anchor="" x="1191.15" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.02%)</title><rect x="868.4" y="1969" width="0.3" height="15.0" fill="rgb(232,36,42)" rx="2" ry="2" />
<text text-anchor="" x="871.42" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('arch_cpu_idle_exit (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>arch_cpu_idle_exit (2 samples, 0.04%)</title><rect x="1041.9" y="2001" width="0.5" height="15.0" fill="rgb(221,47,32)" rx="2" ry="2" />
<text text-anchor="" x="1044.90" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="874.5" y="1921" width="0.3" height="15.0" fill="rgb(243,58,37)" rx="2" ry="2" />
<text text-anchor="" x="877.50" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::TraceMessageBegin (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageBegin (1 samples, 0.02%)</title><rect x="660.8" y="1665" width="0.3" height="15.0" fill="rgb(234,51,31)" rx="2" ry="2" />
<text text-anchor="" x="663.82" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.02%)</title><rect x="76.6" y="1729" width="0.3" height="15.0" fill="rgb(215,101,15)" rx="2" ry="2" />
<text text-anchor="" x="79.64" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('menu_reflect (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>menu_reflect (3 samples, 0.07%)</title><rect x="1040.3" y="1985" width="0.8" height="15.0" fill="rgb(220,176,7)" rx="2" ry="2" />
<text text-anchor="" x="1043.32" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_eqs_enter (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_eqs_enter (1 samples, 0.02%)</title><rect x="1149.0" y="1937" width="0.3" height="15.0" fill="rgb(220,154,52)" rx="2" ry="2" />
<text text-anchor="" x="1152.01" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__xstat64 (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__xstat64 (1 samples, 0.02%)</title><rect x="90.7" y="2033" width="0.2" height="15.0" fill="rgb(244,111,32)" rx="2" ry="2" />
<text text-anchor="" x="93.66" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_nohz_restart (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_nohz_restart (1 samples, 0.02%)</title><rect x="1130.8" y="2001" width="0.2" height="15.0" fill="rgb(237,157,41)" rx="2" ry="2" />
<text text-anchor="" x="1133.76" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="337" width="0.3" height="15.0" fill="rgb(216,82,14)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (1 samples, 0.02%)</title><rect x="629.6" y="1697" width="0.3" height="15.0" fill="rgb(223,83,52)" rx="2" ry="2" />
<text text-anchor="" x="632.62" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="118.4" y="1873" width="0.3" height="15.0" fill="rgb(237,9,2)" rx="2" ry="2" />
<text text-anchor="" x="121.43" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="609" width="0.8" height="15.0" fill="rgb(227,164,39)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection (1 samples, 0.02%)</title><rect x="151.2" y="1857" width="0.3" height="15.0" fill="rgb(227,144,48)" rx="2" ry="2" />
<text text-anchor="" x="154.22" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clockevents_program_event (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clockevents_program_event (2 samples, 0.04%)</title><rect x="1115.7" y="1889" width="0.5" height="15.0" fill="rgb(252,205,34)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="29.3" y="1665" width="0.3" height="15.0" fill="rgb(239,227,20)" rx="2" ry="2" />
<text text-anchor="" x="32.31" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection (1 samples, 0.02%)</title><rect x="160.7" y="1937" width="0.3" height="15.0" fill="rgb(221,24,8)" rx="2" ry="2" />
<text text-anchor="" x="163.74" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (2 samples, 0.04%)</title><rect x="571.4" y="1841" width="0.6" height="15.0" fill="rgb(245,163,14)" rx="2" ry="2" />
<text text-anchor="" x="574.44" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_read (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.02%)</title><rect x="153.1" y="1937" width="0.2" height="15.0" fill="rgb(219,73,21)" rx="2" ry="2" />
<text text-anchor="" x="156.07" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('worker_thread (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>worker_thread (1 samples, 0.02%)</title><rect x="868.4" y="2001" width="0.3" height="15.0" fill="rgb(250,183,43)" rx="2" ry="2" />
<text text-anchor="" x="871.42" y="2011.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="34.6" y="1921" width="0.3" height="15.0" fill="rgb(207,120,44)" rx="2" ry="2" />
<text text-anchor="" x="37.59" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_getname (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_getname (1 samples, 0.02%)</title><rect x="76.9" y="1889" width="0.3" height="15.0" fill="rgb(246,77,45)" rx="2" ry="2" />
<text text-anchor="" x="79.91" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadAvailableMessages (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadAvailableMessages (1 samples, 0.02%)</title><rect x="642.0" y="1777" width="0.3" height="15.0" fill="rgb(218,205,40)" rx="2" ry="2" />
<text text-anchor="" x="645.05" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_munmap (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_munmap (1 samples, 0.02%)</title><rect x="1177.0" y="1969" width="0.3" height="15.0" fill="rgb(228,39,42)" rx="2" ry="2" />
<text text-anchor="" x="1180.04" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__GI___libc_close (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_close (1 samples, 0.02%)</title><rect x="877.1" y="2033" width="0.3" height="15.0" fill="rgb(233,95,4)" rx="2" ry="2" />
<text text-anchor="" x="880.15" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('e1000_intr_msix_tx (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>e1000_intr_msix_tx (1 samples, 0.02%)</title><rect x="1038.2" y="1873" width="0.3" height="15.0" fill="rgb(231,103,17)" rx="2" ry="2" />
<text text-anchor="" x="1041.20" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('int_signal (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>int_signal (1 samples, 0.02%)</title><rect x="877.1" y="2017" width="0.3" height="15.0" fill="rgb(211,24,43)" rx="2" ry="2" />
<text text-anchor="" x="880.15" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (2 samples, 0.04%)</title><rect x="23.8" y="1841" width="0.5" height="15.0" fill="rgb(234,67,40)" rx="2" ry="2" />
<text text-anchor="" x="26.75" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mprotect (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mprotect (1 samples, 0.02%)</title><rect x="1176.0" y="2017" width="0.2" height="15.0" fill="rgb(236,61,39)" rx="2" ry="2" />
<text text-anchor="" x="1178.98" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__switch_to (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to (1 samples, 0.02%)</title><rect x="160.5" y="2001" width="0.2" height="15.0" fill="rgb(245,210,18)" rx="2" ry="2" />
<text text-anchor="" x="163.48" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="26.7" y="1905" width="0.2" height="15.0" fill="rgb(252,216,43)" rx="2" ry="2" />
<text text-anchor="" x="29.66" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (5 samples, 0.11%)</title><rect x="731.4" y="1809" width="1.4" height="15.0" fill="rgb(239,31,2)" rx="2" ry="2" />
<text text-anchor="" x="734.43" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (65 samples, 1.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (65 samples, 1.46%)</title><rect x="614.8" y="1729" width="17.2" height="15.0" fill="rgb(238,43,43)" rx="2" ry="2" />
<text text-anchor="" x="617.81" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_program_event (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_program_event (4 samples, 0.09%)</title><rect x="1158.8" y="1889" width="1.1" height="15.0" fill="rgb(207,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1161.79" y="1899.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (1 samples, 0.02%)</title><rect x="34.6" y="1809" width="0.3" height="15.0" fill="rgb(227,184,6)" rx="2" ry="2" />
<text text-anchor="" x="37.59" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_eqs_enter_common.isra.48 (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_eqs_enter_common.isra.48 (2 samples, 0.04%)</title><rect x="1046.9" y="1985" width="0.6" height="15.0" fill="rgb(218,20,44)" rx="2" ry="2" />
<text text-anchor="" x="1049.93" y="1995.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="1174.9" y="2017" width="0.3" height="15.0" fill="rgb(220,123,31)" rx="2" ry="2" />
<text text-anchor="" x="1177.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_nohz_stop_sched_tick (11 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_nohz_stop_sched_tick (11 samples, 0.25%)</title><rect x="1153.8" y="1921" width="2.9" height="15.0" fill="rgb(251,164,44)" rx="2" ry="2" />
<text text-anchor="" x="1156.77" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_numa_work (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_numa_work (1 samples, 0.02%)</title><rect x="157.6" y="1953" width="0.2" height="15.0" fill="rgb(251,73,51)" rx="2" ry="2" />
<text text-anchor="" x="160.57" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.02%)</title><rect x="153.6" y="1873" width="0.3" height="15.0" fill="rgb(219,10,4)" rx="2" ry="2" />
<text text-anchor="" x="156.60" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="118.4" y="1809" width="0.3" height="15.0" fill="rgb(246,184,5)" rx="2" ry="2" />
<text text-anchor="" x="121.43" y="1819.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.02%)</title><rect x="534.4" y="1825" width="0.3" height="15.0" fill="rgb(238,12,3)" rx="2" ry="2" />
<text text-anchor="" x="537.42" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1313" width="0.3" height="15.0" fill="rgb(233,17,4)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_cpu_sd_state_idle (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_cpu_sd_state_idle (1 samples, 0.02%)</title><rect x="1081.0" y="2001" width="0.3" height="15.0" fill="rgb(247,202,48)" rx="2" ry="2" />
<text text-anchor="" x="1084.04" y="2011.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.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.09%)</title><rect x="1136.3" y="1809" width="1.1" height="15.0" fill="rgb(220,216,30)" rx="2" ry="2" />
<text text-anchor="" x="1139.32" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (1 samples, 0.02%)</title><rect x="877.1" y="1905" width="0.3" height="15.0" fill="rgb(237,72,6)" rx="2" ry="2" />
<text text-anchor="" x="880.15" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="1136.1" y="1873" width="0.2" height="15.0" fill="rgb(205,143,49)" rx="2" ry="2" />
<text text-anchor="" x="1139.05" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__GI___libc_write (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_write (1 samples, 0.02%)</title><rect x="65.3" y="2017" width="0.2" height="15.0" fill="rgb(234,4,9)" rx="2" ry="2" />
<text text-anchor="" x="68.27" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.02%)</title><rect x="98.3" y="1825" width="0.3" height="15.0" fill="rgb(238,159,32)" rx="2" ry="2" />
<text text-anchor="" x="101.33" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection (1 samples, 0.02%)</title><rect x="152.3" y="1873" width="0.2" height="15.0" fill="rgb(233,29,50)" rx="2" ry="2" />
<text text-anchor="" x="155.28" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_check_broadcast_expired (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_check_broadcast_expired (2 samples, 0.04%)</title><rect x="1132.3" y="2017" width="0.6" height="15.0" fill="rgb(236,113,0)" rx="2" ry="2" />
<text text-anchor="" x="1135.35" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (6 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (6 samples, 0.13%)</title><rect x="525.7" y="1857" width="1.6" height="15.0" fill="rgb(235,128,0)" rx="2" ry="2" />
<text text-anchor="" x="528.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::ChannelReflectorListener::OnMessageReceived (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::ChannelReflectorListener::OnMessageReceived (3 samples, 0.07%)</title><rect x="452.4" y="1809" width="0.8" height="15.0" fill="rgb(251,136,28)" rx="2" ry="2" />
<text text-anchor="" x="455.43" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AsyncWaiter::Awake (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AsyncWaiter::Awake (1 samples, 0.02%)</title><rect x="786.2" y="1697" width="0.2" height="15.0" fill="rgb(242,135,36)" rx="2" ry="2" />
<text text-anchor="" x="789.18" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (15 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (15 samples, 0.34%)</title><rect x="895.4" y="2033" width="4.0" height="15.0" fill="rgb(224,199,48)" rx="2" ry="2" />
<text text-anchor="" x="898.40" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (80 samples, 1.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (80 samples, 1.79%)</title><rect x="530.4" y="1857" width="21.2" height="15.0" fill="rgb(253,210,46)" rx="2" ry="2" />
<text text-anchor="" x="533.45" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_entity (28 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (28 samples, 0.63%)</title><rect x="1069.7" y="1953" width="7.4" height="15.0" fill="rgb(236,144,25)" rx="2" ry="2" />
<text text-anchor="" x="1072.67" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (4 samples, 0.09%)</title><rect x="1146.6" y="1809" width="1.1" height="15.0" fill="rgb(237,24,14)" rx="2" ry="2" />
<text text-anchor="" x="1149.63" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_free (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (7 samples, 0.16%)</title><rect x="509.6" y="1665" width="1.8" height="15.0" fill="rgb(239,203,4)" rx="2" ry="2" />
<text text-anchor="" x="512.56" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (12 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (12 samples, 0.27%)</title><rect x="1181.3" y="1969" width="3.1" height="15.0" fill="rgb(238,35,51)" rx="2" ry="2" />
<text text-anchor="" x="1184.27" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('open_exec (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>open_exec (1 samples, 0.02%)</title><rect x="84.0" y="1937" width="0.3" height="15.0" fill="rgb(252,40,42)" rx="2" ry="2" />
<text text-anchor="" x="87.05" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="801" width="0.8" height="15.0" fill="rgb(208,115,11)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_openat (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_openat (1 samples, 0.02%)</title><rect x="1176.2" y="1937" width="0.3" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" />
<text text-anchor="" x="1179.25" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="417" width="0.3" height="15.0" fill="rgb(237,136,52)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="427.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:: (237 samples, 5.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (237 samples, 5.31%)</title><rect x="739.4" y="1809" width="62.6" height="15.0" fill="rgb(239,154,49)" rx="2" ry="2" />
<text text-anchor="" x="742.37" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >non-vi..</text>
</g>
<g class="func_g" onmouseover="s('stub_execve (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>stub_execve (1 samples, 0.02%)</title><rect x="88.3" y="2017" width="0.2" height="15.0" fill="rgb(214,95,46)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_execve (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (1 samples, 0.02%)</title><rect x="882.2" y="2001" width="0.2" height="15.0" fill="rgb(229,51,12)" rx="2" ry="2" />
<text text-anchor="" x="885.17" y="2011.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (2 samples, 0.04%)</title><rect x="178.5" y="2033" width="0.5" height="15.0" fill="rgb(222,22,38)" rx="2" ry="2" />
<text text-anchor="" x="181.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="721" width="0.3" height="15.0" fill="rgb(212,107,14)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::CallbackBase::CallbackBase (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::CallbackBase::CallbackBase (1 samples, 0.02%)</title><rect x="647.9" y="1713" width="0.2" height="15.0" fill="rgb(227,182,52)" rx="2" ry="2" />
<text text-anchor="" x="650.87" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (5 samples, 0.11%)</title><rect x="277.1" y="1729" width="1.3" height="15.0" fill="rgb(226,32,37)" rx="2" ry="2" />
<text text-anchor="" x="280.10" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.04%)</title><rect x="31.9" y="1841" width="0.6" height="15.0" fill="rgb(230,115,45)" rx="2" ry="2" />
<text text-anchor="" x="34.95" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1937" width="0.3" height="15.0" fill="rgb(213,115,22)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('release_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>release_task (1 samples, 0.02%)</title><rect x="87.2" y="1953" width="0.3" height="15.0" fill="rgb(217,176,2)" rx="2" ry="2" />
<text text-anchor="" x="90.22" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (9 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (9 samples, 0.20%)</title><rect x="601.1" y="1761" width="2.3" height="15.0" fill="rgb(218,226,9)" rx="2" ry="2" />
<text text-anchor="" x="604.06" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="34.3" y="1921" width="0.3" height="15.0" fill="rgb(224,117,11)" rx="2" ry="2" />
<text text-anchor="" x="37.33" y="1931.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (1 samples, 0.02%)</title><rect x="919.5" y="1841" width="0.2" height="15.0" fill="rgb(219,211,25)" rx="2" ry="2" />
<text text-anchor="" x="922.46" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (3 samples, 0.07%)</title><rect x="612.4" y="1745" width="0.8" height="15.0" fill="rgb(254,171,26)" rx="2" ry="2" />
<text text-anchor="" x="615.43" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (4 samples, 0.09%)</title><rect x="1103.8" y="1905" width="1.0" height="15.0" fill="rgb(222,36,44)" rx="2" ry="2" />
<text text-anchor="" x="1106.79" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_M_mutate (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_mutate (4 samples, 0.09%)</title><rect x="185.9" y="2001" width="1.0" height="15.0" fill="rgb(233,151,24)" rx="2" ry="2" />
<text text-anchor="" x="188.86" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.02%)</title><rect x="1095.3" y="1825" width="0.3" height="15.0" fill="rgb(217,167,9)" rx="2" ry="2" />
<text text-anchor="" x="1098.32" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('devtools_goma::DescriptorPollerBase::PollEvents (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>devtools_goma::DescriptorPollerBase::PollEvents (2 samples, 0.04%)</title><rect x="164.7" y="2001" width="0.5" height="15.0" fill="rgb(217,204,52)" rx="2" ry="2" />
<text text-anchor="" x="167.71" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="1105" width="0.8" height="15.0" fill="rgb(210,137,2)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Add (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Add (3 samples, 0.07%)</title><rect x="387.6" y="1761" width="0.8" height="15.0" fill="rgb(219,215,5)" rx="2" ry="2" />
<text text-anchor="" x="390.64" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.04%)</title><rect x="330.8" y="1889" width="0.5" height="15.0" fill="rgb(246,210,12)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1537" width="0.3" height="15.0" fill="rgb(251,171,25)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('poll_idle (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>poll_idle (4 samples, 0.09%)</title><rect x="1022.1" y="1953" width="1.0" height="15.0" fill="rgb(214,224,51)" rx="2" ry="2" />
<text text-anchor="" x="1025.07" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="874.8" y="1969" width="0.2" height="15.0" fill="rgb(254,189,40)" rx="2" ry="2" />
<text text-anchor="" x="877.77" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sk_free (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sk_free (1 samples, 0.02%)</title><rect x="1181.0" y="1841" width="0.3" height="15.0" fill="rgb(247,9,25)" rx="2" ry="2" />
<text text-anchor="" x="1184.01" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_cpu_sd_state_idle (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_cpu_sd_state_idle (1 samples, 0.02%)</title><rect x="1156.7" y="1937" width="0.2" height="15.0" fill="rgb(206,208,0)" rx="2" ry="2" />
<text text-anchor="" x="1159.68" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_exit (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_exit (2 samples, 0.04%)</title><rect x="1180.7" y="1985" width="0.6" height="15.0" fill="rgb(230,20,17)" rx="2" ry="2" />
<text text-anchor="" x="1183.74" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (9 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (9 samples, 0.20%)</title><rect x="233.2" y="1905" width="2.4" height="15.0" fill="rgb(210,101,3)" rx="2" ry="2" />
<text text-anchor="" x="236.20" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (1 samples, 0.02%)</title><rect x="61.8" y="1937" width="0.3" height="15.0" fill="rgb(236,65,19)" rx="2" ry="2" />
<text text-anchor="" x="64.83" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="148.8" y="1345" width="1.1" height="15.0" fill="rgb(237,100,49)" rx="2" ry="2" />
<text text-anchor="" x="151.84" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.02%)</title><rect x="1037.7" y="1857" width="0.2" height="15.0" fill="rgb(238,129,39)" rx="2" ry="2" />
<text text-anchor="" x="1040.67" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_filp_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_filp_open (1 samples, 0.02%)</title><rect x="92.5" y="1953" width="0.3" height="15.0" fill="rgb(231,26,10)" rx="2" ry="2" />
<text text-anchor="" x="95.51" y="1963.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 (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (4 samples, 0.09%)</title><rect x="214.4" y="1937" width="1.1" height="15.0" fill="rgb(231,29,2)" rx="2" ry="2" />
<text text-anchor="" x="217.42" y="1947.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="1174.4" y="1905" width="0.3" height="15.0" fill="rgb(228,172,3)" rx="2" ry="2" />
<text text-anchor="" x="1177.40" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::compare (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::compare (5 samples, 0.11%)</title><rect x="448.2" y="1793" width="1.3" height="15.0" fill="rgb(220,36,33)" rx="2" ry="2" />
<text text-anchor="" x="451.20" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('handle_mm_fault (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (2 samples, 0.04%)</title><rect x="83.3" y="1905" width="0.5" height="15.0" fill="rgb(254,89,36)" rx="2" ry="2" />
<text text-anchor="" x="86.25" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (1 samples, 0.02%)</title><rect x="371.0" y="1777" width="0.2" height="15.0" fill="rgb(252,216,13)" rx="2" ry="2" />
<text text-anchor="" x="373.98" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_page_c (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_page_c (1 samples, 0.02%)</title><rect x="1174.4" y="1857" width="0.3" height="15.0" fill="rgb(234,130,11)" rx="2" ry="2" />
<text text-anchor="" x="1177.40" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clockevents_program_event (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clockevents_program_event (2 samples, 0.04%)</title><rect x="1155.6" y="1857" width="0.5" height="15.0" fill="rgb(236,205,15)" rx="2" ry="2" />
<text text-anchor="" x="1158.62" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('msecs_to_jiffies (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>msecs_to_jiffies (1 samples, 0.02%)</title><rect x="1037.1" y="1825" width="0.3" height="15.0" fill="rgb(246,180,35)" rx="2" ry="2" />
<text text-anchor="" x="1040.14" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.02%)</title><rect x="150.7" y="1777" width="0.3" height="15.0" fill="rgb(247,175,51)" rx="2" ry="2" />
<text text-anchor="" x="153.69" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (1 samples, 0.02%)</title><rect x="653.7" y="1745" width="0.2" height="15.0" fill="rgb(209,90,23)" rx="2" ry="2" />
<text text-anchor="" x="656.68" y="1755.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="33.0" y="2001" width="0.3" height="15.0" fill="rgb(250,39,21)" rx="2" ry="2" />
<text text-anchor="" x="36.01" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_brk (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_brk (2 samples, 0.04%)</title><rect x="87.5" y="2001" width="0.5" height="15.0" fill="rgb(233,9,24)" rx="2" ry="2" />
<text text-anchor="" x="90.49" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.09%)</title><rect x="426.5" y="1681" width="1.1" height="15.0" fill="rgb(206,120,41)" rx="2" ry="2" />
<text text-anchor="" x="429.52" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (4 samples, 0.09%)</title><rect x="413.3" y="1601" width="1.1" height="15.0" fill="rgb(246,173,29)" rx="2" ry="2" />
<text text-anchor="" x="416.29" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.02%)</title><rect x="427.3" y="1569" width="0.3" height="15.0" fill="rgb(207,222,36)" rx="2" ry="2" />
<text text-anchor="" x="430.31" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_IO_no_init (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_IO_no_init (1 samples, 0.02%)</title><rect x="159.7" y="2017" width="0.2" height="15.0" fill="rgb(242,108,1)" rx="2" ry="2" />
<text text-anchor="" x="162.68" y="2027.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (1 samples, 0.02%)</title><rect x="527.3" y="1873" width="0.2" height="15.0" fill="rgb(216,142,37)" rx="2" ry="2" />
<text text-anchor="" x="530.27" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (168 samples, 3.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (168 samples, 3.77%)</title><rect x="591.5" y="1809" width="44.5" height="15.0" fill="rgb(252,189,0)" rx="2" ry="2" />
<text text-anchor="" x="594.54" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >syst..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1073" width="0.3" height="15.0" fill="rgb(240,92,46)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mem_cgroup_charge_common (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mem_cgroup_charge_common (1 samples, 0.02%)</title><rect x="1165.9" y="1889" width="0.3" height="15.0" fill="rgb(242,209,54)" rx="2" ry="2" />
<text text-anchor="" x="1168.93" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.02%)</title><rect x="767.9" y="1713" width="0.3" height="15.0" fill="rgb(213,101,9)" rx="2" ry="2" />
<text text-anchor="" x="770.93" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (3 samples, 0.07%)</title><rect x="496.3" y="1809" width="0.8" height="15.0" fill="rgb(218,138,30)" rx="2" ry="2" />
<text text-anchor="" x="499.33" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="593" width="0.8" height="15.0" fill="rgb(208,160,54)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (55 samples, 1.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (55 samples, 1.23%)</title><rect x="833.0" y="2033" width="14.5" height="15.0" fill="rgb(235,84,3)" rx="2" ry="2" />
<text text-anchor="" x="835.99" y="2043.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.02%)</title><rect x="481.5" y="1873" width="0.3" height="15.0" fill="rgb(234,45,19)" rx="2" ry="2" />
<text text-anchor="" x="484.52" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (2 samples, 0.04%)</title><rect x="202.3" y="1969" width="0.5" height="15.0" fill="rgb(245,41,48)" rx="2" ry="2" />
<text text-anchor="" x="205.26" y="1979.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="151.0" y="1905" width="0.2" height="15.0" fill="rgb(251,162,4)" rx="2" ry="2" />
<text text-anchor="" x="153.95" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (7 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (7 samples, 0.16%)</title><rect x="106.0" y="1777" width="1.8" height="15.0" fill="rgb(241,36,49)" rx="2" ry="2" />
<text text-anchor="" x="109.00" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('devtools_goma::SimpleTimer::Get (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>devtools_goma::SimpleTimer::Get (1 samples, 0.02%)</title><rect x="166.6" y="2017" width="0.2" height="15.0" fill="rgb(246,227,0)" rx="2" ry="2" />
<text text-anchor="" x="169.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('inode_init_always (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>inode_init_always (1 samples, 0.02%)</title><rect x="1167.8" y="1777" width="0.3" height="15.0" fill="rgb(218,161,10)" rx="2" ry="2" />
<text text-anchor="" x="1170.79" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (3 samples, 0.07%)</title><rect x="406.4" y="1665" width="0.8" height="15.0" fill="rgb(211,21,16)" rx="2" ry="2" />
<text text-anchor="" x="409.42" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('release_pages (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>release_pages (1 samples, 0.02%)</title><rect x="97.8" y="1889" width="0.3" height="15.0" fill="rgb(245,150,25)" rx="2" ry="2" />
<text text-anchor="" x="100.80" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (225 samples, 5.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (225 samples, 5.04%)</title><rect x="316.2" y="1905" width="59.5" height="15.0" fill="rgb(247,108,22)" rx="2" ry="2" />
<text text-anchor="" x="319.24" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unkno..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="867.6" y="2033" width="0.3" height="15.0" fill="rgb(223,95,15)" rx="2" ry="2" />
<text text-anchor="" x="870.63" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('user_path_at (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at (1 samples, 0.02%)</title><rect x="90.7" y="1953" width="0.2" height="15.0" fill="rgb(231,106,45)" rx="2" ry="2" />
<text text-anchor="" x="93.66" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="705" width="0.8" height="15.0" fill="rgb(227,112,34)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZdlPv@plt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (1 samples, 0.02%)</title><rect x="445.6" y="1793" width="0.2" height="15.0" fill="rgb(245,196,12)" rx="2" ry="2" />
<text text-anchor="" x="448.56" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="353.0" y="1825" width="0.3" height="15.0" fill="rgb(220,30,27)" rx="2" ry="2" />
<text text-anchor="" x="356.00" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.02%)</title><rect x="783.8" y="1729" width="0.3" height="15.0" fill="rgb(225,89,45)" rx="2" ry="2" />
<text text-anchor="" x="786.80" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_disable_asynccancel (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (3 samples, 0.07%)</title><rect x="376.5" y="1905" width="0.8" height="15.0" fill="rgb(226,32,26)" rx="2" ry="2" />
<text text-anchor="" x="379.54" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_getspecific (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific (1 samples, 0.02%)</title><rect x="543.1" y="1745" width="0.3" height="15.0" fill="rgb(248,200,43)" rx="2" ry="2" />
<text text-anchor="" x="546.14" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('lookup_slow (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>lookup_slow (2 samples, 0.04%)</title><rect x="76.4" y="1873" width="0.5" height="15.0" fill="rgb(219,82,26)" rx="2" ry="2" />
<text text-anchor="" x="79.38" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('census_process_ (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>census_process_ (1 samples, 0.02%)</title><rect x="118.4" y="2049" width="0.3" height="15.0" fill="rgb(208,11,36)" rx="2" ry="2" />
<text text-anchor="" x="121.43" y="2059.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.02%)</title><rect x="427.3" y="1537" width="0.3" height="15.0" fill="rgb(223,178,33)" rx="2" ry="2" />
<text text-anchor="" x="430.31" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="61.6" y="1969" width="0.2" height="15.0" fill="rgb(232,171,24)" rx="2" ry="2" />
<text text-anchor="" x="64.57" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="148.8" y="1521" width="1.1" height="15.0" fill="rgb(231,26,37)" rx="2" ry="2" />
<text text-anchor="" x="151.84" y="1531.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.02%)</title><rect x="477.0" y="1857" width="0.3" height="15.0" fill="rgb(239,168,10)" rx="2" ry="2" />
<text text-anchor="" x="480.03" y="1867.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.02%)</title><rect x="34.6" y="1777" width="0.3" height="15.0" fill="rgb(212,103,17)" rx="2" ry="2" />
<text text-anchor="" x="37.59" y="1787.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="1174.4" y="1921" width="0.3" height="15.0" fill="rgb(241,164,46)" rx="2" ry="2" />
<text text-anchor="" x="1177.40" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('link_path_walk (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (1 samples, 0.02%)</title><rect x="1169.9" y="1873" width="0.3" height="15.0" fill="rgb(227,216,26)" rx="2" ry="2" />
<text text-anchor="" x="1172.90" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="150.4" y="1905" width="0.3" height="15.0" fill="rgb(225,111,34)" rx="2" ry="2" />
<text text-anchor="" x="153.43" y="1915.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="916.0" y="1841" width="0.3" height="15.0" fill="rgb(214,90,43)" rx="2" ry="2" />
<text text-anchor="" x="919.02" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__inode_permission (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__inode_permission (1 samples, 0.02%)</title><rect x="884.3" y="1857" width="0.3" height="15.0" fill="rgb(218,182,25)" rx="2" ry="2" />
<text text-anchor="" x="887.29" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="33.8" y="1505" width="0.3" height="15.0" fill="rgb(247,133,3)" rx="2" ry="2" />
<text text-anchor="" x="36.80" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="300.1" y="1921" width="0.8" height="15.0" fill="rgb(234,22,51)" rx="2" ry="2" />
<text text-anchor="" x="303.11" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.02%)</title><rect x="875.0" y="1937" width="0.3" height="15.0" fill="rgb(243,1,13)" rx="2" ry="2" />
<text text-anchor="" x="878.03" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__mutex_unlock_slowpath (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__mutex_unlock_slowpath (1 samples, 0.02%)</title><rect x="76.6" y="1841" width="0.3" height="15.0" fill="rgb(223,65,38)" rx="2" ry="2" />
<text text-anchor="" x="79.64" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sbrk (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sbrk (1 samples, 0.02%)</title><rect x="883.8" y="2033" width="0.2" height="15.0" fill="rgb(211,157,41)" rx="2" ry="2" />
<text text-anchor="" x="886.76" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_file_open (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_open (1 samples, 0.02%)</title><rect x="1168.1" y="1841" width="0.2" height="15.0" fill="rgb(206,20,50)" rx="2" ry="2" />
<text text-anchor="" x="1171.05" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="149.1" y="721" width="0.8" height="15.0" fill="rgb(207,53,21)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="731.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="1180.2" y="1969" width="0.3" height="15.0" fill="rgb(238,224,46)" rx="2" ry="2" />
<text text-anchor="" x="1183.22" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="165.0" y="1985" width="0.2" height="15.0" fill="rgb(241,76,45)" rx="2" ry="2" />
<text text-anchor="" x="167.97" y="1995.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.02%)</title><rect x="876.4" y="1937" width="0.2" height="15.0" fill="rgb(238,123,54)" rx="2" ry="2" />
<text text-anchor="" x="879.36" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="1186.3" y="1809" width="0.5" height="15.0" fill="rgb(214,20,36)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1819.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.02%)</title><rect x="918.9" y="1777" width="0.3" height="15.0" fill="rgb(232,134,53)" rx="2" ry="2" />
<text text-anchor="" x="921.93" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (3 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (3 samples, 0.07%)</title><rect x="1178.9" y="2033" width="0.8" height="15.0" fill="rgb(225,120,19)" rx="2" ry="2" />
<text text-anchor="" x="1181.89" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_prot_numa (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_prot_numa (1 samples, 0.02%)</title><rect x="160.7" y="1953" width="0.3" height="15.0" fill="rgb(242,206,23)" rx="2" ry="2" />
<text text-anchor="" x="163.74" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (5 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (5 samples, 0.11%)</title><rect x="167.1" y="1985" width="1.3" height="15.0" fill="rgb(234,158,26)" rx="2" ry="2" />
<text text-anchor="" x="170.09" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_work_run (1 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_work_run (1 samples, 0.02%)</title><rect x="877.1" y="1985" width="0.3" height="15.0" fill="rgb(251,182,5)" rx="2" ry="2" />
<text text-anchor="" x="880.15" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (1 sampl
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment