Skip to content

Instantly share code, notes, and snippets.

@omo
Created March 24, 2015 18:43
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/6cdd8c4c6ade34dfc6c3 to your computer and use it in GitHub Desktop.
Save omo/6cdd8c4c6ade34dfc6c3 to your computer and use it in GitHub Desktop.
Message Pipe benchmark Flame graphs
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="626" onload="init(evt)" viewBox="0 0 1200 626" 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="626.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="609" 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('mojo::system::Channel::OnReadMessage (1,829 samples, 14.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (1,829 samples, 14.22%)</title><rect x="1005.7" y="385" width="167.8" height="15.0" fill="rgb(223,53,45)" rx="2" ry="2" />
<text text-anchor="" x="1008.69" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Channel..</text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (2 samples, 0.02%)</title><rect x="872.5" y="241" width="0.2" height="15.0" fill="rgb(221,30,25)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (5 samples, 0.04%)</title><rect x="343.2" y="305" width="0.5" height="15.0" fill="rgb(213,14,37)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('SYSC_sendto (2,116 samples, 16.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (2,116 samples, 16.45%)</title><rect x="23.7" y="497" width="194.1" height="15.0" fill="rgb(212,22,15)" rx="2" ry="2" />
<text text-anchor="" x="26.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >SYSC_sendto</text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (4 samples, 0.03%)</title><rect x="784.6" y="289" width="0.4" height="15.0" fill="rgb(248,35,12)" rx="2" ry="2" />
<text text-anchor="" x="787.59" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (16 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (16 samples, 0.12%)</title><rect x="171.7" y="321" width="1.5" height="15.0" fill="rgb(237,121,12)" rx="2" ry="2" />
<text text-anchor="" x="174.74" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (445 samples, 3.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (445 samples, 3.46%)</title><rect x="772.9" y="337" width="40.9" height="15.0" fill="rgb(208,77,45)" rx="2" ry="2" />
<text text-anchor="" x="775.94" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__s..</text>
</g>
<g class="func_g" onmouseover="s('sys_futex (61 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (61 samples, 0.47%)</title><rect x="482.6" y="337" width="5.6" height="15.0" fill="rgb(240,225,27)" rx="2" ry="2" />
<text text-anchor="" x="485.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (11 samples, 0.09%)</title><rect x="761.3" y="417" width="1.0" height="15.0" fill="rgb(250,213,1)" rx="2" ry="2" />
<text text-anchor="" x="764.28" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (2 samples, 0.02%)</title><rect x="471.7" y="305" width="0.1" height="15.0" fill="rgb(251,128,52)" rx="2" ry="2" />
<text text-anchor="" x="474.65" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.02%)</title><rect x="927.4" y="241" width="0.2" height="15.0" fill="rgb(241,90,47)" rx="2" ry="2" />
<text text-anchor="" x="930.43" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (7 samples, 0.05%)</title><rect x="686.5" y="369" width="0.7" height="15.0" fill="rgb(230,204,12)" rx="2" ry="2" />
<text text-anchor="" x="689.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mntput (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mntput (2 samples, 0.02%)</title><rect x="504.0" y="321" width="0.2" height="15.0" fill="rgb(239,37,17)" rx="2" ry="2" />
<text text-anchor="" x="507.04" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (5 samples, 0.04%)</title><rect x="735.1" y="225" width="0.5" height="15.0" fill="rgb(222,21,25)" rx="2" ry="2" />
<text text-anchor="" x="738.14" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="551.0" y="369" width="0.4" height="15.0" fill="rgb(251,72,18)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="379.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="10.5" y="145" width="0.3" height="15.0" fill="rgb(231,200,2)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_elf_binary (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (4 samples, 0.03%)</title><rect x="10.0" y="465" width="0.4" height="15.0" fill="rgb(225,0,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('start_thread (6,309 samples, 49.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (6,309 samples, 49.05%)</title><rect x="611.2" y="545" width="578.8" height="15.0" fill="rgb(252,189,39)" rx="2" ry="2" />
<text text-anchor="" x="614.19" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (48 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (48 samples, 0.37%)</title><rect x="321.5" y="449" width="4.4" height="15.0" fill="rgb(210,50,30)" rx="2" ry="2" />
<text text-anchor="" x="324.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (16 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (16 samples, 0.12%)</title><rect x="871.0" y="225" width="1.5" height="15.0" fill="rgb(245,176,0)" rx="2" ry="2" />
<text text-anchor="" x="874.01" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (630 samples, 4.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (630 samples, 4.90%)</title><rect x="1098.3" y="241" width="57.8" height="15.0" fill="rgb(234,227,22)" rx="2" ry="2" />
<text text-anchor="" x="1101.35" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_fu..</text>
</g>
<g class="func_g" onmouseover="s('_int_free (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (10 samples, 0.08%)</title><rect x="584.5" y="545" width="0.9" height="15.0" fill="rgb(219,207,26)" rx="2" ry="2" />
<text text-anchor="" x="587.50" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="353" width="0.4" height="15.0" fill="rgb(244,197,46)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.03%)</title><rect x="549.9" y="81" width="0.4" height="15.0" fill="rgb(222,206,16)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (7 samples, 0.05%)</title><rect x="738.3" y="305" width="0.6" height="15.0" fill="rgb(229,185,24)" rx="2" ry="2" />
<text text-anchor="" x="741.26" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (366 samples, 2.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (366 samples, 2.85%)</title><rect x="337.0" y="401" width="33.6" height="15.0" fill="rgb(237,99,14)" rx="2" ry="2" />
<text text-anchor="" x="339.97" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.02%)</title><rect x="731.8" y="225" width="0.2" height="15.0" fill="rgb(243,165,51)" rx="2" ry="2" />
<text text-anchor="" x="734.83" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (40 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (40 samples, 0.31%)</title><rect x="501.1" y="337" width="3.7" height="15.0" fill="rgb(240,35,10)" rx="2" ry="2" />
<text text-anchor="" x="504.10" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (6 samples, 0.05%)</title><rect x="182.0" y="321" width="0.6" height="15.0" fill="rgb(237,119,39)" rx="2" ry="2" />
<text text-anchor="" x="185.02" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_user (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (4 samples, 0.03%)</title><rect x="572.3" y="513" width="0.4" height="15.0" fill="rgb(252,69,3)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestCase::Run (1,867 samples, 14.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestCase::Run (1,867 samples, 14.52%)</title><rect x="379.3" y="465" width="171.3" height="15.0" fill="rgb(252,178,24)" rx="2" ry="2" />
<text text-anchor="" x="382.27" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::TestCase::Run</text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="10.8" y="433" width="0.4" height="15.0" fill="rgb(248,219,3)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (2 samples, 0.02%)</title><rect x="318.3" y="465" width="0.1" height="15.0" fill="rgb(227,96,48)" rx="2" ry="2" />
<text text-anchor="" x="321.26" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (11 samples, 0.09%)</title><rect x="161.0" y="433" width="1.0" height="15.0" fill="rgb(234,7,33)" rx="2" ry="2" />
<text text-anchor="" x="164.01" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.03%)</title><rect x="10.5" y="161" width="0.3" height="15.0" fill="rgb(247,158,19)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (20 samples, 0.16%)</title><rect x="727.6" y="305" width="1.8" height="15.0" fill="rgb(208,126,42)" rx="2" ry="2" />
<text text-anchor="" x="730.61" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (14 samples, 0.11%)</title><rect x="1091.8" y="241" width="1.3" height="15.0" fill="rgb(223,42,22)" rx="2" ry="2" />
<text text-anchor="" x="1094.83" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_init (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_init (6 samples, 0.05%)</title><rect x="327.5" y="449" width="0.6" height="15.0" fill="rgb(220,108,7)" rx="2" ry="2" />
<text text-anchor="" x="330.52" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (27 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (27 samples, 0.21%)</title><rect x="1001.7" y="369" width="2.5" height="15.0" fill="rgb(233,79,1)" rx="2" ry="2" />
<text text-anchor="" x="1004.74" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (3 samples, 0.02%)</title><rect x="317.6" y="417" width="0.3" height="15.0" fill="rgb(215,80,2)" rx="2" ry="2" />
<text text-anchor="" x="320.61" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.03%)</title><rect x="10.0" y="401" width="0.4" height="15.0" fill="rgb(214,20,20)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZdlPv@plt (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (3 samples, 0.02%)</title><rect x="297.4" y="401" width="0.3" height="15.0" fill="rgb(213,31,15)" rx="2" ry="2" />
<text text-anchor="" x="300.43" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo_message_pi (6,253 samples, 48.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo_message_pi (6,253 samples, 48.62%)</title><rect x="10.4" y="561" width="573.6" height="15.0" fill="rgb(218,194,39)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo_message_pi</text>
</g>
<g class="func_g" onmouseover="s('free_pcppages_bulk (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_pcppages_bulk (14 samples, 0.11%)</title><rect x="897.3" y="161" width="1.3" height="15.0" fill="rgb(227,128,24)" rx="2" ry="2" />
<text text-anchor="" x="900.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('maybe_add_creds (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>maybe_add_creds (6 samples, 0.05%)</title><rect x="46.1" y="449" width="0.6" height="15.0" fill="rgb(218,152,21)" rx="2" ry="2" />
<text text-anchor="" x="49.15" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (2 samples, 0.02%)</title><rect x="192.8" y="225" width="0.1" height="15.0" fill="rgb(236,93,4)" rx="2" ry="2" />
<text text-anchor="" x="195.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (2 samples, 0.02%)</title><rect x="693.6" y="193" width="0.2" height="15.0" fill="rgb(236,193,21)" rx="2" ry="2" />
<text text-anchor="" x="696.58" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.03%)</title><rect x="551.0" y="337" width="0.4" height="15.0" fill="rgb(222,165,27)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (2 samples, 0.02%)</title><rect x="343.2" y="241" width="0.2" height="15.0" fill="rgb(231,150,39)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_unlock_usercnt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.02%)</title><rect x="489.9" y="369" width="0.2" height="15.0" fill="rgb(237,137,21)" rx="2" ry="2" />
<text text-anchor="" x="492.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.02%)</title><rect x="548.2" y="385" width="0.1" height="15.0" fill="rgb(241,21,11)" rx="2" ry="2" />
<text text-anchor="" x="551.17" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (4 samples, 0.03%)</title><rect x="291.7" y="465" width="0.4" height="15.0" fill="rgb(243,36,28)" rx="2" ry="2" />
<text text-anchor="" x="294.74" y="475.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_hook (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_hook (5 samples, 0.04%)</title><rect x="491.5" y="353" width="0.4" height="15.0" fill="rgb(227,17,20)" rx="2" ry="2" />
<text text-anchor="" x="494.47" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (3 samples, 0.02%)</title><rect x="300.0" y="385" width="0.3" height="15.0" fill="rgb(226,166,33)" rx="2" ry="2" />
<text text-anchor="" x="303.00" y="395.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="584.1" y="433" width="0.4" height="15.0" fill="rgb(247,2,51)" rx="2" ry="2" />
<text text-anchor="" x="587.13" y="443.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="793.4" y="177" width="0.4" height="15.0" fill="rgb(246,13,33)" rx="2" ry="2" />
<text text-anchor="" x="796.39" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="549.9" y="113" width="0.4" height="15.0" fill="rgb(223,115,39)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (455 samples, 3.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (455 samples, 3.54%)</title><rect x="382.8" y="385" width="41.7" height="15.0" fill="rgb(241,144,8)" rx="2" ry="2" />
<text text-anchor="" x="385.75" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >moj..</text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (2 samples, 0.02%)</title><rect x="517.6" y="177" width="0.2" height="15.0" fill="rgb(217,17,35)" rx="2" ry="2" />
<text text-anchor="" x="520.61" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.03%)</title><rect x="551.0" y="401" width="0.4" height="15.0" fill="rgb(215,186,7)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (7 samples, 0.05%)</title><rect x="11.6" y="513" width="0.6" height="15.0" fill="rgb(226,75,23)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (22 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (22 samples, 0.17%)</title><rect x="791.7" y="273" width="2.1" height="15.0" fill="rgb(250,219,40)" rx="2" ry="2" />
<text text-anchor="" x="794.74" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (81 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (81 samples, 0.63%)</title><rect x="729.4" y="289" width="7.5" height="15.0" fill="rgb(252,17,28)" rx="2" ry="2" />
<text text-anchor="" x="732.45" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (6 samples, 0.05%)</title><rect x="1130.3" y="81" width="0.5" height="15.0" fill="rgb(221,199,38)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="91.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_unhook (2 samples, 0.02%)</title><rect x="495.0" y="337" width="0.1" height="15.0" fill="rgb(230,121,46)" rx="2" ry="2" />
<text text-anchor="" x="497.95" y="347.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (2 samples, 0.02%)</title><rect x="350.6" y="289" width="0.2" height="15.0" fill="rgb(223,22,7)" rx="2" ry="2" />
<text text-anchor="" x="353.64" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (11 samples, 0.09%)</title><rect x="633.9" y="449" width="1.1" height="15.0" fill="rgb(225,120,37)" rx="2" ry="2" />
<text text-anchor="" x="636.94" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('policy_zonelist (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>policy_zonelist (4 samples, 0.03%)</title><rect x="162.1" y="433" width="0.4" height="15.0" fill="rgb(205,224,40)" rx="2" ry="2" />
<text text-anchor="" x="165.11" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_wait (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (10 samples, 0.08%)</title><rect x="1184.6" y="433" width="0.9" height="15.0" fill="rgb(217,86,10)" rx="2" ry="2" />
<text text-anchor="" x="1187.59" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_getpeersec_dgram (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (3 samples, 0.02%)</title><rect x="45.9" y="449" width="0.2" height="15.0" fill="rgb(210,150,42)" rx="2" ry="2" />
<text text-anchor="" x="48.87" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (13 samples, 0.10%)</title><rect x="753.7" y="417" width="1.2" height="15.0" fill="rgb(215,0,37)" rx="2" ry="2" />
<text text-anchor="" x="756.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="649.7" y="401" width="0.2" height="15.0" fill="rgb(212,210,6)" rx="2" ry="2" />
<text text-anchor="" x="652.72" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (27 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (27 samples, 0.21%)</title><rect x="835.4" y="353" width="2.5" height="15.0" fill="rgb(232,134,4)" rx="2" ry="2" />
<text text-anchor="" x="838.41" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (15 samples, 0.12%)</title><rect x="1165.3" y="337" width="1.4" height="15.0" fill="rgb(241,172,44)" rx="2" ry="2" />
<text text-anchor="" x="1168.32" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (22 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (22 samples, 0.17%)</title><rect x="199.9" y="273" width="2.0" height="15.0" fill="rgb(233,211,12)" rx="2" ry="2" />
<text text-anchor="" x="202.91" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (29 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (29 samples, 0.23%)</title><rect x="10.4" y="545" width="2.6" height="15.0" fill="rgb(224,173,8)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('all (12,862 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
<title>all (12,862 samples, 100%)</title><rect x="10.0" y="577" width="1180.0" height="15.0" fill="rgb(224,76,47)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (9 samples, 0.07%)</title><rect x="1167.9" y="369" width="0.8" height="15.0" fill="rgb(233,167,13)" rx="2" ry="2" />
<text text-anchor="" x="1170.89" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (10 samples, 0.08%)</title><rect x="1172.6" y="369" width="0.9" height="15.0" fill="rgb(242,153,35)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="433" width="0.4" height="15.0" fill="rgb(250,206,45)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('next_zones_zonelist (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>next_zones_zonelist (17 samples, 0.13%)</title><rect x="157.2" y="401" width="1.6" height="15.0" fill="rgb(237,16,31)" rx="2" ry="2" />
<text text-anchor="" x="160.25" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (4 samples, 0.03%)</title><rect x="1147.1" y="33" width="0.3" height="15.0" fill="rgb(251,20,44)" rx="2" ry="2" />
<text text-anchor="" x="1150.06" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (13 samples, 0.10%)</title><rect x="363.9" y="241" width="1.1" height="15.0" fill="rgb(213,74,17)" rx="2" ry="2" />
<text text-anchor="" x="366.85" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (11 samples, 0.09%)</title><rect x="479.8" y="337" width="1.0" height="15.0" fill="rgb(253,21,31)" rx="2" ry="2" />
<text text-anchor="" x="482.82" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (9 samples, 0.07%)</title><rect x="728.3" y="273" width="0.8" height="15.0" fill="rgb(216,226,10)" rx="2" ry="2" />
<text text-anchor="" x="731.26" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (16 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (16 samples, 0.12%)</title><rect x="1079.1" y="337" width="1.5" height="15.0" fill="rgb(209,41,27)" rx="2" ry="2" />
<text text-anchor="" x="1082.08" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="551.0" y="305" width="0.4" height="15.0" fill="rgb(252,107,28)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (4 samples, 0.03%)</title><rect x="515.0" y="193" width="0.4" height="15.0" fill="rgb(216,105,3)" rx="2" ry="2" />
<text text-anchor="" x="518.05" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (22 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (22 samples, 0.17%)</title><rect x="34.6" y="465" width="2.0" height="15.0" fill="rgb(220,196,14)" rx="2" ry="2" />
<text text-anchor="" x="37.59" y="475.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (2 samples, 0.02%)</title><rect x="514.3" y="209" width="0.2" height="15.0" fill="rgb(220,172,50)" rx="2" ry="2" />
<text text-anchor="" x="517.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (2 samples, 0.02%)</title><rect x="319.8" y="465" width="0.2" height="15.0" fill="rgb(205,196,52)" rx="2" ry="2" />
<text text-anchor="" x="322.82" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (12 samples, 0.09%)</title><rect x="530.8" y="241" width="1.1" height="15.0" fill="rgb(224,204,35)" rx="2" ry="2" />
<text text-anchor="" x="533.83" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_mmap_pgoff (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap_pgoff (4 samples, 0.03%)</title><rect x="551.0" y="465" width="0.4" height="15.0" fill="rgb(253,172,4)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="475.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (3 samples, 0.02%)</title><rect x="302.5" y="401" width="0.3" height="15.0" fill="rgb(243,166,6)" rx="2" ry="2" />
<text text-anchor="" x="305.48" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (11 samples, 0.09%)</title><rect x="767.9" y="369" width="1.0" height="15.0" fill="rgb(232,206,31)" rx="2" ry="2" />
<text text-anchor="" x="770.89" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (251 samples, 1.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (251 samples, 1.95%)</title><rect x="786.9" y="289" width="23.0" height="15.0" fill="rgb(209,125,12)" rx="2" ry="2" />
<text text-anchor="" x="789.88" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >u..</text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (5 samples, 0.04%)</title><rect x="343.2" y="321" width="0.5" height="15.0" fill="rgb(208,73,17)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (26 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (26 samples, 0.20%)</title><rect x="292.1" y="465" width="2.4" height="15.0" fill="rgb(233,126,34)" rx="2" ry="2" />
<text text-anchor="" x="295.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (2 samples, 0.02%)</title><rect x="260.2" y="305" width="0.2" height="15.0" fill="rgb(228,179,5)" rx="2" ry="2" />
<text text-anchor="" x="263.18" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.02%)</title><rect x="305.0" y="417" width="0.2" height="15.0" fill="rgb(250,153,11)" rx="2" ry="2" />
<text text-anchor="" x="307.95" y="427.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="551.0" y="321" width="0.4" height="15.0" fill="rgb(211,58,40)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (19 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (19 samples, 0.15%)</title><rect x="360.6" y="337" width="1.7" height="15.0" fill="rgb(236,154,2)" rx="2" ry="2" />
<text text-anchor="" x="363.55" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_cond_lock (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (10 samples, 0.08%)</title><rect x="318.4" y="465" width="1.0" height="15.0" fill="rgb(209,97,13)" rx="2" ry="2" />
<text text-anchor="" x="321.44" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (11 samples, 0.09%)</title><rect x="461.0" y="353" width="1.0" height="15.0" fill="rgb(252,200,41)" rx="2" ry="2" />
<text text-anchor="" x="464.01" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (34 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (34 samples, 0.26%)</title><rect x="332.5" y="449" width="3.1" height="15.0" fill="rgb(247,76,26)" rx="2" ry="2" />
<text text-anchor="" x="335.48" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (13 samples, 0.10%)</title><rect x="769.0" y="369" width="1.2" height="15.0" fill="rgb(240,131,48)" rx="2" ry="2" />
<text text-anchor="" x="771.99" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (24 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (24 samples, 0.19%)</title><rect x="1169.2" y="369" width="2.2" height="15.0" fill="rgb(207,173,35)" rx="2" ry="2" />
<text text-anchor="" x="1172.17" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (2 samples, 0.02%)</title><rect x="1097.8" y="257" width="0.2" height="15.0" fill="rgb(224,17,15)" rx="2" ry="2" />
<text text-anchor="" x="1100.80" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (5 samples, 0.04%)</title><rect x="657.8" y="385" width="0.5" height="15.0" fill="rgb(247,148,5)" rx="2" ry="2" />
<text text-anchor="" x="660.80" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="337" width="0.4" height="15.0" fill="rgb(225,221,13)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (17 samples, 0.13%)</title><rect x="879.8" y="257" width="1.6" height="15.0" fill="rgb(218,186,33)" rx="2" ry="2" />
<text text-anchor="" x="882.82" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('test_io_thread (6,605 samples, 51.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>test_io_thread (6,605 samples, 51.35%)</title><rect x="584.0" y="561" width="606.0" height="15.0" fill="rgb(235,109,45)" rx="2" ry="2" />
<text text-anchor="" x="587.04" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test_io_thread</text>
</g>
<g class="func_g" onmouseover="s('__inc_zone_state (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__inc_zone_state (5 samples, 0.04%)</title><rect x="150.2" y="385" width="0.4" height="15.0" fill="rgb(215,203,22)" rx="2" ry="2" />
<text text-anchor="" x="153.18" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (20 samples, 0.16%)</title><rect x="1122.0" y="129" width="1.9" height="15.0" fill="rgb(245,55,21)" rx="2" ry="2" />
<text text-anchor="" x="1125.02" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (6 samples, 0.05%)</title><rect x="48.7" y="433" width="0.6" height="15.0" fill="rgb(205,225,26)" rx="2" ry="2" />
<text text-anchor="" x="51.72" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="551.0" y="353" width="0.4" height="15.0" fill="rgb(212,123,18)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (10 samples, 0.08%)</title><rect x="368.5" y="369" width="0.9" height="15.0" fill="rgb(209,51,9)" rx="2" ry="2" />
<text text-anchor="" x="371.53" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (2 samples, 0.02%)</title><rect x="343.2" y="193" width="0.2" height="15.0" fill="rgb(206,101,41)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="203.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 (117 samples, 0.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (117 samples, 0.91%)</title><rect x="675.7" y="369" width="10.7" height="15.0" fill="rgb(207,229,54)" rx="2" ry="2" />
<text text-anchor="" x="678.69" y="379.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (2 samples, 0.02%)</title><rect x="535.6" y="241" width="0.2" height="15.0" fill="rgb(228,224,16)" rx="2" ry="2" />
<text text-anchor="" x="538.60" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="10.8" y="481" width="0.4" height="15.0" fill="rgb(240,159,52)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (4 samples, 0.03%)</title><rect x="845.7" y="321" width="0.4" height="15.0" fill="rgb(240,172,3)" rx="2" ry="2" />
<text text-anchor="" x="848.69" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (6 samples, 0.05%)</title><rect x="811.1" y="321" width="0.6" height="15.0" fill="rgb(233,188,40)" rx="2" ry="2" />
<text text-anchor="" x="814.10" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (466 samples, 3.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (466 samples, 3.62%)</title><rect x="222.8" y="481" width="42.7" height="15.0" fill="rgb(214,133,31)" rx="2" ry="2" />
<text text-anchor="" x="225.75" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo..</text>
</g>
<g class="func_g" onmouseover="s('mmap64 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mmap64 (4 samples, 0.03%)</title><rect x="551.0" y="529" width="0.4" height="15.0" fill="rgb(242,113,20)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_softirq (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (5 samples, 0.04%)</title><rect x="48.7" y="385" width="0.5" height="15.0" fill="rgb(222,213,0)" rx="2" ry="2" />
<text text-anchor="" x="51.72" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::Thread::ThreadMain (6,309 samples, 49.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::Thread::ThreadMain (6,309 samples, 49.05%)</title><rect x="611.2" y="513" width="578.8" height="15.0" fill="rgb(246,46,15)" rx="2" ry="2" />
<text text-anchor="" x="614.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::Thread::ThreadMain</text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (30 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (30 samples, 0.23%)</title><rect x="732.4" y="225" width="2.7" height="15.0" fill="rgb(232,177,6)" rx="2" ry="2" />
<text text-anchor="" x="735.39" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (7 samples, 0.05%)</title><rect x="325.0" y="433" width="0.7" height="15.0" fill="rgb(222,82,37)" rx="2" ry="2" />
<text text-anchor="" x="328.05" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (4 samples, 0.03%)</title><rect x="636.1" y="449" width="0.3" height="15.0" fill="rgb(229,207,45)" rx="2" ry="2" />
<text text-anchor="" x="639.06" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (634 samples, 4.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (634 samples, 4.93%)</title><rect x="1098.0" y="257" width="58.1" height="15.0" fill="rgb(223,75,29)" rx="2" ry="2" />
<text text-anchor="" x="1100.98" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system..</text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (14 samples, 0.11%)</title><rect x="486.8" y="289" width="1.3" height="15.0" fill="rgb(232,52,26)" rx="2" ry="2" />
<text text-anchor="" x="489.79" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (18 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (18 samples, 0.14%)</title><rect x="117.2" y="433" width="1.7" height="15.0" fill="rgb(224,126,15)" rx="2" ry="2" />
<text text-anchor="" x="120.25" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.03%)</title><rect x="584.1" y="385" width="0.4" height="15.0" fill="rgb(219,54,33)" rx="2" ry="2" />
<text text-anchor="" x="587.13" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (13 samples, 0.10%)</title><rect x="361.0" y="321" width="1.2" height="15.0" fill="rgb(241,186,2)" rx="2" ry="2" />
<text text-anchor="" x="364.01" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.03%)</title><rect x="793.4" y="241" width="0.4" height="15.0" fill="rgb(224,222,5)" rx="2" ry="2" />
<text text-anchor="" x="796.39" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (322 samples, 2.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (322 samples, 2.50%)</title><rect x="338.1" y="385" width="29.5" height="15.0" fill="rgb(206,160,47)" rx="2" ry="2" />
<text text-anchor="" x="341.07" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (33 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (33 samples, 0.26%)</title><rect x="1164.9" y="353" width="3.0" height="15.0" fill="rgb(242,7,51)" rx="2" ry="2" />
<text text-anchor="" x="1167.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (4 samples, 0.03%)</title><rect x="1180.3" y="433" width="0.3" height="15.0" fill="rgb(243,16,28)" rx="2" ry="2" />
<text text-anchor="" x="1183.28" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (8 samples, 0.06%)</title><rect x="488.2" y="369" width="0.7" height="15.0" fill="rgb(229,144,38)" rx="2" ry="2" />
<text text-anchor="" x="491.17" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_pageblock_flags_mask (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_pageblock_flags_mask (2 samples, 0.02%)</title><rect x="898.4" y="145" width="0.2" height="15.0" fill="rgb(235,150,11)" rx="2" ry="2" />
<text text-anchor="" x="901.44" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (90 samples, 0.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (90 samples, 0.70%)</title><rect x="352.2" y="305" width="8.3" height="15.0" fill="rgb(248,204,34)" rx="2" ry="2" />
<text text-anchor="" x="355.20" y="315.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.03%)</title><rect x="549.9" y="257" width="0.4" height="15.0" fill="rgb(249,85,23)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (10 samples, 0.08%)</title><rect x="740.6" y="321" width="1.0" height="15.0" fill="rgb(239,19,32)" rx="2" ry="2" />
<text text-anchor="" x="743.64" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (6,309 samples, 49.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (6,309 samples, 49.05%)</title><rect x="611.2" y="481" width="578.8" height="15.0" fill="rgb(212,152,53)" rx="2" ry="2" />
<text text-anchor="" x="614.19" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::RunLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (6 samples, 0.05%)</title><rect x="1130.8" y="81" width="0.6" height="15.0" fill="rgb(244,149,48)" rx="2" ry="2" />
<text text-anchor="" x="1133.83" y="91.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (3 samples, 0.02%)</title><rect x="1009.0" y="369" width="0.3" height="15.0" fill="rgb(205,82,16)" rx="2" ry="2" />
<text text-anchor="" x="1011.99" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sendto (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (5 samples, 0.04%)</title><rect x="15.2" y="529" width="0.5" height="15.0" fill="rgb(206,159,17)" rx="2" ry="2" />
<text text-anchor="" x="18.23" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (553 samples, 4.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (553 samples, 4.30%)</title><rect x="688.6" y="321" width="50.8" height="15.0" fill="rgb(212,46,35)" rx="2" ry="2" />
<text text-anchor="" x="691.62" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sch..</text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (17 samples, 0.13%)</title><rect x="1148.5" y="113" width="1.6" height="15.0" fill="rgb(229,225,38)" rx="2" ry="2" />
<text text-anchor="" x="1151.53" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (55 samples, 0.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (55 samples, 0.43%)</title><rect x="515.5" y="193" width="5.1" height="15.0" fill="rgb(244,109,33)" rx="2" ry="2" />
<text text-anchor="" x="518.50" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (142 samples, 1.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (142 samples, 1.10%)</title><rect x="694.1" y="273" width="13.1" height="15.0" fill="rgb(227,169,24)" rx="2" ry="2" />
<text text-anchor="" x="697.13" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.03%)</title><rect x="551.0" y="273" width="0.4" height="15.0" fill="rgb(225,135,29)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (368 samples, 2.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (368 samples, 2.86%)</title><rect x="776.1" y="305" width="33.8" height="15.0" fill="rgb(238,26,34)" rx="2" ry="2" />
<text text-anchor="" x="779.15" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >so..</text>
</g>
<g class="func_g" onmouseover="s('kretprobe_trampoline (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (5 samples, 0.04%)</title><rect x="10.4" y="321" width="0.4" height="15.0" fill="rgb(214,181,13)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (391 samples, 3.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (391 samples, 3.04%)</title><rect x="505.9" y="353" width="35.8" height="15.0" fill="rgb(219,2,42)" rx="2" ry="2" />
<text text-anchor="" x="508.87" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (2 samples, 0.02%)</title><rect x="185.9" y="257" width="0.2" height="15.0" fill="rgb(232,124,41)" rx="2" ry="2" />
<text text-anchor="" x="188.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (57 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (57 samples, 0.44%)</title><rect x="126.0" y="417" width="5.2" height="15.0" fill="rgb(233,116,11)" rx="2" ry="2" />
<text text-anchor="" x="128.96" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::Thread::StartWithOptions (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::Thread::StartWithOptions (5 samples, 0.04%)</title><rect x="549.9" y="353" width="0.5" height="15.0" fill="rgb(212,58,32)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (6 samples, 0.05%)</title><rect x="903.1" y="113" width="0.6" height="15.0" fill="rgb(233,118,39)" rx="2" ry="2" />
<text text-anchor="" x="906.12" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (316 samples, 2.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (316 samples, 2.46%)</title><rect x="508.8" y="289" width="29.0" height="15.0" fill="rgb(213,191,24)" rx="2" ry="2" />
<text text-anchor="" x="511.81" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (5 samples, 0.04%)</title><rect x="1163.5" y="337" width="0.4" height="15.0" fill="rgb(254,213,23)" rx="2" ry="2" />
<text text-anchor="" x="1166.49" y="347.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.02%)</title><rect x="505.0" y="353" width="0.1" height="15.0" fill="rgb(214,212,6)" rx="2" ry="2" />
<text text-anchor="" x="507.95" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (6 samples, 0.05%)</title><rect x="685.9" y="353" width="0.5" height="15.0" fill="rgb(251,111,27)" rx="2" ry="2" />
<text text-anchor="" x="688.87" y="363.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (2 samples, 0.02%)</title><rect x="772.7" y="353" width="0.1" height="15.0" fill="rgb(208,8,9)" rx="2" ry="2" />
<text text-anchor="" x="775.66" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (6 samples, 0.05%)</title><rect x="749.3" y="433" width="0.5" height="15.0" fill="rgb(211,87,36)" rx="2" ry="2" />
<text text-anchor="" x="752.27" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (6,029 samples, 46.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (6,029 samples, 46.87%)</title><rect x="636.4" y="449" width="553.1" height="15.0" fill="rgb(215,130,1)" rx="2" ry="2" />
<text text-anchor="" x="639.42" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_base_loop</text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.02%)</title><rect x="776.7" y="289" width="0.2" height="15.0" fill="rgb(248,25,54)" rx="2" ry="2" />
<text text-anchor="" x="779.70" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (5 samples, 0.04%)</title><rect x="737.2" y="305" width="0.4" height="15.0" fill="rgb(236,146,26)" rx="2" ry="2" />
<text text-anchor="" x="740.16" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (37 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (37 samples, 0.29%)</title><rect x="872.7" y="241" width="3.4" height="15.0" fill="rgb(252,2,5)" rx="2" ry="2" />
<text text-anchor="" x="875.66" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Waiter (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Waiter (20 samples, 0.16%)</title><rect x="326.9" y="465" width="1.8" height="15.0" fill="rgb(237,96,23)" rx="2" ry="2" />
<text text-anchor="" x="329.88" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (20 samples, 0.16%)</title><rect x="374.0" y="465" width="1.9" height="15.0" fill="rgb(232,116,16)" rx="2" ry="2" />
<text text-anchor="" x="377.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_init (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_init (6 samples, 0.05%)</title><rect x="370.9" y="465" width="0.6" height="15.0" fill="rgb(239,66,20)" rx="2" ry="2" />
<text text-anchor="" x="373.92" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (19 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (19 samples, 0.15%)</title><rect x="701.7" y="225" width="1.7" height="15.0" fill="rgb(229,78,28)" rx="2" ry="2" />
<text text-anchor="" x="704.65" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (55 samples, 0.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (55 samples, 0.43%)</title><rect x="15.8" y="513" width="5.0" height="15.0" fill="rgb(213,186,14)" rx="2" ry="2" />
<text text-anchor="" x="18.78" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (157 samples, 1.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (157 samples, 1.22%)</title><rect x="795.0" y="257" width="14.4" height="15.0" fill="rgb(225,113,42)" rx="2" ry="2" />
<text text-anchor="" x="798.05" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (72 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (72 samples, 0.56%)</title><rect x="778.0" y="289" width="6.6" height="15.0" fill="rgb(245,189,41)" rx="2" ry="2" />
<text text-anchor="" x="780.98" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (34 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (34 samples, 0.26%)</title><rect x="176.3" y="305" width="3.1" height="15.0" fill="rgb(221,184,45)" rx="2" ry="2" />
<text text-anchor="" x="179.33" y="315.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.02%)</title><rect x="379.7" y="401" width="0.2" height="15.0" fill="rgb(219,193,50)" rx="2" ry="2" />
<text text-anchor="" x="382.72" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::GetNextMessageSize (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::GetNextMessageSize (9 samples, 0.07%)</title><rect x="819.6" y="401" width="0.9" height="15.0" fill="rgb(229,38,26)" rx="2" ry="2" />
<text text-anchor="" x="822.63" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (43 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (43 samples, 0.33%)</title><rect x="313.5" y="401" width="3.9" height="15.0" fill="rgb(248,206,21)" rx="2" ry="2" />
<text text-anchor="" x="316.49" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (13 samples, 0.10%)</title><rect x="1153.8" y="145" width="1.2" height="15.0" fill="rgb(217,25,38)" rx="2" ry="2" />
<text text-anchor="" x="1156.76" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clone (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clone (4 samples, 0.03%)</title><rect x="10.8" y="529" width="0.4" height="15.0" fill="rgb(239,123,30)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.03%)</title><rect x="551.0" y="513" width="0.4" height="15.0" fill="rgb(210,72,48)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (12 samples, 0.09%)</title><rect x="305.7" y="433" width="1.1" height="15.0" fill="rgb(220,3,52)" rx="2" ry="2" />
<text text-anchor="" x="308.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (2 samples, 0.02%)</title><rect x="141.5" y="353" width="0.2" height="15.0" fill="rgb(254,4,4)" rx="2" ry="2" />
<text text-anchor="" x="144.47" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (12 samples, 0.09%)</title><rect x="848.0" y="353" width="1.1" height="15.0" fill="rgb(222,204,38)" rx="2" ry="2" />
<text text-anchor="" x="850.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::ConditionVariable::ConditionVariable (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::ConditionVariable::ConditionVariable (2 samples, 0.02%)</title><rect x="490.1" y="369" width="0.2" height="15.0" fill="rgb(220,30,23)" rx="2" ry="2" />
<text text-anchor="" x="493.09" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (2 samples, 0.02%)</title><rect x="382.3" y="385" width="0.2" height="15.0" fill="rgb(205,35,31)" rx="2" ry="2" />
<text text-anchor="" x="385.29" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (2 samples, 0.02%)</title><rect x="517.4" y="177" width="0.2" height="15.0" fill="rgb(215,60,21)" rx="2" ry="2" />
<text text-anchor="" x="520.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (70 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (70 samples, 0.54%)</title><rect x="202.7" y="305" width="6.4" height="15.0" fill="rgb(222,212,13)" rx="2" ry="2" />
<text text-anchor="" x="205.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.03%)</title><rect x="10.5" y="97" width="0.3" height="15.0" fill="rgb(208,73,11)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (13 samples, 0.10%)</title><rect x="649.9" y="369" width="1.2" height="15.0" fill="rgb(243,95,17)" rx="2" ry="2" />
<text text-anchor="" x="652.91" y="379.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (2 samples, 0.02%)</title><rect x="367.2" y="353" width="0.2" height="15.0" fill="rgb(253,132,38)" rx="2" ry="2" />
<text text-anchor="" x="370.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (13 samples, 0.10%)</title><rect x="492.8" y="337" width="1.2" height="15.0" fill="rgb(212,132,39)" rx="2" ry="2" />
<text text-anchor="" x="495.84" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (2 samples, 0.02%)</title><rect x="1077.6" y="225" width="0.2" height="15.0" fill="rgb(232,49,25)" rx="2" ry="2" />
<text text-anchor="" x="1080.61" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (11 samples, 0.09%)</title><rect x="735.6" y="257" width="1.0" height="15.0" fill="rgb(230,196,9)" rx="2" ry="2" />
<text text-anchor="" x="738.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (6 samples, 0.05%)</title><rect x="693.3" y="305" width="0.6" height="15.0" fill="rgb(231,161,37)" rx="2" ry="2" />
<text text-anchor="" x="696.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (451 samples, 3.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (451 samples, 3.51%)</title><rect x="772.8" y="353" width="41.4" height="15.0" fill="rgb(219,84,36)" rx="2" ry="2" />
<text text-anchor="" x="775.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('testing::internal::UnitTestImpl::RunAllTests (1,867 samples, 14.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::internal::UnitTestImpl::RunAllTests (1,867 samples, 14.52%)</title><rect x="379.3" y="481" width="171.3" height="15.0" fill="rgb(249,115,50)" rx="2" ry="2" />
<text text-anchor="" x="382.27" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::internal::Uni..</text>
</g>
<g class="func_g" onmouseover="s('skb_queue_tail (27 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (27 samples, 0.21%)</title><rect x="117.1" y="449" width="2.4" height="15.0" fill="rgb(235,160,31)" rx="2" ry="2" />
<text text-anchor="" x="120.06" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (635 samples, 4.94%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (635 samples, 4.94%)</title><rect x="927.6" y="241" width="58.3" height="15.0" fill="rgb(240,68,19)" rx="2" ry="2" />
<text text-anchor="" x="930.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >copy_u..</text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (17 samples, 0.13%)</title><rect x="203.0" y="289" width="1.6" height="15.0" fill="rgb(225,70,21)" rx="2" ry="2" />
<text text-anchor="" x="206.03" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (22 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (22 samples, 0.17%)</title><rect x="835.7" y="337" width="2.0" height="15.0" fill="rgb(227,107,15)" rx="2" ry="2" />
<text text-anchor="" x="838.69" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (176 samples, 1.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (176 samples, 1.37%)</title><rect x="793.8" y="273" width="16.1" height="15.0" fill="rgb(229,208,7)" rx="2" ry="2" />
<text text-anchor="" x="796.76" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (294 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (294 samples, 2.29%)</title><rect x="340.3" y="353" width="26.9" height="15.0" fill="rgb(219,196,54)" rx="2" ry="2" />
<text text-anchor="" x="343.28" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (6,291 samples, 48.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (6,291 samples, 48.91%)</title><rect x="612.4" y="465" width="577.1" height="15.0" fill="rgb(239,18,21)" rx="2" ry="2" />
<text text-anchor="" x="615.39" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::Run</text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (19 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (19 samples, 0.15%)</title><rect x="1000.0" y="369" width="1.7" height="15.0" fill="rgb(232,26,10)" rx="2" ry="2" />
<text text-anchor="" x="1003.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mntput (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mntput (2 samples, 0.02%)</title><rect x="657.5" y="385" width="0.2" height="15.0" fill="rgb(227,58,2)" rx="2" ry="2" />
<text text-anchor="" x="660.52" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (575 samples, 4.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (575 samples, 4.47%)</title><rect x="424.7" y="385" width="52.7" height="15.0" fill="rgb(234,219,16)" rx="2" ry="2" />
<text text-anchor="" x="427.68" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (5 samples, 0.04%)</title><rect x="464.8" y="321" width="0.4" height="15.0" fill="rgb(252,137,13)" rx="2" ry="2" />
<text text-anchor="" x="467.77" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (2 samples, 0.02%)</title><rect x="692.8" y="305" width="0.1" height="15.0" fill="rgb(224,153,21)" rx="2" ry="2" />
<text text-anchor="" x="695.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (12 samples, 0.09%)</title><rect x="538.5" y="273" width="1.1" height="15.0" fill="rgb(243,155,17)" rx="2" ry="2" />
<text text-anchor="" x="541.53" y="283.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.02%)</title><rect x="309.1" y="449" width="0.3" height="15.0" fill="rgb(221,77,24)" rx="2" ry="2" />
<text text-anchor="" x="312.08" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.05%)</title><rect x="1093.1" y="257" width="0.6" height="15.0" fill="rgb(218,228,49)" rx="2" ry="2" />
<text text-anchor="" x="1096.12" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (8 samples, 0.06%)</title><rect x="519.4" y="161" width="0.7" height="15.0" fill="rgb(240,42,10)" rx="2" ry="2" />
<text text-anchor="" x="522.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (9 samples, 0.07%)</title><rect x="629.2" y="449" width="0.8" height="15.0" fill="rgb(227,16,32)" rx="2" ry="2" />
<text text-anchor="" x="632.17" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (8 samples, 0.06%)</title><rect x="611.7" y="465" width="0.7" height="15.0" fill="rgb(241,109,47)" rx="2" ry="2" />
<text text-anchor="" x="614.65" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (15 samples, 0.12%)</title><rect x="11.6" y="529" width="1.3" height="15.0" fill="rgb(244,111,30)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (26 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (26 samples, 0.20%)</title><rect x="676.5" y="353" width="2.4" height="15.0" fill="rgb(222,134,15)" rx="2" ry="2" />
<text text-anchor="" x="679.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (2 samples, 0.02%)</title><rect x="846.4" y="305" width="0.2" height="15.0" fill="rgb(238,207,43)" rx="2" ry="2" />
<text text-anchor="" x="849.42" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (71 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (71 samples, 0.55%)</title><rect x="465.4" y="321" width="6.5" height="15.0" fill="rgb(251,62,46)" rx="2" ry="2" />
<text text-anchor="" x="468.41" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (88 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (88 samples, 0.68%)</title><rect x="352.3" y="273" width="8.1" height="15.0" fill="rgb(235,135,29)" rx="2" ry="2" />
<text text-anchor="" x="355.29" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_careful (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (4 samples, 0.03%)</title><rect x="584.1" y="529" width="0.4" height="15.0" fill="rgb(206,72,34)" rx="2" ry="2" />
<text text-anchor="" x="587.13" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (11 samples, 0.09%)</title><rect x="342.1" y="337" width="1.0" height="15.0" fill="rgb(239,133,35)" rx="2" ry="2" />
<text text-anchor="" x="345.11" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (21 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (21 samples, 0.16%)</title><rect x="1007.1" y="369" width="1.9" height="15.0" fill="rgb(231,51,28)" rx="2" ry="2" />
<text text-anchor="" x="1010.06" y="379.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.02%)</title><rect x="379.3" y="417" width="0.2" height="15.0" fill="rgb(218,101,10)" rx="2" ry="2" />
<text text-anchor="" x="382.27" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.02%)</title><rect x="1119.4" y="145" width="0.2" height="15.0" fill="rgb(216,56,26)" rx="2" ry="2" />
<text text-anchor="" x="1122.45" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (17 samples, 0.13%)</title><rect x="879.8" y="273" width="1.6" height="15.0" fill="rgb(216,165,43)" rx="2" ry="2" />
<text text-anchor="" x="882.82" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (15 samples, 0.12%)</title><rect x="200.6" y="257" width="1.3" height="15.0" fill="rgb(226,44,9)" rx="2" ry="2" />
<text text-anchor="" x="203.55" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (158 samples, 1.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (158 samples, 1.23%)</title><rect x="711.9" y="225" width="14.5" height="15.0" fill="rgb(217,178,16)" rx="2" ry="2" />
<text text-anchor="" x="714.93" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (2 samples, 0.02%)</title><rect x="837.7" y="337" width="0.2" height="15.0" fill="rgb(214,188,41)" rx="2" ry="2" />
<text text-anchor="" x="840.71" y="347.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 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (4 samples, 0.03%)</title><rect x="1145.7" y="81" width="0.4" height="15.0" fill="rgb(236,89,50)" rx="2" ry="2" />
<text text-anchor="" x="1148.69" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (2 samples, 0.02%)</title><rect x="1077.6" y="305" width="0.2" height="15.0" fill="rgb(236,191,5)" rx="2" ry="2" />
<text text-anchor="" x="1080.61" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.03%)</title><rect x="549.9" y="193" width="0.4" height="15.0" fill="rgb(220,188,45)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (2 samples, 0.02%)</title><rect x="343.2" y="209" width="0.2" height="15.0" fill="rgb(207,78,19)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (6 samples, 0.05%)</title><rect x="331.6" y="449" width="0.5" height="15.0" fill="rgb(213,157,47)" rx="2" ry="2" />
<text text-anchor="" x="334.56" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (40 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (40 samples, 0.31%)</title><rect x="876.1" y="273" width="3.7" height="15.0" fill="rgb(221,52,0)" rx="2" ry="2" />
<text text-anchor="" x="879.15" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (104 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (104 samples, 0.81%)</title><rect x="478.6" y="369" width="9.6" height="15.0" fill="rgb(233,41,6)" rx="2" ry="2" />
<text text-anchor="" x="481.62" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (15 samples, 0.12%)</title><rect x="782.6" y="257" width="1.3" height="15.0" fill="rgb(212,218,53)" rx="2" ry="2" />
<text text-anchor="" x="785.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::WaitableEvent::Wait (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::WaitableEvent::Wait (4 samples, 0.03%)</title><rect x="549.9" y="321" width="0.4" height="15.0" fill="rgb(236,50,52)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_setup (35 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (35 samples, 0.27%)</title><rect x="537.8" y="289" width="3.2" height="15.0" fill="rgb(236,41,44)" rx="2" ry="2" />
<text text-anchor="" x="540.80" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (4 samples, 0.03%)</title><rect x="813.9" y="337" width="0.3" height="15.0" fill="rgb(235,139,11)" rx="2" ry="2" />
<text text-anchor="" x="816.85" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('next_zones_zonelist (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>next_zones_zonelist (4 samples, 0.03%)</title><rect x="159.4" y="417" width="0.3" height="15.0" fill="rgb(244,189,5)" rx="2" ry="2" />
<text text-anchor="" x="162.36" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (8 samples, 0.06%)</title><rect x="219.5" y="497" width="0.8" height="15.0" fill="rgb(221,178,43)" rx="2" ry="2" />
<text text-anchor="" x="222.54" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="793.4" y="209" width="0.4" height="15.0" fill="rgb(207,6,44)" rx="2" ry="2" />
<text text-anchor="" x="796.39" y="219.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (2 samples, 0.02%)</title><rect x="711.2" y="273" width="0.2" height="15.0" fill="rgb(214,121,1)" rx="2" ry="2" />
<text text-anchor="" x="714.19" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="549.9" y="161" width="0.4" height="15.0" fill="rgb(214,228,33)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (36 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (36 samples, 0.28%)</title><rect x="214.4" y="481" width="3.3" height="15.0" fill="rgb(212,82,33)" rx="2" ry="2" />
<text text-anchor="" x="217.40" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (4 samples, 0.03%)</title><rect x="783.5" y="241" width="0.4" height="15.0" fill="rgb(218,228,32)" rx="2" ry="2" />
<text text-anchor="" x="786.49" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (110 samples, 0.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (110 samples, 0.86%)</title><rect x="911.7" y="209" width="10.1" height="15.0" fill="rgb(207,81,38)" rx="2" ry="2" />
<text text-anchor="" x="914.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (11 samples, 0.09%)</title><rect x="14.1" y="529" width="1.0" height="15.0" fill="rgb(207,6,26)" rx="2" ry="2" />
<text text-anchor="" x="17.13" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (21 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (21 samples, 0.16%)</title><rect x="992.1" y="305" width="1.9" height="15.0" fill="rgb(241,55,33)" rx="2" ry="2" />
<text text-anchor="" x="995.11" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Remove (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (2 samples, 0.02%)</title><rect x="492.0" y="353" width="0.2" height="15.0" fill="rgb(237,226,36)" rx="2" ry="2" />
<text text-anchor="" x="495.02" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (40 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (40 samples, 0.31%)</title><rect x="362.3" y="337" width="3.7" height="15.0" fill="rgb(234,39,53)" rx="2" ry="2" />
<text text-anchor="" x="365.29" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (376 samples, 2.92%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (376 samples, 2.92%)</title><rect x="336.2" y="433" width="34.5" height="15.0" fill="rgb(217,94,12)" rx="2" ry="2" />
<text text-anchor="" x="339.24" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (2 samples, 0.02%)</title><rect x="531.5" y="193" width="0.2" height="15.0" fill="rgb(241,207,20)" rx="2" ry="2" />
<text text-anchor="" x="534.47" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (2 samples, 0.02%)</title><rect x="335.6" y="449" width="0.2" height="15.0" fill="rgb(231,188,53)" rx="2" ry="2" />
<text text-anchor="" x="338.60" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="10.5" y="113" width="0.3" height="15.0" fill="rgb(234,195,18)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (6 samples, 0.05%)</title><rect x="695.5" y="257" width="0.6" height="15.0" fill="rgb(205,82,27)" rx="2" ry="2" />
<text text-anchor="" x="698.50" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.02%)</title><rect x="506.2" y="337" width="0.2" height="15.0" fill="rgb(228,133,50)" rx="2" ry="2" />
<text text-anchor="" x="509.24" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.03%)</title><rect x="687.2" y="353" width="0.4" height="15.0" fill="rgb(224,31,27)" rx="2" ry="2" />
<text text-anchor="" x="690.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (159 samples, 1.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (159 samples, 1.24%)</title><rect x="693.9" y="305" width="14.5" height="15.0" fill="rgb(230,208,48)" rx="2" ry="2" />
<text text-anchor="" x="696.85" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (57 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (57 samples, 0.44%)</title><rect x="680.0" y="353" width="5.2" height="15.0" fill="rgb(207,209,44)" rx="2" ry="2" />
<text text-anchor="" x="683.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (29 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (29 samples, 0.23%)</title><rect x="922.8" y="257" width="2.7" height="15.0" fill="rgb(237,93,36)" rx="2" ry="2" />
<text text-anchor="" x="925.84" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (5 samples, 0.04%)</title><rect x="1009.3" y="369" width="0.4" height="15.0" fill="rgb(208,35,10)" rx="2" ry="2" />
<text text-anchor="" x="1012.27" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (23 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (23 samples, 0.18%)</title><rect x="647.6" y="401" width="2.1" height="15.0" fill="rgb(230,45,53)" rx="2" ry="2" />
<text text-anchor="" x="650.61" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc (4 samples, 0.03%)</title><rect x="551.0" y="417" width="0.4" height="15.0" fill="rgb(241,153,53)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (2 samples, 0.02%)</title><rect x="1077.6" y="273" width="0.2" height="15.0" fill="rgb(245,67,1)" rx="2" ry="2" />
<text text-anchor="" x="1080.61" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (3 samples, 0.02%)</title><rect x="192.7" y="241" width="0.2" height="15.0" fill="rgb(235,126,30)" rx="2" ry="2" />
<text text-anchor="" x="195.66" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('policy_zonelist (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>policy_zonelist (9 samples, 0.07%)</title><rect x="159.8" y="417" width="0.8" height="15.0" fill="rgb(248,135,17)" rx="2" ry="2" />
<text text-anchor="" x="162.82" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (3 samples, 0.02%)</title><rect x="535.0" y="161" width="0.2" height="15.0" fill="rgb(240,88,9)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (2 samples, 0.02%)</title><rect x="521.1" y="193" width="0.2" height="15.0" fill="rgb(218,218,46)" rx="2" ry="2" />
<text text-anchor="" x="524.10" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_compound_page (57 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_compound_page (57 samples, 0.44%)</title><rect x="900.8" y="161" width="5.3" height="15.0" fill="rgb(233,224,47)" rx="2" ry="2" />
<text text-anchor="" x="903.83" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_state (455 samples, 3.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_state (455 samples, 3.54%)</title><rect x="1113.9" y="177" width="41.8" height="15.0" fill="rgb(217,118,54)" rx="2" ry="2" />
<text text-anchor="" x="1116.94" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >wak..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (7 samples, 0.05%)</title><rect x="755.7" y="417" width="0.6" height="15.0" fill="rgb(243,148,6)" rx="2" ry="2" />
<text text-anchor="" x="758.69" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (3 samples, 0.02%)</title><rect x="518.4" y="145" width="0.3" height="15.0" fill="rgb(209,1,0)" rx="2" ry="2" />
<text text-anchor="" x="521.44" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (19 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (19 samples, 0.15%)</title><rect x="1123.9" y="129" width="1.7" height="15.0" fill="rgb(237,207,36)" rx="2" ry="2" />
<text text-anchor="" x="1126.85" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (2 samples, 0.02%)</title><rect x="25.0" y="481" width="0.2" height="15.0" fill="rgb(230,36,42)" rx="2" ry="2" />
<text text-anchor="" x="28.05" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (10 samples, 0.08%)</title><rect x="465.9" y="305" width="0.9" height="15.0" fill="rgb(247,21,31)" rx="2" ry="2" />
<text text-anchor="" x="468.87" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (13 samples, 0.10%)</title><rect x="363.9" y="257" width="1.1" height="15.0" fill="rgb(219,104,21)" rx="2" ry="2" />
<text text-anchor="" x="366.85" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('retint_careful (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>retint_careful (4 samples, 0.03%)</title><rect x="572.3" y="529" width="0.4" height="15.0" fill="rgb(241,56,51)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (1,477 samples, 11.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (1,477 samples, 11.48%)</title><rect x="855.0" y="305" width="135.5" height="15.0" fill="rgb(221,122,25)" rx="2" ry="2" />
<text text-anchor="" x="857.95" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >___sys_recvmsg</text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (5 samples, 0.04%)</title><rect x="731.7" y="241" width="0.5" height="15.0" fill="rgb(236,102,17)" rx="2" ry="2" />
<text text-anchor="" x="734.74" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (7 samples, 0.05%)</title><rect x="20.2" y="497" width="0.6" height="15.0" fill="rgb(213,43,40)" rx="2" ry="2" />
<text text-anchor="" x="23.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_setup (31 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (31 samples, 0.24%)</title><rect x="367.6" y="385" width="2.9" height="15.0" fill="rgb(220,120,31)" rx="2" ry="2" />
<text text-anchor="" x="370.61" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (585 samples, 4.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (585 samples, 4.55%)</title><rect x="688.5" y="337" width="53.7" height="15.0" fill="rgb(206,198,51)" rx="2" ry="2" />
<text text-anchor="" x="691.53" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sched..</text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (23 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (23 samples, 0.18%)</title><rect x="886.7" y="225" width="2.1" height="15.0" fill="rgb(228,32,49)" rx="2" ry="2" />
<text text-anchor="" x="889.70" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (2 samples, 0.02%)</title><rect x="470.2" y="273" width="0.2" height="15.0" fill="rgb(246,202,20)" rx="2" ry="2" />
<text text-anchor="" x="473.18" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (9 samples, 0.07%)</title><rect x="650.3" y="257" width="0.8" height="15.0" fill="rgb(250,94,30)" rx="2" ry="2" />
<text text-anchor="" x="653.28" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (3 samples, 0.02%)</title><rect x="361.8" y="289" width="0.3" height="15.0" fill="rgb(234,205,21)" rx="2" ry="2" />
<text text-anchor="" x="364.83" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (6 samples, 0.05%)</title><rect x="311.4" y="449" width="0.5" height="15.0" fill="rgb(222,142,10)" rx="2" ry="2" />
<text text-anchor="" x="314.38" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (4 samples, 0.03%)</title><rect x="19.6" y="497" width="0.4" height="15.0" fill="rgb(254,43,25)" rx="2" ry="2" />
<text text-anchor="" x="22.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (5 samples, 0.04%)</title><rect x="693.4" y="289" width="0.5" height="15.0" fill="rgb(222,124,24)" rx="2" ry="2" />
<text text-anchor="" x="696.39" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__mod_zone_page_state (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__mod_zone_page_state (4 samples, 0.03%)</title><rect x="150.6" y="385" width="0.4" height="15.0" fill="rgb(209,127,6)" rx="2" ry="2" />
<text text-anchor="" x="153.64" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (31 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (31 samples, 0.24%)</title><rect x="362.9" y="305" width="2.9" height="15.0" fill="rgb(224,126,41)" rx="2" ry="2" />
<text text-anchor="" x="365.94" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_unix_gc (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (3 samples, 0.02%)</title><rect x="214.0" y="449" width="0.3" height="15.0" fill="rgb(253,54,31)" rx="2" ry="2" />
<text text-anchor="" x="217.04" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_recvmsg (19 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recvmsg (19 samples, 0.15%)</title><rect x="814.2" y="385" width="1.8" height="15.0" fill="rgb(247,146,15)" rx="2" ry="2" />
<text text-anchor="" x="817.22" y="395.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (2 samples, 0.02%)</title><rect x="335.2" y="417" width="0.2" height="15.0" fill="rgb(220,202,6)" rx="2" ry="2" />
<text text-anchor="" x="338.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_mmap_pgoff (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_mmap_pgoff (4 samples, 0.03%)</title><rect x="551.0" y="481" width="0.4" height="15.0" fill="rgb(239,10,31)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (15 samples, 0.12%)</title><rect x="115.7" y="433" width="1.4" height="15.0" fill="rgb(225,87,41)" rx="2" ry="2" />
<text text-anchor="" x="118.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (13 samples, 0.10%)</title><rect x="683.5" y="321" width="1.2" height="15.0" fill="rgb(242,36,21)" rx="2" ry="2" />
<text text-anchor="" x="686.49" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (4 samples, 0.03%)</title><rect x="777.6" y="289" width="0.4" height="15.0" fill="rgb(233,22,48)" rx="2" ry="2" />
<text text-anchor="" x="780.61" y="299.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (2 samples, 0.02%)</title><rect x="537.5" y="257" width="0.2" height="15.0" fill="rgb(232,101,46)" rx="2" ry="2" />
<text text-anchor="" x="540.52" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (9 samples, 0.07%)</title><rect x="21.7" y="529" width="0.8" height="15.0" fill="rgb(230,121,45)" rx="2" ry="2" />
<text text-anchor="" x="24.65" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (9 samples, 0.07%)</title><rect x="312.0" y="449" width="0.8" height="15.0" fill="rgb(225,15,21)" rx="2" ry="2" />
<text text-anchor="" x="315.02" y="459.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_unhook (2 samples, 0.02%)</title><rect x="325.7" y="433" width="0.2" height="15.0" fill="rgb(250,192,7)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.03%)</title><rect x="793.4" y="193" width="0.4" height="15.0" fill="rgb(235,0,0)" rx="2" ry="2" />
<text text-anchor="" x="796.39" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (2 samples, 0.02%)</title><rect x="382.6" y="385" width="0.2" height="15.0" fill="rgb(249,18,9)" rx="2" ry="2" />
<text text-anchor="" x="385.57" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (3 samples, 0.02%)</title><rect x="659.5" y="417" width="0.3" height="15.0" fill="rgb(221,186,7)" rx="2" ry="2" />
<text text-anchor="" x="662.54" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (6 samples, 0.05%)</title><rect x="472.9" y="321" width="0.6" height="15.0" fill="rgb(207,219,3)" rx="2" ry="2" />
<text text-anchor="" x="475.94" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (97 samples, 0.75%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (97 samples, 0.75%)</title><rect x="596.1" y="545" width="8.9" height="15.0" fill="rgb(213,194,49)" rx="2" ry="2" />
<text text-anchor="" x="599.15" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (3 samples, 0.02%)</title><rect x="1097.5" y="257" width="0.3" height="15.0" fill="rgb(237,114,10)" rx="2" ry="2" />
<text text-anchor="" x="1100.52" y="267.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.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (6 samples, 0.05%)</title><rect x="494.4" y="337" width="0.6" height="15.0" fill="rgb(223,50,14)" rx="2" ry="2" />
<text text-anchor="" x="497.40" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="481" width="0.4" height="15.0" fill="rgb(211,94,18)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (12 samples, 0.09%)</title><rect x="678.9" y="353" width="1.1" height="15.0" fill="rgb(250,210,36)" rx="2" ry="2" />
<text text-anchor="" x="681.90" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (6 samples, 0.05%)</title><rect x="343.1" y="337" width="0.6" height="15.0" fill="rgb(244,110,36)" rx="2" ry="2" />
<text text-anchor="" x="346.12" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (2 samples, 0.02%)</title><rect x="732.0" y="225" width="0.2" height="15.0" fill="rgb(206,159,21)" rx="2" ry="2" />
<text text-anchor="" x="735.02" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (9 samples, 0.07%)</title><rect x="767.9" y="353" width="0.8" height="15.0" fill="rgb(246,216,21)" rx="2" ry="2" />
<text text-anchor="" x="770.89" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (6 samples, 0.05%)</title><rect x="533.0" y="177" width="0.6" height="15.0" fill="rgb(214,151,0)" rx="2" ry="2" />
<text text-anchor="" x="536.03" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (5 samples, 0.04%)</title><rect x="477.0" y="353" width="0.4" height="15.0" fill="rgb(252,161,25)" rx="2" ry="2" />
<text text-anchor="" x="479.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (3 samples, 0.02%)</title><rect x="289.6" y="433" width="0.3" height="15.0" fill="rgb(217,121,50)" rx="2" ry="2" />
<text text-anchor="" x="292.63" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (26 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (26 samples, 0.20%)</title><rect x="884.3" y="257" width="2.4" height="15.0" fill="rgb(205,18,21)" rx="2" ry="2" />
<text text-anchor="" x="887.31" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (39 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (39 samples, 0.30%)</title><rect x="362.3" y="321" width="3.6" height="15.0" fill="rgb(233,108,8)" rx="2" ry="2" />
<text text-anchor="" x="365.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (583 samples, 4.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (583 samples, 4.53%)</title><rect x="765.3" y="401" width="53.5" height="15.0" fill="rgb(228,27,18)" rx="2" ry="2" />
<text text-anchor="" x="768.32" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (62 samples, 0.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (62 samples, 0.48%)</title><rect x="730.9" y="273" width="5.7" height="15.0" fill="rgb(209,159,10)" rx="2" ry="2" />
<text text-anchor="" x="733.92" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (2 samples, 0.02%)</title><rect x="198.9" y="257" width="0.2" height="15.0" fill="rgb(249,87,45)" rx="2" ry="2" />
<text text-anchor="" x="201.90" y="267.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="549.9" y="129" width="0.4" height="15.0" fill="rgb(248,165,50)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="572.3" y="417" width="0.4" height="15.0" fill="rgb(243,138,25)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.05%)</title><rect x="500.6" y="353" width="0.5" height="15.0" fill="rgb(241,223,41)" rx="2" ry="2" />
<text text-anchor="" x="503.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (37 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (37 samples, 0.29%)</title><rect x="732.2" y="257" width="3.4" height="15.0" fill="rgb(205,105,1)" rx="2" ry="2" />
<text text-anchor="" x="735.20" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelWrite (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelWrite (3 samples, 0.02%)</title><rect x="298.3" y="401" width="0.2" height="15.0" fill="rgb(234,162,53)" rx="2" ry="2" />
<text text-anchor="" x="301.26" y="411.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 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (4 samples, 0.03%)</title><rect x="520.6" y="193" width="0.3" height="15.0" fill="rgb(238,81,11)" rx="2" ry="2" />
<text text-anchor="" x="523.55" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (2 samples, 0.02%)</title><rect x="331.9" y="417" width="0.2" height="15.0" fill="rgb(213,3,46)" rx="2" ry="2" />
<text text-anchor="" x="334.93" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (3 samples, 0.02%)</title><rect x="289.6" y="401" width="0.3" height="15.0" fill="rgb(221,126,43)" rx="2" ry="2" />
<text text-anchor="" x="292.63" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_start_main (3,608 samples, 28.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (3,608 samples, 28.05%)</title><rect x="219.5" y="545" width="331.1" height="15.0" fill="rgb(237,212,20)" rx="2" ry="2" />
<text text-anchor="" x="222.54" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (10 samples, 0.08%)</title><rect x="517.8" y="177" width="0.9" height="15.0" fill="rgb(223,105,36)" rx="2" ry="2" />
<text text-anchor="" x="520.80" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (715 samples, 5.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (715 samples, 5.56%)</title><rect x="310.3" y="481" width="65.6" height="15.0" fill="rgb(241,182,44)" rx="2" ry="2" />
<text text-anchor="" x="313.28" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::s..</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (54 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (54 samples, 0.42%)</title><rect x="312.9" y="449" width="5.0" height="15.0" fill="rgb(242,222,33)" rx="2" ry="2" />
<text text-anchor="" x="315.94" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tracesys (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tracesys (2 samples, 0.02%)</title><rect x="11.4" y="513" width="0.2" height="15.0" fill="rgb(238,172,12)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_cond_lock (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (8 samples, 0.06%)</title><rect x="489.2" y="369" width="0.7" height="15.0" fill="rgb(232,34,42)" rx="2" ry="2" />
<text text-anchor="" x="492.17" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (2 samples, 0.02%)</title><rect x="289.7" y="385" width="0.2" height="15.0" fill="rgb(243,91,49)" rx="2" ry="2" />
<text text-anchor="" x="292.72" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::AddAwakable (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (10 samples, 0.08%)</title><rect x="320.0" y="465" width="0.9" height="15.0" fill="rgb(233,123,24)" rx="2" ry="2" />
<text text-anchor="" x="323.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (17 samples, 0.13%)</title><rect x="920.3" y="145" width="1.5" height="15.0" fill="rgb(241,63,54)" rx="2" ry="2" />
<text text-anchor="" x="923.28" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (9 samples, 0.07%)</title><rect x="309.4" y="481" width="0.8" height="15.0" fill="rgb(235,88,33)" rx="2" ry="2" />
<text text-anchor="" x="312.36" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__zone_watermark_ok (16 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__zone_watermark_ok (16 samples, 0.12%)</title><rect x="152.8" y="385" width="1.5" height="15.0" fill="rgb(224,92,43)" rx="2" ry="2" />
<text text-anchor="" x="155.84" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('plist_add (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>plist_add (10 samples, 0.08%)</title><rect x="339.4" y="369" width="0.9" height="15.0" fill="rgb(210,110,35)" rx="2" ry="2" />
<text text-anchor="" x="342.36" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (3 samples, 0.02%)</title><rect x="321.2" y="449" width="0.3" height="15.0" fill="rgb(210,87,13)" rx="2" ry="2" />
<text text-anchor="" x="324.19" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (5 samples, 0.04%)</title><rect x="1163.9" y="337" width="0.5" height="15.0" fill="rgb(226,191,24)" rx="2" ry="2" />
<text text-anchor="" x="1166.94" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (595 samples, 4.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (595 samples, 4.63%)</title><rect x="687.6" y="353" width="54.6" height="15.0" fill="rgb(224,31,10)" rx="2" ry="2" />
<text text-anchor="" x="690.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sched..</text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (30 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (30 samples, 0.23%)</title><rect x="732.4" y="209" width="2.7" height="15.0" fill="rgb(227,63,32)" rx="2" ry="2" />
<text text-anchor="" x="735.39" y="219.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.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (15 samples, 0.12%)</title><rect x="533.6" y="145" width="1.4" height="15.0" fill="rgb(205,93,8)" rx="2" ry="2" />
<text text-anchor="" x="536.58" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_futex (479 samples, 3.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_futex (479 samples, 3.72%)</title><rect x="1111.7" y="193" width="44.0" height="15.0" fill="rgb(215,121,31)" rx="2" ry="2" />
<text text-anchor="" x="1114.74" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >wake..</text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (12 samples, 0.09%)</title><rect x="1188.4" y="433" width="1.1" height="15.0" fill="rgb(211,227,1)" rx="2" ry="2" />
<text text-anchor="" x="1191.44" y="443.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (4 samples, 0.03%)</title><rect x="10.0" y="513" width="0.4" height="15.0" fill="rgb(207,137,6)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="10.5" y="129" width="0.3" height="15.0" fill="rgb(238,51,11)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (14 samples, 0.11%)</title><rect x="659.8" y="417" width="1.3" height="15.0" fill="rgb(218,153,23)" rx="2" ry="2" />
<text text-anchor="" x="662.82" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc_consolidate (79 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc_consolidate (79 samples, 0.61%)</title><rect x="576.7" y="545" width="7.2" height="15.0" fill="rgb(225,49,41)" rx="2" ry="2" />
<text text-anchor="" x="579.70" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (4 samples, 0.03%)</title><rect x="24.7" y="481" width="0.3" height="15.0" fill="rgb(239,140,54)" rx="2" ry="2" />
<text text-anchor="" x="27.68" y="491.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (2 samples, 0.02%)</title><rect x="700.0" y="241" width="0.2" height="15.0" fill="rgb(254,209,15)" rx="2" ry="2" />
<text text-anchor="" x="703.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (9 samples, 0.07%)</title><rect x="290.0" y="465" width="0.8" height="15.0" fill="rgb(240,65,12)" rx="2" ry="2" />
<text text-anchor="" x="293.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_msghdr_from_user (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_msghdr_from_user (3 samples, 0.02%)</title><rect x="858.7" y="289" width="0.3" height="15.0" fill="rgb(248,93,47)" rx="2" ry="2" />
<text text-anchor="" x="861.72" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::UnitTest::Run (1,867 samples, 14.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::UnitTest::Run (1,867 samples, 14.52%)</title><rect x="379.3" y="497" width="171.3" height="15.0" fill="rgb(235,34,19)" rx="2" ry="2" />
<text text-anchor="" x="382.27" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::UnitTest::Run</text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (5 samples, 0.04%)</title><rect x="1005.2" y="369" width="0.5" height="15.0" fill="rgb(212,189,27)" rx="2" ry="2" />
<text text-anchor="" x="1008.23" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (289 samples, 2.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (289 samples, 2.25%)</title><rect x="182.6" y="321" width="26.5" height="15.0" fill="rgb(240,217,8)" rx="2" ry="2" />
<text text-anchor="" x="185.57" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (33 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (33 samples, 0.26%)</title><rect x="16.6" y="497" width="3.0" height="15.0" fill="rgb(247,19,11)" rx="2" ry="2" />
<text text-anchor="" x="19.61" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (4 samples, 0.03%)</title><rect x="366.8" y="337" width="0.4" height="15.0" fill="rgb(238,216,2)" rx="2" ry="2" />
<text text-anchor="" x="369.79" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.02%)</title><rect x="508.5" y="289" width="0.2" height="15.0" fill="rgb(235,225,38)" rx="2" ry="2" />
<text text-anchor="" x="511.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (31 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (31 samples, 0.24%)</title><rect x="30.4" y="433" width="2.8" height="15.0" fill="rgb(214,117,38)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (14 samples, 0.11%)</title><rect x="212.3" y="417" width="1.3" height="15.0" fill="rgb(210,147,7)" rx="2" ry="2" />
<text text-anchor="" x="215.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (8 samples, 0.06%)</title><rect x="1155.0" y="161" width="0.7" height="15.0" fill="rgb(207,124,47)" rx="2" ry="2" />
<text text-anchor="" x="1157.95" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (2 samples, 0.02%)</title><rect x="300.6" y="369" width="0.2" height="15.0" fill="rgb(231,223,24)" rx="2" ry="2" />
<text text-anchor="" x="303.64" y="379.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 (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (12 samples, 0.09%)</title><rect x="1142.6" y="65" width="1.1" height="15.0" fill="rgb(222,2,26)" rx="2" ry="2" />
<text text-anchor="" x="1145.57" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (3 samples, 0.02%)</title><rect x="532.5" y="209" width="0.3" height="15.0" fill="rgb(210,226,53)" rx="2" ry="2" />
<text text-anchor="" x="535.48" y="219.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (2 samples, 0.02%)</title><rect x="738.1" y="305" width="0.2" height="15.0" fill="rgb(221,197,47)" rx="2" ry="2" />
<text text-anchor="" x="741.07" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__free_pages_ok.part.62 (46 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__free_pages_ok.part.62 (46 samples, 0.36%)</title><rect x="900.8" y="145" width="4.2" height="15.0" fill="rgb(230,96,33)" rx="2" ry="2" />
<text text-anchor="" x="903.83" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_exit (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (5 samples, 0.04%)</title><rect x="48.7" y="401" width="0.5" height="15.0" fill="rgb(241,21,30)" rx="2" ry="2" />
<text text-anchor="" x="51.72" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (2 samples, 0.02%)</title><rect x="693.6" y="209" width="0.2" height="15.0" fill="rgb(234,104,29)" rx="2" ry="2" />
<text text-anchor="" x="696.58" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (5 samples, 0.04%)</title><rect x="1163.0" y="321" width="0.5" height="15.0" fill="rgb(234,79,50)" rx="2" ry="2" />
<text text-anchor="" x="1166.03" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (3 samples, 0.02%)</title><rect x="201.7" y="241" width="0.2" height="15.0" fill="rgb(229,197,29)" rx="2" ry="2" />
<text text-anchor="" x="204.65" y="251.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (4 samples, 0.03%)</title><rect x="1005.3" y="353" width="0.4" height="15.0" fill="rgb(214,169,32)" rx="2" ry="2" />
<text text-anchor="" x="1008.32" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (5 samples, 0.04%)</title><rect x="343.2" y="289" width="0.5" height="15.0" fill="rgb(225,51,46)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('resched_task (49 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>resched_task (49 samples, 0.38%)</title><rect x="204.6" y="289" width="4.5" height="15.0" fill="rgb(246,217,39)" rx="2" ry="2" />
<text text-anchor="" x="207.59" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_destroy@@GLIBC_2.3.2 (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_destroy@@GLIBC_2.3.2 (15 samples, 0.12%)</title><rect x="546.7" y="385" width="1.4" height="15.0" fill="rgb(234,218,22)" rx="2" ry="2" />
<text text-anchor="" x="549.70" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (12 samples, 0.09%)</title><rect x="817.7" y="385" width="1.1" height="15.0" fill="rgb(238,177,40)" rx="2" ry="2" />
<text text-anchor="" x="820.71" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (6 samples, 0.05%)</title><rect x="504.2" y="321" width="0.6" height="15.0" fill="rgb(246,124,8)" rx="2" ry="2" />
<text text-anchor="" x="507.22" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (2 samples, 0.02%)</title><rect x="141.5" y="369" width="0.2" height="15.0" fill="rgb(254,148,48)" rx="2" ry="2" />
<text text-anchor="" x="144.47" y="379.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_hook (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_hook (3 samples, 0.02%)</title><rect x="320.6" y="449" width="0.3" height="15.0" fill="rgb(211,90,42)" rx="2" ry="2" />
<text text-anchor="" x="323.64" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (26 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (26 samples, 0.20%)</title><rect x="322.2" y="433" width="2.4" height="15.0" fill="rgb(242,50,48)" rx="2" ry="2" />
<text text-anchor="" x="325.20" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_destroy@@GLIBC_2.3.2 (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_destroy@@GLIBC_2.3.2 (10 samples, 0.08%)</title><rect x="375.9" y="481" width="0.9" height="15.0" fill="rgb(212,56,51)" rx="2" ry="2" />
<text text-anchor="" x="378.87" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (21 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (21 samples, 0.16%)</title><rect x="28.4" y="433" width="2.0" height="15.0" fill="rgb(209,171,44)" rx="2" ry="2" />
<text text-anchor="" x="31.44" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (35 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (35 samples, 0.27%)</title><rect x="703.4" y="241" width="3.2" height="15.0" fill="rgb(254,227,53)" rx="2" ry="2" />
<text text-anchor="" x="706.39" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.03%)</title><rect x="572.3" y="497" width="0.4" height="15.0" fill="rgb(227,190,50)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (13 samples, 0.10%)</title><rect x="649.9" y="337" width="1.2" height="15.0" fill="rgb(209,48,33)" rx="2" ry="2" />
<text text-anchor="" x="652.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (393 samples, 3.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (393 samples, 3.06%)</title><rect x="886.7" y="257" width="36.1" height="15.0" fill="rgb(211,43,12)" rx="2" ry="2" />
<text text-anchor="" x="889.70" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >con..</text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (2 samples, 0.02%)</title><rect x="922.5" y="241" width="0.2" height="15.0" fill="rgb(210,7,24)" rx="2" ry="2" />
<text text-anchor="" x="925.48" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (4 samples, 0.03%)</title><rect x="10.8" y="513" width="0.4" height="15.0" fill="rgb(228,25,25)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (3 samples, 0.02%)</title><rect x="706.9" y="257" width="0.3" height="15.0" fill="rgb(245,17,22)" rx="2" ry="2" />
<text text-anchor="" x="709.88" y="267.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="10.0" y="385" width="0.4" height="15.0" fill="rgb(218,105,11)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (12 samples, 0.09%)</title><rect x="1140.4" y="65" width="1.1" height="15.0" fill="rgb(211,129,25)" rx="2" ry="2" />
<text text-anchor="" x="1143.37" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (1,862 samples, 14.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (1,862 samples, 14.48%)</title><rect x="379.7" y="417" width="170.9" height="15.0" fill="rgb(242,68,9)" rx="2" ry="2" />
<text text-anchor="" x="382.72" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.02%)</title><rect x="927.4" y="225" width="0.2" height="15.0" fill="rgb(229,96,37)" rx="2" ry="2" />
<text text-anchor="" x="930.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (13 samples, 0.10%)</title><rect x="987.2" y="241" width="1.2" height="15.0" fill="rgb(225,141,40)" rx="2" ry="2" />
<text text-anchor="" x="990.25" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (171 samples, 1.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (171 samples, 1.33%)</title><rect x="184.0" y="273" width="15.7" height="15.0" fill="rgb(252,174,11)" rx="2" ry="2" />
<text text-anchor="" x="187.04" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__put_compound_page (59 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>__put_compound_page (59 samples, 0.46%)</title><rect x="900.7" y="177" width="5.4" height="15.0" fill="rgb(216,110,18)" rx="2" ry="2" />
<text text-anchor="" x="903.73" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (5 samples, 0.04%)</title><rect x="460.1" y="369" width="0.5" height="15.0" fill="rgb(228,82,22)" rx="2" ry="2" />
<text text-anchor="" x="463.09" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (170 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (170 samples, 1.32%)</title><rect x="711.4" y="273" width="15.6" height="15.0" fill="rgb(224,166,28)" rx="2" ry="2" />
<text text-anchor="" x="714.38" y="283.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 (291 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (291 samples, 2.26%)</title><rect x="1127.1" y="145" width="26.7" height="15.0" fill="rgb(215,7,45)" rx="2" ry="2" />
<text text-anchor="" x="1130.06" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s('kfree_skbmem (23 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (23 samples, 0.18%)</title><rect x="886.7" y="241" width="2.1" height="15.0" fill="rgb(242,140,50)" rx="2" ry="2" />
<text text-anchor="" x="889.70" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('alloc_pages_current (280 samples, 2.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_current (280 samples, 2.18%)</title><rect x="135.0" y="433" width="25.6" height="15.0" fill="rgb(229,200,51)" rx="2" ry="2" />
<text text-anchor="" x="137.95" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (124 samples, 0.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (124 samples, 0.96%)</title><rect x="463.4" y="353" width="11.4" height="15.0" fill="rgb(227,92,11)" rx="2" ry="2" />
<text text-anchor="" x="466.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::ChannelThread::Start (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::ChannelThread::Start (5 samples, 0.04%)</title><rect x="549.9" y="385" width="0.5" height="15.0" fill="rgb(206,144,38)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="584.1" y="417" width="0.4" height="15.0" fill="rgb(243,66,18)" rx="2" ry="2" />
<text text-anchor="" x="587.13" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="658.3" y="401" width="0.1" height="15.0" fill="rgb(231,26,24)" rx="2" ry="2" />
<text text-anchor="" x="661.26" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (211 samples, 1.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (211 samples, 1.64%)</title><rect x="182.7" y="305" width="19.3" height="15.0" fill="rgb(241,121,36)" rx="2" ry="2" />
<text text-anchor="" x="185.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (403 samples, 3.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (403 samples, 3.13%)</title><rect x="773.1" y="321" width="37.0" height="15.0" fill="rgb(205,104,32)" rx="2" ry="2" />
<text text-anchor="" x="776.12" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >___..</text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (3 samples, 0.02%)</title><rect x="129.6" y="401" width="0.3" height="15.0" fill="rgb(230,191,14)" rx="2" ry="2" />
<text text-anchor="" x="132.63" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (3 samples, 0.02%)</title><rect x="160.7" y="433" width="0.3" height="15.0" fill="rgb(239,208,4)" rx="2" ry="2" />
<text text-anchor="" x="163.73" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (5 samples, 0.04%)</title><rect x="321.7" y="433" width="0.5" height="15.0" fill="rgb(206,78,38)" rx="2" ry="2" />
<text text-anchor="" x="324.74" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('zone_statistics (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>zone_statistics (11 samples, 0.09%)</title><rect x="156.2" y="385" width="1.0" height="15.0" fill="rgb(218,81,25)" rx="2" ry="2" />
<text text-anchor="" x="159.24" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (74 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (74 samples, 0.58%)</title><rect x="651.5" y="401" width="6.8" height="15.0" fill="rgb(251,124,19)" rx="2" ry="2" />
<text text-anchor="" x="654.47" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (13 samples, 0.10%)</title><rect x="649.9" y="305" width="1.2" height="15.0" fill="rgb(240,34,43)" rx="2" ry="2" />
<text text-anchor="" x="652.91" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (13 samples, 0.10%)</title><rect x="1146.2" y="97" width="1.2" height="15.0" fill="rgb(205,184,26)" rx="2" ry="2" />
<text text-anchor="" x="1149.24" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (9 samples, 0.07%)</title><rect x="516.5" y="177" width="0.8" height="15.0" fill="rgb(243,15,23)" rx="2" ry="2" />
<text text-anchor="" x="519.51" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (4 samples, 0.03%)</title><rect x="662.6" y="401" width="0.3" height="15.0" fill="rgb(252,126,28)" rx="2" ry="2" />
<text text-anchor="" x="665.57" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (6 samples, 0.05%)</title><rect x="48.2" y="433" width="0.5" height="15.0" fill="rgb(216,216,35)" rx="2" ry="2" />
<text text-anchor="" x="51.17" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (4 samples, 0.03%)</title><rect x="741.6" y="321" width="0.3" height="15.0" fill="rgb(245,155,41)" rx="2" ry="2" />
<text text-anchor="" x="744.56" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (2 samples, 0.02%)</title><rect x="699.4" y="241" width="0.2" height="15.0" fill="rgb(209,152,18)" rx="2" ry="2" />
<text text-anchor="" x="702.45" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (4 samples, 0.03%)</title><rect x="423.1" y="353" width="0.4" height="15.0" fill="rgb(212,163,41)" rx="2" ry="2" />
<text text-anchor="" x="426.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_mmap (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_mmap (4 samples, 0.03%)</title><rect x="551.0" y="497" width="0.4" height="15.0" fill="rgb(207,44,4)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('posix_memalign@plt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>posix_memalign@plt (2 samples, 0.02%)</title><rect x="1167.7" y="337" width="0.2" height="15.0" fill="rgb(224,199,52)" rx="2" ry="2" />
<text text-anchor="" x="1170.71" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (5 samples, 0.04%)</title><rect x="466.8" y="305" width="0.4" height="15.0" fill="rgb(238,71,5)" rx="2" ry="2" />
<text text-anchor="" x="469.79" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (15 samples, 0.12%)</title><rect x="192.9" y="241" width="1.4" height="15.0" fill="rgb(219,18,35)" rx="2" ry="2" />
<text text-anchor="" x="195.94" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (8 samples, 0.06%)</title><rect x="875.2" y="225" width="0.8" height="15.0" fill="rgb(253,121,41)" rx="2" ry="2" />
<text text-anchor="" x="878.23" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestInfo::Run (1,867 samples, 14.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestInfo::Run (1,867 samples, 14.52%)</title><rect x="379.3" y="449" width="171.3" height="15.0" fill="rgb(208,44,23)" rx="2" ry="2" />
<text text-anchor="" x="382.27" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::TestInfo::Run</text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (8 samples, 0.06%)</title><rect x="14.3" y="513" width="0.7" height="15.0" fill="rgb(254,28,3)" rx="2" ry="2" />
<text text-anchor="" x="17.31" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (13 samples, 0.10%)</title><rect x="649.9" y="289" width="1.2" height="15.0" fill="rgb(238,102,21)" rx="2" ry="2" />
<text text-anchor="" x="652.91" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.03%)</title><rect x="10.8" y="449" width="0.4" height="15.0" fill="rgb(248,190,35)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (39 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (39 samples, 0.30%)</title><rect x="670.8" y="369" width="3.6" height="15.0" fill="rgb(215,139,49)" rx="2" ry="2" />
<text text-anchor="" x="673.83" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (1,588 samples, 12.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1,588 samples, 12.35%)</title><rect x="854.1" y="353" width="145.7" height="15.0" fill="rgb(248,12,24)" rx="2" ry="2" />
<text text-anchor="" x="857.13" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call_fastpath</text>
</g>
<g class="func_g" onmouseover="s('plist_add (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>plist_add (5 samples, 0.04%)</title><rect x="509.9" y="273" width="0.5" height="15.0" fill="rgb(227,221,37)" rx="2" ry="2" />
<text text-anchor="" x="512.91" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (2 samples, 0.02%)</title><rect x="20.0" y="481" width="0.2" height="15.0" fill="rgb(223,41,5)" rx="2" ry="2" />
<text text-anchor="" x="23.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.03%)</title><rect x="10.5" y="225" width="0.3" height="15.0" fill="rgb(236,170,0)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (14 samples, 0.11%)</title><rect x="990.7" y="305" width="1.3" height="15.0" fill="rgb(244,212,51)" rx="2" ry="2" />
<text text-anchor="" x="993.73" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::AddAwakable (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (2 samples, 0.02%)</title><rect x="491.2" y="353" width="0.2" height="15.0" fill="rgb(249,137,8)" rx="2" ry="2" />
<text text-anchor="" x="494.19" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (2,138 samples, 16.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (2,138 samples, 16.62%)</title><rect x="23.4" y="529" width="196.1" height="15.0" fill="rgb(216,117,7)" rx="2" ry="2" />
<text text-anchor="" x="26.39" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call_fastpath</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1,828 samples, 14.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1,828 samples, 14.21%)</title><rect x="832.1" y="369" width="167.7" height="15.0" fill="rgb(223,119,34)" rx="2" ry="2" />
<text text-anchor="" x="835.11" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('fput (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (12 samples, 0.09%)</title><rect x="745.0" y="385" width="1.1" height="15.0" fill="rgb(205,77,47)" rx="2" ry="2" />
<text text-anchor="" x="748.05" y="395.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (2 samples, 0.02%)</title><rect x="701.5" y="225" width="0.2" height="15.0" fill="rgb(249,193,33)" rx="2" ry="2" />
<text text-anchor="" x="704.47" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (2 samples, 0.02%)</title><rect x="457.9" y="369" width="0.2" height="15.0" fill="rgb(251,158,9)" rx="2" ry="2" />
<text text-anchor="" x="460.89" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="10.8" y="465" width="0.4" height="15.0" fill="rgb(236,168,30)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_recvmsg (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (5 samples, 0.04%)</title><rect x="868.6" y="273" width="0.5" height="15.0" fill="rgb(236,200,45)" rx="2" ry="2" />
<text text-anchor="" x="871.62" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (5 samples, 0.04%)</title><rect x="173.2" y="321" width="0.5" height="15.0" fill="rgb(241,105,36)" rx="2" ry="2" />
<text text-anchor="" x="176.21" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (5 samples, 0.04%)</title><rect x="809.4" y="257" width="0.5" height="15.0" fill="rgb(229,69,27)" rx="2" ry="2" />
<text text-anchor="" x="812.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.02%)</title><rect x="480.9" y="353" width="0.2" height="15.0" fill="rgb(220,126,4)" rx="2" ry="2" />
<text text-anchor="" x="483.92" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (3 samples, 0.02%)</title><rect x="693.6" y="225" width="0.3" height="15.0" fill="rgb(249,216,0)" rx="2" ry="2" />
<text text-anchor="" x="696.58" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (5 samples, 0.04%)</title><rect x="10.4" y="289" width="0.4" height="15.0" fill="rgb(244,111,36)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (3 samples, 0.02%)</title><rect x="647.1" y="417" width="0.2" height="15.0" fill="rgb(214,213,2)" rx="2" ry="2" />
<text text-anchor="" x="650.06" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.03%)</title><rect x="584.1" y="449" width="0.4" height="15.0" fill="rgb(249,93,43)" rx="2" ry="2" />
<text text-anchor="" x="587.13" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__mod_zone_page_state (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__mod_zone_page_state (2 samples, 0.02%)</title><rect x="898.2" y="145" width="0.1" height="15.0" fill="rgb(241,53,21)" rx="2" ry="2" />
<text text-anchor="" x="901.17" y="155.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 (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (7 samples, 0.05%)</title><rect x="350.9" y="305" width="0.7" height="15.0" fill="rgb(213,108,51)" rx="2" ry="2" />
<text text-anchor="" x="353.92" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (16 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (16 samples, 0.12%)</title><rect x="28.9" y="417" width="1.5" height="15.0" fill="rgb(212,66,50)" rx="2" ry="2" />
<text text-anchor="" x="31.90" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (2 samples, 0.02%)</title><rect x="1077.6" y="289" width="0.2" height="15.0" fill="rgb(233,194,0)" rx="2" ry="2" />
<text text-anchor="" x="1080.61" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (81 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (81 samples, 0.63%)</title><rect x="523.2" y="145" width="7.4" height="15.0" fill="rgb(230,79,54)" rx="2" ry="2" />
<text text-anchor="" x="526.21" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (3 samples, 0.02%)</title><rect x="518.4" y="161" width="0.3" height="15.0" fill="rgb(211,70,40)" rx="2" ry="2" />
<text text-anchor="" x="521.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (3 samples, 0.02%)</title><rect x="708.4" y="305" width="0.3" height="15.0" fill="rgb(245,204,48)" rx="2" ry="2" />
<text text-anchor="" x="711.44" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (3 samples, 0.02%)</title><rect x="771.5" y="369" width="0.2" height="15.0" fill="rgb(219,132,14)" rx="2" ry="2" />
<text text-anchor="" x="774.47" y="379.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (2 samples, 0.02%)</title><rect x="732.0" y="193" width="0.2" height="15.0" fill="rgb(249,121,53)" rx="2" ry="2" />
<text text-anchor="" x="735.02" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (7 samples, 0.05%)</title><rect x="349.0" y="241" width="0.6" height="15.0" fill="rgb(217,21,40)" rx="2" ry="2" />
<text text-anchor="" x="351.99" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.02%)</title><rect x="736.9" y="289" width="0.2" height="15.0" fill="rgb(236,22,32)" rx="2" ry="2" />
<text text-anchor="" x="739.88" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_compound_page (83 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_compound_page (83 samples, 0.65%)</title><rect x="898.7" y="193" width="7.6" height="15.0" fill="rgb(211,52,43)" rx="2" ry="2" />
<text text-anchor="" x="901.72" y="203.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (2 samples, 0.02%)</title><rect x="11.2" y="513" width="0.2" height="15.0" fill="rgb(232,78,31)" rx="2" ry="2" />
<text text-anchor="" x="14.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.03%)</title><rect x="572.3" y="385" width="0.4" height="15.0" fill="rgb(248,202,41)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (8 samples, 0.06%)</title><rect x="633.2" y="433" width="0.7" height="15.0" fill="rgb(237,25,41)" rx="2" ry="2" />
<text text-anchor="" x="636.21" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (84 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (84 samples, 0.65%)</title><rect x="651.4" y="417" width="7.7" height="15.0" fill="rgb(252,171,18)" rx="2" ry="2" />
<text text-anchor="" x="654.38" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (2 samples, 0.02%)</title><rect x="317.4" y="401" width="0.2" height="15.0" fill="rgb(220,128,51)" rx="2" ry="2" />
<text text-anchor="" x="320.43" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (81 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (81 samples, 0.63%)</title><rect x="523.2" y="193" width="7.4" height="15.0" fill="rgb(247,54,35)" rx="2" ry="2" />
<text text-anchor="" x="526.21" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (20 samples, 0.16%)</title><rect x="501.7" y="321" width="1.9" height="15.0" fill="rgb(239,138,39)" rx="2" ry="2" />
<text text-anchor="" x="504.74" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (6 samples, 0.05%)</title><rect x="25.2" y="481" width="0.6" height="15.0" fill="rgb(243,89,52)" rx="2" ry="2" />
<text text-anchor="" x="28.23" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Waiter (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Waiter (20 samples, 0.16%)</title><rect x="495.6" y="369" width="1.8" height="15.0" fill="rgb(225,130,20)" rx="2" ry="2" />
<text text-anchor="" x="498.60" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (2,250 samples, 17.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (2,250 samples, 17.49%)</title><rect x="13.1" y="545" width="206.4" height="15.0" fill="rgb(211,207,27)" rx="2" ry="2" />
<text text-anchor="" x="16.12" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_send</text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (1,362 samples, 10.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1,362 samples, 10.59%)</title><rect x="864.0" y="289" width="125.0" height="15.0" fill="rgb(211,156,39)" rx="2" ry="2" />
<text text-anchor="" x="867.04" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_recvmsg</text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.03%)</title><rect x="549.9" y="145" width="0.4" height="15.0" fill="rgb(211,83,54)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (73 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (73 samples, 0.57%)</title><rect x="869.4" y="257" width="6.7" height="15.0" fill="rgb(244,224,8)" rx="2" ry="2" />
<text text-anchor="" x="872.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.02%)</title><rect x="21.0" y="513" width="0.2" height="15.0" fill="rgb(231,118,20)" rx="2" ry="2" />
<text text-anchor="" x="24.01" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (3 samples, 0.02%)</title><rect x="289.6" y="449" width="0.3" height="15.0" fill="rgb(253,106,47)" rx="2" ry="2" />
<text text-anchor="" x="292.63" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="449" width="0.4" height="15.0" fill="rgb(252,69,2)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.03%)</title><rect x="549.9" y="209" width="0.4" height="15.0" fill="rgb(211,121,23)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (623 samples, 4.84%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (623 samples, 4.84%)</title><rect x="1098.8" y="225" width="57.2" height="15.0" fill="rgb(219,145,8)" rx="2" ry="2" />
<text text-anchor="" x="1101.81" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_futex</text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (6,309 samples, 49.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (6,309 samples, 49.05%)</title><rect x="611.2" y="497" width="578.8" height="15.0" fill="rgb(210,121,4)" rx="2" ry="2" />
<text text-anchor="" x="614.19" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessageLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (4 samples, 0.03%)</title><rect x="837.3" y="321" width="0.4" height="15.0" fill="rgb(218,30,28)" rx="2" ry="2" />
<text text-anchor="" x="840.34" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.03%)</title><rect x="793.4" y="257" width="0.4" height="15.0" fill="rgb(244,139,40)" rx="2" ry="2" />
<text text-anchor="" x="796.39" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (41 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (41 samples, 0.32%)</title><rect x="419.8" y="369" width="3.8" height="15.0" fill="rgb(225,184,49)" rx="2" ry="2" />
<text text-anchor="" x="422.82" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (9 samples, 0.07%)</title><rect x="349.7" y="273" width="0.9" height="15.0" fill="rgb(230,223,26)" rx="2" ry="2" />
<text text-anchor="" x="352.72" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (299 samples, 2.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (299 samples, 2.32%)</title><rect x="510.4" y="273" width="27.4" height="15.0" fill="rgb(224,150,12)" rx="2" ry="2" />
<text text-anchor="" x="513.37" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_init@plt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_init@plt (2 samples, 0.02%)</title><rect x="496.8" y="353" width="0.2" height="15.0" fill="rgb(254,104,21)" rx="2" ry="2" />
<text text-anchor="" x="499.79" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__mod_zone_page_state (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__mod_zone_page_state (2 samples, 0.02%)</title><rect x="902.9" y="113" width="0.2" height="15.0" fill="rgb(217,94,54)" rx="2" ry="2" />
<text text-anchor="" x="905.94" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.02%)</title><rect x="513.9" y="241" width="0.1" height="15.0" fill="rgb(252,0,7)" rx="2" ry="2" />
<text text-anchor="" x="516.85" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (3 samples, 0.02%)</title><rect x="751.6" y="417" width="0.2" height="15.0" fill="rgb(248,9,30)" rx="2" ry="2" />
<text text-anchor="" x="754.56" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (4 samples, 0.03%)</title><rect x="317.9" y="465" width="0.4" height="15.0" fill="rgb(221,108,14)" rx="2" ry="2" />
<text text-anchor="" x="320.89" y="475.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.03%)</title><rect x="549.9" y="241" width="0.4" height="15.0" fill="rgb(254,190,54)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (52 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (52 samples, 0.40%)</title><rect x="906.3" y="209" width="4.8" height="15.0" fill="rgb(217,110,28)" rx="2" ry="2" />
<text text-anchor="" x="909.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (87 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (87 samples, 0.68%)</title><rect x="352.4" y="241" width="8.0" height="15.0" fill="rgb(254,89,40)" rx="2" ry="2" />
<text text-anchor="" x="355.39" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="793.4" y="225" width="0.4" height="15.0" fill="rgb(227,51,40)" rx="2" ry="2" />
<text text-anchor="" x="796.39" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (3 samples, 0.02%)</title><rect x="810.8" y="321" width="0.3" height="15.0" fill="rgb(233,130,20)" rx="2" ry="2" />
<text text-anchor="" x="813.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_init (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_init (8 samples, 0.06%)</title><rect x="496.1" y="353" width="0.7" height="15.0" fill="rgb(218,71,46)" rx="2" ry="2" />
<text text-anchor="" x="499.06" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (4,677 samples, 36.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (4,677 samples, 36.36%)</title><rect x="749.8" y="433" width="429.1" height="15.0" fill="rgb(236,210,9)" rx="2" ry="2" />
<text text-anchor="" x="752.82" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::OnLibeventNotification</text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_unlock_usercnt (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_unlock_usercnt (3 samples, 0.02%)</title><rect x="319.4" y="465" width="0.2" height="15.0" fill="rgb(243,8,48)" rx="2" ry="2" />
<text text-anchor="" x="322.36" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TestIOThread::Start (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestIOThread::Start (5 samples, 0.04%)</title><rect x="549.9" y="369" width="0.5" height="15.0" fill="rgb(207,50,28)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (5 samples, 0.04%)</title><rect x="1080.6" y="337" width="0.4" height="15.0" fill="rgb(214,163,39)" rx="2" ry="2" />
<text text-anchor="" x="1083.55" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_pages_prepare (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_pages_prepare (11 samples, 0.09%)</title><rect x="905.0" y="145" width="1.1" height="15.0" fill="rgb(210,182,36)" rx="2" ry="2" />
<text text-anchor="" x="908.05" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (69 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (69 samples, 0.54%)</title><rect x="778.2" y="273" width="6.3" height="15.0" fill="rgb(225,29,19)" rx="2" ry="2" />
<text text-anchor="" x="781.17" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (8 samples, 0.06%)</title><rect x="867.8" y="273" width="0.7" height="15.0" fill="rgb(236,66,44)" rx="2" ry="2" />
<text text-anchor="" x="870.80" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (96 samples, 0.75%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (96 samples, 0.75%)</title><rect x="522.0" y="241" width="8.8" height="15.0" fill="rgb(254,6,5)" rx="2" ry="2" />
<text text-anchor="" x="525.02" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (51 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (51 samples, 0.40%)</title><rect x="906.4" y="193" width="4.7" height="15.0" fill="rgb(245,217,34)" rx="2" ry="2" />
<text text-anchor="" x="909.42" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (41 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (41 samples, 0.32%)</title><rect x="1093.7" y="257" width="3.7" height="15.0" fill="rgb(216,152,31)" rx="2" ry="2" />
<text text-anchor="" x="1096.67" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (6 samples, 0.05%)</title><rect x="48.7" y="417" width="0.6" height="15.0" fill="rgb(221,0,39)" rx="2" ry="2" />
<text text-anchor="" x="51.72" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (5 samples, 0.04%)</title><rect x="658.4" y="401" width="0.5" height="15.0" fill="rgb(231,39,5)" rx="2" ry="2" />
<text text-anchor="" x="661.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (378 samples, 2.94%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (378 samples, 2.94%)</title><rect x="336.1" y="449" width="34.6" height="15.0" fill="rgb(209,163,45)" rx="2" ry="2" />
<text text-anchor="" x="339.06" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s('__slab_alloc (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (10 samples, 0.08%)</title><rect x="128.7" y="385" width="0.9" height="15.0" fill="rgb(229,198,23)" rx="2" ry="2" />
<text text-anchor="" x="131.72" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (2 samples, 0.02%)</title><rect x="311.7" y="433" width="0.2" height="15.0" fill="rgb(232,28,18)" rx="2" ry="2" />
<text text-anchor="" x="314.74" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (28 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (28 samples, 0.22%)</title><rect x="371.5" y="465" width="2.5" height="15.0" fill="rgb(217,143,42)" rx="2" ry="2" />
<text text-anchor="" x="374.47" y="475.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (2 samples, 0.02%)</title><rect x="367.4" y="353" width="0.2" height="15.0" fill="rgb(247,184,18)" rx="2" ry="2" />
<text text-anchor="" x="370.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (4 samples, 0.03%)</title><rect x="477.4" y="385" width="0.4" height="15.0" fill="rgb(240,99,54)" rx="2" ry="2" />
<text text-anchor="" x="480.43" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.03%)</title><rect x="10.0" y="545" width="0.4" height="15.0" fill="rgb(242,196,7)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (9 samples, 0.07%)</title><rect x="316.6" y="385" width="0.8" height="15.0" fill="rgb(207,33,17)" rx="2" ry="2" />
<text text-anchor="" x="319.61" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::RemoveAwakable (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (2 samples, 0.02%)</title><rect x="424.5" y="385" width="0.2" height="15.0" fill="rgb(227,174,6)" rx="2" ry="2" />
<text text-anchor="" x="427.50" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (6 samples, 0.05%)</title><rect x="376.8" y="481" width="0.5" height="15.0" fill="rgb(219,48,31)" rx="2" ry="2" />
<text text-anchor="" x="379.79" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::View::View (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::View (4 samples, 0.03%)</title><rect x="820.6" y="401" width="0.3" height="15.0" fill="rgb(230,76,2)" rx="2" ry="2" />
<text text-anchor="" x="823.55" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (2 samples, 0.02%)</title><rect x="513.3" y="241" width="0.2" height="15.0" fill="rgb(225,136,3)" rx="2" ry="2" />
<text text-anchor="" x="516.30" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (6 samples, 0.05%)</title><rect x="988.4" y="241" width="0.6" height="15.0" fill="rgb(244,84,10)" rx="2" ry="2" />
<text text-anchor="" x="991.44" y="251.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (2 samples, 0.02%)</title><rect x="24.5" y="481" width="0.2" height="15.0" fill="rgb(216,161,43)" rx="2" ry="2" />
<text text-anchor="" x="27.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('verify_iovec (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>verify_iovec (2 samples, 0.02%)</title><rect x="809.9" y="305" width="0.2" height="15.0" fill="rgb(221,80,5)" rx="2" ry="2" />
<text text-anchor="" x="812.91" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (23 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (23 samples, 0.18%)</title><rect x="918.2" y="145" width="2.1" height="15.0" fill="rgb(249,210,35)" rx="2" ry="2" />
<text text-anchor="" x="921.17" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="529" width="0.4" height="15.0" fill="rgb(240,138,9)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelWrite (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelWrite (4 samples, 0.03%)</title><rect x="468.1" y="305" width="0.3" height="15.0" fill="rgb(249,70,8)" rx="2" ry="2" />
<text text-anchor="" x="471.07" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (159 samples, 1.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (159 samples, 1.24%)</title><rect x="462.8" y="369" width="14.6" height="15.0" fill="rgb(212,15,3)" rx="2" ry="2" />
<text text-anchor="" x="465.84" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_pageblock_flags_mask (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_pageblock_flags_mask (6 samples, 0.05%)</title><rect x="155.7" y="385" width="0.5" height="15.0" fill="rgb(223,0,49)" rx="2" ry="2" />
<text text-anchor="" x="158.69" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (10 samples, 0.08%)</title><rect x="770.4" y="337" width="0.9" height="15.0" fill="rgb(209,87,13)" rx="2" ry="2" />
<text text-anchor="" x="773.37" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (12 samples, 0.09%)</title><rect x="481.1" y="353" width="1.1" height="15.0" fill="rgb(214,151,20)" rx="2" ry="2" />
<text text-anchor="" x="484.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (1,930 samples, 15.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (1,930 samples, 15.01%)</title><rect x="37.2" y="465" width="177.1" height="15.0" fill="rgb(238,15,7)" rx="2" ry="2" />
<text text-anchor="" x="40.25" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_stream_sendmsg</text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (3 samples, 0.02%)</title><rect x="488.9" y="369" width="0.3" height="15.0" fill="rgb(226,28,12)" rx="2" ry="2" />
<text text-anchor="" x="491.90" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (78 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (78 samples, 0.61%)</title><rect x="343.8" y="305" width="7.1" height="15.0" fill="rgb(252,101,21)" rx="2" ry="2" />
<text text-anchor="" x="346.76" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mmap_region (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mmap_region (4 samples, 0.03%)</title><rect x="551.0" y="433" width="0.4" height="15.0" fill="rgb(218,37,6)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (105 samples, 0.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 0.82%)</title><rect x="619.1" y="433" width="9.6" height="15.0" fill="rgb(212,41,28)" rx="2" ry="2" />
<text text-anchor="" x="622.08" y="443.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.02%)</title><rect x="418.4" y="369" width="0.2" height="15.0" fill="rgb(254,183,10)" rx="2" ry="2" />
<text text-anchor="" x="421.44" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (3 samples, 0.02%)</title><rect x="1173.5" y="385" width="0.3" height="15.0" fill="rgb(215,138,16)" rx="2" ry="2" />
<text text-anchor="" x="1176.49" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake_op (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (2 samples, 0.02%)</title><rect x="1156.0" y="225" width="0.1" height="15.0" fill="rgb(242,225,1)" rx="2" ry="2" />
<text text-anchor="" x="1158.96" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (19 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (19 samples, 0.15%)</title><rect x="812.0" y="305" width="1.8" height="15.0" fill="rgb(217,220,31)" rx="2" ry="2" />
<text text-anchor="" x="815.02" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (33 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (33 samples, 0.26%)</title><rect x="542.3" y="369" width="3.0" height="15.0" fill="rgb(251,171,21)" rx="2" ry="2" />
<text text-anchor="" x="545.29" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (9 samples, 0.07%)</title><rect x="731.4" y="257" width="0.8" height="15.0" fill="rgb(249,13,6)" rx="2" ry="2" />
<text text-anchor="" x="734.38" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (10 samples, 0.08%)</title><rect x="22.5" y="529" width="0.9" height="15.0" fill="rgb(237,30,22)" rx="2" ry="2" />
<text text-anchor="" x="25.48" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (5 samples, 0.04%)</title><rect x="1147.6" y="129" width="0.5" height="15.0" fill="rgb(227,158,18)" rx="2" ry="2" />
<text text-anchor="" x="1150.61" y="139.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (2 samples, 0.02%)</title><rect x="1093.9" y="225" width="0.2" height="15.0" fill="rgb(251,201,31)" rx="2" ry="2" />
<text text-anchor="" x="1096.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('plist_add (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>plist_add (2 samples, 0.02%)</title><rect x="541.1" y="289" width="0.2" height="15.0" fill="rgb(232,53,37)" rx="2" ry="2" />
<text text-anchor="" x="544.10" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::RemoveAwakable (54 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (54 samples, 0.42%)</title><rect x="320.9" y="465" width="5.0" height="15.0" fill="rgb(247,62,29)" rx="2" ry="2" />
<text text-anchor="" x="323.92" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (454 samples, 3.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (454 samples, 3.53%)</title><rect x="772.6" y="369" width="41.6" height="15.0" fill="rgb(253,96,34)" rx="2" ry="2" />
<text text-anchor="" x="775.57" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::ReadBuffer::GetBuffer (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::ReadBuffer::GetBuffer (7 samples, 0.05%)</title><rect x="1174.9" y="401" width="0.6" height="15.0" fill="rgb(241,117,26)" rx="2" ry="2" />
<text text-anchor="" x="1177.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (18 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (18 samples, 0.14%)</title><rect x="333.2" y="417" width="1.7" height="15.0" fill="rgb(235,184,19)" rx="2" ry="2" />
<text text-anchor="" x="336.21" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="551.0" y="289" width="0.4" height="15.0" fill="rgb(217,111,32)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="299.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.02%)</title><rect x="1164.5" y="337" width="0.3" height="15.0" fill="rgb(240,64,52)" rx="2" ry="2" />
<text text-anchor="" x="1167.50" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (7 samples, 0.05%)</title><rect x="1139.7" y="65" width="0.7" height="15.0" fill="rgb(222,104,27)" rx="2" ry="2" />
<text text-anchor="" x="1142.72" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (2 samples, 0.02%)</title><rect x="260.2" y="337" width="0.2" height="15.0" fill="rgb(252,153,28)" rx="2" ry="2" />
<text text-anchor="" x="263.18" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (12 samples, 0.09%)</title><rect x="1180.6" y="433" width="1.1" height="15.0" fill="rgb(209,116,37)" rx="2" ry="2" />
<text text-anchor="" x="1183.64" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (53 samples, 0.41%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (53 samples, 0.41%)</title><rect x="345.8" y="289" width="4.8" height="15.0" fill="rgb(248,91,40)" rx="2" ry="2" />
<text text-anchor="" x="348.78" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (864 samples, 6.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (864 samples, 6.72%)</title><rect x="1082.0" y="321" width="79.3" height="15.0" fill="rgb(254,65,19)" rx="2" ry="2" />
<text text-anchor="" x="1085.02" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::sys..</text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (5 samples, 0.04%)</title><rect x="1139.9" y="49" width="0.5" height="15.0" fill="rgb(210,220,12)" rx="2" ry="2" />
<text text-anchor="" x="1142.91" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (13 samples, 0.10%)</title><rect x="649.9" y="401" width="1.2" height="15.0" fill="rgb(244,19,24)" rx="2" ry="2" />
<text text-anchor="" x="652.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (475 samples, 3.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (475 samples, 3.69%)</title><rect x="265.8" y="481" width="43.6" height="15.0" fill="rgb(238,180,14)" rx="2" ry="2" />
<text text-anchor="" x="268.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo..</text>
</g>
<g class="func_g" onmouseover="s('_int_free (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.02%)</title><rect x="492.7" y="337" width="0.1" height="15.0" fill="rgb(206,47,52)" rx="2" ry="2" />
<text text-anchor="" x="495.66" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.02%)</title><rect x="708.3" y="257" width="0.1" height="15.0" fill="rgb(227,145,3)" rx="2" ry="2" />
<text text-anchor="" x="711.26" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.03%)</title><rect x="572.3" y="449" width="0.4" height="15.0" fill="rgb(217,13,47)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (2 samples, 0.02%)</title><rect x="693.6" y="161" width="0.2" height="15.0" fill="rgb(224,90,1)" rx="2" ry="2" />
<text text-anchor="" x="696.58" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (14 samples, 0.11%)</title><rect x="770.2" y="353" width="1.3" height="15.0" fill="rgb(231,136,5)" rx="2" ry="2" />
<text text-anchor="" x="773.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (7 samples, 0.05%)</title><rect x="218.7" y="497" width="0.7" height="15.0" fill="rgb(232,16,50)" rx="2" ry="2" />
<text text-anchor="" x="221.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.03%)</title><rect x="10.5" y="209" width="0.3" height="15.0" fill="rgb(241,55,29)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (6 samples, 0.05%)</title><rect x="217.9" y="497" width="0.5" height="15.0" fill="rgb(237,74,35)" rx="2" ry="2" />
<text text-anchor="" x="220.89" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="10.5" y="193" width="0.3" height="15.0" fill="rgb(211,91,38)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (18 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (18 samples, 0.14%)</title><rect x="870.8" y="241" width="1.7" height="15.0" fill="rgb(250,40,46)" rx="2" ry="2" />
<text text-anchor="" x="873.83" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (9 samples, 0.07%)</title><rect x="764.5" y="401" width="0.8" height="15.0" fill="rgb(239,210,44)" rx="2" ry="2" />
<text text-anchor="" x="767.50" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (54 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (54 samples, 0.42%)</title><rect x="312.9" y="433" width="5.0" height="15.0" fill="rgb(232,132,35)" rx="2" ry="2" />
<text text-anchor="" x="315.94" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (9 samples, 0.07%)</title><rect x="361.4" y="305" width="0.8" height="15.0" fill="rgb(239,79,29)" rx="2" ry="2" />
<text text-anchor="" x="364.38" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (206 samples, 1.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (206 samples, 1.60%)</title><rect x="708.7" y="305" width="18.9" height="15.0" fill="rgb(215,140,15)" rx="2" ry="2" />
<text text-anchor="" x="711.72" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (8 samples, 0.06%)</title><rect x="1146.7" y="49" width="0.7" height="15.0" fill="rgb(245,51,16)" rx="2" ry="2" />
<text text-anchor="" x="1149.70" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (13 samples, 0.10%)</title><rect x="1171.4" y="369" width="1.2" height="15.0" fill="rgb(225,9,8)" rx="2" ry="2" />
<text text-anchor="" x="1174.38" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (35 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (35 samples, 0.27%)</title><rect x="700.2" y="241" width="3.2" height="15.0" fill="rgb(221,57,43)" rx="2" ry="2" />
<text text-anchor="" x="703.18" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (3 samples, 0.02%)</title><rect x="492.2" y="353" width="0.3" height="15.0" fill="rgb(215,175,52)" rx="2" ry="2" />
<text text-anchor="" x="495.20" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_hot_cold_page (30 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_hot_cold_page (30 samples, 0.23%)</title><rect x="895.9" y="177" width="2.7" height="15.0" fill="rgb(217,216,4)" rx="2" ry="2" />
<text text-anchor="" x="898.87" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sendto (2,135 samples, 16.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (2,135 samples, 16.60%)</title><rect x="23.7" y="513" width="195.8" height="15.0" fill="rgb(253,25,18)" rx="2" ry="2" />
<text text-anchor="" x="26.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_sendto</text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (43 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (43 samples, 0.33%)</title><rect x="630.0" y="449" width="3.9" height="15.0" fill="rgb(223,112,21)" rx="2" ry="2" />
<text text-anchor="" x="633.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (4 samples, 0.03%)</title><rect x="343.2" y="273" width="0.4" height="15.0" fill="rgb(217,111,43)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (87 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (87 samples, 0.68%)</title><rect x="352.4" y="257" width="8.0" height="15.0" fill="rgb(247,202,19)" rx="2" ry="2" />
<text text-anchor="" x="355.39" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (107 samples, 0.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (107 samples, 0.83%)</title><rect x="295.5" y="433" width="9.8" height="15.0" fill="rgb(220,54,47)" rx="2" ry="2" />
<text text-anchor="" x="298.50" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (15 samples, 0.12%)</title><rect x="533.6" y="161" width="1.4" height="15.0" fill="rgb(216,195,5)" rx="2" ry="2" />
<text text-anchor="" x="536.58" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (24 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (24 samples, 0.19%)</title><rect x="195.8" y="241" width="2.2" height="15.0" fill="rgb(208,16,40)" rx="2" ry="2" />
<text text-anchor="" x="198.78" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (3 samples, 0.02%)</title><rect x="362.7" y="305" width="0.2" height="15.0" fill="rgb(240,143,20)" rx="2" ry="2" />
<text text-anchor="" x="365.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (23 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (23 samples, 0.18%)</title><rect x="811.7" y="321" width="2.1" height="15.0" fill="rgb(242,159,44)" rx="2" ry="2" />
<text text-anchor="" x="814.65" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (22 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (22 samples, 0.17%)</title><rect x="1109.7" y="193" width="2.0" height="15.0" fill="rgb(244,133,25)" rx="2" ry="2" />
<text text-anchor="" x="1112.72" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg_handler (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg_handler (6 samples, 0.05%)</title><rect x="783.9" y="257" width="0.6" height="15.0" fill="rgb(229,184,2)" rx="2" ry="2" />
<text text-anchor="" x="786.94" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="401" width="0.4" height="15.0" fill="rgb(211,194,31)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__inc_zone_state (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__inc_zone_state (5 samples, 0.04%)</title><rect x="156.8" y="369" width="0.4" height="15.0" fill="rgb(231,127,26)" rx="2" ry="2" />
<text text-anchor="" x="159.79" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (709 samples, 5.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (709 samples, 5.51%)</title><rect x="1012.8" y="353" width="65.0" height="15.0" fill="rgb(219,214,8)" rx="2" ry="2" />
<text text-anchor="" x="1015.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__memcp..</text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="549.9" y="177" width="0.4" height="15.0" fill="rgb(214,218,17)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (14 samples, 0.11%)</title><rect x="770.2" y="369" width="1.3" height="15.0" fill="rgb(220,171,19)" rx="2" ry="2" />
<text text-anchor="" x="773.18" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.03%)</title><rect x="551.0" y="385" width="0.4" height="15.0" fill="rgb(223,130,54)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (6 samples, 0.05%)</title><rect x="295.9" y="417" width="0.5" height="15.0" fill="rgb(214,20,11)" rx="2" ry="2" />
<text text-anchor="" x="298.87" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_exit (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (2 samples, 0.02%)</title><rect x="513.9" y="209" width="0.1" height="15.0" fill="rgb(244,29,53)" rx="2" ry="2" />
<text text-anchor="" x="516.85" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (2 samples, 0.02%)</title><rect x="1147.4" y="113" width="0.2" height="15.0" fill="rgb(241,70,31)" rx="2" ry="2" />
<text text-anchor="" x="1150.43" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_free (16 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (16 samples, 0.12%)</title><rect x="887.2" y="209" width="1.5" height="15.0" fill="rgb(239,56,5)" rx="2" ry="2" />
<text text-anchor="" x="890.25" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.02%)</title><rect x="141.5" y="385" width="0.2" height="15.0" fill="rgb(242,87,34)" rx="2" ry="2" />
<text text-anchor="" x="144.47" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (2 samples, 0.02%)</title><rect x="264.9" y="449" width="0.1" height="15.0" fill="rgb(235,38,35)" rx="2" ry="2" />
<text text-anchor="" x="267.86" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (3 samples, 0.02%)</title><rect x="201.7" y="225" width="0.2" height="15.0" fill="rgb(205,155,41)" rx="2" ry="2" />
<text text-anchor="" x="204.65" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__mod_zone_page_state (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__mod_zone_page_state (3 samples, 0.02%)</title><rect x="140.8" y="401" width="0.3" height="15.0" fill="rgb(209,121,38)" rx="2" ry="2" />
<text text-anchor="" x="143.83" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (157 samples, 1.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (157 samples, 1.22%)</title><rect x="614.3" y="449" width="14.4" height="15.0" fill="rgb(250,133,32)" rx="2" ry="2" />
<text text-anchor="" x="617.31" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('setup_new_exec (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_new_exec (4 samples, 0.03%)</title><rect x="10.0" y="449" width="0.4" height="15.0" fill="rgb(207,105,19)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (35 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (35 samples, 0.27%)</title><rect x="214.5" y="465" width="3.2" height="15.0" fill="rgb(208,74,17)" rx="2" ry="2" />
<text text-anchor="" x="217.50" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_softirq (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.02%)</title><rect x="513.9" y="193" width="0.1" height="15.0" fill="rgb(215,137,27)" rx="2" ry="2" />
<text text-anchor="" x="516.85" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (385 samples, 2.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (385 samples, 2.99%)</title><rect x="506.4" y="337" width="35.3" height="15.0" fill="rgb(215,62,2)" rx="2" ry="2" />
<text text-anchor="" x="509.42" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (2 samples, 0.02%)</title><rect x="869.2" y="273" width="0.2" height="15.0" fill="rgb(207,80,25)" rx="2" ry="2" />
<text text-anchor="" x="872.17" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.02%)</title><rect x="298.0" y="401" width="0.2" height="15.0" fill="rgb(216,143,54)" rx="2" ry="2" />
<text text-anchor="" x="300.98" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (14 samples, 0.11%)</title><rect x="1091.8" y="257" width="1.3" height="15.0" fill="rgb(222,80,13)" rx="2" ry="2" />
<text text-anchor="" x="1094.83" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('select_task_rq_fair (84 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (84 samples, 0.65%)</title><rect x="174.2" y="321" width="7.7" height="15.0" fill="rgb(226,21,1)" rx="2" ry="2" />
<text text-anchor="" x="177.22" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (4 samples, 0.03%)</title><rect x="693.5" y="273" width="0.4" height="15.0" fill="rgb(246,199,28)" rx="2" ry="2" />
<text text-anchor="" x="696.49" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (8 samples, 0.06%)</title><rect x="300.3" y="385" width="0.7" height="15.0" fill="rgb(232,133,19)" rx="2" ry="2" />
<text text-anchor="" x="303.28" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (6 samples, 0.05%)</title><rect x="423.9" y="369" width="0.6" height="15.0" fill="rgb(208,156,37)" rx="2" ry="2" />
<text text-anchor="" x="426.94" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (3 samples, 0.02%)</title><rect x="657.2" y="385" width="0.3" height="15.0" fill="rgb(218,21,46)" rx="2" ry="2" />
<text text-anchor="" x="660.25" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (44 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (44 samples, 0.34%)</title><rect x="572.7" y="545" width="4.0" height="15.0" fill="rgb(232,172,31)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (18 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (18 samples, 0.14%)</title><rect x="377.3" y="481" width="1.7" height="15.0" fill="rgb(234,53,1)" rx="2" ry="2" />
<text text-anchor="" x="380.34" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="513" width="0.4" height="15.0" fill="rgb(246,129,39)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (4 samples, 0.03%)</title><rect x="490.6" y="369" width="0.3" height="15.0" fill="rgb(252,84,42)" rx="2" ry="2" />
<text text-anchor="" x="493.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (2 samples, 0.02%)</title><rect x="379.1" y="497" width="0.2" height="15.0" fill="rgb(236,145,47)" rx="2" ry="2" />
<text text-anchor="" x="382.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (10 samples, 0.08%)</title><rect x="1178.9" y="433" width="0.9" height="15.0" fill="rgb(240,72,17)" rx="2" ry="2" />
<text text-anchor="" x="1181.90" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_enable_asynccancel (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (15 samples, 0.12%)</title><rect x="747.8" y="433" width="1.4" height="15.0" fill="rgb(216,208,3)" rx="2" ry="2" />
<text text-anchor="" x="750.80" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (11 samples, 0.09%)</title><rect x="458.1" y="369" width="1.0" height="15.0" fill="rgb(211,204,12)" rx="2" ry="2" />
<text text-anchor="" x="461.07" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (3 samples, 0.02%)</title><rect x="312.3" y="417" width="0.3" height="15.0" fill="rgb(244,12,34)" rx="2" ry="2" />
<text text-anchor="" x="315.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Wait (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Wait (5 samples, 0.04%)</title><rect x="495.1" y="369" width="0.5" height="15.0" fill="rgb(252,26,10)" rx="2" ry="2" />
<text text-anchor="" x="498.14" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('drop_futex_key_refs.isra.14 (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>drop_futex_key_refs.isra.14 (2 samples, 0.02%)</title><rect x="1101.0" y="209" width="0.2" height="15.0" fill="rgb(251,205,11)" rx="2" ry="2" />
<text text-anchor="" x="1104.01" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (158 samples, 1.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (158 samples, 1.23%)</title><rect x="711.9" y="209" width="14.5" height="15.0" fill="rgb(221,36,40)" rx="2" ry="2" />
<text text-anchor="" x="714.93" y="219.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.02%)')" 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.02%)</title><rect x="300.8" y="369" width="0.2" height="15.0" fill="rgb(224,116,53)" rx="2" ry="2" />
<text text-anchor="" x="303.83" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (10 samples, 0.08%)</title><rect x="1146.5" y="81" width="0.9" height="15.0" fill="rgb(205,184,5)" rx="2" ry="2" />
<text text-anchor="" x="1149.51" y="91.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (2 samples, 0.02%)</title><rect x="847.2" y="337" width="0.2" height="15.0" fill="rgb(219,92,30)" rx="2" ry="2" />
<text text-anchor="" x="850.25" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (8 samples, 0.06%)</title><rect x="1144.8" y="65" width="0.7" height="15.0" fill="rgb(220,34,38)" rx="2" ry="2" />
<text text-anchor="" x="1147.77" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (24 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (24 samples, 0.19%)</title><rect x="780.3" y="241" width="2.2" height="15.0" fill="rgb(236,158,46)" rx="2" ry="2" />
<text text-anchor="" x="783.28" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TestSuite::Run (3,608 samples, 28.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestSuite::Run (3,608 samples, 28.05%)</title><rect x="219.5" y="513" width="331.1" height="15.0" fill="rgb(251,180,1)" rx="2" ry="2" />
<text text-anchor="" x="222.54" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::TestSuite::Run</text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (909 samples, 7.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (909 samples, 7.07%)</title><rect x="662.9" y="401" width="83.4" height="15.0" fill="rgb(218,167,12)" rx="2" ry="2" />
<text text-anchor="" x="665.94" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_epoll..</text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.02%)</title><rect x="141.5" y="401" width="0.2" height="15.0" fill="rgb(211,45,27)" rx="2" ry="2" />
<text text-anchor="" x="144.47" y="411.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (3 samples, 0.02%)</title><rect x="533.3" y="129" width="0.3" height="15.0" fill="rgb(248,89,12)" rx="2" ry="2" />
<text text-anchor="" x="536.30" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (4 samples, 0.03%)</title><rect x="343.2" y="257" width="0.4" height="15.0" fill="rgb(207,13,52)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (5 samples, 0.04%)</title><rect x="363.4" y="273" width="0.5" height="15.0" fill="rgb(230,17,38)" rx="2" ry="2" />
<text text-anchor="" x="366.39" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (220 samples, 1.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (220 samples, 1.71%)</title><rect x="1127.2" y="113" width="20.2" height="15.0" fill="rgb(227,125,34)" rx="2" ry="2" />
<text text-anchor="" x="1130.25" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_vsyscall (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_vsyscall (2 samples, 0.02%)</title><rect x="343.2" y="161" width="0.2" height="15.0" fill="rgb(208,143,31)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (3 samples, 0.02%)</title><rect x="520.1" y="161" width="0.3" height="15.0" fill="rgb(224,33,49)" rx="2" ry="2" />
<text text-anchor="" x="523.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (3 samples, 0.02%)</title><rect x="316.0" y="385" width="0.2" height="15.0" fill="rgb(220,152,1)" rx="2" ry="2" />
<text text-anchor="" x="318.96" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (15 samples, 0.12%)</title><rect x="154.3" y="385" width="1.4" height="15.0" fill="rgb(253,53,29)" rx="2" ry="2" />
<text text-anchor="" x="157.31" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (7 samples, 0.05%)</title><rect x="727.0" y="273" width="0.6" height="15.0" fill="rgb(234,117,25)" rx="2" ry="2" />
<text text-anchor="" x="729.97" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (260 samples, 2.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (260 samples, 2.02%)</title><rect x="266.1" y="465" width="23.8" height="15.0" fill="rgb(229,15,35)" rx="2" ry="2" />
<text text-anchor="" x="269.06" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (385 samples, 2.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (385 samples, 2.99%)</title><rect x="383.1" y="369" width="35.3" height="15.0" fill="rgb(221,21,13)" rx="2" ry="2" />
<text text-anchor="" x="386.12" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="10.0" y="369" width="0.4" height="15.0" fill="rgb(217,169,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('alloc_pages_current (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_current (6 samples, 0.05%)</title><rect x="45.2" y="449" width="0.6" height="15.0" fill="rgb(240,171,38)" rx="2" ry="2" />
<text text-anchor="" x="48.23" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (17 samples, 0.13%)</title><rect x="994.0" y="305" width="1.6" height="15.0" fill="rgb(238,122,20)" rx="2" ry="2" />
<text text-anchor="" x="997.04" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="572.3" y="465" width="0.4" height="15.0" fill="rgb(228,160,43)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (22 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (22 samples, 0.17%)</title><rect x="468.4" y="305" width="2.1" height="15.0" fill="rgb(252,13,46)" rx="2" ry="2" />
<text text-anchor="" x="471.44" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (46 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (46 samples, 0.36%)</title><rect x="568.1" y="545" width="4.2" height="15.0" fill="rgb(226,188,38)" rx="2" ry="2" />
<text text-anchor="" x="571.07" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (10 samples, 0.08%)</title><rect x="292.9" y="449" width="1.0" height="15.0" fill="rgb(254,151,42)" rx="2" ry="2" />
<text text-anchor="" x="295.94" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (14 samples, 0.11%)</title><rect x="785.6" y="273" width="1.3" height="15.0" fill="rgb(227,197,37)" rx="2" ry="2" />
<text text-anchor="" x="788.60" y="283.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 (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (2 samples, 0.02%)</title><rect x="343.4" y="241" width="0.2" height="15.0" fill="rgb(246,42,17)" rx="2" ry="2" />
<text text-anchor="" x="346.39" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (6 samples, 0.05%)</title><rect x="726.4" y="257" width="0.6" height="15.0" fill="rgb(222,101,28)" rx="2" ry="2" />
<text text-anchor="" x="729.42" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (18 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (18 samples, 0.14%)</title><rect x="533.6" y="177" width="1.6" height="15.0" fill="rgb(243,96,16)" rx="2" ry="2" />
<text text-anchor="" x="536.58" y="187.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 (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (13 samples, 0.10%)</title><rect x="707.2" y="273" width="1.2" height="15.0" fill="rgb(241,204,50)" rx="2" ry="2" />
<text text-anchor="" x="710.25" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (13 samples, 0.10%)</title><rect x="649.9" y="385" width="1.2" height="15.0" fill="rgb(250,127,33)" rx="2" ry="2" />
<text text-anchor="" x="652.91" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (6 samples, 0.05%)</title><rect x="363.3" y="289" width="0.6" height="15.0" fill="rgb(245,6,38)" rx="2" ry="2" />
<text text-anchor="" x="366.30" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (4 samples, 0.03%)</title><rect x="481.7" y="321" width="0.3" height="15.0" fill="rgb(205,96,41)" rx="2" ry="2" />
<text text-anchor="" x="484.65" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (4 samples, 0.03%)</title><rect x="730.6" y="273" width="0.3" height="15.0" fill="rgb(222,194,14)" rx="2" ry="2" />
<text text-anchor="" x="733.55" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="1092.8" y="225" width="0.1" height="15.0" fill="rgb(216,7,52)" rx="2" ry="2" />
<text text-anchor="" x="1095.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (20 samples, 0.16%)</title><rect x="682.8" y="337" width="1.9" height="15.0" fill="rgb(239,17,10)" rx="2" ry="2" />
<text text-anchor="" x="685.84" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (4 samples, 0.03%)</title><rect x="533.2" y="145" width="0.4" height="15.0" fill="rgb(230,122,38)" rx="2" ry="2" />
<text text-anchor="" x="536.21" y="155.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 (767 samples, 5.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (767 samples, 5.96%)</title><rect x="46.7" y="449" width="70.4" height="15.0" fill="rgb(221,6,51)" rx="2" ry="2" />
<text text-anchor="" x="49.70" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >skb_cop..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock@plt (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (4 samples, 0.03%)</title><rect x="546.3" y="369" width="0.4" height="15.0" fill="rgb(236,78,29)" rx="2" ry="2" />
<text text-anchor="" x="549.33" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (2 samples, 0.02%)</title><rect x="657.1" y="385" width="0.1" height="15.0" fill="rgb(230,64,20)" rx="2" ry="2" />
<text text-anchor="" x="660.06" y="395.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="572.3" y="433" width="0.4" height="15.0" fill="rgb(219,149,54)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.02%)</title><rect x="662.4" y="401" width="0.2" height="15.0" fill="rgb(231,98,8)" rx="2" ry="2" />
<text text-anchor="" x="665.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (509 samples, 3.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (509 samples, 3.96%)</title><rect x="165.6" y="401" width="46.7" height="15.0" fill="rgb(239,5,41)" rx="2" ry="2" />
<text text-anchor="" x="168.60" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_p..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Wait (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Wait (11 samples, 0.09%)</title><rect x="325.9" y="465" width="1.0" height="15.0" fill="rgb(253,95,36)" rx="2" ry="2" />
<text text-anchor="" x="328.87" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (2 samples, 0.02%)</title><rect x="260.2" y="353" width="0.2" height="15.0" fill="rgb(229,5,4)" rx="2" ry="2" />
<text text-anchor="" x="263.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (5 samples, 0.04%)</title><rect x="301.0" y="401" width="0.5" height="15.0" fill="rgb(245,172,54)" rx="2" ry="2" />
<text text-anchor="" x="304.01" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (13 samples, 0.10%)</title><rect x="379.9" y="401" width="1.2" height="15.0" fill="rgb(237,225,11)" rx="2" ry="2" />
<text text-anchor="" x="382.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_init (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_init (5 samples, 0.04%)</title><rect x="541.8" y="369" width="0.5" height="15.0" fill="rgb(224,15,44)" rx="2" ry="2" />
<text text-anchor="" x="544.83" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (4 samples, 0.03%)</title><rect x="366.4" y="337" width="0.4" height="15.0" fill="rgb(230,72,23)" rx="2" ry="2" />
<text text-anchor="" x="369.42" y="347.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 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (4 samples, 0.03%)</title><rect x="265.1" y="465" width="0.4" height="15.0" fill="rgb(216,150,23)" rx="2" ry="2" />
<text text-anchor="" x="268.14" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::Test::Run (1,867 samples, 14.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::Test::Run (1,867 samples, 14.52%)</title><rect x="379.3" y="433" width="171.3" height="15.0" fill="rgb(233,204,40)" rx="2" ry="2" />
<text text-anchor="" x="382.27" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Test::Run</text>
</g>
<g class="func_g" onmouseover="s('put_pid (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_pid (3 samples, 0.02%)</title><rect x="911.4" y="209" width="0.3" height="15.0" fill="rgb(247,33,15)" rx="2" ry="2" />
<text text-anchor="" x="914.38" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_careful (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (4 samples, 0.03%)</title><rect x="847.6" y="353" width="0.4" height="15.0" fill="rgb(238,108,0)" rx="2" ry="2" />
<text text-anchor="" x="850.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (10 samples, 0.08%)</title><rect x="758.0" y="417" width="0.9" height="15.0" fill="rgb(210,144,9)" rx="2" ry="2" />
<text text-anchor="" x="760.98" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('resched_task (40 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>resched_task (40 samples, 0.31%)</title><rect x="1150.1" y="113" width="3.7" height="15.0" fill="rgb(237,119,4)" rx="2" ry="2" />
<text text-anchor="" x="1153.09" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (28 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (28 samples, 0.22%)</title><rect x="851.6" y="353" width="2.5" height="15.0" fill="rgb(251,125,27)" rx="2" ry="2" />
<text text-anchor="" x="854.56" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (670 samples, 5.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (670 samples, 5.21%)</title><rect x="925.5" y="257" width="61.5" height="15.0" fill="rgb(224,42,26)" rx="2" ry="2" />
<text text-anchor="" x="928.50" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >skb_co..</text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (5 samples, 0.04%)</title><rect x="199.1" y="257" width="0.4" height="15.0" fill="rgb(213,207,5)" rx="2" ry="2" />
<text text-anchor="" x="202.08" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (13 samples, 0.10%)</title><rect x="649.9" y="321" width="1.2" height="15.0" fill="rgb(221,126,43)" rx="2" ry="2" />
<text text-anchor="" x="652.91" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (2 samples, 0.02%)</title><rect x="776.5" y="289" width="0.2" height="15.0" fill="rgb(207,217,41)" rx="2" ry="2" />
<text text-anchor="" x="779.51" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (19 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (19 samples, 0.15%)</title><rect x="348.0" y="273" width="1.7" height="15.0" fill="rgb(243,49,36)" rx="2" ry="2" />
<text text-anchor="" x="350.98" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="584.1" y="481" width="0.4" height="15.0" fill="rgb(244,13,3)" rx="2" ry="2" />
<text text-anchor="" x="587.13" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (41 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (41 samples, 0.32%)</title><rect x="653.3" y="385" width="3.8" height="15.0" fill="rgb(220,117,11)" rx="2" ry="2" />
<text text-anchor="" x="656.30" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="572.3" y="481" width="0.4" height="15.0" fill="rgb(212,227,3)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (8 samples, 0.06%)</title><rect x="702.6" y="209" width="0.7" height="15.0" fill="rgb(230,5,20)" rx="2" ry="2" />
<text text-anchor="" x="705.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (12 samples, 0.09%)</title><rect x="816.6" y="385" width="1.1" height="15.0" fill="rgb(233,200,46)" rx="2" ry="2" />
<text text-anchor="" x="819.61" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (23 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (23 samples, 0.18%)</title><rect x="474.8" y="353" width="2.1" height="15.0" fill="rgb(246,46,13)" rx="2" ry="2" />
<text text-anchor="" x="477.77" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (13 samples, 0.10%)</title><rect x="31.3" y="417" width="1.2" height="15.0" fill="rgb(212,114,37)" rx="2" ry="2" />
<text text-anchor="" x="34.28" y="427.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (2 samples, 0.02%)</title><rect x="20.8" y="513" width="0.2" height="15.0" fill="rgb(249,67,40)" rx="2" ry="2" />
<text text-anchor="" x="23.83" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (3 samples, 0.02%)</title><rect x="503.6" y="321" width="0.3" height="15.0" fill="rgb(222,70,36)" rx="2" ry="2" />
<text text-anchor="" x="506.58" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (24 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (24 samples, 0.19%)</title><rect x="306.9" y="449" width="2.2" height="15.0" fill="rgb(239,198,8)" rx="2" ry="2" />
<text text-anchor="" x="309.88" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.02%)</title><rect x="1181.7" y="433" width="0.3" height="15.0" fill="rgb(216,117,41)" rx="2" ry="2" />
<text text-anchor="" x="1184.74" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (8 samples, 0.06%)</title><rect x="467.2" y="305" width="0.8" height="15.0" fill="rgb(242,143,35)" rx="2" ry="2" />
<text text-anchor="" x="470.25" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (3 samples, 0.02%)</title><rect x="736.6" y="273" width="0.3" height="15.0" fill="rgb(217,158,52)" rx="2" ry="2" />
<text text-anchor="" x="739.61" y="283.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.03%)</title><rect x="332.1" y="449" width="0.4" height="15.0" fill="rgb(237,126,41)" rx="2" ry="2" />
<text text-anchor="" x="335.11" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (2 samples, 0.02%)</title><rect x="20.0" y="497" width="0.2" height="15.0" fill="rgb(253,45,28)" rx="2" ry="2" />
<text text-anchor="" x="23.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (181 samples, 1.41%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (181 samples, 1.41%)</title><rect x="551.5" y="545" width="16.6" height="15.0" fill="rgb(236,158,4)" rx="2" ry="2" />
<text text-anchor="" x="554.47" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (2 samples, 0.02%)</title><rect x="550.4" y="401" width="0.2" height="15.0" fill="rgb(216,205,48)" rx="2" ry="2" />
<text text-anchor="" x="553.37" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (8 samples, 0.06%)</title><rect x="12.2" y="513" width="0.7" height="15.0" fill="rgb(252,60,39)" rx="2" ry="2" />
<text text-anchor="" x="15.20" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (6 samples, 0.05%)</title><rect x="350.0" y="257" width="0.6" height="15.0" fill="rgb(242,168,6)" rx="2" ry="2" />
<text text-anchor="" x="353.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (483 samples, 3.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (483 samples, 3.76%)</title><rect x="497.4" y="369" width="44.3" height="15.0" fill="rgb(245,194,52)" rx="2" ry="2" />
<text text-anchor="" x="500.43" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthr..</text>
</g>
<g class="func_g" onmouseover="s('sched_clock (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (8 samples, 0.06%)</title><rect x="1146.7" y="65" width="0.7" height="15.0" fill="rgb(224,159,41)" rx="2" ry="2" />
<text text-anchor="" x="1149.70" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_init@@GLIBC_2.3.2 (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_init@@GLIBC_2.3.2 (2 samples, 0.02%)</title><rect x="495.9" y="353" width="0.2" height="15.0" fill="rgb(230,40,44)" rx="2" ry="2" />
<text text-anchor="" x="498.87" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_process_times (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (2 samples, 0.02%)</title><rect x="343.4" y="225" width="0.2" height="15.0" fill="rgb(239,23,9)" rx="2" ry="2" />
<text text-anchor="" x="346.39" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (288 samples, 2.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (288 samples, 2.24%)</title><rect x="510.6" y="257" width="26.4" height="15.0" fill="rgb(252,226,52)" rx="2" ry="2" />
<text text-anchor="" x="513.55" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (4 samples, 0.03%)</title><rect x="513.5" y="241" width="0.4" height="15.0" fill="rgb(229,84,10)" rx="2" ry="2" />
<text text-anchor="" x="516.49" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (2 samples, 0.02%)</title><rect x="260.2" y="369" width="0.2" height="15.0" fill="rgb(238,109,48)" rx="2" ry="2" />
<text text-anchor="" x="263.18" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (28 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (28 samples, 0.22%)</title><rect x="1182.0" y="433" width="2.6" height="15.0" fill="rgb(214,128,11)" rx="2" ry="2" />
<text text-anchor="" x="1185.02" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (11 samples, 0.09%)</title><rect x="348.7" y="257" width="1.0" height="15.0" fill="rgb(220,95,37)" rx="2" ry="2" />
<text text-anchor="" x="351.72" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (4 samples, 0.03%)</title><rect x="572.3" y="545" width="0.4" height="15.0" fill="rgb(206,120,0)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (86 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (86 samples, 0.67%)</title><rect x="343.7" y="337" width="7.9" height="15.0" fill="rgb(248,123,27)" rx="2" ry="2" />
<text text-anchor="" x="346.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (3 samples, 0.02%)</title><rect x="202.0" y="305" width="0.3" height="15.0" fill="rgb(250,0,2)" rx="2" ry="2" />
<text text-anchor="" x="205.02" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (20 samples, 0.16%)</title><rect x="1177.1" y="417" width="1.8" height="15.0" fill="rgb(242,181,52)" rx="2" ry="2" />
<text text-anchor="" x="1180.06" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (86 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (86 samples, 0.67%)</title><rect x="343.7" y="321" width="7.9" height="15.0" fill="rgb(237,175,30)" rx="2" ry="2" />
<text text-anchor="" x="346.67" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (22 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (22 samples, 0.17%)</title><rect x="34.6" y="449" width="2.0" height="15.0" fill="rgb(245,50,46)" rx="2" ry="2" />
<text text-anchor="" x="37.59" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (4 samples, 0.03%)</title><rect x="11.2" y="529" width="0.4" height="15.0" fill="rgb(248,91,48)" rx="2" ry="2" />
<text text-anchor="" x="14.19" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_page (135 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_page (135 samples, 1.05%)</title><rect x="893.9" y="209" width="12.4" height="15.0" fill="rgb(243,58,7)" rx="2" ry="2" />
<text text-anchor="" x="896.94" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (4 samples, 0.03%)</title><rect x="693.5" y="241" width="0.4" height="15.0" fill="rgb(251,38,7)" rx="2" ry="2" />
<text text-anchor="" x="696.49" y="251.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 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__cmpxchg_double_slab.isra.40 (4 samples, 0.03%)</title><rect x="129.3" y="369" width="0.3" height="15.0" fill="rgb(211,6,0)" rx="2" ry="2" />
<text text-anchor="" x="132.27" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_page_from_freelist (170 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_page_from_freelist (170 samples, 1.32%)</title><rect x="141.7" y="401" width="15.5" height="15.0" fill="rgb(232,54,45)" rx="2" ry="2" />
<text text-anchor="" x="144.65" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (4 samples, 0.03%)</title><rect x="302.8" y="401" width="0.3" height="15.0" fill="rgb(218,39,50)" rx="2" ry="2" />
<text text-anchor="" x="305.75" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (13 samples, 0.10%)</title><rect x="209.5" y="321" width="1.2" height="15.0" fill="rgb(219,122,12)" rx="2" ry="2" />
<text text-anchor="" x="212.54" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="10.8" y="401" width="0.4" height="15.0" fill="rgb(221,48,15)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (11 samples, 0.09%)</title><rect x="471.9" y="321" width="1.0" height="15.0" fill="rgb(215,201,23)" rx="2" ry="2" />
<text text-anchor="" x="474.93" y="331.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (2 samples, 0.02%)</title><rect x="863.9" y="289" width="0.1" height="15.0" fill="rgb(251,123,37)" rx="2" ry="2" />
<text text-anchor="" x="866.85" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (3 samples, 0.02%)</title><rect x="845.4" y="321" width="0.3" height="15.0" fill="rgb(253,29,5)" rx="2" ry="2" />
<text text-anchor="" x="848.41" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (4 samples, 0.03%)</title><rect x="10.0" y="481" width="0.4" height="15.0" fill="rgb(236,28,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (19 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (19 samples, 0.15%)</title><rect x="918.5" y="129" width="1.8" height="15.0" fill="rgb(223,11,21)" rx="2" ry="2" />
<text text-anchor="" x="921.53" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (3 samples, 0.02%)</title><rect x="347.7" y="273" width="0.3" height="15.0" fill="rgb(224,110,7)" rx="2" ry="2" />
<text text-anchor="" x="350.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (87 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (87 samples, 0.68%)</title><rect x="514.0" y="241" width="8.0" height="15.0" fill="rgb(213,33,51)" rx="2" ry="2" />
<text text-anchor="" x="517.04" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (162 samples, 1.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (162 samples, 1.26%)</title><rect x="294.5" y="465" width="14.9" height="15.0" fill="rgb(214,115,50)" rx="2" ry="2" />
<text text-anchor="" x="297.50" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (4 samples, 0.03%)</title><rect x="370.0" y="369" width="0.4" height="15.0" fill="rgb(212,25,23)" rx="2" ry="2" />
<text text-anchor="" x="373.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (11 samples, 0.09%)</title><rect x="539.6" y="273" width="1.0" height="15.0" fill="rgb(241,47,7)" rx="2" ry="2" />
<text text-anchor="" x="542.63" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (471 samples, 3.66%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (471 samples, 3.66%)</title><rect x="167.5" y="337" width="43.2" height="15.0" fill="rgb(242,93,54)" rx="2" ry="2" />
<text text-anchor="" x="170.52" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >try_..</text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (7 samples, 0.05%)</title><rect x="740.0" y="321" width="0.6" height="15.0" fill="rgb(254,184,11)" rx="2" ry="2" />
<text text-anchor="" x="743.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (19 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (19 samples, 0.15%)</title><rect x="133.1" y="417" width="1.8" height="15.0" fill="rgb(239,36,22)" rx="2" ry="2" />
<text text-anchor="" x="136.12" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (11 samples, 0.09%)</title><rect x="1141.5" y="65" width="1.0" height="15.0" fill="rgb(244,99,40)" rx="2" ry="2" />
<text text-anchor="" x="1144.47" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::MultiprocessMessagePipeTestBase::Init (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::MultiprocessMessagePipeTestBase::Init (5 samples, 0.04%)</title><rect x="549.9" y="401" width="0.5" height="15.0" fill="rgb(237,160,5)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('source_load (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>source_load (7 samples, 0.05%)</title><rect x="1125.6" y="129" width="0.6" height="15.0" fill="rgb(248,58,16)" rx="2" ry="2" />
<text text-anchor="" x="1128.60" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (5 samples, 0.04%)</title><rect x="774.7" y="305" width="0.4" height="15.0" fill="rgb(226,35,7)" rx="2" ry="2" />
<text text-anchor="" x="777.68" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (383 samples, 2.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (383 samples, 2.98%)</title><rect x="506.6" y="321" width="35.1" height="15.0" fill="rgb(250,200,2)" rx="2" ry="2" />
<text text-anchor="" x="509.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (5 samples, 0.04%)</title><rect x="209.1" y="321" width="0.4" height="15.0" fill="rgb(235,211,54)" rx="2" ry="2" />
<text text-anchor="" x="212.08" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (2 samples, 0.02%)</title><rect x="260.2" y="321" width="0.2" height="15.0" fill="rgb(236,61,48)" rx="2" ry="2" />
<text text-anchor="" x="263.18" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (3,858 samples, 30.00%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (3,858 samples, 30.00%)</title><rect x="820.9" y="401" width="354.0" height="15.0" fill="rgb(212,27,53)" rx="2" ry="2" />
<text text-anchor="" x="823.92" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::RawChannel::OnReadCompleted</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (81 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (81 samples, 0.63%)</title><rect x="523.2" y="177" width="7.4" height="15.0" fill="rgb(229,12,33)" rx="2" ry="2" />
<text text-anchor="" x="526.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (36 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (36 samples, 0.28%)</title><rect x="996.3" y="289" width="3.3" height="15.0" fill="rgb(232,142,27)" rx="2" ry="2" />
<text text-anchor="" x="999.33" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_scm_to_skb (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_scm_to_skb (2 samples, 0.02%)</title><rect x="213.9" y="449" width="0.1" height="15.0" fill="rgb(239,1,41)" rx="2" ry="2" />
<text text-anchor="" x="216.85" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (2 samples, 0.02%)</title><rect x="1077.6" y="241" width="0.2" height="15.0" fill="rgb(244,75,28)" rx="2" ry="2" />
<text text-anchor="" x="1080.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (5 samples, 0.04%)</title><rect x="737.6" y="305" width="0.5" height="15.0" fill="rgb(216,62,18)" rx="2" ry="2" />
<text text-anchor="" x="740.61" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (370 samples, 2.88%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (370 samples, 2.88%)</title><rect x="507.3" y="305" width="34.0" height="15.0" fill="rgb(235,210,42)" rx="2" ry="2" />
<text text-anchor="" x="510.34" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s('get_pageblock_flags_mask (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_pageblock_flags_mask (15 samples, 0.12%)</title><rect x="903.7" y="129" width="1.3" height="15.0" fill="rgb(254,64,41)" rx="2" ry="2" />
<text text-anchor="" x="906.67" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (2 samples, 0.02%)</title><rect x="296.4" y="417" width="0.2" height="15.0" fill="rgb(232,222,36)" rx="2" ry="2" />
<text text-anchor="" x="299.42" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_completion (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_completion (4 samples, 0.03%)</title><rect x="10.5" y="241" width="0.3" height="15.0" fill="rgb(239,110,3)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (4 samples, 0.03%)</title><rect x="10.0" y="497" width="0.4" height="15.0" fill="rgb(253,46,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base:: (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base:: (4 samples, 0.03%)</title><rect x="549.9" y="337" width="0.4" height="15.0" fill="rgb(208,91,5)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.03%)</title><rect x="790.7" y="273" width="0.4" height="15.0" fill="rgb(209,129,6)" rx="2" ry="2" />
<text text-anchor="" x="793.73" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.02%)</title><rect x="651.2" y="417" width="0.2" height="15.0" fill="rgb(223,60,42)" rx="2" ry="2" />
<text text-anchor="" x="654.19" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_write_space (83 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (83 samples, 0.65%)</title><rect x="914.2" y="177" width="7.6" height="15.0" fill="rgb(218,67,37)" rx="2" ry="2" />
<text text-anchor="" x="917.22" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="385" width="0.4" height="15.0" fill="rgb(233,101,13)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (14 samples, 0.11%)</title><rect x="170.5" y="321" width="1.2" height="15.0" fill="rgb(239,119,24)" rx="2" ry="2" />
<text text-anchor="" x="173.46" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.03%)</title><rect x="549.9" y="305" width="0.4" height="15.0" fill="rgb(224,191,48)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::RemoveAwakable (35 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (35 samples, 0.27%)</title><rect x="491.9" y="369" width="3.2" height="15.0" fill="rgb(240,186,40)" rx="2" ry="2" />
<text text-anchor="" x="494.93" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Add (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Add (2 samples, 0.02%)</title><rect x="491.0" y="353" width="0.2" height="15.0" fill="rgb(211,155,41)" rx="2" ry="2" />
<text text-anchor="" x="494.01" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (814 samples, 6.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (814 samples, 6.33%)</title><rect x="1085.2" y="289" width="74.7" height="15.0" fill="rgb(218,217,37)" rx="2" ry="2" />
<text text-anchor="" x="1088.23" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::sy..</text>
</g>
<g class="func_g" onmouseover="s('security_socket_getpeersec_dgram (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_getpeersec_dgram (6 samples, 0.05%)</title><rect x="34.0" y="465" width="0.6" height="15.0" fill="rgb(208,83,10)" rx="2" ry="2" />
<text text-anchor="" x="37.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (2 samples, 0.02%)</title><rect x="1092.9" y="225" width="0.2" height="15.0" fill="rgb(246,57,7)" rx="2" ry="2" />
<text text-anchor="" x="1095.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (4 samples, 0.03%)</title><rect x="989.0" y="289" width="0.4" height="15.0" fill="rgb(221,61,3)" rx="2" ry="2" />
<text text-anchor="" x="991.99" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="369" width="0.4" height="15.0" fill="rgb(236,98,18)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (31 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (31 samples, 0.24%)</title><rect x="332.6" y="433" width="2.8" height="15.0" fill="rgb(215,124,42)" rx="2" ry="2" />
<text text-anchor="" x="335.57" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (4 samples, 0.03%)</title><rect x="366.1" y="337" width="0.3" height="15.0" fill="rgb(231,158,9)" rx="2" ry="2" />
<text text-anchor="" x="369.06" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (29 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (29 samples, 0.23%)</title><rect x="1094.1" y="225" width="2.7" height="15.0" fill="rgb(239,76,33)" rx="2" ry="2" />
<text text-anchor="" x="1097.13" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (14 samples, 0.11%)</title><rect x="661.1" y="417" width="1.3" height="15.0" fill="rgb(247,219,18)" rx="2" ry="2" />
<text text-anchor="" x="664.10" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.02%)</title><rect x="596.0" y="529" width="0.1" height="15.0" fill="rgb(234,45,34)" rx="2" ry="2" />
<text text-anchor="" x="598.96" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (2 samples, 0.02%)</title><rect x="320.5" y="433" width="0.1" height="15.0" fill="rgb(220,56,21)" rx="2" ry="2" />
<text text-anchor="" x="323.46" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (2 samples, 0.02%)</title><rect x="195.0" y="241" width="0.2" height="15.0" fill="rgb(246,28,33)" rx="2" ry="2" />
<text text-anchor="" x="198.05" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (2 samples, 0.02%)</title><rect x="739.5" y="321" width="0.2" height="15.0" fill="rgb(254,8,14)" rx="2" ry="2" />
<text text-anchor="" x="742.54" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (4 samples, 0.03%)</title><rect x="540.6" y="273" width="0.4" height="15.0" fill="rgb(207,96,54)" rx="2" ry="2" />
<text text-anchor="" x="543.64" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (5 samples, 0.04%)</title><rect x="486.3" y="289" width="0.5" height="15.0" fill="rgb(248,218,3)" rx="2" ry="2" />
<text text-anchor="" x="489.33" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (9 samples, 0.07%)</title><rect x="531.0" y="225" width="0.8" height="15.0" fill="rgb(226,157,47)" rx="2" ry="2" />
<text text-anchor="" x="534.01" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (3 samples, 0.02%)</title><rect x="1155.7" y="209" width="0.3" height="15.0" fill="rgb(227,214,41)" rx="2" ry="2" />
<text text-anchor="" x="1158.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (2 samples, 0.02%)</title><rect x="530.6" y="209" width="0.2" height="15.0" fill="rgb(242,34,8)" rx="2" ry="2" />
<text text-anchor="" x="533.64" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (27 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (27 samples, 0.21%)</title><rect x="298.5" y="401" width="2.5" height="15.0" fill="rgb(228,94,7)" rx="2" ry="2" />
<text text-anchor="" x="301.53" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (7 samples, 0.05%)</title><rect x="751.8" y="417" width="0.7" height="15.0" fill="rgb(248,158,54)" rx="2" ry="2" />
<text text-anchor="" x="754.83" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (5 samples, 0.04%)</title><rect x="531.2" y="209" width="0.5" height="15.0" fill="rgb(210,157,15)" rx="2" ry="2" />
<text text-anchor="" x="534.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc_consolidate (67 samples, 0.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc_consolidate (67 samples, 0.52%)</title><rect x="605.0" y="545" width="6.2" height="15.0" fill="rgb(233,142,16)" rx="2" ry="2" />
<text text-anchor="" x="608.05" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (509 samples, 3.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (509 samples, 3.96%)</title><rect x="767.5" y="385" width="46.7" height="15.0" fill="rgb(210,172,31)" rx="2" ry="2" />
<text text-anchor="" x="770.52" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (74 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (74 samples, 0.58%)</title><rect x="869.4" y="273" width="6.7" height="15.0" fill="rgb(208,112,22)" rx="2" ry="2" />
<text text-anchor="" x="872.36" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (4 samples, 0.03%)</title><rect x="535.2" y="193" width="0.4" height="15.0" fill="rgb(217,137,32)" rx="2" ry="2" />
<text text-anchor="" x="538.23" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (22 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (22 samples, 0.17%)</title><rect x="1114.9" y="145" width="2.0" height="15.0" fill="rgb(242,67,39)" rx="2" ry="2" />
<text text-anchor="" x="1117.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.02%)</title><rect x="513.9" y="225" width="0.1" height="15.0" fill="rgb(222,102,48)" rx="2" ry="2" />
<text text-anchor="" x="516.85" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (98 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (98 samples, 0.76%)</title><rect x="838.3" y="337" width="8.9" height="15.0" fill="rgb(228,41,51)" rx="2" ry="2" />
<text text-anchor="" x="841.26" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (6 samples, 0.05%)</title><rect x="684.7" y="337" width="0.5" height="15.0" fill="rgb(242,223,3)" rx="2" ry="2" />
<text text-anchor="" x="687.68" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (7 samples, 0.05%)</title><rect x="462.0" y="353" width="0.7" height="15.0" fill="rgb(233,44,41)" rx="2" ry="2" />
<text text-anchor="" x="465.02" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (117 samples, 0.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (117 samples, 0.91%)</title><rect x="585.4" y="545" width="10.7" height="15.0" fill="rgb(250,170,14)" rx="2" ry="2" />
<text text-anchor="" x="588.41" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::ConditionVariable::ConditionVariable (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::ConditionVariable::ConditionVariable (3 samples, 0.02%)</title><rect x="495.6" y="353" width="0.3" height="15.0" fill="rgb(211,82,42)" rx="2" ry="2" />
<text text-anchor="" x="498.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (4 samples, 0.03%)</title><rect x="692.9" y="305" width="0.4" height="15.0" fill="rgb(244,67,23)" rx="2" ry="2" />
<text text-anchor="" x="695.94" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::AddAwakable (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (2 samples, 0.02%)</title><rect x="490.4" y="369" width="0.2" height="15.0" fill="rgb(226,113,14)" rx="2" ry="2" />
<text text-anchor="" x="493.37" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="549.9" y="97" width="0.4" height="15.0" fill="rgb(209,149,27)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (24 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (24 samples, 0.19%)</title><rect x="1116.9" y="145" width="2.2" height="15.0" fill="rgb(232,49,52)" rx="2" ry="2" />
<text text-anchor="" x="1119.88" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (486 samples, 3.78%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (486 samples, 3.78%)</title><rect x="166.2" y="385" width="44.6" height="15.0" fill="rgb(217,22,47)" rx="2" ry="2" />
<text text-anchor="" x="169.24" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wa..</text>
</g>
<g class="func_g" onmouseover="s(':5334 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>:5334 (4 samples, 0.03%)</title><rect x="10.0" y="561" width="0.4" height="15.0" fill="rgb(220,118,10)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (41 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (41 samples, 0.32%)</title><rect x="918.1" y="161" width="3.7" height="15.0" fill="rgb(226,195,20)" rx="2" ry="2" />
<text text-anchor="" x="921.07" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (2 samples, 0.02%)</title><rect x="479.5" y="353" width="0.2" height="15.0" fill="rgb(231,43,24)" rx="2" ry="2" />
<text text-anchor="" x="482.54" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (1,719 samples, 13.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (1,719 samples, 13.36%)</title><rect x="221.4" y="497" width="157.7" height="15.0" fill="rgb(251,221,8)" rx="2" ry="2" />
<text text-anchor="" x="224.38" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (14 samples, 0.11%)</title><rect x="363.9" y="289" width="1.2" height="15.0" fill="rgb(252,9,12)" rx="2" ry="2" />
<text text-anchor="" x="366.85" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (31 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (31 samples, 0.24%)</title><rect x="1156.1" y="273" width="2.9" height="15.0" fill="rgb(241,11,35)" rx="2" ry="2" />
<text text-anchor="" x="1159.15" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (899 samples, 6.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (899 samples, 6.99%)</title><rect x="1081.0" y="337" width="82.5" height="15.0" fill="rgb(229,1,0)" rx="2" ry="2" />
<text text-anchor="" x="1084.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::sys..</text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (12 samples, 0.09%)</title><rect x="985.9" y="241" width="1.1" height="15.0" fill="rgb(250,31,27)" rx="2" ry="2" />
<text text-anchor="" x="988.87" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg_handler (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg_handler (8 samples, 0.06%)</title><rect x="32.5" y="417" width="0.7" height="15.0" fill="rgb(230,29,54)" rx="2" ry="2" />
<text text-anchor="" x="35.48" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="793.4" y="145" width="0.4" height="15.0" fill="rgb(227,183,11)" rx="2" ry="2" />
<text text-anchor="" x="796.39" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (2 samples, 0.02%)</title><rect x="333.0" y="417" width="0.2" height="15.0" fill="rgb(226,141,50)" rx="2" ry="2" />
<text text-anchor="" x="336.03" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (12 samples, 0.09%)</title><rect x="418.6" y="369" width="1.1" height="15.0" fill="rgb(253,142,22)" rx="2" ry="2" />
<text text-anchor="" x="421.62" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="572.3" y="401" width="0.4" height="15.0" fill="rgb(234,105,35)" rx="2" ry="2" />
<text text-anchor="" x="575.29" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (2 samples, 0.02%)</title><rect x="125.8" y="417" width="0.2" height="15.0" fill="rgb(214,155,42)" rx="2" ry="2" />
<text text-anchor="" x="128.78" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (11 samples, 0.09%)</title><rect x="301.5" y="401" width="1.0" height="15.0" fill="rgb(208,102,47)" rx="2" ry="2" />
<text text-anchor="" x="304.47" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (3 samples, 0.02%)</title><rect x="311.5" y="433" width="0.2" height="15.0" fill="rgb(220,154,21)" rx="2" ry="2" />
<text text-anchor="" x="314.47" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (3 samples, 0.02%)</title><rect x="752.5" y="417" width="0.3" height="15.0" fill="rgb(253,169,31)" rx="2" ry="2" />
<text text-anchor="" x="755.48" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (2 samples, 0.02%)</title><rect x="752.8" y="417" width="0.1" height="15.0" fill="rgb(213,78,16)" rx="2" ry="2" />
<text text-anchor="" x="755.75" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (2 samples, 0.02%)</title><rect x="739.7" y="321" width="0.2" height="15.0" fill="rgb(222,48,17)" rx="2" ry="2" />
<text text-anchor="" x="742.72" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (52 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (52 samples, 0.40%)</title><rect x="859.0" y="289" width="4.8" height="15.0" fill="rgb(246,78,0)" rx="2" ry="2" />
<text text-anchor="" x="861.99" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::AddAwakable (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (2 samples, 0.02%)</title><rect x="222.6" y="481" width="0.2" height="15.0" fill="rgb(207,129,1)" rx="2" ry="2" />
<text text-anchor="" x="225.57" y="491.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (2 samples, 0.02%)</title><rect x="174.0" y="321" width="0.2" height="15.0" fill="rgb(244,184,48)" rx="2" ry="2" />
<text text-anchor="" x="177.04" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (8 samples, 0.06%)</title><rect x="194.3" y="241" width="0.7" height="15.0" fill="rgb(214,126,40)" rx="2" ry="2" />
<text text-anchor="" x="197.31" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (4 samples, 0.03%)</title><rect x="768.3" y="337" width="0.4" height="15.0" fill="rgb(218,204,19)" rx="2" ry="2" />
<text text-anchor="" x="771.35" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (39 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (39 samples, 0.30%)</title><rect x="532.0" y="225" width="3.6" height="15.0" fill="rgb(206,34,40)" rx="2" ry="2" />
<text text-anchor="" x="535.02" y="235.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 (40 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (40 samples, 0.31%)</title><rect x="531.9" y="241" width="3.7" height="15.0" fill="rgb(247,214,50)" rx="2" ry="2" />
<text text-anchor="" x="534.93" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (11 samples, 0.09%)</title><rect x="200.6" y="241" width="1.1" height="15.0" fill="rgb(248,40,45)" rx="2" ry="2" />
<text text-anchor="" x="203.64" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="793.4" y="161" width="0.4" height="15.0" fill="rgb(247,124,44)" rx="2" ry="2" />
<text text-anchor="" x="796.39" y="171.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.03%)</title><rect x="1098.0" y="241" width="0.3" height="15.0" fill="rgb(212,164,0)" rx="2" ry="2" />
<text text-anchor="" x="1100.98" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (2 samples, 0.02%)</title><rect x="739.4" y="321" width="0.1" height="15.0" fill="rgb(236,86,6)" rx="2" ry="2" />
<text text-anchor="" x="742.36" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (2 samples, 0.02%)</title><rect x="343.2" y="225" width="0.2" height="15.0" fill="rgb(245,199,44)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (104 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (104 samples, 0.81%)</title><rect x="838.1" y="353" width="9.5" height="15.0" fill="rgb(209,174,32)" rx="2" ry="2" />
<text text-anchor="" x="841.07" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_mmap_pgoff (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_mmap_pgoff (4 samples, 0.03%)</title><rect x="551.0" y="449" width="0.4" height="15.0" fill="rgb(213,160,2)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (446 samples, 3.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (446 samples, 3.47%)</title><rect x="1114.0" y="161" width="41.0" height="15.0" fill="rgb(252,104,5)" rx="2" ry="2" />
<text text-anchor="" x="1117.04" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >try..</text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg_handler (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg_handler (7 samples, 0.05%)</title><rect x="33.2" y="433" width="0.7" height="15.0" fill="rgb(211,229,50)" rx="2" ry="2" />
<text text-anchor="" x="36.21" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (7 samples, 0.05%)</title><rect x="532.9" y="193" width="0.7" height="15.0" fill="rgb(229,79,47)" rx="2" ry="2" />
<text text-anchor="" x="535.94" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::RemoveAwakable (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (3 samples, 0.02%)</title><rect x="265.5" y="481" width="0.3" height="15.0" fill="rgb(247,49,54)" rx="2" ry="2" />
<text text-anchor="" x="268.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (4 samples, 0.03%)</title><rect x="995.6" y="305" width="0.4" height="15.0" fill="rgb(250,59,18)" rx="2" ry="2" />
<text text-anchor="" x="998.60" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_comm (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_comm (4 samples, 0.03%)</title><rect x="10.0" y="417" width="0.4" height="15.0" fill="rgb(254,125,4)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="10.5" y="177" width="0.3" height="15.0" fill="rgb(226,118,46)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (17 samples, 0.13%)</title><rect x="1175.5" y="417" width="1.6" height="15.0" fill="rgb(212,130,41)" rx="2" ry="2" />
<text text-anchor="" x="1178.50" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (1,580 samples, 12.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (1,580 samples, 12.28%)</title><rect x="854.7" y="321" width="144.9" height="15.0" fill="rgb(212,222,6)" rx="2" ry="2" />
<text text-anchor="" x="857.68" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sys_recvmsg</text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (92 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (92 samples, 0.72%)</title><rect x="352.1" y="321" width="8.5" height="15.0" fill="rgb(253,216,27)" rx="2" ry="2" />
<text text-anchor="" x="355.11" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (131 samples, 1.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (131 samples, 1.02%)</title><rect x="294.9" y="449" width="12.0" height="15.0" fill="rgb(223,187,12)" rx="2" ry="2" />
<text text-anchor="" x="297.86" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (25 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (25 samples, 0.19%)</title><rect x="759.0" y="417" width="2.3" height="15.0" fill="rgb(235,110,1)" rx="2" ry="2" />
<text text-anchor="" x="761.99" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (2 samples, 0.02%)</title><rect x="1145.5" y="81" width="0.2" height="15.0" fill="rgb(231,123,17)" rx="2" ry="2" />
<text text-anchor="" x="1148.50" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="417" width="0.4" height="15.0" fill="rgb(236,4,3)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (31 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (31 samples, 0.24%)</title><rect x="742.2" y="385" width="2.8" height="15.0" fill="rgb(216,14,9)" rx="2" ry="2" />
<text text-anchor="" x="745.20" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_one_page (25 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_one_page (25 samples, 0.19%)</title><rect x="901.4" y="129" width="2.3" height="15.0" fill="rgb(232,184,6)" rx="2" ry="2" />
<text text-anchor="" x="904.38" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (4 samples, 0.03%)</title><rect x="1081.7" y="321" width="0.3" height="15.0" fill="rgb(214,145,44)" rx="2" ry="2" />
<text text-anchor="" x="1084.65" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (13 samples, 0.10%)</title><rect x="479.7" y="353" width="1.2" height="15.0" fill="rgb(224,22,37)" rx="2" ry="2" />
<text text-anchor="" x="482.72" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (2 samples, 0.02%)</title><rect x="473.5" y="337" width="0.2" height="15.0" fill="rgb(233,115,1)" rx="2" ry="2" />
<text text-anchor="" x="476.49" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (99 samples, 0.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (99 samples, 0.77%)</title><rect x="464.4" y="337" width="9.1" height="15.0" fill="rgb(239,83,17)" rx="2" ry="2" />
<text text-anchor="" x="467.40" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_disable_asynccancel (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (15 samples, 0.12%)</title><rect x="746.4" y="433" width="1.4" height="15.0" fill="rgb(237,38,25)" rx="2" ry="2" />
<text text-anchor="" x="749.42" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (3 samples, 0.02%)</title><rect x="260.1" y="449" width="0.3" height="15.0" fill="rgb(238,134,10)" rx="2" ry="2" />
<text text-anchor="" x="263.09" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (25 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (25 samples, 0.19%)</title><rect x="460.6" y="369" width="2.2" height="15.0" fill="rgb(230,142,32)" rx="2" ry="2" />
<text text-anchor="" x="463.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (10 samples, 0.08%)</title><rect x="1082.7" y="305" width="0.9" height="15.0" fill="rgb(235,72,47)" rx="2" ry="2" />
<text text-anchor="" x="1085.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (87 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (87 samples, 0.68%)</title><rect x="514.0" y="225" width="8.0" height="15.0" fill="rgb(234,209,34)" rx="2" ry="2" />
<text text-anchor="" x="517.04" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (9 samples, 0.07%)</title><rect x="41.7" y="449" width="0.9" height="15.0" fill="rgb(243,45,12)" rx="2" ry="2" />
<text text-anchor="" x="44.74" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (8 samples, 0.06%)</title><rect x="1126.3" y="145" width="0.8" height="15.0" fill="rgb(217,195,32)" rx="2" ry="2" />
<text text-anchor="" x="1129.33" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.03%)</title><rect x="10.8" y="385" width="0.4" height="15.0" fill="rgb(223,44,4)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (7 samples, 0.05%)</title><rect x="345.0" y="289" width="0.7" height="15.0" fill="rgb(215,48,16)" rx="2" ry="2" />
<text text-anchor="" x="348.05" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="835.0" y="353" width="0.3" height="15.0" fill="rgb(214,151,46)" rx="2" ry="2" />
<text text-anchor="" x="838.05" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (486 samples, 3.78%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (486 samples, 3.78%)</title><rect x="166.2" y="369" width="44.6" height="15.0" fill="rgb(216,18,50)" rx="2" ry="2" />
<text text-anchor="" x="169.24" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wa..</text>
</g>
<g class="func_g" onmouseover="s('skb_unlink (22 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (22 samples, 0.17%)</title><rect x="987.0" y="257" width="2.0" height="15.0" fill="rgb(207,83,53)" rx="2" ry="2" />
<text text-anchor="" x="989.97" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (13 samples, 0.10%)</title><rect x="649.9" y="353" width="1.2" height="15.0" fill="rgb(250,134,47)" rx="2" ry="2" />
<text text-anchor="" x="652.91" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (298 samples, 2.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (298 samples, 2.32%)</title><rect x="340.3" y="369" width="27.3" height="15.0" fill="rgb(247,141,5)" rx="2" ry="2" />
<text text-anchor="" x="343.28" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('free (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (13 samples, 0.10%)</title><rect x="260.5" y="465" width="1.2" height="15.0" fill="rgb(250,126,34)" rx="2" ry="2" />
<text text-anchor="" x="263.46" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.02%)</title><rect x="503.9" y="321" width="0.1" height="15.0" fill="rgb(237,154,25)" rx="2" ry="2" />
<text text-anchor="" x="506.85" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (846 samples, 6.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (846 samples, 6.58%)</title><rect x="1083.6" y="305" width="77.6" height="15.0" fill="rgb(207,74,32)" rx="2" ry="2" />
<text text-anchor="" x="1086.58" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::sy..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (18 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (18 samples, 0.14%)</title><rect x="756.3" y="417" width="1.7" height="15.0" fill="rgb(213,196,16)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (352 samples, 2.74%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (352 samples, 2.74%)</title><rect x="425.6" y="369" width="32.3" height="15.0" fill="rgb(225,64,28)" rx="2" ry="2" />
<text text-anchor="" x="428.60" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (6 samples, 0.05%)</title><rect x="791.1" y="273" width="0.6" height="15.0" fill="rgb(252,13,46)" rx="2" ry="2" />
<text text-anchor="" x="794.10" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (56 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (56 samples, 0.44%)</title><rect x="482.9" y="321" width="5.2" height="15.0" fill="rgb(218,146,30)" rx="2" ry="2" />
<text text-anchor="" x="485.94" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_task_comm (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_task_comm (4 samples, 0.03%)</title><rect x="10.0" y="433" width="0.4" height="15.0" fill="rgb(235,125,23)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_process_callbacks (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_process_callbacks (3 samples, 0.02%)</title><rect x="48.7" y="369" width="0.3" height="15.0" fill="rgb(215,215,26)" rx="2" ry="2" />
<text text-anchor="" x="51.72" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__zone_watermark_ok (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__zone_watermark_ok (2 samples, 0.02%)</title><rect x="141.2" y="401" width="0.2" height="15.0" fill="rgb(228,142,3)" rx="2" ry="2" />
<text text-anchor="" x="144.19" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::View::IsValid (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (10 samples, 0.08%)</title><rect x="1173.8" y="385" width="0.9" height="15.0" fill="rgb(239,161,53)" rx="2" ry="2" />
<text text-anchor="" x="1176.76" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (1,172 samples, 9.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (1,172 samples, 9.11%)</title><rect x="881.5" y="273" width="107.5" height="15.0" fill="rgb(232,202,39)" rx="2" ry="2" />
<text text-anchor="" x="884.47" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_stream_r..</text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (12 samples, 0.09%)</title><rect x="635.0" y="449" width="1.1" height="15.0" fill="rgb(224,115,7)" rx="2" ry="2" />
<text text-anchor="" x="637.95" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (2 samples, 0.02%)</title><rect x="289.7" y="369" width="0.2" height="15.0" fill="rgb(228,104,20)" rx="2" ry="2" />
<text text-anchor="" x="292.72" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (7 samples, 0.05%)</title><rect x="629.4" y="433" width="0.6" height="15.0" fill="rgb(240,212,19)" rx="2" ry="2" />
<text text-anchor="" x="632.36" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (17 samples, 0.13%)</title><rect x="612.8" y="449" width="1.5" height="15.0" fill="rgb(241,161,36)" rx="2" ry="2" />
<text text-anchor="" x="615.75" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (3 samples, 0.02%)</title><rect x="218.4" y="497" width="0.3" height="15.0" fill="rgb(235,35,54)" rx="2" ry="2" />
<text text-anchor="" x="221.44" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.02%)</title><rect x="732.0" y="209" width="0.2" height="15.0" fill="rgb(232,164,0)" rx="2" ry="2" />
<text text-anchor="" x="735.02" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="768.7" y="353" width="0.2" height="15.0" fill="rgb(209,104,38)" rx="2" ry="2" />
<text text-anchor="" x="771.72" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (5 samples, 0.04%)</title><rect x="469.9" y="289" width="0.5" height="15.0" fill="rgb(240,158,29)" rx="2" ry="2" />
<text text-anchor="" x="472.91" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (5 samples, 0.04%)</title><rect x="158.9" y="417" width="0.5" height="15.0" fill="rgb(219,24,50)" rx="2" ry="2" />
<text text-anchor="" x="161.90" y="427.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (3 samples, 0.02%)</title><rect x="649.2" y="385" width="0.2" height="15.0" fill="rgb(251,89,53)" rx="2" ry="2" />
<text text-anchor="" x="652.17" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (5 samples, 0.04%)</title><rect x="535.8" y="241" width="0.4" height="15.0" fill="rgb(254,99,47)" rx="2" ry="2" />
<text text-anchor="" x="538.78" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (210 samples, 1.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (210 samples, 1.63%)</title><rect x="182.7" y="289" width="19.2" height="15.0" fill="rgb(251,182,12)" rx="2" ry="2" />
<text text-anchor="" x="185.66" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (64 samples, 0.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (64 samples, 0.50%)</title><rect x="28.2" y="465" width="5.8" height="15.0" fill="rgb(222,111,45)" rx="2" ry="2" />
<text text-anchor="" x="31.17" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (198 samples, 1.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (198 samples, 1.54%)</title><rect x="892.9" y="225" width="18.2" height="15.0" fill="rgb(229,36,36)" rx="2" ry="2" />
<text text-anchor="" x="895.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (560 samples, 4.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (560 samples, 4.35%)</title><rect x="162.5" y="449" width="51.4" height="15.0" fill="rgb(228,72,27)" rx="2" ry="2" />
<text text-anchor="" x="165.48" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_..</text>
</g>
<g class="func_g" onmouseover="s('memset (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (10 samples, 0.08%)</title><rect x="459.1" y="369" width="0.9" height="15.0" fill="rgb(237,95,0)" rx="2" ry="2" />
<text text-anchor="" x="462.08" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (1,584 samples, 12.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (1,584 samples, 12.32%)</title><rect x="854.5" y="337" width="145.3" height="15.0" fill="rgb(226,67,0)" rx="2" ry="2" />
<text text-anchor="" x="857.50" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_recvmsg</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (10 samples, 0.08%)</title><rect x="545.4" y="369" width="0.9" height="15.0" fill="rgb(224,17,2)" rx="2" ry="2" />
<text text-anchor="" x="548.41" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (3 samples, 0.02%)</title><rect x="1100.7" y="209" width="0.3" height="15.0" fill="rgb(242,67,43)" rx="2" ry="2" />
<text text-anchor="" x="1103.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__rmqueue (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>__rmqueue (20 samples, 0.16%)</title><rect x="151.0" y="385" width="1.8" height="15.0" fill="rgb(251,93,40)" rx="2" ry="2" />
<text text-anchor="" x="154.01" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (6 samples, 0.05%)</title><rect x="195.2" y="241" width="0.6" height="15.0" fill="rgb(222,25,8)" rx="2" ry="2" />
<text text-anchor="" x="198.23" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_free (21 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (21 samples, 0.16%)</title><rect x="909.2" y="177" width="1.9" height="15.0" fill="rgb(237,169,50)" rx="2" ry="2" />
<text text-anchor="" x="912.17" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (6 samples, 0.05%)</title><rect x="331.6" y="433" width="0.5" height="15.0" fill="rgb(250,219,23)" rx="2" ry="2" />
<text text-anchor="" x="334.56" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (4 samples, 0.03%)</title><rect x="202.3" y="305" width="0.4" height="15.0" fill="rgb(207,56,48)" rx="2" ry="2" />
<text text-anchor="" x="205.29" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (39 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (39 samples, 0.30%)</title><rect x="126.1" y="401" width="3.5" height="15.0" fill="rgb(243,128,8)" rx="2" ry="2" />
<text text-anchor="" x="129.06" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (7 samples, 0.05%)</title><rect x="816.0" y="385" width="0.6" height="15.0" fill="rgb(225,143,22)" rx="2" ry="2" />
<text text-anchor="" x="818.96" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (27 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (27 samples, 0.21%)</title><rect x="647.4" y="417" width="2.5" height="15.0" fill="rgb(226,5,48)" rx="2" ry="2" />
<text text-anchor="" x="650.43" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.02%)</title><rect x="1077.6" y="321" width="0.2" height="15.0" fill="rgb(246,32,54)" rx="2" ry="2" />
<text text-anchor="" x="1080.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (6 samples, 0.05%)</title><rect x="369.4" y="369" width="0.6" height="15.0" fill="rgb(243,224,50)" rx="2" ry="2" />
<text text-anchor="" x="372.45" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_sendmsg (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (5 samples, 0.04%)</title><rect x="27.7" y="465" width="0.5" height="15.0" fill="rgb(253,95,40)" rx="2" ry="2" />
<text text-anchor="" x="30.71" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('select_task_rq_fair (71 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (71 samples, 0.55%)</title><rect x="1119.8" y="145" width="6.5" height="15.0" fill="rgb(234,76,7)" rx="2" ry="2" />
<text text-anchor="" x="1122.82" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_pages_prepare (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_pages_prepare (3 samples, 0.02%)</title><rect x="897.1" y="161" width="0.2" height="15.0" fill="rgb(242,139,15)" rx="2" ry="2" />
<text text-anchor="" x="900.06" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (20 samples, 0.16%)</title><rect x="1106.7" y="193" width="1.8" height="15.0" fill="rgb(225,81,27)" rx="2" ry="2" />
<text text-anchor="" x="1109.70" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (88 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (88 samples, 0.68%)</title><rect x="352.3" y="289" width="8.1" height="15.0" fill="rgb(246,64,37)" rx="2" ry="2" />
<text text-anchor="" x="355.29" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (62 samples, 0.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (62 samples, 0.48%)</title><rect x="482.5" y="353" width="5.7" height="15.0" fill="rgb(227,59,21)" rx="2" ry="2" />
<text text-anchor="" x="485.48" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="497" width="0.4" height="15.0" fill="rgb(209,89,8)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (3 samples, 0.02%)</title><rect x="741.9" y="321" width="0.3" height="15.0" fill="rgb(241,64,35)" rx="2" ry="2" />
<text text-anchor="" x="744.93" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (10 samples, 0.08%)</title><rect x="290.8" y="465" width="0.9" height="15.0" fill="rgb(250,195,50)" rx="2" ry="2" />
<text text-anchor="" x="293.83" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (12 samples, 0.09%)</title><rect x="728.2" y="289" width="1.1" height="15.0" fill="rgb(213,118,9)" rx="2" ry="2" />
<text text-anchor="" x="731.17" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.02%)</title><rect x="746.1" y="385" width="0.2" height="15.0" fill="rgb(245,217,32)" rx="2" ry="2" />
<text text-anchor="" x="749.15" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (3 samples, 0.02%)</title><rect x="699.7" y="241" width="0.3" height="15.0" fill="rgb(207,10,47)" rx="2" ry="2" />
<text text-anchor="" x="702.72" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (733 samples, 5.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (733 samples, 5.70%)</title><rect x="1088.9" y="273" width="67.2" height="15.0" fill="rgb(219,227,9)" rx="2" ry="2" />
<text text-anchor="" x="1091.90" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthread..</text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (17 samples, 0.13%)</title><rect x="705.0" y="225" width="1.5" height="15.0" fill="rgb(222,224,50)" rx="2" ry="2" />
<text text-anchor="" x="707.95" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (14 samples, 0.11%)</title><rect x="363.9" y="273" width="1.2" height="15.0" fill="rgb(240,94,50)" rx="2" ry="2" />
<text text-anchor="" x="366.85" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="584.1" y="401" width="0.4" height="15.0" fill="rgb(229,122,20)" rx="2" ry="2" />
<text text-anchor="" x="587.13" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (35 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (35 samples, 0.27%)</title><rect x="732.4" y="241" width="3.2" height="15.0" fill="rgb(252,86,41)" rx="2" ry="2" />
<text text-anchor="" x="735.39" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_pages_nodemask (240 samples, 1.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (240 samples, 1.87%)</title><rect x="136.9" y="417" width="22.0" height="15.0" fill="rgb(224,200,12)" rx="2" ry="2" />
<text text-anchor="" x="139.88" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (187 samples, 1.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (187 samples, 1.45%)</title><rect x="1129.1" y="97" width="17.1" height="15.0" fill="rgb(233,173,31)" rx="2" ry="2" />
<text text-anchor="" x="1132.08" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.02%)</title><rect x="776.7" y="273" width="0.2" height="15.0" fill="rgb(209,12,44)" rx="2" ry="2" />
<text text-anchor="" x="779.70" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (81 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (81 samples, 0.63%)</title><rect x="523.2" y="209" width="7.4" height="15.0" fill="rgb(208,40,21)" rx="2" ry="2" />
<text text-anchor="" x="526.21" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (161 samples, 1.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (161 samples, 1.25%)</title><rect x="711.7" y="257" width="14.7" height="15.0" fill="rgb(246,112,0)" rx="2" ry="2" />
<text text-anchor="" x="714.65" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (530 samples, 4.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (530 samples, 4.12%)</title><rect x="165.1" y="433" width="48.7" height="15.0" fill="rgb(244,82,9)" rx="2" ry="2" />
<text text-anchor="" x="168.14" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wa..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Awake (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Awake (6 samples, 0.05%)</title><rect x="1088.3" y="273" width="0.6" height="15.0" fill="rgb(212,184,2)" rx="2" ry="2" />
<text text-anchor="" x="1091.35" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (5 samples, 0.04%)</title><rect x="738.9" y="305" width="0.5" height="15.0" fill="rgb(246,29,53)" rx="2" ry="2" />
<text text-anchor="" x="741.90" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (3 samples, 0.02%)</title><rect x="260.1" y="401" width="0.3" height="15.0" fill="rgb(250,223,20)" rx="2" ry="2" />
<text text-anchor="" x="263.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (11 samples, 0.09%)</title><rect x="1004.2" y="369" width="1.0" height="15.0" fill="rgb(225,116,4)" rx="2" ry="2" />
<text text-anchor="" x="1007.22" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (724 samples, 5.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (724 samples, 5.63%)</title><rect x="49.3" y="433" width="66.4" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" />
<text text-anchor="" x="52.27" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >copy_us..</text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (3 samples, 0.02%)</title><rect x="696.1" y="257" width="0.2" height="15.0" fill="rgb(254,45,54)" rx="2" ry="2" />
<text text-anchor="" x="699.06" y="267.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (2 samples, 0.02%)</title><rect x="16.4" y="497" width="0.2" height="15.0" fill="rgb(209,132,51)" rx="2" ry="2" />
<text text-anchor="" x="19.42" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (7 samples, 0.05%)</title><rect x="365.1" y="289" width="0.7" height="15.0" fill="rgb(212,31,27)" rx="2" ry="2" />
<text text-anchor="" x="368.14" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (181 samples, 1.41%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (181 samples, 1.41%)</title><rect x="711.0" y="289" width="16.6" height="15.0" fill="rgb(230,51,18)" rx="2" ry="2" />
<text text-anchor="" x="714.01" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_user (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (4 samples, 0.03%)</title><rect x="584.1" y="513" width="0.4" height="15.0" fill="rgb(223,179,5)" rx="2" ry="2" />
<text text-anchor="" x="587.13" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (98 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (98 samples, 0.76%)</title><rect x="351.6" y="337" width="9.0" height="15.0" fill="rgb(214,137,1)" rx="2" ry="2" />
<text text-anchor="" x="354.56" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (3 samples, 0.02%)</title><rect x="706.6" y="241" width="0.3" height="15.0" fill="rgb(227,199,29)" rx="2" ry="2" />
<text text-anchor="" x="709.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (2 samples, 0.02%)</title><rect x="537.3" y="257" width="0.2" height="15.0" fill="rgb(214,7,18)" rx="2" ry="2" />
<text text-anchor="" x="540.34" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (1,840 samples, 14.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (1,840 samples, 14.31%)</title><rect x="381.1" y="401" width="168.8" height="15.0" fill="rgb(253,200,26)" rx="2" ry="2" />
<text text-anchor="" x="384.10" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.03%)</title><rect x="584.1" y="497" width="0.4" height="15.0" fill="rgb(211,213,40)" rx="2" ry="2" />
<text text-anchor="" x="587.13" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_setup (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (5 samples, 0.04%)</title><rect x="541.3" y="305" width="0.4" height="15.0" fill="rgb(223,41,20)" rx="2" ry="2" />
<text text-anchor="" x="544.28" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('main (3,608 samples, 28.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>main (3,608 samples, 28.05%)</title><rect x="219.5" y="529" width="331.1" height="15.0" fill="rgb(248,82,10)" rx="2" ry="2" />
<text text-anchor="" x="222.54" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (21 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (21 samples, 0.16%)</title><rect x="131.2" y="417" width="1.9" height="15.0" fill="rgb(230,39,2)" rx="2" ry="2" />
<text text-anchor="" x="134.19" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (5 samples, 0.04%)</title><rect x="550.6" y="545" width="0.4" height="15.0" fill="rgb(221,205,23)" rx="2" ry="2" />
<text text-anchor="" x="553.55" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (4 samples, 0.03%)</title><rect x="858.3" y="289" width="0.4" height="15.0" fill="rgb(249,156,8)" rx="2" ry="2" />
<text text-anchor="" x="861.35" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.03%)</title><rect x="10.0" y="337" width="0.4" height="15.0" fill="rgb(227,2,10)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('source_load (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>source_load (12 samples, 0.09%)</title><rect x="180.8" y="305" width="1.1" height="15.0" fill="rgb(250,151,42)" rx="2" ry="2" />
<text text-anchor="" x="183.83" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (9 samples, 0.07%)</title><rect x="818.8" y="401" width="0.8" height="15.0" fill="rgb(246,125,50)" rx="2" ry="2" />
<text text-anchor="" x="821.81" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (513 samples, 3.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (513 samples, 3.99%)</title><rect x="165.2" y="417" width="47.1" height="15.0" fill="rgb(246,186,21)" rx="2" ry="2" />
<text text-anchor="" x="168.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wa..</text>
</g>
<g class="func_g" onmouseover="s('cpumask_next_and (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_and (2 samples, 0.02%)</title><rect x="361.2" y="305" width="0.2" height="15.0" fill="rgb(220,122,1)" rx="2" ry="2" />
<text text-anchor="" x="364.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (600 samples, 4.66%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (600 samples, 4.66%)</title><rect x="687.2" y="369" width="55.0" height="15.0" fill="rgb(222,109,44)" rx="2" ry="2" />
<text text-anchor="" x="690.16" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sched..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (1,929 samples, 15.00%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (1,929 samples, 15.00%)</title><rect x="828.7" y="385" width="177.0" height="15.0" fill="rgb(213,97,26)" rx="2" ry="2" />
<text text-anchor="" x="831.72" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1,120 samples, 8.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1,120 samples, 8.71%)</title><rect x="643.7" y="433" width="102.7" height="15.0" fill="rgb(211,4,6)" rx="2" ry="2" />
<text text-anchor="" x="646.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('_int_free (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.02%)</title><rect x="297.8" y="401" width="0.2" height="15.0" fill="rgb(237,15,48)" rx="2" ry="2" />
<text text-anchor="" x="300.80" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Remove (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (4 samples, 0.03%)</title><rect x="494.0" y="337" width="0.4" height="15.0" fill="rgb(216,193,39)" rx="2" ry="2" />
<text text-anchor="" x="497.04" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (7 samples, 0.05%)</title><rect x="505.1" y="353" width="0.7" height="15.0" fill="rgb(212,224,8)" rx="2" ry="2" />
<text text-anchor="" x="508.14" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (1,724 samples, 13.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (1,724 samples, 13.40%)</title><rect x="1009.7" y="369" width="158.2" height="15.0" fill="rgb(215,10,26)" rx="2" ry="2" />
<text text-anchor="" x="1012.72" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Channe..</text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (10 samples, 0.08%)</title><rect x="481.2" y="337" width="0.9" height="15.0" fill="rgb(207,119,43)" rx="2" ry="2" />
<text text-anchor="" x="484.19" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (8 samples, 0.06%)</title><rect x="521.3" y="209" width="0.7" height="15.0" fill="rgb(229,65,31)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('verify_iovec (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>verify_iovec (12 samples, 0.09%)</title><rect x="989.4" y="289" width="1.1" height="15.0" fill="rgb(246,179,49)" rx="2" ry="2" />
<text text-anchor="" x="992.36" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (915 samples, 7.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (915 samples, 7.11%)</title><rect x="662.4" y="417" width="83.9" height="15.0" fill="rgb(245,24,40)" rx="2" ry="2" />
<text text-anchor="" x="665.39" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_ca..</text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (12 samples, 0.09%)</title><rect x="650.0" y="273" width="1.1" height="15.0" fill="rgb(240,61,52)" rx="2" ry="2" />
<text text-anchor="" x="653.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (8 samples, 0.06%)</title><rect x="752.9" y="417" width="0.8" height="15.0" fill="rgb(230,195,11)" rx="2" ry="2" />
<text text-anchor="" x="755.94" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (29 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (29 samples, 0.23%)</title><rect x="492.5" y="353" width="2.6" height="15.0" fill="rgb(230,57,30)" rx="2" ry="2" />
<text text-anchor="" x="495.48" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (39 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (39 samples, 0.30%)</title><rect x="778.9" y="257" width="3.6" height="15.0" fill="rgb(225,136,46)" rx="2" ry="2" />
<text text-anchor="" x="781.90" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (7 samples, 0.05%)</title><rect x="685.2" y="353" width="0.7" height="15.0" fill="rgb(215,149,29)" rx="2" ry="2" />
<text text-anchor="" x="688.23" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (4 samples, 0.03%)</title><rect x="1168.8" y="369" width="0.4" height="15.0" fill="rgb(246,198,15)" rx="2" ry="2" />
<text text-anchor="" x="1171.81" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (160 samples, 1.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (160 samples, 1.24%)</title><rect x="711.7" y="241" width="14.7" height="15.0" fill="rgb(249,160,11)" rx="2" ry="2" />
<text text-anchor="" x="714.74" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.02%)</title><rect x="335.4" y="433" width="0.2" height="15.0" fill="rgb(213,177,37)" rx="2" ry="2" />
<text text-anchor="" x="338.41" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (18 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (18 samples, 0.14%)</title><rect x="518.7" y="177" width="1.7" height="15.0" fill="rgb(222,200,18)" rx="2" ry="2" />
<text text-anchor="" x="521.72" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (7 samples, 0.05%)</title><rect x="762.3" y="417" width="0.6" height="15.0" fill="rgb(231,60,18)" rx="2" ry="2" />
<text text-anchor="" x="765.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (9 samples, 0.07%)</title><rect x="775.3" y="305" width="0.8" height="15.0" fill="rgb(211,214,38)" rx="2" ry="2" />
<text text-anchor="" x="778.32" y="315.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (2 samples, 0.02%)</title><rect x="990.6" y="305" width="0.1" height="15.0" fill="rgb(219,39,13)" rx="2" ry="2" />
<text text-anchor="" x="993.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (117 samples, 0.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (117 samples, 0.91%)</title><rect x="911.1" y="225" width="10.7" height="15.0" fill="rgb(253,99,44)" rx="2" ry="2" />
<text text-anchor="" x="914.10" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (12 samples, 0.09%)</title><rect x="919.2" y="113" width="1.1" height="15.0" fill="rgb(216,63,24)" rx="2" ry="2" />
<text text-anchor="" x="922.17" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Awake (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Awake (13 samples, 0.10%)</title><rect x="1159.9" y="289" width="1.2" height="15.0" fill="rgb(252,202,46)" rx="2" ry="2" />
<text text-anchor="" x="1162.91" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (40 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (40 samples, 0.31%)</title><rect x="996.0" y="305" width="3.6" height="15.0" fill="rgb(251,175,41)" rx="2" ry="2" />
<text text-anchor="" x="998.96" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (852 samples, 6.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (852 samples, 6.62%)</title><rect x="664.0" y="385" width="78.2" height="15.0" fill="rgb(246,11,28)" rx="2" ry="2" />
<text text-anchor="" x="667.04" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (3 samples, 0.02%)</title><rect x="849.1" y="353" width="0.3" height="15.0" fill="rgb(209,144,40)" rx="2" ry="2" />
<text text-anchor="" x="852.08" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_setclock (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_setclock (6 samples, 0.05%)</title><rect x="328.2" y="449" width="0.5" height="15.0" fill="rgb(247,57,10)" rx="2" ry="2" />
<text text-anchor="" x="331.17" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (116 samples, 0.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (116 samples, 0.90%)</title><rect x="124.2" y="433" width="10.7" height="15.0" fill="rgb(217,50,19)" rx="2" ry="2" />
<text text-anchor="" x="127.22" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (3 samples, 0.02%)</title><rect x="173.8" y="321" width="0.2" height="15.0" fill="rgb(230,107,26)" rx="2" ry="2" />
<text text-anchor="" x="176.76" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Init (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Init (2 samples, 0.02%)</title><rect x="477.8" y="385" width="0.2" height="15.0" fill="rgb(241,167,45)" rx="2" ry="2" />
<text text-anchor="" x="480.80" y="395.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="549.9" y="225" width="0.4" height="15.0" fill="rgb(215,111,1)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="235.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (3 samples, 0.02%)</title><rect x="480.5" y="321" width="0.2" height="15.0" fill="rgb(223,98,39)" rx="2" ry="2" />
<text text-anchor="" x="483.46" y="331.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 (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (4 samples, 0.03%)</title><rect x="423.6" y="369" width="0.3" height="15.0" fill="rgb(239,27,19)" rx="2" ry="2" />
<text text-anchor="" x="426.58" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="10.0" y="353" width="0.4" height="15.0" fill="rgb(241,60,39)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (41 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (41 samples, 0.32%)</title><rect x="501.1" y="353" width="3.8" height="15.0" fill="rgb(215,39,25)" rx="2" ry="2" />
<text text-anchor="" x="504.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (39 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (39 samples, 0.30%)</title><rect x="841.8" y="321" width="3.6" height="15.0" fill="rgb(235,200,51)" rx="2" ry="2" />
<text text-anchor="" x="844.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (10 samples, 0.08%)</title><rect x="632.2" y="433" width="0.9" height="15.0" fill="rgb(241,97,10)" rx="2" ry="2" />
<text text-anchor="" x="635.20" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (5 samples, 0.04%)</title><rect x="628.7" y="449" width="0.5" height="15.0" fill="rgb(229,106,23)" rx="2" ry="2" />
<text text-anchor="" x="631.72" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base:: (6,309 samples, 49.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base:: (6,309 samples, 49.05%)</title><rect x="611.2" y="529" width="578.8" height="15.0" fill="rgb(212,216,18)" rx="2" ry="2" />
<text text-anchor="" x="614.19" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::</text>
</g>
<g class="func_g" onmouseover="s('event_active (31 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (31 samples, 0.24%)</title><rect x="1185.6" y="433" width="2.8" height="15.0" fill="rgb(225,229,47)" rx="2" ry="2" />
<text text-anchor="" x="1188.60" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (2 samples, 0.02%)</title><rect x="520.4" y="177" width="0.2" height="15.0" fill="rgb(212,228,15)" rx="2" ry="2" />
<text text-anchor="" x="523.37" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (71 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (71 samples, 0.55%)</title><rect x="296.6" y="417" width="6.5" height="15.0" fill="rgb(227,103,0)" rx="2" ry="2" />
<text text-anchor="" x="299.61" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (7 samples, 0.05%)</title><rect x="118.9" y="433" width="0.6" height="15.0" fill="rgb(231,69,11)" rx="2" ry="2" />
<text text-anchor="" x="121.90" y="443.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (3 samples, 0.02%)</title><rect x="772.3" y="369" width="0.3" height="15.0" fill="rgb(239,224,13)" rx="2" ry="2" />
<text text-anchor="" x="775.29" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (10 samples, 0.08%)</title><rect x="1166.7" y="337" width="0.9" height="15.0" fill="rgb(212,99,48)" rx="2" ry="2" />
<text text-anchor="" x="1169.70" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (4 samples, 0.03%)</title><rect x="316.2" y="385" width="0.4" height="15.0" fill="rgb(249,14,49)" rx="2" ry="2" />
<text text-anchor="" x="319.24" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.02%)</title><rect x="1119.4" y="129" width="0.2" height="15.0" fill="rgb(246,213,5)" rx="2" ry="2" />
<text text-anchor="" x="1122.45" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="584.1" y="465" width="0.4" height="15.0" fill="rgb(212,24,18)" rx="2" ry="2" />
<text text-anchor="" x="587.13" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (3 samples, 0.02%)</title><rect x="884.0" y="257" width="0.3" height="15.0" fill="rgb(206,27,23)" rx="2" ry="2" />
<text text-anchor="" x="887.04" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="10.4" y="465" width="0.4" height="15.0" fill="rgb(219,48,20)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mntput (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mntput (3 samples, 0.02%)</title><rect x="846.1" y="321" width="0.2" height="15.0" fill="rgb(210,191,34)" rx="2" ry="2" />
<text text-anchor="" x="849.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (5 samples, 0.04%)</title><rect x="611.2" y="465" width="0.5" height="15.0" fill="rgb(241,4,51)" rx="2" ry="2" />
<text text-anchor="" x="614.19" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (3 samples, 0.02%)</title><rect x="464.1" y="337" width="0.3" height="15.0" fill="rgb(206,49,18)" rx="2" ry="2" />
<text text-anchor="" x="467.13" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::AddAwakable (11 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (11 samples, 0.09%)</title><rect x="490.9" y="369" width="1.0" height="15.0" fill="rgb(207,119,9)" rx="2" ry="2" />
<text text-anchor="" x="493.92" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (5 samples, 0.04%)</title><rect x="1189.5" y="465" width="0.5" height="15.0" fill="rgb(233,111,44)" rx="2" ry="2" />
<text text-anchor="" x="1192.54" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (4 samples, 0.03%)</title><rect x="631.8" y="433" width="0.4" height="15.0" fill="rgb(229,40,49)" rx="2" ry="2" />
<text text-anchor="" x="634.83" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (458 samples, 3.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (458 samples, 3.56%)</title><rect x="328.7" y="465" width="42.0" height="15.0" fill="rgb(220,51,18)" rx="2" ry="2" />
<text text-anchor="" x="331.72" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pth..</text>
</g>
<g class="func_g" onmouseover="s('put_page (42 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_page (42 samples, 0.33%)</title><rect x="889.0" y="225" width="3.8" height="15.0" fill="rgb(245,183,28)" rx="2" ry="2" />
<text text-anchor="" x="891.99" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (12 samples, 0.09%)</title><rect x="220.3" y="497" width="1.1" height="15.0" fill="rgb(206,49,21)" rx="2" ry="2" />
<text text-anchor="" x="223.28" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (154 samples, 1.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (154 samples, 1.20%)</title><rect x="1131.4" y="81" width="14.1" height="15.0" fill="rgb(221,220,4)" rx="2" ry="2" />
<text text-anchor="" x="1134.38" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (4 samples, 0.03%)</title><rect x="334.9" y="417" width="0.3" height="15.0" fill="rgb(229,159,5)" rx="2" ry="2" />
<text text-anchor="" x="337.86" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('stop_one_cpu (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>stop_one_cpu (4 samples, 0.03%)</title><rect x="10.5" y="257" width="0.3" height="15.0" fill="rgb(225,159,46)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (749 samples, 5.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (749 samples, 5.82%)</title><rect x="478.0" y="385" width="68.7" height="15.0" fill="rgb(228,201,16)" rx="2" ry="2" />
<text text-anchor="" x="480.98" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::s..</text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (366 samples, 2.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (366 samples, 2.85%)</title><rect x="888.9" y="241" width="33.6" height="15.0" fill="rgb(221,181,31)" rx="2" ry="2" />
<text text-anchor="" x="891.90" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sk..</text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (15 samples, 0.12%)</title><rect x="179.4" y="305" width="1.4" height="15.0" fill="rgb(236,201,33)" rx="2" ry="2" />
<text text-anchor="" x="182.45" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (7 samples, 0.05%)</title><rect x="698.8" y="241" width="0.6" height="15.0" fill="rgb(250,92,28)" rx="2" ry="2" />
<text text-anchor="" x="701.81" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (3 samples, 0.02%)</title><rect x="649.4" y="385" width="0.3" height="15.0" fill="rgb(209,228,6)" rx="2" ry="2" />
<text text-anchor="" x="652.45" y="395.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (2 samples, 0.02%)</title><rect x="21.2" y="513" width="0.2" height="15.0" fill="rgb(212,39,32)" rx="2" ry="2" />
<text text-anchor="" x="24.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (2 samples, 0.02%)</title><rect x="775.1" y="305" width="0.2" height="15.0" fill="rgb(210,202,39)" rx="2" ry="2" />
<text text-anchor="" x="778.14" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (8 samples, 0.06%)</title><rect x="470.6" y="305" width="0.7" height="15.0" fill="rgb(218,25,25)" rx="2" ry="2" />
<text text-anchor="" x="473.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (2 samples, 0.02%)</title><rect x="465.2" y="321" width="0.2" height="15.0" fill="rgb(207,85,26)" rx="2" ry="2" />
<text text-anchor="" x="468.23" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_exec (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_exec (4 samples, 0.03%)</title><rect x="10.5" y="273" width="0.3" height="15.0" fill="rgb(221,74,34)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (6 samples, 0.05%)</title><rect x="771.7" y="369" width="0.6" height="15.0" fill="rgb(235,182,14)" rx="2" ry="2" />
<text text-anchor="" x="774.74" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (4 samples, 0.03%)</title><rect x="774.3" y="305" width="0.4" height="15.0" fill="rgb(210,73,1)" rx="2" ry="2" />
<text text-anchor="" x="777.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (6 samples, 0.05%)</title><rect x="810.2" y="321" width="0.5" height="15.0" fill="rgb(240,35,50)" rx="2" ry="2" />
<text text-anchor="" x="813.18" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (140 samples, 1.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (140 samples, 1.09%)</title><rect x="186.1" y="257" width="12.8" height="15.0" fill="rgb(214,2,51)" rx="2" ry="2" />
<text text-anchor="" x="189.06" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__fentry__ (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fentry__ (2 samples, 0.02%)</title><rect x="778.0" y="273" width="0.2" height="15.0" fill="rgb(213,28,17)" rx="2" ry="2" />
<text text-anchor="" x="780.98" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (468 samples, 3.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (468 samples, 3.64%)</title><rect x="119.5" y="449" width="43.0" height="15.0" fill="rgb(209,169,14)" rx="2" ry="2" />
<text text-anchor="" x="122.54" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock..</text>
</g>
<g class="func_g" onmouseover="s('_dl_map_object (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_map_object (5 samples, 0.04%)</title><rect x="551.0" y="545" width="0.5" height="15.0" fill="rgb(224,38,29)" rx="2" ry="2" />
<text text-anchor="" x="554.01" y="555.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (3 samples, 0.02%)</title><rect x="335.8" y="449" width="0.3" height="15.0" fill="rgb(226,218,42)" rx="2" ry="2" />
<text text-anchor="" x="338.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (3 samples, 0.02%)</title><rect x="289.6" y="417" width="0.3" height="15.0" fill="rgb(208,110,44)" rx="2" ry="2" />
<text text-anchor="" x="292.63" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.02%)</title><rect x="1077.6" y="337" width="0.2" height="15.0" fill="rgb(234,189,36)" rx="2" ry="2" />
<text text-anchor="" x="1080.61" 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 (18 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (18 samples, 0.14%)</title><rect x="1161.3" y="321" width="1.6" height="15.0" fill="rgb(239,128,19)" rx="2" ry="2" />
<text text-anchor="" x="1164.28" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (3 samples, 0.02%)</title><rect x="260.1" y="433" width="0.3" height="15.0" fill="rgb(247,226,15)" rx="2" ry="2" />
<text text-anchor="" x="263.09" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('timekeeping_update.constprop.9 (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>timekeeping_update.constprop.9 (2 samples, 0.02%)</title><rect x="343.2" y="177" width="0.2" height="15.0" fill="rgb(235,166,31)" rx="2" ry="2" />
<text text-anchor="" x="346.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.03%)</title><rect x="793.4" y="129" width="0.4" height="15.0" fill="rgb(239,133,8)" rx="2" ry="2" />
<text text-anchor="" x="796.39" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_init@@GLIBC_2.3.2 (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_init@@GLIBC_2.3.2 (5 samples, 0.04%)</title><rect x="327.0" y="449" width="0.4" height="15.0" fill="rgb(222,170,14)" rx="2" ry="2" />
<text text-anchor="" x="329.97" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_tail (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_tail (4 samples, 0.03%)</title><rect x="10.8" y="497" width="0.4" height="15.0" fill="rgb(213,78,37)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (81 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (81 samples, 0.63%)</title><rect x="523.2" y="161" width="7.4" height="15.0" fill="rgb(243,136,44)" rx="2" ry="2" />
<text text-anchor="" x="526.21" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (7 samples, 0.05%)</title><rect x="347.0" y="273" width="0.6" height="15.0" fill="rgb(206,98,44)" rx="2" ry="2" />
<text text-anchor="" x="349.97" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="584.0" y="545" width="0.5" height="15.0" fill="rgb(224,63,47)" rx="2" ry="2" />
<text text-anchor="" x="587.04" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (62 samples, 0.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (62 samples, 0.48%)</title><rect x="1148.1" y="129" width="5.7" height="15.0" fill="rgb(254,225,40)" rx="2" ry="2" />
<text text-anchor="" x="1151.07" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (15 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (15 samples, 0.12%)</title><rect x="210.8" y="385" width="1.4" height="15.0" fill="rgb(230,52,19)" rx="2" ry="2" />
<text text-anchor="" x="213.83" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (474 samples, 3.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (474 samples, 3.69%)</title><rect x="167.3" y="353" width="43.5" height="15.0" fill="rgb(253,75,5)" rx="2" ry="2" />
<text text-anchor="" x="170.34" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >defa..</text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (104 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (104 samples, 0.81%)</title><rect x="912.3" y="193" width="9.5" height="15.0" fill="rgb(254,69,6)" rx="2" ry="2" />
<text text-anchor="" x="915.29" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mntput (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mntput (3 samples, 0.02%)</title><rect x="312.6" y="417" width="0.2" height="15.0" fill="rgb(231,85,44)" rx="2" ry="2" />
<text text-anchor="" x="315.57" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (74 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (74 samples, 0.58%)</title><rect x="514.5" y="209" width="6.8" height="15.0" fill="rgb(207,13,5)" rx="2" ry="2" />
<text text-anchor="" x="517.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (4,497 samples, 34.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (4,497 samples, 34.96%)</title><rect x="762.9" y="417" width="412.6" height="15.0" fill="rgb(254,197,40)" rx="2" ry="2" />
<text text-anchor="" x="765.94" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >non-virtual thunk to mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('futex_wake (53 samples, 0.41%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (53 samples, 0.41%)</title><rect x="483.2" y="305" width="4.9" height="15.0" fill="rgb(237,99,7)" rx="2" ry="2" />
<text text-anchor="" x="486.21" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_setclock (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_setclock (5 samples, 0.04%)</title><rect x="497.0" y="353" width="0.4" height="15.0" fill="rgb(251,134,15)" rx="2" ry="2" />
<text text-anchor="" x="499.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (13 samples, 0.10%)</title><rect x="674.4" y="369" width="1.2" height="15.0" fill="rgb(208,152,11)" rx="2" ry="2" />
<text text-anchor="" x="677.40" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake_op (594 samples, 4.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (594 samples, 4.62%)</title><rect x="1101.2" y="209" width="54.5" height="15.0" fill="rgb(226,8,54)" rx="2" ry="2" />
<text text-anchor="" x="1104.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex..</text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (4 samples, 0.03%)</title><rect x="36.7" y="465" width="0.4" height="15.0" fill="rgb(209,147,35)" rx="2" ry="2" />
<text text-anchor="" x="39.70" y="475.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.02%)</title><rect x="379.5" y="417" width="0.2" height="15.0" fill="rgb(249,162,16)" rx="2" ry="2" />
<text text-anchor="" x="382.54" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (4 samples, 0.03%)</title><rect x="533.2" y="161" width="0.4" height="15.0" fill="rgb(248,163,22)" rx="2" ry="2" />
<text text-anchor="" x="536.21" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_execve (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (5 samples, 0.04%)</title><rect x="10.4" y="305" width="0.4" height="15.0" fill="rgb(235,83,16)" rx="2" ry="2" />
<text text-anchor="" x="13.37" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::HasOneRef (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (9 samples, 0.07%)</title><rect x="754.9" y="417" width="0.8" height="15.0" fill="rgb(215,186,28)" rx="2" ry="2" />
<text text-anchor="" x="757.86" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (6 samples, 0.05%)</title><rect x="841.3" y="321" width="0.5" height="15.0" fill="rgb(248,65,16)" rx="2" ry="2" />
<text text-anchor="" x="844.28" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.02%)</title><rect x="663.9" y="385" width="0.1" height="15.0" fill="rgb(241,220,51)" rx="2" ry="2" />
<text text-anchor="" x="666.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="10.8" y="417" width="0.4" height="15.0" fill="rgb(229,8,20)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (2 samples, 0.02%)</title><rect x="771.3" y="337" width="0.2" height="15.0" fill="rgb(227,92,8)" rx="2" ry="2" />
<text text-anchor="" x="774.28" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.03%)</title><rect x="549.9" y="289" width="0.4" height="15.0" fill="rgb(220,42,54)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (115 samples, 0.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (115 samples, 0.89%)</title><rect x="696.3" y="257" width="10.6" height="15.0" fill="rgb(239,174,52)" rx="2" ry="2" />
<text text-anchor="" x="699.33" y="267.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.02%)</title><rect x="482.2" y="353" width="0.2" height="15.0" fill="rgb(244,9,48)" rx="2" ry="2" />
<text text-anchor="" x="485.20" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (29 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (29 samples, 0.23%)</title><rect x="42.6" y="449" width="2.6" height="15.0" fill="rgb(252,142,0)" rx="2" ry="2" />
<text text-anchor="" x="45.57" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (13 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (13 samples, 0.10%)</title><rect x="649.9" y="417" width="1.2" height="15.0" fill="rgb(253,14,12)" rx="2" ry="2" />
<text text-anchor="" x="652.91" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg (2,056 samples, 15.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2,056 samples, 15.99%)</title><rect x="25.8" y="481" width="188.6" height="15.0" fill="rgb(227,209,44)" rx="2" ry="2" />
<text text-anchor="" x="28.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_sendmsg</text>
</g>
<g class="func_g" onmouseover="s('__put_single_page (31 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>__put_single_page (31 samples, 0.24%)</title><rect x="895.9" y="193" width="2.8" height="15.0" fill="rgb(224,141,24)" rx="2" ry="2" />
<text text-anchor="" x="898.87" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (3 samples, 0.02%)</title><rect x="846.3" y="321" width="0.3" height="15.0" fill="rgb(205,202,33)" rx="2" ry="2" />
<text text-anchor="" x="849.33" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (5 samples, 0.04%)</title><rect x="293.9" y="449" width="0.4" height="15.0" fill="rgb(253,157,47)" rx="2" ry="2" />
<text text-anchor="" x="296.85" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (9 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (9 samples, 0.07%)</title><rect x="312.0" y="433" width="0.8" height="15.0" fill="rgb(222,43,44)" rx="2" ry="2" />
<text text-anchor="" x="315.02" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (4 samples, 0.03%)</title><rect x="305.3" y="433" width="0.4" height="15.0" fill="rgb(231,12,11)" rx="2" ry="2" />
<text text-anchor="" x="308.32" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (158 samples, 1.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (158 samples, 1.23%)</title><rect x="693.9" y="289" width="14.5" height="15.0" fill="rgb(247,225,49)" rx="2" ry="2" />
<text text-anchor="" x="696.94" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (2 samples, 0.02%)</title><rect x="311.2" y="449" width="0.2" height="15.0" fill="rgb(210,198,53)" rx="2" ry="2" />
<text text-anchor="" x="314.19" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (17 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (17 samples, 0.13%)</title><rect x="548.3" y="385" width="1.6" height="15.0" fill="rgb(240,219,52)" rx="2" ry="2" />
<text text-anchor="" x="551.35" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (2 samples, 0.02%)</title><rect x="536.8" y="241" width="0.2" height="15.0" fill="rgb(233,220,14)" rx="2" ry="2" />
<text text-anchor="" x="539.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (5 samples, 0.04%)</title><rect x="659.1" y="417" width="0.4" height="15.0" fill="rgb(247,152,0)" rx="2" ry="2" />
<text text-anchor="" x="662.08" y="427.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.03%)</title><rect x="549.9" y="273" width="0.4" height="15.0" fill="rgb(240,93,37)" rx="2" ry="2" />
<text text-anchor="" x="552.91" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_recvmsg (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recvmsg (2 samples, 0.02%)</title><rect x="999.8" y="369" width="0.2" height="15.0" fill="rgb(232,100,49)" rx="2" ry="2" />
<text text-anchor="" x="1002.82" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (7 samples, 0.05%)</title><rect x="846.6" y="321" width="0.6" height="15.0" fill="rgb(205,75,40)" rx="2" ry="2" />
<text text-anchor="" x="849.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.02%)</title><rect x="596.0" y="513" width="0.1" height="15.0" fill="rgb(212,73,33)" rx="2" ry="2" />
<text text-anchor="" x="598.96" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (37 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (37 samples, 0.29%)</title><rect x="1093.7" y="241" width="3.4" height="15.0" fill="rgb(205,65,33)" rx="2" ry="2" />
<text text-anchor="" x="1096.67" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (7 samples, 0.05%)</title><rect x="921.8" y="225" width="0.7" height="15.0" fill="rgb(242,208,24)" rx="2" ry="2" />
<text text-anchor="" x="924.83" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (31 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (31 samples, 0.24%)</title><rect x="532.8" y="209" width="2.8" height="15.0" fill="rgb(213,199,51)" rx="2" ry="2" />
<text text-anchor="" x="535.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (223 samples, 1.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (223 samples, 1.73%)</title><rect x="1127.2" y="129" width="20.4" height="15.0" fill="rgb(226,210,30)" rx="2" ry="2" />
<text text-anchor="" x="1130.16" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (3 samples, 0.02%)</title><rect x="701.2" y="225" width="0.3" height="15.0" fill="rgb(213,115,28)" rx="2" ry="2" />
<text text-anchor="" x="704.19" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (86 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (86 samples, 0.67%)</title><rect x="522.9" y="225" width="7.9" height="15.0" fill="rgb(227,155,33)" rx="2" ry="2" />
<text text-anchor="" x="525.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (10 samples, 0.08%)</title><rect x="198.0" y="241" width="0.9" height="15.0" fill="rgb(249,34,11)" rx="2" ry="2" />
<text text-anchor="" x="200.98" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmalloc_slab (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (14 samples, 0.11%)</title><rect x="129.9" y="401" width="1.3" height="15.0" fill="rgb(207,74,12)" rx="2" ry="2" />
<text text-anchor="" x="132.91" y="411.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (3 samples, 0.02%)</title><rect x="650.0" y="257" width="0.3" height="15.0" fill="rgb(206,4,40)" rx="2" ry="2" />
<text text-anchor="" x="653.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (62 samples, 0.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (62 samples, 0.48%)</title><rect x="15.7" y="529" width="5.7" height="15.0" fill="rgb(239,184,50)" rx="2" ry="2" />
<text text-anchor="" x="18.69" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (12 samples, 0.09%)</title><rect x="1108.6" y="193" width="1.1" height="15.0" fill="rgb(229,95,29)" rx="2" ry="2" />
<text text-anchor="" x="1111.62" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (14 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (14 samples, 0.11%)</title><rect x="785.6" y="289" width="1.3" height="15.0" fill="rgb(205,164,51)" rx="2" ry="2" />
<text text-anchor="" x="788.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (408 samples, 3.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (408 samples, 3.17%)</title><rect x="222.9" y="465" width="37.5" height="15.0" fill="rgb(234,79,5)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__m..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (10 samples, 0.08%)</title><rect x="1159.0" y="273" width="0.9" height="15.0" fill="rgb(214,19,9)" rx="2" ry="2" />
<text text-anchor="" x="1161.99" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (4 samples, 0.03%)</title><rect x="693.5" y="257" width="0.4" height="15.0" fill="rgb(211,100,54)" rx="2" ry="2" />
<text text-anchor="" x="696.49" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (51 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (51 samples, 0.40%)</title><rect x="312.9" y="417" width="4.7" height="15.0" fill="rgb(207,59,49)" rx="2" ry="2" />
<text text-anchor="" x="315.94" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (2 samples, 0.02%)</title><rect x="1077.6" y="257" width="0.2" height="15.0" fill="rgb(252,149,12)" rx="2" ry="2" />
<text text-anchor="" x="1080.61" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (24 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (24 samples, 0.19%)</title><rect x="849.4" y="353" width="2.2" height="15.0" fill="rgb(234,195,47)" rx="2" ry="2" />
<text text-anchor="" x="852.36" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (374 samples, 2.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (374 samples, 2.91%)</title><rect x="336.3" y="417" width="34.3" height="15.0" fill="rgb(227,90,18)" rx="2" ry="2" />
<text text-anchor="" x="339.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.03%)</title><rect x="1119.1" y="145" width="0.3" height="15.0" fill="rgb(208,200,49)" rx="2" ry="2" />
<text text-anchor="" x="1122.08" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kretprobe_trampoline (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (4 samples, 0.03%)</title><rect x="10.0" y="529" width="0.4" height="15.0" fill="rgb(234,224,18)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (3 samples, 0.02%)</title><rect x="260.1" y="385" width="0.3" height="15.0" fill="rgb(254,94,51)" rx="2" ry="2" />
<text text-anchor="" x="263.09" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (20 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (20 samples, 0.16%)</title><rect x="303.1" y="417" width="1.9" height="15.0" fill="rgb(234,33,3)" rx="2" ry="2" />
<text text-anchor="" x="306.12" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (7 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (7 samples, 0.05%)</title><rect x="785.0" y="289" width="0.6" height="15.0" fill="rgb(213,87,8)" rx="2" ry="2" />
<text text-anchor="" x="787.95" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (62 samples, 0.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (62 samples, 0.48%)</title><rect x="28.2" y="449" width="5.7" height="15.0" fill="rgb(242,172,7)" rx="2" ry="2" />
<text text-anchor="" x="31.17" y="459.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (2 samples, 0.02%)</title><rect x="837.9" y="353" width="0.2" height="15.0" fill="rgb(230,47,0)" rx="2" ry="2" />
<text text-anchor="" x="840.89" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (84 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (84 samples, 0.65%)</title><rect x="729.4" y="305" width="7.8" height="15.0" fill="rgb(236,159,37)" rx="2" ry="2" />
<text text-anchor="" x="732.45" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (2 samples, 0.02%)</title><rect x="199.5" y="257" width="0.2" height="15.0" fill="rgb(215,137,26)" rx="2" ry="2" />
<text text-anchor="" x="202.54" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (948 samples, 7.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (948 samples, 7.37%)</title><rect x="1077.9" y="353" width="87.0" height="15.0" fill="rgb(252,166,50)" rx="2" ry="2" />
<text text-anchor="" x="1080.89" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syst..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (38 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (38 samples, 0.30%)</title><rect x="261.7" y="465" width="3.4" height="15.0" fill="rgb(224,33,26)" rx="2" ry="2" />
<text text-anchor="" x="264.65" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="13.9" y="529" width="0.2" height="15.0" fill="rgb(205,39,27)" rx="2" ry="2" />
<text text-anchor="" x="16.85" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (2 samples, 0.02%)</title><rect x="693.6" y="177" width="0.2" height="15.0" fill="rgb(244,163,21)" rx="2" ry="2" />
<text text-anchor="" x="696.58" y="187.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 (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::ReadBuffer::GetBuffer (2 samples, 0.02%)</title><rect x="1174.7" y="385" width="0.2" height="15.0" fill="rgb(239,114,21)" rx="2" ry="2" />
<text text-anchor="" x="1177.68" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::is_valid (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (4 samples, 0.03%)</title><rect x="1179.9" y="433" width="0.4" height="15.0" fill="rgb(224,78,6)" rx="2" ry="2" />
<text text-anchor="" x="1182.91" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_recvmsg (8 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (8 samples, 0.06%)</title><rect x="776.9" y="289" width="0.7" height="15.0" fill="rgb(216,66,30)" rx="2" ry="2" />
<text text-anchor="" x="779.88" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Remove (4 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (4 samples, 0.03%)</title><rect x="324.7" y="433" width="0.3" height="15.0" fill="rgb(244,219,28)" rx="2" ry="2" />
<text text-anchor="" x="327.68" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (12 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (12 samples, 0.09%)</title><rect x="1143.7" y="65" width="1.1" height="15.0" fill="rgb(236,130,36)" rx="2" ry="2" />
<text text-anchor="" x="1146.67" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (75 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (75 samples, 0.58%)</title><rect x="311.0" y="465" width="6.9" height="15.0" fill="rgb(254,110,4)" rx="2" ry="2" />
<text text-anchor="" x="314.01" y="475.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 (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (3 samples, 0.02%)</title><rect x="471.3" y="305" width="0.3" height="15.0" fill="rgb(222,110,37)" rx="2" ry="2" />
<text text-anchor="" x="474.28" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (2 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (2 samples, 0.02%)</title><rect x="500.3" y="353" width="0.2" height="15.0" fill="rgb(220,179,16)" rx="2" ry="2" />
<text text-anchor="" x="503.28" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (6 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (6 samples, 0.05%)</title><rect x="536.2" y="241" width="0.6" height="15.0" fill="rgb(237,122,48)" rx="2" ry="2" />
<text text-anchor="" x="539.24" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (10 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (10 samples, 0.08%)</title><rect x="473.7" y="337" width="0.9" height="15.0" fill="rgb(226,62,12)" rx="2" ry="2" />
<text text-anchor="" x="476.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (3 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (3 samples, 0.02%)</title><rect x="260.1" y="417" width="0.3" height="15.0" fill="rgb(226,71,34)" rx="2" ry="2" />
<text text-anchor="" x="263.09" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::AddAwakable (5 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (5 samples, 0.04%)</title><rect x="320.2" y="449" width="0.4" height="15.0" fill="rgb(228,61,27)" rx="2" ry="2" />
<text text-anchor="" x="323.18" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (18 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (18 samples, 0.14%)</title><rect x="533.6" y="193" width="1.6" height="15.0" fill="rgb(205,90,25)" rx="2" ry="2" />
<text text-anchor="" x="536.58" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment