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
<?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('get_futex_key_refs.isra.13 (55 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (55 samples, 0.14%)</title><rect x="353.0" y="273" width="1.7" height="15.0" fill="rgb(251,1,21)" rx="2" ry="2" />
<text text-anchor="" x="356.02" 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 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.01%)</title><rect x="582.9" y="449" width="0.2" height="15.0" fill="rgb(235,66,23)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Waiter (88 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Waiter (88 samples, 0.23%)</title><rect x="283.6" y="369" width="2.7" height="15.0" fill="rgb(243,68,14)" rx="2" ry="2" />
<text text-anchor="" x="286.60" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (6 samples, 0.02%)</title><rect x="433.2" y="497" width="0.2" height="15.0" fill="rgb(254,72,31)" rx="2" ry="2" />
<text text-anchor="" x="436.22" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (139 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (139 samples, 0.36%)</title><rect x="1046.6" y="193" width="4.3" height="15.0" fill="rgb(216,156,43)" rx="2" ry="2" />
<text text-anchor="" x="1049.64" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (9 samples, 0.02%)</title><rect x="763.9" y="209" width="0.3" height="15.0" fill="rgb(231,34,52)" rx="2" ry="2" />
<text text-anchor="" x="766.88" y="219.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.01%)</title><rect x="370.0" y="273" width="0.1" height="15.0" fill="rgb(246,221,17)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (3,554 samples, 9.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (3,554 samples, 9.28%)</title><rect x="857.1" y="401" width="109.6" height="15.0" fill="rgb(231,75,37)" rx="2" ry="2" />
<text text-anchor="" x="860.15" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (141 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (141 samples, 0.37%)</title><rect x="331.5" y="177" width="4.3" height="15.0" fill="rgb(225,106,16)" rx="2" ry="2" />
<text text-anchor="" x="334.48" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (17 samples, 0.04%)</title><rect x="673.4" y="385" width="0.5" height="15.0" fill="rgb(244,0,18)" rx="2" ry="2" />
<text text-anchor="" x="676.39" 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 (112 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (112 samples, 0.29%)</title><rect x="58.0" y="449" width="3.4" height="15.0" fill="rgb(212,0,52)" rx="2" ry="2" />
<text text-anchor="" x="60.97" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Wait (47 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Wait (47 samples, 0.12%)</title><rect x="282.2" y="369" width="1.4" height="15.0" fill="rgb(244,151,28)" rx="2" ry="2" />
<text text-anchor="" x="285.15" 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 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (4 samples, 0.01%)</title><rect x="949.1" y="305" width="0.1" height="15.0" fill="rgb(205,74,6)" rx="2" ry="2" />
<text text-anchor="" x="952.09" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('run_timer_softirq (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>run_timer_softirq (6 samples, 0.02%)</title><rect x="742.3" y="241" width="0.1" height="15.0" fill="rgb(208,168,13)" rx="2" ry="2" />
<text text-anchor="" x="745.25" y="251.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 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>drop_futex_key_refs.isra.14 (10 samples, 0.03%)</title><rect x="1051.0" y="193" width="0.3" height="15.0" fill="rgb(238,36,31)" rx="2" ry="2" />
<text text-anchor="" x="1054.01" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (178 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (178 samples, 0.46%)</title><rect x="535.5" y="385" width="5.5" height="15.0" fill="rgb(233,19,47)" rx="2" ry="2" />
<text text-anchor="" x="538.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_unix_gc (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (12 samples, 0.03%)</title><rect x="187.4" y="465" width="0.4" height="15.0" fill="rgb(219,1,26)" rx="2" ry="2" />
<text text-anchor="" x="190.41" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (20 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (20 samples, 0.05%)</title><rect x="347.8" y="257" width="0.6" height="15.0" fill="rgb(251,180,35)" rx="2" ry="2" />
<text text-anchor="" x="350.81" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (40 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (40 samples, 0.10%)</title><rect x="336.4" y="225" width="1.3" height="15.0" fill="rgb(251,75,11)" rx="2" ry="2" />
<text text-anchor="" x="339.44" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (102 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (102 samples, 0.27%)</title><rect x="898.9" y="241" width="3.1" height="15.0" fill="rgb(221,128,36)" rx="2" ry="2" />
<text text-anchor="" x="901.87" y="251.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>retint_careful (4 samples, 0.01%)</title><rect x="582.9" y="529" width="0.2" height="15.0" fill="rgb(248,35,33)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="539.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 (66 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (66 samples, 0.17%)</title><rect x="199.0" y="465" width="2.0" height="15.0" fill="rgb(215,15,18)" rx="2" ry="2" />
<text text-anchor="" x="201.96" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::UnitTest::Run (5,488 samples, 14.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::UnitTest::Run (5,488 samples, 14.33%)</title><rect x="201.2" y="497" width="169.0" height="15.0" fill="rgb(249,147,23)" rx="2" ry="2" />
<text text-anchor="" x="204.15" 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_mutex_lock (75 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (75 samples, 0.20%)</title><rect x="246.4" y="337" width="2.3" height="15.0" fill="rgb(246,214,51)" rx="2" ry="2" />
<text text-anchor="" x="249.35" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (4 samples, 0.01%)</title><rect x="336.1" y="209" width="0.1" height="15.0" fill="rgb(251,57,32)" rx="2" ry="2" />
<text text-anchor="" x="339.10" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (6 samples, 0.02%)</title><rect x="1114.0" y="81" width="0.1" height="15.0" fill="rgb(223,81,49)" rx="2" ry="2" />
<text text-anchor="" x="1116.96" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (1,249 samples, 3.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1,249 samples, 3.26%)</title><rect x="513.0" y="433" width="38.5" height="15.0" fill="rgb(230,152,39)" rx="2" ry="2" />
<text text-anchor="" x="516.02" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fut..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (4 samples, 0.01%)</title><rect x="865.4" y="353" width="0.1" height="15.0" fill="rgb(246,2,52)" rx="2" ry="2" />
<text text-anchor="" x="868.41" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (2,518 samples, 6.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2,518 samples, 6.57%)</title><rect x="732.8" y="337" width="77.5" height="15.0" fill="rgb(232,155,35)" rx="2" ry="2" />
<text text-anchor="" x="735.76" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s('__libc_disable_asynccancel (127 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (127 samples, 0.33%)</title><rect x="818.0" y="433" width="3.9" height="15.0" fill="rgb(213,53,4)" rx="2" ry="2" />
<text text-anchor="" x="820.96" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (5 samples, 0.01%)</title><rect x="222.8" y="369" width="0.2" height="15.0" fill="rgb(243,16,54)" rx="2" ry="2" />
<text text-anchor="" x="225.81" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (24 samples, 0.06%)</title><rect x="880.3" y="289" width="0.8" height="15.0" fill="rgb(249,34,53)" rx="2" ry="2" />
<text text-anchor="" x="883.32" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (261 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (261 samples, 0.68%)</title><rect x="402.8" y="545" width="8.0" height="15.0" fill="rgb(234,143,8)" rx="2" ry="2" />
<text text-anchor="" x="405.78" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_setup (195 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (195 samples, 0.51%)</title><rect x="348.8" y="289" width="6.0" height="15.0" fill="rgb(226,158,54)" rx="2" ry="2" />
<text text-anchor="" x="351.83" y="299.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 (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (9 samples, 0.02%)</title><rect x="1113.6" y="81" width="0.3" height="15.0" fill="rgb(234,172,35)" rx="2" ry="2" />
<text text-anchor="" x="1116.62" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (37 samples, 0.10%)</title><rect x="224.1" y="369" width="1.1" height="15.0" fill="rgb(224,223,36)" rx="2" ry="2" />
<text text-anchor="" x="227.11" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (167 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (167 samples, 0.44%)</title><rect x="953.2" y="321" width="5.1" height="15.0" fill="rgb(247,74,14)" rx="2" ry="2" />
<text text-anchor="" x="956.19" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (6 samples, 0.02%)</title><rect x="1102.7" y="49" width="0.2" height="15.0" fill="rgb(222,134,43)" rx="2" ry="2" />
<text text-anchor="" x="1105.68" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (9 samples, 0.02%)</title><rect x="465.2" y="465" width="0.3" height="15.0" fill="rgb(235,109,39)" rx="2" ry="2" />
<text text-anchor="" x="468.20" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (18 samples, 0.05%)</title><rect x="795.0" y="193" width="0.6" height="15.0" fill="rgb(240,162,40)" rx="2" ry="2" />
<text text-anchor="" x="798.03" y="203.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (4 samples, 0.01%)</title><rect x="239.7" y="273" width="0.1" height="15.0" fill="rgb(213,217,42)" rx="2" ry="2" />
<text text-anchor="" x="242.70" 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 (49 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (49 samples, 0.13%)</title><rect x="1176.0" y="433" width="1.5" height="15.0" fill="rgb(213,59,29)" rx="2" ry="2" />
<text text-anchor="" x="1178.98" y="443.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (8 samples, 0.02%)</title><rect x="324.1" y="161" width="0.3" height="15.0" fill="rgb(254,87,17)" rx="2" ry="2" />
<text text-anchor="" x="327.15" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (152 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (152 samples, 0.40%)</title><rect x="339.8" y="209" width="4.7" height="15.0" fill="rgb(246,105,26)" rx="2" ry="2" />
<text text-anchor="" x="342.83" 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 (143 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (143 samples, 0.37%)</title><rect x="331.4" y="193" width="4.4" height="15.0" fill="rgb(220,81,9)" rx="2" ry="2" />
<text text-anchor="" x="334.42" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_free (76 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (76 samples, 0.20%)</title><rect x="899.7" y="225" width="2.3" height="15.0" fill="rgb(253,214,0)" rx="2" ry="2" />
<text text-anchor="" x="902.67" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Remove (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (11 samples, 0.03%)</title><rect x="275.7" y="353" width="0.3" height="15.0" fill="rgb(243,75,29)" rx="2" ry="2" />
<text text-anchor="" x="278.65" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (9 samples, 0.02%)</title><rect x="756.2" y="241" width="0.3" height="15.0" fill="rgb(252,204,13)" rx="2" ry="2" />
<text text-anchor="" x="759.21" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (11 samples, 0.03%)</title><rect x="300.0" y="353" width="0.3" height="15.0" fill="rgb(205,32,23)" rx="2" ry="2" />
<text text-anchor="" x="302.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (82 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (82 samples, 0.21%)</title><rect x="1051.3" y="193" width="2.5" height="15.0" fill="rgb(252,77,39)" rx="2" ry="2" />
<text text-anchor="" x="1054.32" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_unlink (151 samples, 0.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (151 samples, 0.39%)</title><rect x="944.4" y="273" width="4.7" height="15.0" fill="rgb(246,72,38)" rx="2" ry="2" />
<text text-anchor="" x="947.44" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (291 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (291 samples, 0.76%)</title><rect x="881.1" y="289" width="8.9" height="15.0" fill="rgb(247,53,18)" rx="2" ry="2" />
<text text-anchor="" x="884.06" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (30 samples, 0.08%)</title><rect x="853.8" y="369" width="0.9" height="15.0" fill="rgb(217,116,50)" rx="2" ry="2" />
<text text-anchor="" x="856.76" 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 (61 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (61 samples, 0.16%)</title><rect x="790.5" y="273" width="1.9" height="15.0" fill="rgb(211,184,16)" rx="2" ry="2" />
<text text-anchor="" x="793.47" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (68 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (68 samples, 0.18%)</title><rect x="48.1" y="465" width="2.1" height="15.0" fill="rgb(234,171,48)" rx="2" ry="2" />
<text text-anchor="" x="51.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (5 samples, 0.01%)</title><rect x="26.2" y="513" width="0.1" height="15.0" fill="rgb(247,83,9)" rx="2" ry="2" />
<text text-anchor="" x="29.18" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (70 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (70 samples, 0.18%)</title><rect x="538.0" y="305" width="2.2" height="15.0" fill="rgb(229,183,10)" rx="2" ry="2" />
<text text-anchor="" x="541.04" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (38 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (38 samples, 0.10%)</title><rect x="1022.0" y="257" width="1.2" height="15.0" fill="rgb(244,9,43)" rx="2" ry="2" />
<text text-anchor="" x="1025.05" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (88 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (88 samples, 0.23%)</title><rect x="400.1" y="545" width="2.7" height="15.0" fill="rgb(219,169,40)" rx="2" ry="2" />
<text text-anchor="" x="403.07" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (11 samples, 0.03%)</title><rect x="896.2" y="273" width="0.3" height="15.0" fill="rgb(245,110,54)" rx="2" ry="2" />
<text text-anchor="" x="899.19" 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 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (7 samples, 0.02%)</title><rect x="810.1" y="321" width="0.2" height="15.0" fill="rgb(215,15,0)" rx="2" ry="2" />
<text text-anchor="" x="813.13" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_init (20 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_init (20 samples, 0.05%)</title><rect x="355.7" y="369" width="0.6" height="15.0" fill="rgb(235,82,16)" rx="2" ry="2" />
<text text-anchor="" x="358.70" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (90 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (90 samples, 0.23%)</title><rect x="761.4" y="225" width="2.8" height="15.0" fill="rgb(222,125,8)" rx="2" ry="2" />
<text text-anchor="" x="764.39" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (6 samples, 0.02%)</title><rect x="944.2" y="257" width="0.2" height="15.0" fill="rgb(222,121,30)" rx="2" ry="2" />
<text text-anchor="" x="947.19" 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 (99 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (99 samples, 0.26%)</title><rect x="1061.9" y="145" width="3.0" height="15.0" fill="rgb(232,224,9)" rx="2" ry="2" />
<text text-anchor="" x="1064.89" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (13 samples, 0.03%)</title><rect x="507.3" y="497" width="0.4" height="15.0" fill="rgb(205,226,26)" rx="2" ry="2" />
<text text-anchor="" x="510.32" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Init (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Init (4 samples, 0.01%)</title><rect x="458.2" y="529" width="0.1" height="15.0" fill="rgb(235,165,31)" rx="2" ry="2" />
<text text-anchor="" x="461.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (83 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (83 samples, 0.22%)</title><rect x="174.8" y="321" width="2.5" height="15.0" fill="rgb(229,54,53)" rx="2" ry="2" />
<text text-anchor="" x="177.78" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (40 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (40 samples, 0.10%)</title><rect x="320.2" y="177" width="1.2" height="15.0" fill="rgb(250,18,48)" rx="2" ry="2" />
<text text-anchor="" x="323.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpumask_next_and (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_and (10 samples, 0.03%)</title><rect x="788.3" y="257" width="0.3" height="15.0" fill="rgb(236,112,0)" rx="2" ry="2" />
<text text-anchor="" x="791.32" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (8 samples, 0.02%)</title><rect x="258.1" y="321" width="0.2" height="15.0" fill="rgb(221,183,34)" rx="2" ry="2" />
<text text-anchor="" x="261.09" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (9 samples, 0.02%)</title><rect x="177.4" y="337" width="0.3" height="15.0" fill="rgb(211,182,15)" rx="2" ry="2" />
<text text-anchor="" x="180.40" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_init (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_init (37 samples, 0.10%)</title><rect x="284.8" y="353" width="1.2" height="15.0" fill="rgb(240,168,35)" rx="2" ry="2" />
<text text-anchor="" x="287.83" 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 (65 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (65 samples, 0.17%)</title><rect x="199.0" y="449" width="2.0" height="15.0" fill="rgb(237,0,1)" rx="2" ry="2" />
<text text-anchor="" x="201.99" 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 (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (22 samples, 0.06%)</title><rect x="196.1" y="497" width="0.7" height="15.0" fill="rgb(253,80,28)" rx="2" ry="2" />
<text text-anchor="" x="199.13" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (5 samples, 0.01%)</title><rect x="1087.3" y="97" width="0.1" height="15.0" fill="rgb(225,26,24)" rx="2" ry="2" />
<text text-anchor="" x="1090.28" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (5 samples, 0.01%)</title><rect x="933.4" y="241" width="0.2" height="15.0" fill="rgb(228,156,39)" rx="2" ry="2" />
<text text-anchor="" x="936.41" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (205 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (205 samples, 0.54%)</title><rect x="393.1" y="545" width="6.4" height="15.0" fill="rgb(227,65,19)" rx="2" ry="2" />
<text text-anchor="" x="396.13" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (213 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (213 samples, 0.56%)</title><rect x="697.8" y="369" width="6.6" height="15.0" fill="rgb(215,111,34)" rx="2" ry="2" />
<text text-anchor="" x="700.82" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (129 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (129 samples, 0.34%)</title><rect x="924.6" y="145" width="4.0" height="15.0" fill="rgb(216,220,32)" rx="2" ry="2" />
<text text-anchor="" x="927.59" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (11 samples, 0.03%)</title><rect x="806.5" y="321" width="0.3" height="15.0" fill="rgb(211,8,13)" rx="2" ry="2" />
<text text-anchor="" x="809.50" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1,084 samples, 2.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1,084 samples, 2.83%)</title><rect x="516.3" y="401" width="33.4" height="15.0" fill="rgb(231,197,8)" rx="2" ry="2" />
<text text-anchor="" x="519.26" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (50 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (50 samples, 0.13%)</title><rect x="1089.5" y="81" width="1.5" height="15.0" fill="rgb(254,30,33)" rx="2" ry="2" />
<text text-anchor="" x="1092.46" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (24 samples, 0.06%)</title><rect x="626.3" y="433" width="0.8" height="15.0" fill="rgb(242,206,14)" rx="2" ry="2" />
<text text-anchor="" x="629.31" y="443.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (4 samples, 0.01%)</title><rect x="324.4" y="161" width="0.1" height="15.0" fill="rgb(208,13,52)" rx="2" ry="2" />
<text text-anchor="" x="327.40" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (2,570 samples, 6.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (2,570 samples, 6.71%)</title><rect x="98.6" y="385" width="79.2" height="15.0" fill="rgb(213,52,29)" rx="2" ry="2" />
<text text-anchor="" x="101.58" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake_up..</text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (3,048 samples, 7.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (3,048 samples, 7.96%)</title><rect x="92.9" y="449" width="93.9" height="15.0" fill="rgb(236,208,0)" rx="2" ry="2" />
<text text-anchor="" x="95.85" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_def_re..</text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.01%)</title><rect x="370.0" y="129" width="0.1" height="15.0" fill="rgb(253,58,51)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (12 samples, 0.03%)</title><rect x="1069.4" y="129" width="0.3" height="15.0" fill="rgb(243,67,35)" rx="2" ry="2" />
<text text-anchor="" x="1072.37" 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 (61 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (61 samples, 0.16%)</title><rect x="896.5" y="273" width="1.9" height="15.0" fill="rgb(221,155,54)" rx="2" ry="2" />
<text text-anchor="" x="899.53" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (6 samples, 0.02%)</title><rect x="555.4" y="465" width="0.2" height="15.0" fill="rgb(218,96,15)" rx="2" ry="2" />
<text text-anchor="" x="558.42" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::SerializeAndCloseDispatchers (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::SerializeAndCloseDispatchers (4 samples, 0.01%)</title><rect x="450.8" y="481" width="0.1" height="15.0" fill="rgb(242,54,13)" rx="2" ry="2" />
<text text-anchor="" x="453.81" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (27 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (27 samples, 0.07%)</title><rect x="742.1" y="289" width="0.9" height="15.0" fill="rgb(238,29,6)" rx="2" ry="2" />
<text text-anchor="" x="745.13" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (7 samples, 0.02%)</title><rect x="344.5" y="209" width="0.3" height="15.0" fill="rgb(211,110,39)" rx="2" ry="2" />
<text text-anchor="" x="347.55" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake_op (3,197 samples, 8.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (3,197 samples, 8.35%)</title><rect x="1031.5" y="209" width="98.5" height="15.0" fill="rgb(240,64,48)" rx="2" ry="2" />
<text text-anchor="" x="1034.48" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_wake_op</text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="521.6" y="353" width="0.2" height="15.0" fill="rgb(246,211,8)" rx="2" ry="2" />
<text text-anchor="" x="524.62" 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 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (8 samples, 0.02%)</title><rect x="1021.2" y="225" width="0.3" height="15.0" fill="rgb(207,51,51)" rx="2" ry="2" />
<text text-anchor="" x="1024.25" 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 (218 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (218 samples, 0.57%)</title><rect x="338.0" y="241" width="6.8" height="15.0" fill="rgb(240,66,50)" rx="2" ry="2" />
<text text-anchor="" x="341.04" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (21 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (21 samples, 0.05%)</title><rect x="222.2" y="369" width="0.6" height="15.0" fill="rgb(217,145,35)" rx="2" ry="2" />
<text text-anchor="" x="225.16" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (170 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (170 samples, 0.44%)</title><rect x="276.9" y="353" width="5.3" height="15.0" fill="rgb(228,52,28)" rx="2" ry="2" />
<text text-anchor="" x="279.92" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (12 samples, 0.03%)</title><rect x="548.5" y="385" width="0.4" height="15.0" fill="rgb(221,19,49)" rx="2" ry="2" />
<text text-anchor="" x="551.55" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (55 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (55 samples, 0.14%)</title><rect x="853.7" y="401" width="1.7" height="15.0" fill="rgb(217,159,12)" rx="2" ry="2" />
<text text-anchor="" x="856.73" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (16 samples, 0.04%)</title><rect x="542.8" y="353" width="0.5" height="15.0" fill="rgb(220,199,31)" rx="2" ry="2" />
<text text-anchor="" x="545.78" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (32 samples, 0.08%)</title><rect x="527.1" y="321" width="1.0" height="15.0" fill="rgb(206,33,5)" rx="2" ry="2" />
<text text-anchor="" x="530.13" 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::ReadMessage (227 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (227 samples, 0.59%)</title><rect x="212.5" y="369" width="7.0" height="15.0" fill="rgb(205,206,25)" rx="2" ry="2" />
<text text-anchor="" x="215.49" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.01%)</title><rect x="370.0" y="161" width="0.1" height="15.0" fill="rgb(230,200,34)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (14 samples, 0.04%)</title><rect x="1115.6" y="33" width="0.4" height="15.0" fill="rgb(235,204,46)" rx="2" ry="2" />
<text text-anchor="" x="1118.59" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (41 samples, 0.11%)</title><rect x="161.1" y="257" width="1.2" height="15.0" fill="rgb(251,0,13)" rx="2" ry="2" />
<text text-anchor="" x="164.07" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="353" width="0.2" height="15.0" fill="rgb(238,205,25)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (11 samples, 0.03%)</title><rect x="413.5" y="529" width="0.3" height="15.0" fill="rgb(231,56,1)" rx="2" ry="2" />
<text text-anchor="" x="416.47" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (2,330 samples, 6.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (2,330 samples, 6.08%)</title><rect x="877.3" y="305" width="71.8" height="15.0" fill="rgb(218,198,4)" rx="2" ry="2" />
<text text-anchor="" x="880.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_rec..</text>
</g>
<g class="func_g" onmouseover="s('__slab_alloc (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (15 samples, 0.04%)</title><rect x="87.7" y="401" width="0.5" height="15.0" fill="rgb(227,99,9)" rx="2" ry="2" />
<text text-anchor="" x="90.74" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (40 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (40 samples, 0.10%)</title><rect x="443.7" y="433" width="1.3" height="15.0" fill="rgb(208,175,38)" rx="2" ry="2" />
<text text-anchor="" x="446.73" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (306 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (306 samples, 0.80%)</title><rect x="524.5" y="337" width="9.4" height="15.0" fill="rgb(205,193,18)" rx="2" ry="2" />
<text text-anchor="" x="527.48" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (4 samples, 0.01%)</title><rect x="537.7" y="353" width="0.1" height="15.0" fill="rgb(249,190,41)" rx="2" ry="2" />
<text text-anchor="" x="540.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_write_space (486 samples, 1.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (486 samples, 1.27%)</title><rect x="918.3" y="193" width="15.0" height="15.0" fill="rgb(237,171,48)" rx="2" ry="2" />
<text text-anchor="" x="921.34" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (4 samples, 0.01%)</title><rect x="26.4" y="513" width="0.1" height="15.0" fill="rgb(230,99,3)" rx="2" ry="2" />
<text text-anchor="" x="29.36" y="523.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.01%)</title><rect x="371.3" y="465" width="0.1" height="15.0" fill="rgb(245,208,24)" rx="2" ry="2" />
<text text-anchor="" x="374.29" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (4 samples, 0.01%)</title><rect x="127.9" y="321" width="0.1" height="15.0" fill="rgb(240,1,52)" rx="2" ry="2" />
<text text-anchor="" x="130.91" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (149 samples, 0.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (149 samples, 0.39%)</title><rect x="1023.2" y="257" width="4.6" height="15.0" fill="rgb(211,173,25)" rx="2" ry="2" />
<text text-anchor="" x="1026.22" y="267.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.01%)</title><rect x="547.3" y="305" width="0.1" height="15.0" fill="rgb(237,175,24)" rx="2" ry="2" />
<text text-anchor="" x="550.28" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__unqueue_futex (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__unqueue_futex (4 samples, 0.01%)</title><rect x="1046.5" y="193" width="0.1" height="15.0" fill="rgb(222,73,1)" rx="2" ry="2" />
<text text-anchor="" x="1049.51" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::ReadBuffer::GetBuffer (88 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::ReadBuffer::GetBuffer (88 samples, 0.23%)</title><rect x="1165.9" y="401" width="2.7" height="15.0" fill="rgb(209,25,16)" rx="2" ry="2" />
<text text-anchor="" x="1168.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (24 samples, 0.06%)</title><rect x="33.5" y="481" width="0.8" height="15.0" fill="rgb(234,151,42)" rx="2" ry="2" />
<text text-anchor="" x="36.54" 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 (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (9 samples, 0.02%)</title><rect x="47.3" y="449" width="0.3" height="15.0" fill="rgb(236,46,48)" rx="2" ry="2" />
<text text-anchor="" x="50.34" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (39 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (39 samples, 0.10%)</title><rect x="947.9" y="257" width="1.2" height="15.0" fill="rgb(243,143,39)" rx="2" ry="2" />
<text text-anchor="" x="950.89" y="267.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.01%)</title><rect x="370.0" y="257" width="0.1" height="15.0" fill="rgb(242,164,12)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (9 samples, 0.02%)</title><rect x="147.0" y="241" width="0.2" height="15.0" fill="rgb(232,15,26)" rx="2" ry="2" />
<text text-anchor="" x="149.95" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (10 samples, 0.03%)</title><rect x="437.1" y="465" width="0.3" height="15.0" fill="rgb(236,87,23)" rx="2" ry="2" />
<text text-anchor="" x="440.10" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (4 samples, 0.01%)</title><rect x="1060.7" y="161" width="0.1" height="15.0" fill="rgb(253,67,28)" rx="2" ry="2" />
<text text-anchor="" x="1063.69" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (6,365 samples, 16.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (6,365 samples, 16.62%)</title><rect x="969.8" y="401" width="196.1" height="15.0" fill="rgb(243,26,10)" rx="2" ry="2" />
<text text-anchor="" x="972.79" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::RawChannel:..</text>
</g>
<g class="func_g" onmouseover="s('free (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (30 samples, 0.08%)</title><rect x="439.9" y="449" width="0.9" height="15.0" fill="rgb(237,44,14)" rx="2" ry="2" />
<text text-anchor="" x="442.91" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.01%)</title><rect x="10.1" y="129" width="0.1" height="15.0" fill="rgb(218,162,29)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (5 samples, 0.01%)</title><rect x="756.5" y="241" width="0.1" height="15.0" fill="rgb(241,105,53)" rx="2" ry="2" />
<text text-anchor="" x="759.49" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (22 samples, 0.06%)</title><rect x="346.1" y="241" width="0.7" height="15.0" fill="rgb(226,66,17)" rx="2" ry="2" />
<text text-anchor="" x="349.09" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (6 samples, 0.02%)</title><rect x="186.5" y="369" width="0.2" height="15.0" fill="rgb(222,160,39)" rx="2" ry="2" />
<text text-anchor="" x="189.52" 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 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>drop_futex_key_refs.isra.14 (4 samples, 0.01%)</title><rect x="512.9" y="433" width="0.1" height="15.0" fill="rgb(241,10,36)" rx="2" ry="2" />
<text text-anchor="" x="515.90" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (64 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (64 samples, 0.17%)</title><rect x="199.0" y="257" width="2.0" height="15.0" fill="rgb(217,14,16)" rx="2" ry="2" />
<text text-anchor="" x="202.03" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (4 samples, 0.01%)</title><rect x="742.3" y="129" width="0.1" height="15.0" fill="rgb(209,28,1)" rx="2" ry="2" />
<text text-anchor="" x="745.32" 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 (64 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (64 samples, 0.17%)</title><rect x="199.0" y="321" width="2.0" height="15.0" fill="rgb(206,188,14)" rx="2" ry="2" />
<text text-anchor="" x="202.03" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (1,732 samples, 4.52%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1,732 samples, 4.52%)</title><rect x="302.1" y="321" width="53.4" height="15.0" fill="rgb(246,51,34)" rx="2" ry="2" />
<text text-anchor="" x="305.12" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_fu..</text>
</g>
<g class="func_g" onmouseover="s('path_put (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (29 samples, 0.08%)</title><rect x="672.5" y="385" width="0.9" height="15.0" fill="rgb(230,107,10)" rx="2" ry="2" />
<text text-anchor="" x="675.50" 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 (124 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (124 samples, 0.32%)</title><rect x="109.6" y="321" width="3.9" height="15.0" fill="rgb(253,81,53)" rx="2" ry="2" />
<text text-anchor="" x="112.64" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (13 samples, 0.03%)</title><rect x="201.7" y="417" width="0.4" height="15.0" fill="rgb(250,187,2)" rx="2" ry="2" />
<text text-anchor="" x="204.68" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__unqueue_futex (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__unqueue_futex (6 samples, 0.02%)</title><rect x="1060.2" y="177" width="0.1" height="15.0" fill="rgb(221,87,34)" rx="2" ry="2" />
<text text-anchor="" x="1063.16" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (59 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (59 samples, 0.15%)</title><rect x="787.1" y="273" width="1.8" height="15.0" fill="rgb(254,168,2)" rx="2" ry="2" />
<text text-anchor="" x="790.08" y="283.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (4 samples, 0.01%)</title><rect x="1116.1" y="129" width="0.2" height="15.0" fill="rgb(212,55,20)" rx="2" ry="2" />
<text text-anchor="" x="1119.15" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (51 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::RefCountedThreadSafeBase (51 samples, 0.13%)</title><rect x="838.5" y="417" width="1.6" height="15.0" fill="rgb(228,8,32)" rx="2" ry="2" />
<text text-anchor="" x="841.51" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (58 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (58 samples, 0.15%)</title><rect x="842.9" y="417" width="1.8" height="15.0" fill="rgb(220,54,22)" rx="2" ry="2" />
<text text-anchor="" x="845.91" 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 (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (17 samples, 0.04%)</title><rect x="202.2" y="401" width="0.5" height="15.0" fill="rgb(246,3,9)" rx="2" ry="2" />
<text text-anchor="" x="205.20" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (11 samples, 0.03%)</title><rect x="1102.5" y="65" width="0.4" height="15.0" fill="rgb(223,136,2)" rx="2" ry="2" />
<text text-anchor="" x="1105.53" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (1,386 samples, 3.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1,386 samples, 3.62%)</title><rect x="306.1" y="289" width="42.7" height="15.0" fill="rgb(229,15,53)" rx="2" ry="2" />
<text text-anchor="" x="309.12" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fute..</text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (15 samples, 0.04%)</title><rect x="540.3" y="337" width="0.5" height="15.0" fill="rgb(249,8,49)" rx="2" ry="2" />
<text text-anchor="" x="543.32" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (15 samples, 0.04%)</title><rect x="521.4" y="369" width="0.4" height="15.0" fill="rgb(224,206,50)" rx="2" ry="2" />
<text text-anchor="" x="524.37" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (234 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (234 samples, 0.61%)</title><rect x="329.0" y="241" width="7.2" height="15.0" fill="rgb(213,186,27)" rx="2" ry="2" />
<text text-anchor="" x="332.02" 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 (55 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (55 samples, 0.14%)</title><rect x="855.5" y="401" width="1.6" height="15.0" fill="rgb(218,198,11)" rx="2" ry="2" />
<text text-anchor="" x="858.45" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (86 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (86 samples, 0.22%)</title><rect x="991.0" y="353" width="2.6" height="15.0" fill="rgb(232,226,43)" rx="2" ry="2" />
<text text-anchor="" x="993.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (6 samples, 0.02%)</title><rect x="186.5" y="353" width="0.2" height="15.0" fill="rgb(225,178,36)" rx="2" ry="2" />
<text text-anchor="" x="189.52" y="363.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; (12 samples, 0.03%)')" 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; (12 samples, 0.03%)</title><rect x="444.6" y="417" width="0.4" height="15.0" fill="rgb(240,47,42)" rx="2" ry="2" />
<text text-anchor="" x="447.59" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (464 samples, 1.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (464 samples, 1.21%)</title><rect x="231.2" y="337" width="14.3" height="15.0" fill="rgb(229,168,35)" rx="2" ry="2" />
<text text-anchor="" x="234.22" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::Thread::ThreadMain (19,382 samples, 50.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::Thread::ThreadMain (19,382 samples, 50.61%)</title><rect x="592.8" y="513" width="597.2" height="15.0" fill="rgb(205,39,34)" rx="2" ry="2" />
<text text-anchor="" x="595.82" 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('operator delete (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (33 samples, 0.09%)</title><rect x="488.1" y="481" width="1.0" height="15.0" fill="rgb(241,66,28)" rx="2" ry="2" />
<text text-anchor="" x="491.06" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (18 samples, 0.05%)</title><rect x="803.4" y="305" width="0.5" height="15.0" fill="rgb(212,57,5)" rx="2" ry="2" />
<text text-anchor="" x="806.35" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (92 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (92 samples, 0.24%)</title><rect x="862.9" y="369" width="2.8" height="15.0" fill="rgb(249,91,15)" rx="2" ry="2" />
<text text-anchor="" x="865.88" 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 (236 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (236 samples, 0.62%)</title><rect x="1154.0" y="369" width="7.2" height="15.0" fill="rgb(211,104,49)" rx="2" ry="2" />
<text text-anchor="" x="1156.95" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (2,745 samples, 7.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (2,745 samples, 7.17%)</title><rect x="97.7" y="401" width="84.6" height="15.0" fill="rgb(207,154,13)" rx="2" ry="2" />
<text text-anchor="" x="100.69" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll_c..</text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (59 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (59 samples, 0.15%)</title><rect x="259.2" y="353" width="1.8" height="15.0" fill="rgb(211,96,28)" rx="2" ry="2" />
<text text-anchor="" x="262.17" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (641 samples, 1.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (641 samples, 1.67%)</title><rect x="748.7" y="257" width="19.8" height="15.0" fill="rgb(205,78,48)" rx="2" ry="2" />
<text text-anchor="" x="751.72" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_user (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (12 samples, 0.03%)</title><rect x="592.5" y="513" width="0.3" height="15.0" fill="rgb(237,94,23)" rx="2" ry="2" />
<text text-anchor="" x="595.45" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc@plt (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc@plt (4 samples, 0.01%)</title><rect x="481.5" y="481" width="0.2" height="15.0" fill="rgb(239,125,36)" rx="2" ry="2" />
<text text-anchor="" x="484.53" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (115 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (115 samples, 0.30%)</title><rect x="182.3" y="417" width="3.5" height="15.0" fill="rgb(234,131,15)" rx="2" ry="2" />
<text text-anchor="" x="185.26" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (11 samples, 0.03%)</title><rect x="481.8" y="481" width="0.4" height="15.0" fill="rgb(232,14,23)" rx="2" ry="2" />
<text text-anchor="" x="484.84" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (5 samples, 0.01%)</title><rect x="275.1" y="353" width="0.1" height="15.0" fill="rgb(229,189,21)" rx="2" ry="2" />
<text text-anchor="" x="278.07" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (6 samples, 0.02%)</title><rect x="198.3" y="497" width="0.2" height="15.0" fill="rgb(218,224,33)" rx="2" ry="2" />
<text text-anchor="" x="201.32" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('setup_new_exec (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_new_exec (4 samples, 0.01%)</title><rect x="10.0" y="449" width="0.1" height="15.0" fill="rgb(219,176,44)" 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('__schedule (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (12 samples, 0.03%)</title><rect x="592.5" y="497" width="0.3" height="15.0" fill="rgb(210,131,25)" rx="2" ry="2" />
<text text-anchor="" x="595.45" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (187 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (187 samples, 0.49%)</title><rect x="905.5" y="209" width="5.7" height="15.0" fill="rgb(227,197,20)" rx="2" ry="2" />
<text text-anchor="" x="908.46" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (6 samples, 0.02%)</title><rect x="161.2" y="241" width="0.1" height="15.0" fill="rgb(247,39,48)" rx="2" ry="2" />
<text text-anchor="" x="164.16" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('call_timer_fn (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>call_timer_fn (5 samples, 0.01%)</title><rect x="521.5" y="305" width="0.1" height="15.0" fill="rgb(249,198,27)" rx="2" ry="2" />
<text text-anchor="" x="524.46" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (95 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (95 samples, 0.25%)</title><rect x="85.4" y="417" width="2.9" height="15.0" fill="rgb(236,49,44)" rx="2" ry="2" />
<text text-anchor="" x="88.39" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('run_timer_softirq (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>run_timer_softirq (5 samples, 0.01%)</title><rect x="521.5" y="321" width="0.1" height="15.0" fill="rgb(207,160,25)" rx="2" ry="2" />
<text text-anchor="" x="524.46" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (19 samples, 0.05%)</title><rect x="986.8" y="369" width="0.6" height="15.0" fill="rgb(221,203,52)" rx="2" ry="2" />
<text text-anchor="" x="989.77" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="417" width="0.2" height="15.0" fill="rgb(207,125,45)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (65 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (65 samples, 0.17%)</title><rect x="1127.6" y="145" width="2.0" height="15.0" fill="rgb(238,152,32)" rx="2" ry="2" />
<text text-anchor="" x="1130.58" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (65 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (65 samples, 0.17%)</title><rect x="627.1" y="433" width="2.0" height="15.0" fill="rgb(252,207,14)" rx="2" ry="2" />
<text text-anchor="" x="630.08" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (12 samples, 0.03%)</title><rect x="902.2" y="241" width="0.4" height="15.0" fill="rgb(249,74,14)" rx="2" ry="2" />
<text text-anchor="" x="905.19" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (18 samples, 0.05%)</title><rect x="871.5" y="369" width="0.6" height="15.0" fill="rgb(217,89,42)" rx="2" ry="2" />
<text text-anchor="" x="874.54" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pm_relax (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (10 samples, 0.03%)</title><rect x="710.1" y="353" width="0.3" height="15.0" fill="rgb(207,141,2)" rx="2" ry="2" />
<text text-anchor="" x="713.09" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::WaitableEvent::Wait (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::WaitableEvent::Wait (5 samples, 0.01%)</title><rect x="370.0" y="321" width="0.2" height="15.0" fill="rgb(226,115,4)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="331.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (12 samples, 0.03%)</title><rect x="506.9" y="497" width="0.3" height="15.0" fill="rgb(236,16,50)" rx="2" ry="2" />
<text text-anchor="" x="509.86" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (24 samples, 0.06%)</title><rect x="864.7" y="337" width="0.7" height="15.0" fill="rgb(222,55,11)" rx="2" ry="2" />
<text text-anchor="" x="867.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('insert_work (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>insert_work (4 samples, 0.01%)</title><rect x="742.3" y="177" width="0.1" height="15.0" fill="rgb(207,14,9)" rx="2" ry="2" />
<text text-anchor="" x="745.32" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_init (35 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_init (35 samples, 0.09%)</title><rect x="555.8" y="513" width="1.0" height="15.0" fill="rgb(244,197,29)" rx="2" ry="2" />
<text text-anchor="" x="558.76" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (13 samples, 0.03%)</title><rect x="348.4" y="257" width="0.4" height="15.0" fill="rgb(239,9,46)" rx="2" ry="2" />
<text text-anchor="" x="351.43" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (8 samples, 0.02%)</title><rect x="24.9" y="497" width="0.3" height="15.0" fill="rgb(236,214,16)" rx="2" ry="2" />
<text text-anchor="" x="27.94" 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 (179 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (179 samples, 0.47%)</title><rect x="795.8" y="241" width="5.5" height="15.0" fill="rgb(249,203,27)" rx="2" ry="2" />
<text text-anchor="" x="798.83" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (31 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (31 samples, 0.08%)</title><rect x="326.2" y="161" width="0.9" height="15.0" fill="rgb(216,56,16)" rx="2" ry="2" />
<text text-anchor="" x="329.18" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (51 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (51 samples, 0.13%)</title><rect x="1114.5" y="81" width="1.5" height="15.0" fill="rgb(223,23,27)" rx="2" ry="2" />
<text text-anchor="" x="1117.45" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (6 samples, 0.02%)</title><rect x="26.0" y="513" width="0.2" height="15.0" fill="rgb(238,103,37)" rx="2" ry="2" />
<text text-anchor="" x="28.99" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (57 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (57 samples, 0.15%)</title><rect x="14.2" y="513" width="1.7" height="15.0" fill="rgb(216,17,32)" rx="2" ry="2" />
<text text-anchor="" x="17.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (1,267 samples, 3.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1,267 samples, 3.31%)</title><rect x="309.8" y="273" width="39.0" height="15.0" fill="rgb(232,208,37)" rx="2" ry="2" />
<text text-anchor="" x="312.79" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sch..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (112 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (112 samples, 0.29%)</title><rect x="982.3" y="369" width="3.4" height="15.0" fill="rgb(245,117,21)" rx="2" ry="2" />
<text text-anchor="" x="985.27" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (9 samples, 0.02%)</title><rect x="423.7" y="497" width="0.3" height="15.0" fill="rgb(207,61,26)" rx="2" ry="2" />
<text text-anchor="" x="426.70" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (32 samples, 0.08%)</title><rect x="352.0" y="273" width="1.0" height="15.0" fill="rgb(234,160,31)" rx="2" ry="2" />
<text text-anchor="" x="355.03" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (74 samples, 0.19%)</title><rect x="598.2" y="449" width="2.3" height="15.0" fill="rgb(210,82,1)" rx="2" ry="2" />
<text text-anchor="" x="601.18" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (6 samples, 0.02%)</title><rect x="549.9" y="401" width="0.2" height="15.0" fill="rgb(208,184,1)" rx="2" ry="2" />
<text text-anchor="" x="552.93" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (5 samples, 0.01%)</title><rect x="114.1" y="321" width="0.1" height="15.0" fill="rgb(220,222,25)" rx="2" ry="2" />
<text text-anchor="" x="117.08" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.01%)</title><rect x="582.9" y="497" width="0.2" height="15.0" fill="rgb(227,142,17)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="507.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 (88 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (88 samples, 0.23%)</title><rect x="473.0" y="433" width="2.7" height="15.0" fill="rgb(224,163,51)" rx="2" ry="2" />
<text text-anchor="" x="476.03" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (14 samples, 0.04%)</title><rect x="299.3" y="321" width="0.4" height="15.0" fill="rgb(230,208,3)" rx="2" ry="2" />
<text text-anchor="" x="302.25" 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 (60 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (60 samples, 0.16%)</title><rect x="147.2" y="241" width="1.9" height="15.0" fill="rgb(218,122,13)" rx="2" ry="2" />
<text text-anchor="" x="150.23" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Wait (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Wait (48 samples, 0.13%)</title><rect x="490.1" y="513" width="1.5" height="15.0" fill="rgb(247,151,6)" rx="2" ry="2" />
<text text-anchor="" x="493.10" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (58 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (58 samples, 0.15%)</title><rect x="336.2" y="241" width="1.8" height="15.0" fill="rgb(205,113,33)" rx="2" ry="2" />
<text text-anchor="" x="339.23" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('call_timer_fn (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>call_timer_fn (4 samples, 0.01%)</title><rect x="742.3" y="225" width="0.1" height="15.0" fill="rgb(230,78,26)" rx="2" ry="2" />
<text text-anchor="" x="745.32" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (3,285 samples, 8.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (3,285 samples, 8.58%)</title><rect x="1029.2" y="225" width="101.2" height="15.0" fill="rgb(217,109,6)" rx="2" ry="2" />
<text text-anchor="" x="1032.23" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_futex</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (74 samples, 0.19%)</title><rect x="655.6" y="401" width="2.3" height="15.0" fill="rgb(245,167,7)" rx="2" ry="2" />
<text text-anchor="" x="658.61" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (68 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (68 samples, 0.18%)</title><rect x="14.0" y="529" width="2.1" height="15.0" fill="rgb(254,196,3)" rx="2" ry="2" />
<text text-anchor="" x="17.04" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (16 samples, 0.04%)</title><rect x="450.9" y="481" width="0.5" height="15.0" fill="rgb(222,153,35)" rx="2" ry="2" />
<text text-anchor="" x="453.94" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (4 samples, 0.01%)</title><rect x="464.3" y="465" width="0.1" height="15.0" fill="rgb(224,120,38)" rx="2" ry="2" />
<text text-anchor="" x="467.28" 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 (163 samples, 0.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (163 samples, 0.43%)</title><rect x="294.7" y="337" width="5.0" height="15.0" fill="rgb(251,39,52)" rx="2" ry="2" />
<text text-anchor="" x="297.66" 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 (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (48 samples, 0.13%)</title><rect x="338.4" y="209" width="1.4" height="15.0" fill="rgb(235,33,20)" rx="2" ry="2" />
<text text-anchor="" x="341.35" y="219.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 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (10 samples, 0.03%)</title><rect x="218.5" y="353" width="0.3" height="15.0" fill="rgb(238,56,28)" rx="2" ry="2" />
<text text-anchor="" x="221.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (5 samples, 0.01%)</title><rect x="159.8" y="257" width="0.1" height="15.0" fill="rgb(249,90,6)" rx="2" ry="2" />
<text text-anchor="" x="162.77" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (24 samples, 0.06%)</title><rect x="245.6" y="337" width="0.8" height="15.0" fill="rgb(253,135,54)" rx="2" ry="2" />
<text text-anchor="" x="248.61" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (32 samples, 0.08%)</title><rect x="794.6" y="225" width="1.0" height="15.0" fill="rgb(232,127,32)" rx="2" ry="2" />
<text text-anchor="" x="797.60" y="235.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.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (28 samples, 0.07%)</title><rect x="366.9" y="385" width="0.8" height="15.0" fill="rgb(233,14,53)" rx="2" ry="2" />
<text text-anchor="" x="369.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (5 samples, 0.01%)</title><rect x="97.5" y="401" width="0.2" height="15.0" fill="rgb(220,177,2)" rx="2" ry="2" />
<text text-anchor="" x="100.50" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (48 samples, 0.13%)</title><rect x="210.9" y="369" width="1.5" height="15.0" fill="rgb(253,125,17)" rx="2" ry="2" />
<text text-anchor="" x="213.89" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (24 samples, 0.06%)</title><rect x="756.6" y="241" width="0.8" height="15.0" fill="rgb(232,146,34)" rx="2" ry="2" />
<text text-anchor="" x="759.64" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (153 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (153 samples, 0.40%)</title><rect x="923.9" y="161" width="4.7" height="15.0" fill="rgb(212,53,11)" rx="2" ry="2" />
<text text-anchor="" x="926.85" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (3,569 samples, 9.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (3,569 samples, 9.32%)</title><rect x="254.6" y="385" width="110.0" height="15.0" fill="rgb(244,9,29)" rx="2" ry="2" />
<text text-anchor="" x="257.64" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system:..</text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (170 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (170 samples, 0.44%)</title><rect x="501.6" y="497" width="5.3" height="15.0" fill="rgb(248,44,39)" rx="2" ry="2" />
<text text-anchor="" x="504.62" 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_out (174 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (174 samples, 0.45%)</title><rect x="542.5" y="385" width="5.4" height="15.0" fill="rgb(227,102,43)" rx="2" ry="2" />
<text text-anchor="" x="545.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (41 samples, 0.11%)</title><rect x="657.9" y="417" width="1.3" height="15.0" fill="rgb(230,138,30)" rx="2" ry="2" />
<text text-anchor="" x="660.89" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (8 samples, 0.02%)</title><rect x="795.6" y="241" width="0.2" height="15.0" fill="rgb(209,89,14)" rx="2" ry="2" />
<text text-anchor="" x="798.59" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_enable_asynccancel (96 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (96 samples, 0.25%)</title><rect x="821.9" y="433" width="2.9" height="15.0" fill="rgb(235,135,30)" rx="2" ry="2" />
<text text-anchor="" x="824.87" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_value_locked (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_value_locked (4 samples, 0.01%)</title><rect x="354.7" y="273" width="0.1" height="15.0" fill="rgb(230,83,28)" rx="2" ry="2" />
<text text-anchor="" x="357.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_idle (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (16 samples, 0.04%)</title><rect x="807.2" y="321" width="0.5" height="15.0" fill="rgb(254,128,9)" rx="2" ry="2" />
<text text-anchor="" x="810.17" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (71 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (71 samples, 0.19%)</title><rect x="962.8" y="385" width="2.2" height="15.0" fill="rgb(236,98,9)" rx="2" ry="2" />
<text text-anchor="" x="965.77" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (28 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (28 samples, 0.07%)</title><rect x="253.3" y="385" width="0.9" height="15.0" fill="rgb(250,63,25)" rx="2" ry="2" />
<text text-anchor="" x="256.35" y="395.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (7 samples, 0.02%)</title><rect x="1089.2" y="81" width="0.3" height="15.0" fill="rgb(253,201,48)" rx="2" ry="2" />
<text text-anchor="" x="1092.25" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (5 samples, 0.01%)</title><rect x="889.8" y="273" width="0.1" height="15.0" fill="rgb(233,181,18)" rx="2" ry="2" />
<text text-anchor="" x="892.78" y="283.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 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (10 samples, 0.03%)</title><rect x="786.1" y="273" width="0.3" height="15.0" fill="rgb(205,104,6)" rx="2" ry="2" />
<text text-anchor="" x="789.10" 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 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (5 samples, 0.01%)</title><rect x="331.2" y="209" width="0.1" height="15.0" fill="rgb(220,112,6)" rx="2" ry="2" />
<text text-anchor="" x="334.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (10 samples, 0.03%)</title><rect x="958.4" y="337" width="0.3" height="15.0" fill="rgb(249,55,24)" rx="2" ry="2" />
<text text-anchor="" x="961.36" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (15 samples, 0.04%)</title><rect x="245.0" y="321" width="0.5" height="15.0" fill="rgb(235,91,35)" rx="2" ry="2" />
<text text-anchor="" x="248.03" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (69 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (69 samples, 0.18%)</title><rect x="831.2" y="417" width="2.1" height="15.0" fill="rgb(238,100,13)" rx="2" ry="2" />
<text text-anchor="" x="834.21" y="427.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (7 samples, 0.02%)</title><rect x="631.1" y="449" width="0.2" height="15.0" fill="rgb(212,96,37)" rx="2" ry="2" />
<text text-anchor="" x="634.12" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (768 samples, 2.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (768 samples, 2.01%)</title><rect x="69.2" y="449" width="23.7" height="15.0" fill="rgb(252,216,22)" rx="2" ry="2" />
<text text-anchor="" x="72.19" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (13 samples, 0.03%)</title><rect x="742.5" y="225" width="0.4" height="15.0" fill="rgb(224,183,50)" rx="2" ry="2" />
<text text-anchor="" x="745.50" y="235.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 (27 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (27 samples, 0.07%)</title><rect x="785.3" y="257" width="0.8" height="15.0" fill="rgb(228,197,26)" rx="2" ry="2" />
<text text-anchor="" x="788.27" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_careful (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (12 samples, 0.03%)</title><rect x="592.5" y="529" width="0.3" height="15.0" fill="rgb(241,143,27)" rx="2" ry="2" />
<text text-anchor="" x="595.45" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (9 samples, 0.02%)</title><rect x="952.9" y="321" width="0.3" height="15.0" fill="rgb(241,63,19)" rx="2" ry="2" />
<text text-anchor="" x="955.91" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (11 samples, 0.03%)</title><rect x="439.2" y="449" width="0.3" height="15.0" fill="rgb(250,164,16)" rx="2" ry="2" />
<text text-anchor="" x="442.20" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="513" width="0.2" height="15.0" fill="rgb(205,79,32)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (72 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (72 samples, 0.19%)</title><rect x="208.5" y="369" width="2.3" height="15.0" fill="rgb(211,102,46)" rx="2" ry="2" />
<text text-anchor="" x="211.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (635 samples, 1.66%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (635 samples, 1.66%)</title><rect x="913.7" y="209" width="19.6" height="15.0" fill="rgb(235,128,34)" rx="2" ry="2" />
<text text-anchor="" x="916.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (128 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (128 samples, 0.33%)</title><rect x="64.8" y="433" width="4.0" height="15.0" fill="rgb(241,172,43)" rx="2" ry="2" />
<text text-anchor="" x="67.81" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (134 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (134 samples, 0.35%)</title><rect x="810.7" y="385" width="4.1" height="15.0" fill="rgb(223,25,44)" rx="2" ry="2" />
<text text-anchor="" x="813.69" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (5 samples, 0.01%)</title><rect x="521.7" y="305" width="0.1" height="15.0" fill="rgb(252,15,28)" rx="2" ry="2" />
<text text-anchor="" x="524.68" 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 (79 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (79 samples, 0.21%)</title><rect x="753.8" y="241" width="2.4" height="15.0" fill="rgb(226,113,51)" rx="2" ry="2" />
<text text-anchor="" x="756.78" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (4 samples, 0.01%)</title><rect x="933.0" y="161" width="0.1" height="15.0" fill="rgb(222,30,43)" rx="2" ry="2" />
<text text-anchor="" x="936.01" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('target_load (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>target_load (4 samples, 0.01%)</title><rect x="127.8" y="321" width="0.1" height="15.0" fill="rgb(232,217,35)" rx="2" ry="2" />
<text text-anchor="" x="130.79" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (31 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (31 samples, 0.08%)</title><rect x="534.4" y="337" width="1.0" height="15.0" fill="rgb(235,220,11)" rx="2" ry="2" />
<text text-anchor="" x="537.43" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_getpeersec_dgram (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_getpeersec_dgram (11 samples, 0.03%)</title><rect x="47.8" y="465" width="0.3" height="15.0" fill="rgb(219,48,12)" rx="2" ry="2" />
<text text-anchor="" x="50.77" 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 (281 samples, 0.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (281 samples, 0.73%)</title><rect x="902.6" y="241" width="8.6" height="15.0" fill="rgb(220,88,42)" rx="2" ry="2" />
<text text-anchor="" x="905.56" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (57 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (57 samples, 0.15%)</title><rect x="1187.9" y="433" width="1.8" height="15.0" fill="rgb(218,191,22)" rx="2" ry="2" />
<text text-anchor="" x="1190.94" 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 (176 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (176 samples, 0.46%)</title><rect x="330.8" y="225" width="5.4" height="15.0" fill="rgb(248,24,33)" rx="2" ry="2" />
<text text-anchor="" x="333.80" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('delayed_work_timer_fn (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>delayed_work_timer_fn (4 samples, 0.01%)</title><rect x="521.5" y="289" width="0.1" height="15.0" fill="rgb(252,214,38)" rx="2" ry="2" />
<text text-anchor="" x="524.46" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (11 samples, 0.03%)</title><rect x="676.5" y="417" width="0.3" height="15.0" fill="rgb(246,105,47)" rx="2" ry="2" />
<text text-anchor="" x="679.50" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (10 samples, 0.03%)</title><rect x="38.4" y="465" width="0.3" height="15.0" fill="rgb(251,152,3)" rx="2" ry="2" />
<text text-anchor="" x="41.41" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (17 samples, 0.04%)</title><rect x="234.2" y="305" width="0.5" height="15.0" fill="rgb(214,10,10)" rx="2" ry="2" />
<text text-anchor="" x="237.21" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (7 samples, 0.02%)</title><rect x="13.8" y="529" width="0.2" height="15.0" fill="rgb(251,77,50)" rx="2" ry="2" />
<text text-anchor="" x="16.82" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (7 samples, 0.02%)</title><rect x="314.6" y="161" width="0.2" height="15.0" fill="rgb(230,96,23)" rx="2" ry="2" />
<text text-anchor="" x="317.57" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (74 samples, 0.19%)</title><rect x="655.6" y="417" width="2.3" height="15.0" fill="rgb(216,18,4)" rx="2" ry="2" />
<text text-anchor="" x="658.61" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (26 samples, 0.07%)</title><rect x="624.1" y="433" width="0.8" height="15.0" fill="rgb(232,229,24)" rx="2" ry="2" />
<text text-anchor="" x="627.06" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (86 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (86 samples, 0.22%)</title><rect x="544.8" y="337" width="2.6" height="15.0" fill="rgb(209,42,16)" rx="2" ry="2" />
<text text-anchor="" x="547.76" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestCase::Run (5,488 samples, 14.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestCase::Run (5,488 samples, 14.33%)</title><rect x="201.2" y="465" width="169.0" height="15.0" fill="rgb(240,165,21)" rx="2" ry="2" />
<text text-anchor="" x="204.15" 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('base::subtle::RefCountedThreadSafeBase::AddRef (120 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (120 samples, 0.31%)</title><rect x="994.8" y="337" width="3.6" height="15.0" fill="rgb(230,83,22)" rx="2" ry="2" />
<text text-anchor="" x="997.75" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base:: (19,382 samples, 50.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>base:: (19,382 samples, 50.61%)</title><rect x="592.8" y="529" width="597.2" height="15.0" fill="rgb(230,97,3)" rx="2" ry="2" />
<text text-anchor="" x="595.82" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::</text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (67 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (67 samples, 0.17%)</title><rect x="463.8" y="497" width="2.1" height="15.0" fill="rgb(252,55,23)" rx="2" ry="2" />
<text text-anchor="" x="466.85" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.01%)</title><rect x="10.0" y="545" width="0.1" height="15.0" fill="rgb(215,15,0)" 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('system_call_fastpath (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.01%)</title><rect x="370.0" y="289" width="0.1" height="15.0" fill="rgb(211,201,8)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="299.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.01%)</title><rect x="582.9" y="433" width="0.2" height="15.0" fill="rgb(218,46,1)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::RemoveAwakable (237 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (237 samples, 0.62%)</title><rect x="482.8" y="513" width="7.3" height="15.0" fill="rgb(243,195,1)" rx="2" ry="2" />
<text text-anchor="" x="485.79" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (44 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (44 samples, 0.11%)</title><rect x="1152.2" y="369" width="1.3" height="15.0" fill="rgb(228,203,47)" rx="2" ry="2" />
<text text-anchor="" x="1155.16" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (38 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (38 samples, 0.10%)</title><rect x="226.6" y="353" width="1.1" height="15.0" fill="rgb(235,137,50)" rx="2" ry="2" />
<text text-anchor="" x="229.57" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (324 samples, 0.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (324 samples, 0.85%)</title><rect x="317.6" y="193" width="10.0" height="15.0" fill="rgb(236,46,35)" rx="2" ry="2" />
<text text-anchor="" x="320.59" 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::OnReadMessage (46 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (46 samples, 0.12%)</title><rect x="1145.3" y="337" width="1.4" height="15.0" fill="rgb(207,31,13)" rx="2" ry="2" />
<text text-anchor="" x="1148.32" 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 (79 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (79 samples, 0.21%)</title><rect x="1024.6" y="225" width="2.4" height="15.0" fill="rgb(223,205,30)" rx="2" ry="2" />
<text text-anchor="" x="1027.58" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (26 samples, 0.07%)</title><rect x="1146.7" y="337" width="0.8" height="15.0" fill="rgb(228,142,43)" rx="2" ry="2" />
<text text-anchor="" x="1149.74" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (16 samples, 0.04%)</title><rect x="672.9" y="369" width="0.5" height="15.0" fill="rgb(225,45,10)" rx="2" ry="2" />
<text text-anchor="" x="675.90" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (11 samples, 0.03%)</title><rect x="274.7" y="337" width="0.4" height="15.0" fill="rgb(215,123,9)" rx="2" ry="2" />
<text text-anchor="" x="277.73" 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 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (8 samples, 0.02%)</title><rect x="1069.5" y="113" width="0.2" height="15.0" fill="rgb(207,213,10)" rx="2" ry="2" />
<text text-anchor="" x="1072.50" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (12 samples, 0.03%)</title><rect x="300.5" y="353" width="0.3" height="15.0" fill="rgb(233,37,39)" rx="2" ry="2" />
<text text-anchor="" x="303.46" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (1,113 samples, 2.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1,113 samples, 2.91%)</title><rect x="128.1" y="305" width="34.3" height="15.0" fill="rgb(208,91,49)" rx="2" ry="2" />
<text text-anchor="" x="131.13" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ac..</text>
</g>
<g class="func_g" onmouseover="s('fput (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (25 samples, 0.07%)</title><rect x="949.9" y="321" width="0.8" height="15.0" fill="rgb(247,50,52)" rx="2" ry="2" />
<text text-anchor="" x="952.92" 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::RemoveAwakable (217 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (217 samples, 0.57%)</title><rect x="275.5" y="369" width="6.7" height="15.0" fill="rgb(206,130,26)" rx="2" ry="2" />
<text text-anchor="" x="278.47" y="379.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 (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (13 samples, 0.03%)</title><rect x="592.4" y="545" width="0.4" height="15.0" fill="rgb(222,56,53)" rx="2" ry="2" />
<text text-anchor="" x="595.42" y="555.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (5 samples, 0.01%)</title><rect x="10.1" y="289" width="0.2" height="15.0" fill="rgb(243,116,24)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (77 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (77 samples, 0.20%)</title><rect x="537.9" y="337" width="2.4" height="15.0" fill="rgb(214,46,51)" rx="2" ry="2" />
<text text-anchor="" x="540.95" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.03%)</title><rect x="685.9" y="385" width="0.3" height="15.0" fill="rgb(249,63,41)" rx="2" ry="2" />
<text text-anchor="" x="688.87" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelWrite (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelWrite (22 samples, 0.06%)</title><rect x="236.9" y="305" width="0.6" height="15.0" fill="rgb(248,14,32)" rx="2" ry="2" />
<text text-anchor="" x="239.86" 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::RemoveAwakable (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (30 samples, 0.08%)</title><rect x="272.1" y="369" width="1.0" height="15.0" fill="rgb(214,206,18)" rx="2" ry="2" />
<text text-anchor="" x="275.14" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (6 samples, 0.02%)</title><rect x="465.3" y="449" width="0.2" height="15.0" fill="rgb(245,223,13)" rx="2" ry="2" />
<text text-anchor="" x="468.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (10 samples, 0.03%)</title><rect x="1148.4" y="353" width="0.3" height="15.0" fill="rgb(229,214,34)" rx="2" ry="2" />
<text text-anchor="" x="1151.41" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (7 samples, 0.02%)</title><rect x="219.5" y="369" width="0.2" height="15.0" fill="rgb(215,63,48)" rx="2" ry="2" />
<text text-anchor="" x="222.48" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (280 samples, 0.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (280 samples, 0.73%)</title><rect x="881.2" y="273" width="8.6" height="15.0" fill="rgb(235,36,20)" rx="2" ry="2" />
<text text-anchor="" x="884.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::AwakableList::AwakeForStateChange (4,155 samples, 10.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (4,155 samples, 10.85%)</title><rect x="1008.2" y="289" width="128.1" height="15.0" fill="rgb(249,124,16)" rx="2" ry="2" />
<text text-anchor="" x="1011.25" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Aw..</text>
</g>
<g class="func_g" onmouseover="s('auditsys (40 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (40 samples, 0.10%)</title><rect x="257.6" y="353" width="1.2" height="15.0" fill="rgb(232,100,0)" rx="2" ry="2" />
<text text-anchor="" x="260.57" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (10 samples, 0.03%)</title><rect x="801.4" y="257" width="0.3" height="15.0" fill="rgb(241,189,8)" rx="2" ry="2" />
<text text-anchor="" x="804.41" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (79 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (79 samples, 0.21%)</title><rect x="568.2" y="529" width="2.4" height="15.0" fill="rgb(219,58,1)" rx="2" ry="2" />
<text text-anchor="" x="571.20" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (6 samples, 0.02%)</title><rect x="547.4" y="337" width="0.2" height="15.0" fill="rgb(232,107,52)" rx="2" ry="2" />
<text text-anchor="" x="550.44" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.01%)</title><rect x="10.1" y="97" width="0.1" height="15.0" fill="rgb(252,105,36)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (6 samples, 0.02%)</title><rect x="530.4" y="305" width="0.2" height="15.0" fill="rgb(224,219,8)" rx="2" ry="2" />
<text text-anchor="" x="533.37" 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 (100 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (100 samples, 0.26%)</title><rect x="341.2" y="145" width="3.1" height="15.0" fill="rgb(214,11,54)" rx="2" ry="2" />
<text text-anchor="" x="344.19" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_queue_me (65 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (65 samples, 0.17%)</title><rect x="199.0" y="385" width="2.0" height="15.0" fill="rgb(206,145,1)" rx="2" ry="2" />
<text text-anchor="" x="201.99" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (21 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (21 samples, 0.05%)</title><rect x="854.7" y="369" width="0.6" height="15.0" fill="rgb(232,35,53)" rx="2" ry="2" />
<text text-anchor="" x="857.68" 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_usercnt (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_unlock_usercnt (17 samples, 0.04%)</title><rect x="479.0" y="513" width="0.5" height="15.0" fill="rgb(242,71,13)" rx="2" ry="2" />
<text text-anchor="" x="481.97" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (27 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (27 samples, 0.07%)</title><rect x="10.5" y="513" width="0.8" height="15.0" fill="rgb(240,196,18)" rx="2" ry="2" />
<text text-anchor="" x="13.49" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (152 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (152 samples, 0.40%)</title><rect x="953.6" y="305" width="4.7" height="15.0" fill="rgb(229,72,42)" rx="2" ry="2" />
<text text-anchor="" x="956.65" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (3,743 samples, 9.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (3,743 samples, 9.77%)</title><rect x="1015.3" y="273" width="115.4" height="15.0" fill="rgb(212,25,43)" rx="2" ry="2" />
<text text-anchor="" x="1018.33" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthread_cond_s..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (24 samples, 0.06%)</title><rect x="927.8" y="129" width="0.8" height="15.0" fill="rgb(236,216,20)" rx="2" ry="2" />
<text text-anchor="" x="930.83" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="449" width="0.2" height="15.0" fill="rgb(211,205,51)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (74 samples, 0.19%)</title><rect x="655.6" y="321" width="2.3" height="15.0" fill="rgb(244,84,4)" rx="2" ry="2" />
<text text-anchor="" x="658.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (145 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (145 samples, 0.38%)</title><rect x="866.9" y="353" width="4.5" height="15.0" fill="rgb(208,72,38)" rx="2" ry="2" />
<text text-anchor="" x="869.92" 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 (1,761 samples, 4.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1,761 samples, 4.60%)</title><rect x="301.3" y="353" width="54.2" height="15.0" fill="rgb(228,31,47)" rx="2" ry="2" />
<text text-anchor="" x="304.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >syste..</text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (22 samples, 0.06%)</title><rect x="550.4" y="401" width="0.7" height="15.0" fill="rgb(205,122,46)" rx="2" ry="2" />
<text text-anchor="" x="553.43" y="411.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.01%)</title><rect x="370.0" y="97" width="0.1" height="15.0" fill="rgb(223,185,40)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (36 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (36 samples, 0.09%)</title><rect x="476.3" y="513" width="1.1" height="15.0" fill="rgb(215,113,51)" rx="2" ry="2" />
<text text-anchor="" x="479.32" y="523.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.01%)</title><rect x="370.0" y="225" width="0.1" height="15.0" fill="rgb(213,1,49)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::internal::UnitTestImpl::RunAllTests (5,488 samples, 14.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::internal::UnitTestImpl::RunAllTests (5,488 samples, 14.33%)</title><rect x="201.2" y="481" width="169.0" height="15.0" fill="rgb(226,111,40)" rx="2" ry="2" />
<text text-anchor="" x="204.15" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::internal::Un..</text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg (4,958 samples, 12.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (4,958 samples, 12.95%)</title><rect x="35.0" y="481" width="152.8" height="15.0" fill="rgb(218,27,20)" rx="2" ry="2" />
<text text-anchor="" x="38.02" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_sendmsg</text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (63 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (63 samples, 0.16%)</title><rect x="656.0" y="273" width="1.9" height="15.0" fill="rgb(252,166,3)" rx="2" ry="2" />
<text text-anchor="" x="658.95" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (270 samples, 0.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (270 samples, 0.70%)</title><rect x="18.2" y="529" width="8.3" height="15.0" fill="rgb(243,146,30)" rx="2" ry="2" />
<text text-anchor="" x="21.16" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (1,109 samples, 2.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (1,109 samples, 2.90%)</title><rect x="128.2" y="289" width="34.1" height="15.0" fill="rgb(241,91,38)" rx="2" ry="2" />
<text text-anchor="" x="131.16" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (6 samples, 0.02%)</title><rect x="229.4" y="353" width="0.2" height="15.0" fill="rgb(235,36,31)" rx="2" ry="2" />
<text text-anchor="" x="232.41" 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,796 samples, 7.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (2,796 samples, 7.30%)</title><rect x="872.8" y="353" width="86.2" height="15.0" fill="rgb(210,91,39)" rx="2" ry="2" />
<text text-anchor="" x="875.83" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_recvmsg</text>
</g>
<g class="func_g" onmouseover="s('ksize (116 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (116 samples, 0.30%)</title><rect x="88.3" y="417" width="3.6" height="15.0" fill="rgb(225,81,50)" rx="2" ry="2" />
<text text-anchor="" x="91.32" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (1,514 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1,514 samples, 3.95%)</title><rect x="508.8" y="465" width="46.6" height="15.0" fill="rgb(252,173,32)" rx="2" ry="2" />
<text text-anchor="" x="511.77" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_f..</text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (65 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (65 samples, 0.17%)</title><rect x="1148.9" y="337" width="2.0" height="15.0" fill="rgb(206,6,34)" rx="2" ry="2" />
<text text-anchor="" x="1151.90" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (12 samples, 0.03%)</title><rect x="770.6" y="209" width="0.3" height="15.0" fill="rgb(215,173,21)" rx="2" ry="2" />
<text text-anchor="" x="773.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (32 samples, 0.08%)</title><rect x="161.3" y="241" width="1.0" height="15.0" fill="rgb(221,112,53)" rx="2" ry="2" />
<text text-anchor="" x="164.34" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (24 samples, 0.06%)</title><rect x="548.9" y="385" width="0.8" height="15.0" fill="rgb(215,202,27)" rx="2" ry="2" />
<text text-anchor="" x="551.92" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmalloc_slab (51 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (51 samples, 0.13%)</title><rect x="83.8" y="401" width="1.6" height="15.0" fill="rgb(230,35,54)" rx="2" ry="2" />
<text text-anchor="" x="86.82" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (11 samples, 0.03%)</title><rect x="314.5" y="225" width="0.3" height="15.0" fill="rgb(228,176,26)" rx="2" ry="2" />
<text text-anchor="" x="317.47" 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 (40 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (40 samples, 0.10%)</title><rect x="11.3" y="513" width="1.3" height="15.0" fill="rgb(225,34,6)" rx="2" ry="2" />
<text text-anchor="" x="14.32" y="523.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; (7 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; (7 samples, 0.02%)</title><rect x="445.0" y="433" width="0.2" height="15.0" fill="rgb(249,223,13)" rx="2" ry="2" />
<text text-anchor="" x="447.96" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_recvmsg (88 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recvmsg (88 samples, 0.23%)</title><rect x="959.0" y="385" width="2.7" height="15.0" fill="rgb(230,96,17)" rx="2" ry="2" />
<text text-anchor="" x="961.98" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_init@plt (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_init@plt (5 samples, 0.01%)</title><rect x="286.0" y="353" width="0.1" height="15.0" fill="rgb(233,16,34)" rx="2" ry="2" />
<text text-anchor="" x="288.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 (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (19 samples, 0.05%)</title><rect x="1030.7" y="209" width="0.6" height="15.0" fill="rgb(213,184,21)" rx="2" ry="2" />
<text text-anchor="" x="1033.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (141 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (141 samples, 0.37%)</title><rect x="543.3" y="353" width="4.3" height="15.0" fill="rgb(253,116,36)" rx="2" ry="2" />
<text text-anchor="" x="546.28" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (1,749 samples, 4.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1,749 samples, 4.57%)</title><rect x="301.7" y="337" width="53.8" height="15.0" fill="rgb(220,37,26)" rx="2" ry="2" />
<text text-anchor="" x="304.66" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_f..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (174 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (174 samples, 0.45%)</title><rect x="556.9" y="513" width="5.3" height="15.0" fill="rgb(230,136,21)" rx="2" ry="2" />
<text text-anchor="" x="559.86" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (29 samples, 0.08%)</title><rect x="541.3" y="369" width="0.9" height="15.0" fill="rgb(222,222,54)" rx="2" ry="2" />
<text text-anchor="" x="544.27" 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 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (5 samples, 0.01%)</title><rect x="267.9" y="305" width="0.2" height="15.0" fill="rgb(244,183,3)" rx="2" ry="2" />
<text text-anchor="" x="270.95" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_destroy (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_destroy (5 samples, 0.01%)</title><rect x="284.7" y="353" width="0.1" height="15.0" fill="rgb(216,86,7)" rx="2" ry="2" />
<text text-anchor="" x="287.68" y="363.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 (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (24 samples, 0.06%)</title><rect x="425.1" y="513" width="0.7" height="15.0" fill="rgb(205,152,35)" rx="2" ry="2" />
<text text-anchor="" x="428.09" y="523.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>retint_careful (4 samples, 0.01%)</title><rect x="371.3" y="529" width="0.1" height="15.0" fill="rgb(245,95,36)" rx="2" ry="2" />
<text text-anchor="" x="374.29" 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 (5,498 samples, 14.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (5,498 samples, 14.36%)</title><rect x="29.3" y="529" width="169.4" height="15.0" fill="rgb(213,165,18)" rx="2" ry="2" />
<text text-anchor="" x="32.35" 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('sysret_signal (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (4 samples, 0.01%)</title><rect x="300.3" y="353" width="0.2" height="15.0" fill="rgb(214,96,14)" rx="2" ry="2" />
<text text-anchor="" x="303.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (275 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (275 samples, 0.72%)</title><rect x="467.3" y="449" width="8.4" height="15.0" fill="rgb(234,82,20)" rx="2" ry="2" />
<text text-anchor="" x="470.27" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (13 samples, 0.03%)</title><rect x="535.0" y="289" width="0.4" height="15.0" fill="rgb(220,154,15)" rx="2" ry="2" />
<text text-anchor="" x="537.99" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (83 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (83 samples, 0.22%)</title><rect x="149.1" y="241" width="2.5" height="15.0" fill="rgb(227,113,14)" rx="2" ry="2" />
<text text-anchor="" x="152.08" 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 (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (14 samples, 0.04%)</title><rect x="1114.9" y="65" width="0.4" height="15.0" fill="rgb(214,9,34)" rx="2" ry="2" />
<text text-anchor="" x="1117.88" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (368 samples, 0.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (368 samples, 0.96%)</title><rect x="414.5" y="529" width="11.3" height="15.0" fill="rgb(222,189,9)" rx="2" ry="2" />
<text text-anchor="" x="417.49" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Awake (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Awake (74 samples, 0.19%)</title><rect x="1136.3" y="289" width="2.2" height="15.0" fill="rgb(205,22,9)" rx="2" ry="2" />
<text text-anchor="" x="1139.27" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (8 samples, 0.02%)</title><rect x="768.0" y="225" width="0.2" height="15.0" fill="rgb(233,56,7)" rx="2" ry="2" />
<text text-anchor="" x="770.95" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('source_load (102 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>source_load (102 samples, 0.27%)</title><rect x="124.3" y="305" width="3.1" height="15.0" fill="rgb(214,138,54)" rx="2" ry="2" />
<text text-anchor="" x="127.28" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (98 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (98 samples, 0.26%)</title><rect x="845.1" y="417" width="3.0" height="15.0" fill="rgb(242,79,11)" rx="2" ry="2" />
<text text-anchor="" x="848.07" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (128 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (128 samples, 0.33%)</title><rect x="651.7" y="417" width="3.9" height="15.0" fill="rgb(226,99,25)" rx="2" ry="2" />
<text text-anchor="" x="654.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (13 samples, 0.03%)</title><rect x="544.4" y="305" width="0.4" height="15.0" fill="rgb(233,135,34)" rx="2" ry="2" />
<text text-anchor="" x="547.36" y="315.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.01%)</title><rect x="370.0" y="241" width="0.1" height="15.0" fill="rgb(223,15,29)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (4,453 samples, 11.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (4,453 samples, 11.63%)</title><rect x="1001.7" y="321" width="137.2" height="15.0" fill="rgb(208,206,44)" rx="2" ry="2" />
<text text-anchor="" x="1004.71" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Mes..</text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (18 samples, 0.05%)</title><rect x="328.3" y="193" width="0.6" height="15.0" fill="rgb(249,212,4)" rx="2" ry="2" />
<text text-anchor="" x="331.34" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (12 samples, 0.03%)</title><rect x="439.5" y="449" width="0.4" height="15.0" fill="rgb(244,25,17)" rx="2" ry="2" />
<text text-anchor="" x="442.54" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (230 samples, 0.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (230 samples, 0.60%)</title><rect x="261.2" y="337" width="7.1" height="15.0" fill="rgb(218,224,35)" rx="2" ry="2" />
<text text-anchor="" x="264.17" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (8 samples, 0.02%)</title><rect x="413.9" y="529" width="0.2" height="15.0" fill="rgb(210,60,52)" rx="2" ry="2" />
<text text-anchor="" x="416.87" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (387 samples, 1.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (387 samples, 1.01%)</title><rect x="522.3" y="353" width="11.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text text-anchor="" x="525.29" 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,816 samples, 7.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (2,816 samples, 7.35%)</title><rect x="872.2" y="369" width="86.8" height="15.0" fill="rgb(209,153,54)" rx="2" ry="2" />
<text text-anchor="" x="875.22" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_cal..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_destroy (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_destroy (4 samples, 0.01%)</title><rect x="355.5" y="369" width="0.2" height="15.0" fill="rgb(251,192,6)" rx="2" ry="2" />
<text text-anchor="" x="358.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (45 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (45 samples, 0.12%)</title><rect x="163.2" y="289" width="1.4" height="15.0" fill="rgb(215,51,42)" rx="2" ry="2" />
<text text-anchor="" x="166.22" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (2,228 samples, 5.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (2,228 samples, 5.82%)</title><rect x="1060.9" y="161" width="68.7" height="15.0" fill="rgb(210,34,18)" rx="2" ry="2" />
<text text-anchor="" x="1063.93" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >try_to_..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (33 samples, 0.09%)</title><rect x="1135.2" y="273" width="1.0" height="15.0" fill="rgb(224,46,24)" rx="2" ry="2" />
<text text-anchor="" x="1138.22" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_exit (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (4 samples, 0.01%)</title><rect x="186.4" y="385" width="0.1" height="15.0" fill="rgb(223,10,31)" rx="2" ry="2" />
<text text-anchor="" x="189.39" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (12 samples, 0.03%)</title><rect x="258.8" y="353" width="0.4" height="15.0" fill="rgb(228,179,33)" rx="2" ry="2" />
<text text-anchor="" x="261.80" y="363.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.01%)</title><rect x="463.7" y="497" width="0.1" height="15.0" fill="rgb(221,35,46)" rx="2" ry="2" />
<text text-anchor="" x="466.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (4 samples, 0.01%)</title><rect x="207.9" y="385" width="0.1" height="15.0" fill="rgb(253,127,6)" rx="2" ry="2" />
<text text-anchor="" x="210.90" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (14 samples, 0.04%)</title><rect x="354.8" y="289" width="0.5" height="15.0" fill="rgb(217,26,51)" rx="2" ry="2" />
<text text-anchor="" x="357.84" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (153 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (153 samples, 0.40%)</title><rect x="833.3" y="417" width="4.7" height="15.0" fill="rgb(220,35,5)" rx="2" ry="2" />
<text text-anchor="" x="836.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (5 samples, 0.01%)</title><rect x="788.9" y="273" width="0.2" height="15.0" fill="rgb(254,92,11)" rx="2" ry="2" />
<text text-anchor="" x="791.90" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (1,029 samples, 2.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (1,029 samples, 2.69%)</title><rect x="1084.3" y="113" width="31.7" height="15.0" fill="rgb(231,115,18)" rx="2" ry="2" />
<text text-anchor="" x="1087.32" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_cond_lock (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (33 samples, 0.09%)</title><rect x="270.1" y="369" width="1.0" height="15.0" fill="rgb(209,73,11)" rx="2" ry="2" />
<text text-anchor="" x="273.11" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('plist_add (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>plist_add (33 samples, 0.09%)</title><rect x="308.8" y="273" width="1.0" height="15.0" fill="rgb(225,165,41)" rx="2" ry="2" />
<text text-anchor="" x="311.77" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_queue_tail (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (4 samples, 0.01%)</title><rect x="50.4" y="465" width="0.1" height="15.0" fill="rgb(226,87,2)" rx="2" ry="2" />
<text text-anchor="" x="53.39" 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 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (10 samples, 0.03%)</title><rect x="457.3" y="497" width="0.4" height="15.0" fill="rgb(239,57,16)" rx="2" ry="2" />
<text text-anchor="" x="460.35" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (292 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (292 samples, 0.76%)</title><rect x="717.6" y="353" width="9.0" height="15.0" fill="rgb(222,134,11)" rx="2" ry="2" />
<text text-anchor="" x="720.64" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (13 samples, 0.03%)</title><rect x="79.5" y="417" width="0.4" height="15.0" fill="rgb(210,153,0)" rx="2" ry="2" />
<text text-anchor="" x="82.48" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (6 samples, 0.02%)</title><rect x="865.5" y="353" width="0.2" height="15.0" fill="rgb(206,211,28)" rx="2" ry="2" />
<text text-anchor="" x="868.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (5,458 samples, 14.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (5,458 samples, 14.25%)</title><rect x="202.1" y="417" width="168.1" height="15.0" fill="rgb(251,179,43)" rx="2" ry="2" />
<text text-anchor="" x="205.08" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (13 samples, 0.03%)</title><rect x="427.6" y="513" width="0.4" height="15.0" fill="rgb(224,208,16)" rx="2" ry="2" />
<text text-anchor="" x="430.61" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (41 samples, 0.11%)</title><rect x="543.5" y="337" width="1.3" height="15.0" fill="rgb(250,212,49)" rx="2" ry="2" />
<text text-anchor="" x="546.49" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (20 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (20 samples, 0.05%)</title><rect x="671.7" y="385" width="0.6" height="15.0" fill="rgb(222,141,22)" rx="2" ry="2" />
<text text-anchor="" x="674.73" 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@plt (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (23 samples, 0.06%)</title><rect x="363.9" y="369" width="0.7" height="15.0" fill="rgb(250,68,19)" rx="2" ry="2" />
<text text-anchor="" x="366.90" 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 (31 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (31 samples, 0.08%)</title><rect x="770.0" y="257" width="0.9" height="15.0" fill="rgb(249,36,18)" rx="2" ry="2" />
<text text-anchor="" x="772.98" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (4 samples, 0.01%)</title><rect x="542.0" y="337" width="0.1" height="15.0" fill="rgb(218,195,36)" rx="2" ry="2" />
<text text-anchor="" x="544.98" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (44 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (44 samples, 0.11%)</title><rect x="729.7" y="369" width="1.3" height="15.0" fill="rgb(245,26,12)" rx="2" ry="2" />
<text text-anchor="" x="732.65" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (51 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (51 samples, 0.13%)</title><rect x="724.8" y="321" width="1.5" height="15.0" fill="rgb(230,67,10)" rx="2" ry="2" />
<text text-anchor="" x="727.75" 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 (64 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (64 samples, 0.17%)</title><rect x="199.0" y="273" width="2.0" height="15.0" fill="rgb(208,155,44)" rx="2" ry="2" />
<text text-anchor="" x="202.03" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (25 samples, 0.07%)</title><rect x="364.6" y="385" width="0.8" height="15.0" fill="rgb(240,85,2)" rx="2" ry="2" />
<text text-anchor="" x="367.60" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (5 samples, 0.01%)</title><rect x="1164.3" y="385" width="0.2" height="15.0" fill="rgb(217,34,17)" rx="2" ry="2" />
<text text-anchor="" x="1167.33" 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 (20 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (20 samples, 0.05%)</title><rect x="219.9" y="369" width="0.6" height="15.0" fill="rgb(233,211,35)" rx="2" ry="2" />
<text text-anchor="" x="222.88" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (6 samples, 0.02%)</title><rect x="592.8" y="465" width="0.2" height="15.0" fill="rgb(218,43,13)" rx="2" ry="2" />
<text text-anchor="" x="595.82" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (4 samples, 0.01%)</title><rect x="418.7" y="513" width="0.2" height="15.0" fill="rgb(225,68,32)" rx="2" ry="2" />
<text text-anchor="" x="421.74" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (908 samples, 2.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (908 samples, 2.37%)</title><rect x="743.0" y="289" width="27.9" height="15.0" fill="rgb(239,116,6)" rx="2" ry="2" />
<text text-anchor="" x="745.96" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s('wait_for_completion (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_completion (4 samples, 0.01%)</title><rect x="10.1" y="241" width="0.1" height="15.0" fill="rgb(240,88,41)" rx="2" ry="2" />
<text text-anchor="" x="13.12" 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_irqsave (118 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (118 samples, 0.31%)</title><rect x="1064.9" y="145" width="3.7" height="15.0" fill="rgb(213,88,17)" rx="2" ry="2" />
<text text-anchor="" x="1067.94" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (5 samples, 0.01%)</title><rect x="314.6" y="129" width="0.1" height="15.0" fill="rgb(249,93,14)" rx="2" ry="2" />
<text text-anchor="" x="317.57" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (64 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (64 samples, 0.17%)</title><rect x="199.0" y="289" width="2.0" height="15.0" fill="rgb(213,103,11)" rx="2" ry="2" />
<text text-anchor="" x="202.03" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (8 samples, 0.02%)</title><rect x="314.6" y="209" width="0.2" height="15.0" fill="rgb(223,112,20)" rx="2" ry="2" />
<text text-anchor="" x="317.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_exit (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (8 samples, 0.02%)</title><rect x="521.4" y="353" width="0.2" height="15.0" fill="rgb(241,129,21)" rx="2" ry="2" />
<text text-anchor="" x="524.37" 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::HavePlatformHandlesToSend (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (8 samples, 0.02%)</title><rect x="241.5" y="305" width="0.3" height="15.0" fill="rgb(245,116,27)" rx="2" ry="2" />
<text text-anchor="" x="244.54" 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 (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (41 samples, 0.11%)</title><rect x="480.9" y="497" width="1.3" height="15.0" fill="rgb(246,130,53)" rx="2" ry="2" />
<text text-anchor="" x="483.92" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (819 samples, 2.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (819 samples, 2.14%)</title><rect x="744.0" y="273" width="25.3" height="15.0" fill="rgb(251,110,38)" rx="2" ry="2" />
<text text-anchor="" x="747.04" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (17 samples, 0.04%)</title><rect x="234.7" y="305" width="0.6" height="15.0" fill="rgb(247,144,52)" rx="2" ry="2" />
<text text-anchor="" x="237.74" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (5 samples, 0.01%)</title><rect x="314.6" y="145" width="0.1" height="15.0" fill="rgb(241,164,45)" rx="2" ry="2" />
<text text-anchor="" x="317.57" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (12 samples, 0.03%)</title><rect x="340.7" y="145" width="0.4" height="15.0" fill="rgb(229,160,18)" rx="2" ry="2" />
<text text-anchor="" x="343.69" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (472 samples, 1.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (472 samples, 1.23%)</title><rect x="659.4" y="401" width="14.5" height="15.0" fill="rgb(213,229,50)" rx="2" ry="2" />
<text text-anchor="" x="662.37" 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 (216 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (216 samples, 0.56%)</title><rect x="338.1" y="225" width="6.7" height="15.0" fill="rgb(252,80,12)" rx="2" ry="2" />
<text text-anchor="" x="341.11" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('all (38,298 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
<title>all (38,298 samples, 100%)</title><rect x="10.0" y="577" width="1180.0" height="15.0" fill="rgb(212,33,22)" 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('finish_task_switch (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.01%)</title><rect x="371.3" y="481" width="0.1" height="15.0" fill="rgb(209,166,0)" rx="2" ry="2" />
<text text-anchor="" x="374.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (76 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (76 samples, 0.20%)</title><rect x="538.0" y="321" width="2.3" height="15.0" fill="rgb(206,191,7)" rx="2" ry="2" />
<text text-anchor="" x="540.98" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy@plt (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (4 samples, 0.01%)</title><rect x="418.6" y="513" width="0.1" height="15.0" fill="rgb(209,88,22)" rx="2" ry="2" />
<text text-anchor="" x="421.62" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (85 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (85 samples, 0.22%)</title><rect x="1171.1" y="417" width="2.6" height="15.0" fill="rgb(213,47,38)" rx="2" ry="2" />
<text text-anchor="" x="1174.05" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (96 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (96 samples, 0.25%)</title><rect x="814.8" y="385" width="3.0" height="15.0" fill="rgb(245,116,21)" rx="2" ry="2" />
<text text-anchor="" x="817.81" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (2,244 samples, 5.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (2,244 samples, 5.86%)</title><rect x="286.4" y="369" width="69.1" height="15.0" fill="rgb(208,57,17)" rx="2" ry="2" />
<text text-anchor="" x="289.41" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthread..</text>
</g>
<g class="func_g" onmouseover="s('_Znwm@plt (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm@plt (6 samples, 0.02%)</title><rect x="827.5" y="417" width="0.2" height="15.0" fill="rgb(242,218,17)" rx="2" ry="2" />
<text text-anchor="" x="830.48" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (4,347 samples, 11.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (4,347 samples, 11.35%)</title><rect x="684.0" y="401" width="133.9" height="15.0" fill="rgb(237,99,43)" rx="2" ry="2" />
<text text-anchor="" x="686.96" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_epoll_wait</text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (41 samples, 0.11%)</title><rect x="891.3" y="289" width="1.3" height="15.0" fill="rgb(205,63,43)" rx="2" ry="2" />
<text text-anchor="" x="894.35" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (6 samples, 0.02%)</title><rect x="232.6" y="321" width="0.2" height="15.0" fill="rgb(232,172,6)" rx="2" ry="2" />
<text text-anchor="" x="235.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (11 samples, 0.03%)</title><rect x="533.6" y="321" width="0.3" height="15.0" fill="rgb(239,23,14)" rx="2" ry="2" />
<text text-anchor="" x="536.57" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (688 samples, 1.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (688 samples, 1.80%)</title><rect x="912.2" y="225" width="21.2" height="15.0" fill="rgb(237,198,26)" rx="2" ry="2" />
<text text-anchor="" x="915.21" 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_irq (76 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (76 samples, 0.20%)</title><rect x="519.0" y="385" width="2.4" height="15.0" fill="rgb(219,85,14)" rx="2" ry="2" />
<text text-anchor="" x="522.03" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelWrite (20 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelWrite (20 samples, 0.05%)</title><rect x="440.9" y="449" width="0.6" height="15.0" fill="rgb(228,60,13)" rx="2" ry="2" />
<text text-anchor="" x="443.92" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (10 samples, 0.03%)</title><rect x="186.4" y="401" width="0.3" height="15.0" fill="rgb(205,197,29)" rx="2" ry="2" />
<text text-anchor="" x="189.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (11 samples, 0.03%)</title><rect x="321.6" y="177" width="0.3" height="15.0" fill="rgb(251,194,21)" rx="2" ry="2" />
<text text-anchor="" x="324.56" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('resched_task (301 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>resched_task (301 samples, 0.79%)</title><rect x="1118.2" y="113" width="9.3" height="15.0" fill="rgb(235,113,22)" rx="2" ry="2" />
<text text-anchor="" x="1121.21" y="123.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (4 samples, 0.01%)</title><rect x="271.8" y="369" width="0.1" height="15.0" fill="rgb(235,131,33)" rx="2" ry="2" />
<text text-anchor="" x="274.80" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (2,476 samples, 6.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (2,476 samples, 6.47%)</title><rect x="873.3" y="321" width="76.3" height="15.0" fill="rgb(247,94,50)" rx="2" ry="2" />
<text text-anchor="" x="876.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >___sys_r..</text>
</g>
<g class="func_g" onmouseover="s('sys_execve (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (5 samples, 0.01%)</title><rect x="10.1" y="305" width="0.2" height="15.0" fill="rgb(221,90,46)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (304 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (304 samples, 0.79%)</title><rect x="792.4" y="273" width="9.3" height="15.0" fill="rgb(248,67,35)" rx="2" ry="2" />
<text text-anchor="" x="795.35" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::AddAwakable (42 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (42 samples, 0.11%)</title><rect x="273.8" y="353" width="1.3" height="15.0" fill="rgb(213,29,34)" rx="2" ry="2" />
<text text-anchor="" x="276.77" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (4 samples, 0.01%)</title><rect x="174.7" y="321" width="0.1" height="15.0" fill="rgb(205,192,21)" rx="2" ry="2" />
<text text-anchor="" x="177.65" 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 (277 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (277 samples, 0.72%)</title><rect x="38.8" y="449" width="8.5" height="15.0" fill="rgb(213,177,24)" rx="2" ry="2" />
<text text-anchor="" x="41.81" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (7 samples, 0.02%)</title><rect x="500.9" y="465" width="0.2" height="15.0" fill="rgb(213,162,29)" rx="2" ry="2" />
<text text-anchor="" x="503.85" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (5 samples, 0.01%)</title><rect x="671.6" y="385" width="0.1" height="15.0" fill="rgb(214,172,44)" rx="2" ry="2" />
<text text-anchor="" x="674.57" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.01%)</title><rect x="540.2" y="305" width="0.1" height="15.0" fill="rgb(220,50,21)" rx="2" ry="2" />
<text text-anchor="" x="543.20" 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::AwakeForStateChange (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (74 samples, 0.19%)</title><rect x="655.6" y="289" width="2.3" height="15.0" fill="rgb(229,131,42)" rx="2" ry="2" />
<text text-anchor="" x="658.61" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (2,562 samples, 6.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2,562 samples, 6.69%)</title><rect x="98.8" y="369" width="78.9" height="15.0" fill="rgb(229,102,22)" rx="2" ry="2" />
<text text-anchor="" x="101.80" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake_up..</text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (397 samples, 1.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (397 samples, 1.04%)</title><rect x="789.8" y="289" width="12.2" height="15.0" fill="rgb(220,220,25)" rx="2" ry="2" />
<text text-anchor="" x="792.77" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.01%)</title><rect x="370.0" y="81" width="0.1" height="15.0" fill="rgb(205,198,43)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (10 samples, 0.03%)</title><rect x="186.4" y="417" width="0.3" height="15.0" fill="rgb(241,23,10)" rx="2" ry="2" />
<text text-anchor="" x="189.39" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (47 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (47 samples, 0.12%)</title><rect x="134.0" y="257" width="1.5" height="15.0" fill="rgb(236,136,30)" rx="2" ry="2" />
<text text-anchor="" x="137.01" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (42 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (42 samples, 0.11%)</title><rect x="623.6" y="449" width="1.3" height="15.0" fill="rgb(219,120,11)" rx="2" ry="2" />
<text text-anchor="" x="626.57" 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_irq (58 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (58 samples, 0.15%)</title><rect x="312.7" y="241" width="1.8" height="15.0" fill="rgb(246,139,9)" rx="2" ry="2" />
<text text-anchor="" x="315.69" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (293 samples, 0.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (293 samples, 0.77%)</title><rect x="777.1" y="273" width="9.0" height="15.0" fill="rgb(206,20,40)" rx="2" ry="2" />
<text text-anchor="" x="780.07" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (640 samples, 1.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (640 samples, 1.67%)</title><rect x="229.6" y="353" width="19.7" height="15.0" fill="rgb(239,135,24)" rx="2" ry="2" />
<text text-anchor="" x="232.59" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (81 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (81 samples, 0.21%)</title><rect x="10.1" y="545" width="2.5" height="15.0" fill="rgb(235,17,51)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="555.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 (20 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_unhook (20 samples, 0.05%)</title><rect x="281.5" y="337" width="0.7" height="15.0" fill="rgb(241,100,26)" rx="2" ry="2" />
<text text-anchor="" x="284.54" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (11 samples, 0.03%)</title><rect x="328.6" y="177" width="0.3" height="15.0" fill="rgb(214,41,31)" rx="2" ry="2" />
<text text-anchor="" x="331.56" y="187.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.01%)</title><rect x="508.4" y="481" width="0.1" height="15.0" fill="rgb(217,97,41)" rx="2" ry="2" />
<text text-anchor="" x="511.40" y="491.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (7 samples, 0.02%)</title><rect x="241.8" y="305" width="0.2" height="15.0" fill="rgb(225,125,53)" rx="2" ry="2" />
<text text-anchor="" x="244.79" y="315.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 (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (15 samples, 0.04%)</title><rect x="768.5" y="257" width="0.4" height="15.0" fill="rgb(245,200,32)" rx="2" ry="2" />
<text text-anchor="" x="771.47" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="369" width="0.2" height="15.0" fill="rgb(219,5,34)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (47 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (47 samples, 0.12%)</title><rect x="160.9" y="273" width="1.4" height="15.0" fill="rgb(252,12,31)" rx="2" ry="2" />
<text text-anchor="" x="163.88" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (6 samples, 0.02%)</title><rect x="871.0" y="321" width="0.1" height="15.0" fill="rgb(244,146,49)" rx="2" ry="2" />
<text text-anchor="" x="873.95" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_next_bit (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_next_bit (7 samples, 0.02%)</title><rect x="788.4" y="241" width="0.2" height="15.0" fill="rgb(246,169,40)" rx="2" ry="2" />
<text text-anchor="" x="791.41" y="251.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_setclock (6 samples, 0.02%)</title><rect x="286.1" y="353" width="0.2" height="15.0" fill="rgb(208,48,12)" rx="2" ry="2" />
<text text-anchor="" x="289.13" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="401" width="0.2" height="15.0" fill="rgb(222,62,18)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (58 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (58 samples, 0.15%)</title><rect x="827.7" y="417" width="1.7" height="15.0" fill="rgb(212,146,31)" rx="2" ry="2" />
<text text-anchor="" x="830.66" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (8 samples, 0.02%)</title><rect x="674.3" y="401" width="0.2" height="15.0" fill="rgb(214,83,40)" rx="2" ry="2" />
<text text-anchor="" x="677.25" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('select_task_rq_fair (423 samples, 1.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (423 samples, 1.10%)</title><rect x="114.4" y="321" width="13.1" height="15.0" fill="rgb(228,38,44)" rx="2" ry="2" />
<text text-anchor="" x="117.42" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (6 samples, 0.02%)</title><rect x="228.4" y="353" width="0.2" height="15.0" fill="rgb(220,39,29)" rx="2" ry="2" />
<text text-anchor="" x="231.42" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (43 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (43 samples, 0.11%)</title><rect x="1020.5" y="241" width="1.4" height="15.0" fill="rgb(252,16,49)" rx="2" ry="2" />
<text text-anchor="" x="1023.54" y="251.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (4 samples, 0.01%)</title><rect x="371.3" y="513" width="0.1" height="15.0" fill="rgb(227,187,21)" rx="2" ry="2" />
<text text-anchor="" x="374.29" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (5 samples, 0.01%)</title><rect x="446.6" y="433" width="0.1" height="15.0" fill="rgb(249,158,12)" rx="2" ry="2" />
<text text-anchor="" x="449.59" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (6 samples, 0.02%)</title><rect x="186.5" y="385" width="0.2" height="15.0" fill="rgb(253,164,10)" rx="2" ry="2" />
<text text-anchor="" x="189.52" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (45 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (45 samples, 0.12%)</title><rect x="1173.7" y="433" width="1.4" height="15.0" fill="rgb(240,78,48)" rx="2" ry="2" />
<text text-anchor="" x="1176.70" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (21 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (21 samples, 0.05%)</title><rect x="483.6" y="497" width="0.7" height="15.0" fill="rgb(241,5,17)" rx="2" ry="2" />
<text text-anchor="" x="486.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (18 samples, 0.05%)</title><rect x="63.9" y="433" width="0.6" height="15.0" fill="rgb(238,197,2)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (34 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (34 samples, 0.09%)</title><rect x="966.7" y="401" width="1.0" height="15.0" fill="rgb(214,224,7)" rx="2" ry="2" />
<text text-anchor="" x="969.65" 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 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (6 samples, 0.02%)</title><rect x="328.7" y="145" width="0.2" height="15.0" fill="rgb(254,121,39)" rx="2" ry="2" />
<text text-anchor="" x="331.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (5 samples, 0.01%)</title><rect x="533.4" y="305" width="0.2" height="15.0" fill="rgb(230,90,50)" rx="2" ry="2" />
<text text-anchor="" x="536.42" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (139 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (139 samples, 0.36%)</title><rect x="20.3" y="497" width="4.3" height="15.0" fill="rgb(244,105,12)" rx="2" ry="2" />
<text text-anchor="" x="23.29" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('SYSC_sendto (5,340 samples, 13.94%)')" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (5,340 samples, 13.94%)</title><rect x="30.6" y="497" width="164.5" height="15.0" fill="rgb(219,176,21)" rx="2" ry="2" />
<text text-anchor="" x="33.61" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >SYSC_sendto</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (91 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (91 samples, 0.24%)</title><rect x="430.8" y="513" width="2.8" height="15.0" fill="rgb(227,105,24)" rx="2" ry="2" />
<text text-anchor="" x="433.82" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_futex (2,397 samples, 6.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_futex (2,397 samples, 6.26%)</title><rect x="1056.0" y="193" width="73.9" height="15.0" fill="rgb(225,43,3)" rx="2" ry="2" />
<text text-anchor="" x="1059.03" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >wake_futex</text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (5 samples, 0.01%)</title><rect x="327.9" y="193" width="0.2" height="15.0" fill="rgb(227,81,46)" rx="2" ry="2" />
<text text-anchor="" x="330.94" y="203.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 (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_init@@GLIBC_2.3.2 (22 samples, 0.06%)</title><rect x="492.3" y="497" width="0.7" height="15.0" fill="rgb(220,198,48)" rx="2" ry="2" />
<text text-anchor="" x="495.35" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (82 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (82 samples, 0.21%)</title><rect x="544.8" y="305" width="2.5" height="15.0" fill="rgb(248,58,34)" rx="2" ry="2" />
<text text-anchor="" x="547.76" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (53 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (53 samples, 0.14%)</title><rect x="965.0" y="385" width="1.6" height="15.0" fill="rgb(237,208,15)" rx="2" ry="2" />
<text text-anchor="" x="967.96" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (121 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (121 samples, 0.32%)</title><rect x="940.5" y="257" width="3.7" height="15.0" fill="rgb(249,126,43)" rx="2" ry="2" />
<text text-anchor="" x="943.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (84 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (84 samples, 0.22%)</title><rect x="121.7" y="305" width="2.6" height="15.0" fill="rgb(253,52,8)" rx="2" ry="2" />
<text text-anchor="" x="124.69" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_blocked_averages (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (10 samples, 0.03%)</title><rect x="337.7" y="225" width="0.3" height="15.0" fill="rgb(206,6,34)" rx="2" ry="2" />
<text text-anchor="" x="340.68" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (8 samples, 0.02%)</title><rect x="24.6" y="497" width="0.3" height="15.0" fill="rgb(211,29,24)" rx="2" ry="2" />
<text text-anchor="" x="27.60" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (19,290 samples, 50.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (19,290 samples, 50.37%)</title><rect x="595.4" y="465" width="594.3" height="15.0" fill="rgb(222,84,8)" rx="2" ry="2" />
<text text-anchor="" x="598.38" 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('ksize (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (23 samples, 0.06%)</title><rect x="92.1" y="433" width="0.8" height="15.0" fill="rgb(219,13,5)" rx="2" ry="2" />
<text text-anchor="" x="95.14" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (4 samples, 0.01%)</title><rect x="25.1" y="481" width="0.1" height="15.0" fill="rgb(224,110,39)" rx="2" ry="2" />
<text text-anchor="" x="28.07" y="491.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 (338 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (338 samples, 0.88%)</title><rect x="776.0" y="289" width="10.4" height="15.0" fill="rgb(205,54,32)" rx="2" ry="2" />
<text text-anchor="" x="778.99" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (52 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (52 samples, 0.14%)</title><rect x="875.0" y="305" width="1.6" height="15.0" fill="rgb(205,42,48)" rx="2" ry="2" />
<text text-anchor="" x="877.96" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (32 samples, 0.08%)</title><rect x="622.6" y="449" width="1.0" height="15.0" fill="rgb(238,174,0)" rx="2" ry="2" />
<text text-anchor="" x="625.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (1,147 samples, 2.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (1,147 samples, 2.99%)</title><rect x="898.5" y="273" width="35.3" height="15.0" fill="rgb(212,68,44)" rx="2" ry="2" />
<text text-anchor="" x="901.47" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('__do_softirq (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (4 samples, 0.01%)</title><rect x="186.4" y="369" width="0.1" height="15.0" fill="rgb(238,171,0)" rx="2" ry="2" />
<text text-anchor="" x="189.39" 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 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (10 samples, 0.03%)</title><rect x="528.4" y="321" width="0.3" height="15.0" fill="rgb(206,188,42)" rx="2" ry="2" />
<text text-anchor="" x="531.43" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (6 samples, 0.02%)</title><rect x="801.8" y="273" width="0.2" height="15.0" fill="rgb(228,73,41)" rx="2" ry="2" />
<text text-anchor="" x="804.81" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (5 samples, 0.01%)</title><rect x="465.5" y="465" width="0.1" height="15.0" fill="rgb(231,163,38)" rx="2" ry="2" />
<text text-anchor="" x="468.48" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (8 samples, 0.02%)</title><rect x="317.3" y="193" width="0.3" height="15.0" fill="rgb(238,45,17)" rx="2" ry="2" />
<text text-anchor="" x="320.34" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (25 samples, 0.07%)</title><rect x="553.7" y="417" width="0.7" height="15.0" fill="rgb(218,22,35)" rx="2" ry="2" />
<text text-anchor="" x="556.66" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (61 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (61 samples, 0.16%)</title><rect x="40.7" y="417" width="1.9" height="15.0" fill="rgb(227,88,29)" rx="2" ry="2" />
<text text-anchor="" x="43.72" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (56 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (56 samples, 0.15%)</title><rect x="463.9" y="481" width="1.7" height="15.0" fill="rgb(223,48,42)" rx="2" ry="2" />
<text text-anchor="" x="466.91" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (64 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (64 samples, 0.17%)</title><rect x="766.0" y="225" width="2.0" height="15.0" fill="rgb(235,31,0)" rx="2" ry="2" />
<text text-anchor="" x="768.98" 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 (28 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (28 samples, 0.07%)</title><rect x="472.2" y="433" width="0.8" height="15.0" fill="rgb(213,223,51)" rx="2" ry="2" />
<text text-anchor="" x="475.17" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (34 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (34 samples, 0.09%)</title><rect x="257.7" y="337" width="1.0" height="15.0" fill="rgb(223,87,53)" rx="2" ry="2" />
<text text-anchor="" x="260.66" 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 (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (17 samples, 0.04%)</title><rect x="265.3" y="289" width="0.6" height="15.0" fill="rgb(253,159,31)" rx="2" ry="2" />
<text text-anchor="" x="268.33" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (67 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (67 samples, 0.17%)</title><rect x="277.7" y="337" width="2.0" height="15.0" fill="rgb(208,3,1)" rx="2" ry="2" />
<text text-anchor="" x="280.66" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (85 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (85 samples, 0.22%)</title><rect x="676.8" y="417" width="2.7" height="15.0" fill="rgb(232,172,19)" rx="2" ry="2" />
<text text-anchor="" x="679.84" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_map_object_from_fd (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_map_object_from_fd (4 samples, 0.01%)</title><rect x="371.3" y="545" width="0.1" height="15.0" fill="rgb(243,56,43)" rx="2" ry="2" />
<text text-anchor="" x="374.29" y="555.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 (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_unhook (33 samples, 0.09%)</title><rect x="489.1" y="481" width="1.0" height="15.0" fill="rgb(226,192,45)" rx="2" ry="2" />
<text text-anchor="" x="492.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (12 samples, 0.03%)</title><rect x="1021.5" y="225" width="0.4" height="15.0" fill="rgb(252,71,31)" rx="2" ry="2" />
<text text-anchor="" x="1024.49" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Waiter::Awake (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Awake (14 samples, 0.04%)</title><rect x="1014.9" y="273" width="0.4" height="15.0" fill="rgb(219,78,16)" rx="2" ry="2" />
<text text-anchor="" x="1017.90" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (7 samples, 0.02%)</title><rect x="521.6" y="321" width="0.2" height="15.0" fill="rgb(224,91,54)" rx="2" ry="2" />
<text text-anchor="" x="524.62" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (187 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (187 samples, 0.49%)</title><rect x="795.6" y="257" width="5.7" height="15.0" fill="rgb(241,74,48)" rx="2" ry="2" />
<text text-anchor="" x="798.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(':26312 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>:26312 (4 samples, 0.01%)</title><rect x="10.0" y="561" width="0.1" height="15.0" fill="rgb(219,226,12)" 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('mojo::system::MessagePipe::RemoveAwakable (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (22 samples, 0.06%)</title><rect x="220.5" y="385" width="0.7" height="15.0" fill="rgb(211,213,13)" rx="2" ry="2" />
<text text-anchor="" x="223.50" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (4 samples, 0.01%)</title><rect x="393.0" y="529" width="0.1" height="15.0" fill="rgb(239,143,15)" rx="2" ry="2" />
<text text-anchor="" x="395.98" y="539.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 (60 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (60 samples, 0.16%)</title><rect x="1114.2" y="97" width="1.8" height="15.0" fill="rgb(245,146,8)" rx="2" ry="2" />
<text text-anchor="" x="1117.17" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (2,474 samples, 6.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (2,474 samples, 6.46%)</title><rect x="101.4" y="353" width="76.3" height="15.0" fill="rgb(252,215,36)" rx="2" ry="2" />
<text text-anchor="" x="104.45" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >default_..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (14 samples, 0.04%)</title><rect x="662.5" y="385" width="0.4" height="15.0" fill="rgb(231,66,20)" rx="2" ry="2" />
<text text-anchor="" x="665.48" 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 (91 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (91 samples, 0.24%)</title><rect x="925.0" y="129" width="2.8" height="15.0" fill="rgb(239,106,38)" rx="2" ry="2" />
<text text-anchor="" x="928.03" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (10 samples, 0.03%)</title><rect x="1129.6" y="161" width="0.3" height="15.0" fill="rgb(222,190,45)" rx="2" ry="2" />
<text text-anchor="" x="1132.58" y="171.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,354 samples, 11.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (4,354 samples, 11.37%)</title><rect x="1004.4" y="305" width="134.1" height="15.0" fill="rgb(217,75,12)" rx="2" ry="2" />
<text text-anchor="" x="1007.39" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Lo..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (301 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (301 samples, 0.79%)</title><rect x="232.8" y="321" width="9.3" height="15.0" fill="rgb(212,189,44)" rx="2" ry="2" />
<text text-anchor="" x="235.79" y="331.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 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (10 samples, 0.03%)</title><rect x="742.6" y="209" width="0.3" height="15.0" fill="rgb(243,108,24)" rx="2" ry="2" />
<text text-anchor="" x="745.59" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (2,575 samples, 6.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2,575 samples, 6.72%)</title><rect x="731.0" y="369" width="79.3" height="15.0" fill="rgb(243,50,9)" rx="2" ry="2" />
<text text-anchor="" x="734.01" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule_..</text>
</g>
<g class="func_g" onmouseover="s('malloc@plt (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc@plt (4 samples, 0.01%)</title><rect x="848.1" y="417" width="0.1" height="15.0" fill="rgb(236,229,52)" rx="2" ry="2" />
<text text-anchor="" x="851.09" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (5 samples, 0.01%)</title><rect x="902.0" y="257" width="0.2" height="15.0" fill="rgb(214,154,50)" rx="2" ry="2" />
<text text-anchor="" x="905.01" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (9 samples, 0.02%)</title><rect x="463.3" y="465" width="0.2" height="15.0" fill="rgb(230,212,30)" rx="2" ry="2" />
<text text-anchor="" x="466.26" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg_handler (39 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg_handler (39 samples, 0.10%)</title><rect x="46.1" y="433" width="1.2" height="15.0" fill="rgb(218,65,49)" rx="2" ry="2" />
<text text-anchor="" x="49.14" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (10 samples, 0.03%)</title><rect x="949.6" y="321" width="0.3" height="15.0" fill="rgb(247,115,27)" rx="2" ry="2" />
<text text-anchor="" x="952.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (39 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (39 samples, 0.10%)</title><rect x="428.9" y="513" width="1.2" height="15.0" fill="rgb(242,213,25)" rx="2" ry="2" />
<text text-anchor="" x="431.94" y="523.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (4 samples, 0.01%)</title><rect x="10.0" y="513" width="0.1" height="15.0" fill="rgb(251,164,41)" 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('update_curr (88 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (88 samples, 0.23%)</title><rect x="1110.8" y="65" width="2.7" height="15.0" fill="rgb(210,65,31)" rx="2" ry="2" />
<text text-anchor="" x="1113.82" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_init@plt (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_init@plt (6 samples, 0.02%)</title><rect x="493.9" y="497" width="0.1" height="15.0" fill="rgb(248,76,10)" rx="2" ry="2" />
<text text-anchor="" x="496.86" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (150 samples, 0.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (150 samples, 0.39%)</title><rect x="1138.9" y="321" width="4.6" height="15.0" fill="rgb(247,96,11)" rx="2" ry="2" />
<text text-anchor="" x="1141.92" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (21 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (21 samples, 0.05%)</title><rect x="523.7" y="337" width="0.7" height="15.0" fill="rgb(252,45,35)" rx="2" ry="2" />
<text text-anchor="" x="526.71" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (4 samples, 0.01%)</title><rect x="259.7" y="321" width="0.1" height="15.0" fill="rgb(221,37,10)" rx="2" ry="2" />
<text text-anchor="" x="262.66" 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 (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (19 samples, 0.05%)</title><rect x="185.8" y="417" width="0.6" height="15.0" fill="rgb(239,116,39)" rx="2" ry="2" />
<text text-anchor="" x="188.81" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_softirq (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (10 samples, 0.03%)</title><rect x="742.1" y="257" width="0.3" height="15.0" fill="rgb(210,140,3)" rx="2" ry="2" />
<text text-anchor="" x="745.13" y="267.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 (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (32 samples, 0.08%)</title><rect x="1107.1" y="65" width="1.0" height="15.0" fill="rgb(208,177,26)" rx="2" ry="2" />
<text text-anchor="" x="1110.15" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (101 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (101 samples, 0.26%)</title><rect x="341.2" y="161" width="3.1" height="15.0" fill="rgb(210,223,40)" rx="2" ry="2" />
<text text-anchor="" x="344.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (15 samples, 0.04%)</title><rect x="683.2" y="401" width="0.5" height="15.0" fill="rgb(214,113,20)" rx="2" ry="2" />
<text text-anchor="" x="686.19" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__queue_work (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__queue_work (4 samples, 0.01%)</title><rect x="742.3" y="193" width="0.1" height="15.0" fill="rgb(228,170,42)" rx="2" ry="2" />
<text text-anchor="" x="745.32" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('select_task_rq_fair (405 samples, 1.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (405 samples, 1.06%)</title><rect x="1070.4" y="145" width="12.5" height="15.0" fill="rgb(231,38,40)" rx="2" ry="2" />
<text text-anchor="" x="1073.39" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (29 samples, 0.08%)</title><rect x="531.0" y="289" width="0.8" height="15.0" fill="rgb(252,41,1)" rx="2" ry="2" />
<text text-anchor="" x="533.95" y="299.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.01%)</title><rect x="371.3" y="433" width="0.1" height="15.0" fill="rgb(211,97,21)" rx="2" ry="2" />
<text text-anchor="" x="374.29" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree_skbmem (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (4 samples, 0.01%)</title><rect x="933.8" y="273" width="0.1" height="15.0" fill="rgb(229,221,0)" rx="2" ry="2" />
<text text-anchor="" x="936.81" 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::WriteMessage (484 samples, 1.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (484 samples, 1.26%)</title><rect x="435.9" y="481" width="14.9" height="15.0" fill="rgb(249,161,18)" rx="2" ry="2" />
<text text-anchor="" x="438.90" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (413 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (413 samples, 1.08%)</title><rect x="315.4" y="209" width="12.7" height="15.0" fill="rgb(206,118,34)" rx="2" ry="2" />
<text text-anchor="" x="318.37" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (7 samples, 0.02%)</title><rect x="874.7" y="305" width="0.2" height="15.0" fill="rgb(238,175,38)" rx="2" ry="2" />
<text text-anchor="" x="877.68" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (12 samples, 0.03%)</title><rect x="592.5" y="449" width="0.3" height="15.0" fill="rgb(218,71,9)" rx="2" ry="2" />
<text text-anchor="" x="595.45" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (202 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (202 samples, 0.53%)</title><rect x="758.0" y="241" width="6.3" height="15.0" fill="rgb(216,56,23)" rx="2" ry="2" />
<text text-anchor="" x="761.03" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (4 samples, 0.01%)</title><rect x="1151.9" y="337" width="0.1" height="15.0" fill="rgb(239,203,44)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (105 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (105 samples, 0.27%)</title><rect x="42.9" y="433" width="3.2" height="15.0" fill="rgb(218,34,43)" rx="2" ry="2" />
<text text-anchor="" x="45.91" y="443.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (6 samples, 0.02%)</title><rect x="533.9" y="337" width="0.2" height="15.0" fill="rgb(215,228,16)" rx="2" ry="2" />
<text text-anchor="" x="536.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (106 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (106 samples, 0.28%)</title><rect x="944.6" y="257" width="3.3" height="15.0" fill="rgb(233,124,6)" rx="2" ry="2" />
<text text-anchor="" x="947.62" 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 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (4 samples, 0.01%)</title><rect x="868.3" y="337" width="0.2" height="15.0" fill="rgb(250,74,36)" rx="2" ry="2" />
<text text-anchor="" x="871.33" 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::OnReadMessage (5,972 samples, 15.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (5,972 samples, 15.59%)</title><rect x="980.3" y="385" width="184.0" height="15.0" fill="rgb(217,48,33)" rx="2" ry="2" />
<text text-anchor="" x="983.33" 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('base::ConditionVariable::ConditionVariable (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::ConditionVariable::ConditionVariable (15 samples, 0.04%)</title><rect x="491.9" y="497" width="0.4" height="15.0" fill="rgb(234,161,16)" rx="2" ry="2" />
<text text-anchor="" x="494.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (56 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (56 samples, 0.15%)</title><rect x="1143.6" y="321" width="1.7" height="15.0" fill="rgb(245,109,36)" rx="2" ry="2" />
<text text-anchor="" x="1146.60" 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 (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (9 samples, 0.02%)</title><rect x="801.1" y="225" width="0.2" height="15.0" fill="rgb(230,182,12)" rx="2" ry="2" />
<text text-anchor="" x="804.07" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (8 samples, 0.02%)</title><rect x="327.1" y="161" width="0.3" height="15.0" fill="rgb(254,103,54)" rx="2" ry="2" />
<text text-anchor="" x="330.14" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_idle (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (8 samples, 0.02%)</title><rect x="550.1" y="401" width="0.3" height="15.0" fill="rgb(219,58,11)" rx="2" ry="2" />
<text text-anchor="" x="553.12" y="411.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 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_hook (8 samples, 0.02%)</title><rect x="275.2" y="353" width="0.3" height="15.0" fill="rgb(228,55,0)" rx="2" ry="2" />
<text text-anchor="" x="278.22" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TestSuite::Run (5,566 samples, 14.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestSuite::Run (5,566 samples, 14.53%)</title><rect x="198.7" y="513" width="171.5" height="15.0" fill="rgb(236,0,23)" rx="2" ry="2" />
<text text-anchor="" x="201.75" 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('native_write_msr_safe (79 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (79 samples, 0.21%)</title><rect x="544.8" y="289" width="2.5" height="15.0" fill="rgb(227,99,20)" rx="2" ry="2" />
<text text-anchor="" x="547.85" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (23 samples, 0.06%)</title><rect x="34.3" y="481" width="0.7" height="15.0" fill="rgb(210,71,29)" rx="2" ry="2" />
<text text-anchor="" x="37.31" 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::~MessageInTransit (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (4 samples, 0.01%)</title><rect x="218.4" y="353" width="0.1" height="15.0" fill="rgb(242,9,12)" rx="2" ry="2" />
<text text-anchor="" x="221.37" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (4 samples, 0.01%)</title><rect x="761.3" y="225" width="0.1" height="15.0" fill="rgb(210,167,34)" rx="2" ry="2" />
<text text-anchor="" x="764.26" y="235.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.01%)</title><rect x="10.1" y="225" width="0.1" height="15.0" fill="rgb(211,121,29)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (65 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (65 samples, 0.17%)</title><rect x="199.0" y="433" width="2.0" height="15.0" fill="rgb(218,164,7)" rx="2" ry="2" />
<text text-anchor="" x="201.99" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (107 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (107 samples, 0.28%)</title><rect x="80.2" y="401" width="3.3" height="15.0" fill="rgb(244,163,36)" rx="2" ry="2" />
<text text-anchor="" x="83.25" 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 (4,390 samples, 11.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4,390 samples, 11.46%)</title><rect x="682.6" y="417" width="135.3" height="15.0" fill="rgb(246,166,54)" rx="2" ry="2" />
<text text-anchor="" x="685.64" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call_fastp..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="465" width="0.2" height="15.0" fill="rgb(205,17,2)" rx="2" ry="2" />
<text text-anchor="" x="13.12" 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 (68 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (68 samples, 0.18%)</title><rect x="265.9" y="289" width="2.0" height="15.0" fill="rgb(246,12,45)" rx="2" ry="2" />
<text text-anchor="" x="268.85" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (4 samples, 0.01%)</title><rect x="463.5" y="481" width="0.2" height="15.0" fill="rgb(215,167,14)" rx="2" ry="2" />
<text text-anchor="" x="466.54" 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 (21 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (21 samples, 0.05%)</title><rect x="757.4" y="241" width="0.6" height="15.0" fill="rgb(252,224,11)" rx="2" ry="2" />
<text text-anchor="" x="760.38" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (9 samples, 0.02%)</title><rect x="810.3" y="369" width="0.3" height="15.0" fill="rgb(244,2,51)" rx="2" ry="2" />
<text text-anchor="" x="813.35" y="379.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (5 samples, 0.01%)</title><rect x="445.2" y="449" width="0.2" height="15.0" fill="rgb(208,167,30)" rx="2" ry="2" />
<text text-anchor="" x="448.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (456 samples, 1.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (456 samples, 1.19%)</title><rect x="314.8" y="225" width="14.1" height="15.0" fill="rgb(236,80,53)" rx="2" ry="2" />
<text text-anchor="" x="317.84" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (17 samples, 0.04%)</title><rect x="484.7" y="481" width="0.6" height="15.0" fill="rgb(222,91,3)" rx="2" ry="2" />
<text text-anchor="" x="487.74" y="491.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; (8 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; (8 samples, 0.02%)</title><rect x="240.1" y="289" width="0.2" height="15.0" fill="rgb(230,134,54)" rx="2" ry="2" />
<text text-anchor="" x="243.07" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (6 samples, 0.02%)</title><rect x="274.1" y="337" width="0.2" height="15.0" fill="rgb(245,55,32)" rx="2" ry="2" />
<text text-anchor="" x="277.11" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_destroy (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_destroy (9 samples, 0.02%)</title><rect x="493.0" y="497" width="0.3" height="15.0" fill="rgb(228,172,40)" rx="2" ry="2" />
<text text-anchor="" x="496.02" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (8 samples, 0.02%)</title><rect x="337.4" y="193" width="0.2" height="15.0" fill="rgb(226,120,12)" rx="2" ry="2" />
<text text-anchor="" x="340.40" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (1,034 samples, 2.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1,034 samples, 2.70%)</title><rect x="1084.3" y="129" width="31.8" height="15.0" fill="rgb(245,147,28)" rx="2" ry="2" />
<text text-anchor="" x="1087.26" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ac..</text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (393 samples, 1.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (393 samples, 1.03%)</title><rect x="162.5" y="305" width="12.2" height="15.0" fill="rgb(216,11,36)" rx="2" ry="2" />
<text text-anchor="" x="165.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::MessageInTransit::MessageInTransit (88 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (88 samples, 0.23%)</title><rect x="226.0" y="369" width="2.8" height="15.0" fill="rgb(241,78,45)" rx="2" ry="2" />
<text text-anchor="" x="229.05" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.01%)</title><rect x="570.9" y="545" width="0.2" height="15.0" fill="rgb(206,164,46)" rx="2" ry="2" />
<text text-anchor="" x="573.95" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (64 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (64 samples, 0.17%)</title><rect x="199.0" y="337" width="2.0" height="15.0" fill="rgb(243,71,39)" rx="2" ry="2" />
<text text-anchor="" x="202.03" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (150 samples, 0.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (150 samples, 0.39%)</title><rect x="1178.2" y="433" width="4.7" height="15.0" fill="rgb(251,79,19)" rx="2" ry="2" />
<text text-anchor="" x="1181.23" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (4,437 samples, 11.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (4,437 samples, 11.59%)</title><rect x="50.7" y="465" width="136.7" height="15.0" fill="rgb(249,153,28)" rx="2" ry="2" />
<text text-anchor="" x="53.70" 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('local_clock (34 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (34 samples, 0.09%)</title><rect x="340.0" y="193" width="1.1" height="15.0" fill="rgb(223,61,32)" rx="2" ry="2" />
<text text-anchor="" x="343.02" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (27 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (27 samples, 0.07%)</title><rect x="532.6" y="305" width="0.8" height="15.0" fill="rgb(212,69,38)" rx="2" ry="2" />
<text text-anchor="" x="535.59" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (10 samples, 0.03%)</title><rect x="37.3" y="465" width="0.3" height="15.0" fill="rgb(222,212,35)" rx="2" ry="2" />
<text text-anchor="" x="40.30" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (74 samples, 0.19%)</title><rect x="655.6" y="369" width="2.3" height="15.0" fill="rgb(223,202,24)" rx="2" ry="2" />
<text text-anchor="" x="658.61" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (66 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (66 samples, 0.17%)</title><rect x="48.2" y="449" width="2.0" height="15.0" fill="rgb(248,210,18)" rx="2" ry="2" />
<text text-anchor="" x="51.17" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (4 samples, 0.01%)</title><rect x="1028.2" y="257" width="0.2" height="15.0" fill="rgb(220,4,30)" rx="2" ry="2" />
<text text-anchor="" x="1031.24" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.01%)</title><rect x="10.0" y="385" width="0.1" height="15.0" fill="rgb(246,144,54)" 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('audit_filter_syscall (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (17 samples, 0.04%)</title><rect x="654.4" y="385" width="0.5" height="15.0" fill="rgb(210,164,51)" rx="2" ry="2" />
<text text-anchor="" x="657.41" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::HasOneRef (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (15 samples, 0.04%)</title><rect x="838.0" y="417" width="0.5" height="15.0" fill="rgb(252,78,11)" rx="2" ry="2" />
<text text-anchor="" x="841.05" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (11 samples, 0.03%)</title><rect x="347.1" y="257" width="0.4" height="15.0" fill="rgb(223,141,43)" rx="2" ry="2" />
<text text-anchor="" x="350.13" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (2,559 samples, 6.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2,559 samples, 6.68%)</title><rect x="731.5" y="353" width="78.8" height="15.0" fill="rgb(214,144,8)" rx="2" ry="2" />
<text text-anchor="" x="734.50" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule_..</text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (152 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (152 samples, 0.40%)</title><rect x="866.9" y="369" width="4.6" height="15.0" fill="rgb(240,77,8)" rx="2" ry="2" />
<text text-anchor="" x="869.85" 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 (231 samples, 0.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (231 samples, 0.60%)</title><rect x="261.1" y="353" width="7.2" height="15.0" fill="rgb(242,77,26)" rx="2" ry="2" />
<text text-anchor="" x="264.14" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (17,990 samples, 46.97%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (17,990 samples, 46.97%)</title><rect x="635.4" y="449" width="554.3" height="15.0" fill="rgb(216,226,39)" rx="2" ry="2" />
<text text-anchor="" x="638.43" 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('ftrace_ops_test (117 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (117 samples, 0.31%)</title><rect x="882.6" y="257" width="3.6" height="15.0" fill="rgb(254,29,20)" rx="2" ry="2" />
<text text-anchor="" x="885.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (15 samples, 0.04%)</title><rect x="15.5" y="497" width="0.4" height="15.0" fill="rgb(240,51,35)" rx="2" ry="2" />
<text text-anchor="" x="18.48" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Add (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Add (10 samples, 0.03%)</title><rect x="273.5" y="353" width="0.3" height="15.0" fill="rgb(208,26,52)" rx="2" ry="2" />
<text text-anchor="" x="276.46" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (52 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (52 samples, 0.14%)</title><rect x="853.7" y="385" width="1.6" height="15.0" fill="rgb(213,42,17)" rx="2" ry="2" />
<text text-anchor="" x="856.73" 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 (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (13 samples, 0.03%)</title><rect x="293.3" y="321" width="0.4" height="15.0" fill="rgb(219,40,27)" rx="2" ry="2" />
<text text-anchor="" x="296.34" y="331.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:: (10,341 samples, 27.00%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (10,341 samples, 27.00%)</title><rect x="850.0" y="417" width="318.6" height="15.0" fill="rgb(228,43,9)" rx="2" ry="2" />
<text text-anchor="" x="853.00" 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('do_futex (216 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (216 samples, 0.56%)</title><rect x="261.4" y="321" width="6.7" height="15.0" fill="rgb(234,66,42)" rx="2" ry="2" />
<text text-anchor="" x="264.45" 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 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (6 samples, 0.02%)</title><rect x="802.0" y="289" width="0.2" height="15.0" fill="rgb(223,27,31)" rx="2" ry="2" />
<text text-anchor="" x="805.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (475 samples, 1.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (475 samples, 1.24%)</title><rect x="77.3" y="433" width="14.6" height="15.0" fill="rgb(211,208,18)" rx="2" ry="2" />
<text text-anchor="" x="80.26" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (4 samples, 0.01%)</title><rect x="465.8" y="481" width="0.1" height="15.0" fill="rgb(205,73,19)" rx="2" ry="2" />
<text text-anchor="" x="468.79" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (301 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (301 samples, 0.79%)</title><rect x="573.7" y="545" width="9.2" height="15.0" fill="rgb(211,75,38)" rx="2" ry="2" />
<text text-anchor="" x="576.66" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (25 samples, 0.07%)</title><rect x="741.4" y="305" width="0.7" height="15.0" fill="rgb(224,174,44)" rx="2" ry="2" />
<text text-anchor="" x="744.36" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (29 samples, 0.08%)</title><rect x="890.4" y="289" width="0.9" height="15.0" fill="rgb(219,62,36)" rx="2" ry="2" />
<text text-anchor="" x="893.39" y="299.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 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>drop_futex_key_refs.isra.14 (5 samples, 0.01%)</title><rect x="1031.3" y="209" width="0.2" height="15.0" fill="rgb(244,66,15)" rx="2" ry="2" />
<text text-anchor="" x="1034.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (9 samples, 0.02%)</title><rect x="414.1" y="529" width="0.3" height="15.0" fill="rgb(240,185,44)" rx="2" ry="2" />
<text text-anchor="" x="417.12" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (14 samples, 0.04%)</title><rect x="593.0" y="465" width="0.4" height="15.0" fill="rgb(234,48,33)" rx="2" ry="2" />
<text text-anchor="" x="596.01" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sendto (5,466 samples, 14.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (5,466 samples, 14.27%)</title><rect x="30.3" y="513" width="168.4" height="15.0" fill="rgb(249,47,15)" rx="2" ry="2" />
<text text-anchor="" x="33.34" 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::internal::IncomingTaskQueue::ReloadWorkQueue (51 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (51 samples, 0.13%)</title><rect x="633.0" y="449" width="1.6" height="15.0" fill="rgb(252,88,41)" rx="2" ry="2" />
<text text-anchor="" x="636.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (11 samples, 0.03%)</title><rect x="655.6" y="273" width="0.4" height="15.0" fill="rgb(238,198,40)" rx="2" ry="2" />
<text text-anchor="" x="658.61" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (34 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (34 samples, 0.09%)</title><rect x="235.7" y="305" width="1.1" height="15.0" fill="rgb(233,147,3)" rx="2" ry="2" />
<text text-anchor="" x="238.72" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (14 samples, 0.04%)</title><rect x="68.8" y="433" width="0.4" height="15.0" fill="rgb(234,51,28)" rx="2" ry="2" />
<text text-anchor="" x="71.76" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (5 samples, 0.01%)</title><rect x="57.8" y="449" width="0.2" height="15.0" fill="rgb(223,189,18)" rx="2" ry="2" />
<text text-anchor="" x="60.82" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sendto (50 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (50 samples, 0.13%)</title><rect x="16.6" y="529" width="1.6" height="15.0" fill="rgb(235,188,8)" rx="2" ry="2" />
<text text-anchor="" x="19.62" 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 (1,535 samples, 4.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1,535 samples, 4.01%)</title><rect x="508.3" y="497" width="47.3" height="15.0" fill="rgb(243,6,7)" rx="2" ry="2" />
<text text-anchor="" x="511.31" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >syst..</text>
</g>
<g class="func_g" onmouseover="s('futex_wait (65 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (65 samples, 0.17%)</title><rect x="199.0" y="401" width="2.0" height="15.0" fill="rgb(243,172,19)" rx="2" ry="2" />
<text text-anchor="" x="201.99" 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 (89 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (89 samples, 0.23%)</title><rect x="202.7" y="401" width="2.8" height="15.0" fill="rgb(212,58,23)" rx="2" ry="2" />
<text text-anchor="" x="205.72" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (5 samples, 0.01%)</title><rect x="673.9" y="401" width="0.2" height="15.0" fill="rgb(210,97,2)" rx="2" ry="2" />
<text text-anchor="" x="676.92" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_balance (69 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (69 samples, 0.18%)</title><rect x="787.0" y="289" width="2.1" height="15.0" fill="rgb(233,106,15)" rx="2" ry="2" />
<text text-anchor="" x="789.96" y="299.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (11 samples, 0.03%)</title><rect x="328.6" y="161" width="0.3" height="15.0" fill="rgb(232,32,41)" rx="2" ry="2" />
<text text-anchor="" x="331.56" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (49 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (49 samples, 0.13%)</title><rect x="268.3" y="369" width="1.5" height="15.0" fill="rgb(222,1,44)" rx="2" ry="2" />
<text text-anchor="" x="271.26" y="379.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 (21 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (21 samples, 0.05%)</title><rect x="218.8" y="353" width="0.7" height="15.0" fill="rgb(252,39,14)" rx="2" ry="2" />
<text text-anchor="" x="221.84" y="363.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.01%)</title><rect x="582.9" y="481" width="0.2" height="15.0" fill="rgb(243,42,16)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="491.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 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (10 samples, 0.03%)</title><rect x="1175.1" y="433" width="0.4" height="15.0" fill="rgb(244,84,45)" rx="2" ry="2" />
<text text-anchor="" x="1178.15" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (15 samples, 0.04%)</title><rect x="1130.0" y="209" width="0.4" height="15.0" fill="rgb(219,56,5)" rx="2" ry="2" />
<text text-anchor="" x="1132.98" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (8 samples, 0.02%)</title><rect x="871.1" y="337" width="0.3" height="15.0" fill="rgb(230,196,47)" rx="2" ry="2" />
<text text-anchor="" x="874.14" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.01%)</title><rect x="10.1" y="193" width="0.1" height="15.0" fill="rgb(214,192,34)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (48 samples, 0.13%)</title><rect x="196.8" y="497" width="1.5" height="15.0" fill="rgb(210,96,13)" rx="2" ry="2" />
<text text-anchor="" x="199.81" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (444 samples, 1.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (444 samples, 1.16%)</title><rect x="521.8" y="385" width="13.7" height="15.0" fill="rgb(212,59,53)" rx="2" ry="2" />
<text text-anchor="" x="524.83" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Add (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Add (9 samples, 0.02%)</title><rect x="274.5" y="337" width="0.2" height="15.0" fill="rgb(230,98,54)" rx="2" ry="2" />
<text text-anchor="" x="277.45" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_setclock (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_setclock (8 samples, 0.02%)</title><rect x="494.0" y="497" width="0.3" height="15.0" fill="rgb(252,150,32)" rx="2" ry="2" />
<text text-anchor="" x="497.04" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (19,382 samples, 50.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (19,382 samples, 50.61%)</title><rect x="592.8" y="481" width="597.2" height="15.0" fill="rgb(222,193,31)" rx="2" ry="2" />
<text text-anchor="" x="595.82" 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('mutex_lock_interruptible (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (12 samples, 0.03%)</title><rect x="890.0" y="289" width="0.4" height="15.0" fill="rgb(210,145,12)" rx="2" ry="2" />
<text text-anchor="" x="893.02" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (85 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (85 samples, 0.22%)</title><rect x="793.0" y="257" width="2.6" height="15.0" fill="rgb(240,123,50)" rx="2" ry="2" />
<text text-anchor="" x="795.97" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (7 samples, 0.02%)</title><rect x="305.8" y="289" width="0.3" height="15.0" fill="rgb(225,164,53)" rx="2" ry="2" />
<text text-anchor="" x="308.85" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (9 samples, 0.02%)</title><rect x="1189.7" y="465" width="0.3" height="15.0" fill="rgb(220,101,45)" rx="2" ry="2" />
<text text-anchor="" x="1192.72" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (9 samples, 0.02%)</title><rect x="476.0" y="465" width="0.3" height="15.0" fill="rgb(207,60,51)" rx="2" ry="2" />
<text text-anchor="" x="479.05" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (24 samples, 0.06%)</title><rect x="534.6" y="305" width="0.8" height="15.0" fill="rgb(231,15,1)" rx="2" ry="2" />
<text text-anchor="" x="537.65" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Add (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Add (6 samples, 0.02%)</title><rect x="481.7" y="481" width="0.1" height="15.0" fill="rgb(224,113,1)" rx="2" ry="2" />
<text text-anchor="" x="484.65" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::test::WaitIfNecessary (3,467 samples, 9.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (3,467 samples, 9.05%)</title><rect x="458.4" y="529" width="106.8" height="15.0" fill="rgb(249,24,37)" rx="2" ry="2" />
<text text-anchor="" x="461.42" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system:..</text>
</g>
<g class="func_g" onmouseover="s('__do_softirq (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (8 samples, 0.02%)</title><rect x="521.4" y="337" width="0.2" height="15.0" fill="rgb(237,63,45)" rx="2" ry="2" />
<text text-anchor="" x="524.37" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (15 samples, 0.04%)</title><rect x="742.5" y="257" width="0.5" height="15.0" fill="rgb(222,76,48)" rx="2" ry="2" />
<text text-anchor="" x="745.50" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('start_thread (19,382 samples, 50.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (19,382 samples, 50.61%)</title><rect x="592.8" y="545" width="597.2" height="15.0" fill="rgb(247,6,27)" rx="2" ry="2" />
<text text-anchor="" x="595.82" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (4 samples, 0.01%)</title><rect x="872.1" y="369" width="0.1" height="15.0" fill="rgb(214,38,0)" rx="2" ry="2" />
<text text-anchor="" x="875.09" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (12 samples, 0.03%)</title><rect x="544.4" y="289" width="0.4" height="15.0" fill="rgb(241,208,48)" rx="2" ry="2" />
<text text-anchor="" x="547.39" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="393.0" y="513" width="0.1" height="15.0" fill="rgb(249,214,33)" rx="2" ry="2" />
<text text-anchor="" x="395.98" 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 (257 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (257 samples, 0.67%)</title><rect x="777.3" y="241" width="8.0" height="15.0" fill="rgb(220,164,26)" rx="2" ry="2" />
<text text-anchor="" x="780.35" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (4 samples, 0.01%)</title><rect x="769.3" y="273" width="0.1" height="15.0" fill="rgb(222,165,22)" rx="2" ry="2" />
<text text-anchor="" x="772.28" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (99 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (99 samples, 0.26%)</title><rect x="156.7" y="241" width="3.1" height="15.0" fill="rgb(244,102,37)" rx="2" ry="2" />
<text text-anchor="" x="159.72" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (5,348 samples, 13.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (5,348 samples, 13.96%)</title><rect x="987.4" y="369" width="164.8" height="15.0" fill="rgb(217,203,25)" rx="2" ry="2" />
<text text-anchor="" x="990.39" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Channel..</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.01%)</title><rect x="371.3" y="417" width="0.1" height="15.0" fill="rgb(214,1,15)" rx="2" ry="2" />
<text text-anchor="" x="374.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::test::MultiprocessMessagePipeTestBase::Init (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::MultiprocessMessagePipeTestBase::Init (5 samples, 0.01%)</title><rect x="370.0" y="401" width="0.2" height="15.0" fill="rgb(225,118,50)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (84 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (84 samples, 0.22%)</title><rect x="40.0" y="433" width="2.6" height="15.0" fill="rgb(207,166,8)" rx="2" ry="2" />
<text text-anchor="" x="43.01" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (31 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (31 samples, 0.08%)</title><rect x="161.4" y="225" width="0.9" height="15.0" fill="rgb(234,206,5)" rx="2" ry="2" />
<text text-anchor="" x="164.37" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (88 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (88 samples, 0.23%)</title><rect x="447.5" y="465" width="2.7" height="15.0" fill="rgb(249,93,29)" rx="2" ry="2" />
<text text-anchor="" x="450.49" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (87 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (87 samples, 0.23%)</title><rect x="1108.1" y="65" width="2.7" height="15.0" fill="rgb(233,10,5)" rx="2" ry="2" />
<text text-anchor="" x="1111.14" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (95 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (95 samples, 0.25%)</title><rect x="242.1" y="321" width="2.9" height="15.0" fill="rgb(214,226,39)" rx="2" ry="2" />
<text text-anchor="" x="245.07" 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 (132 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (132 samples, 0.34%)</title><rect x="331.7" y="161" width="4.1" height="15.0" fill="rgb(229,225,53)" rx="2" ry="2" />
<text text-anchor="" x="334.70" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (26 samples, 0.07%)</title><rect x="225.2" y="369" width="0.8" height="15.0" fill="rgb(229,172,41)" rx="2" ry="2" />
<text text-anchor="" x="228.25" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="433" width="0.2" height="15.0" fill="rgb(243,78,3)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (26 samples, 0.07%)</title><rect x="534.6" y="321" width="0.8" height="15.0" fill="rgb(238,227,41)" rx="2" ry="2" />
<text text-anchor="" x="537.59" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (15 samples, 0.04%)</title><rect x="235.3" y="305" width="0.4" height="15.0" fill="rgb(211,4,54)" rx="2" ry="2" />
<text text-anchor="" x="238.26" 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 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (5 samples, 0.01%)</title><rect x="160.3" y="257" width="0.1" height="15.0" fill="rgb(240,228,11)" rx="2" ry="2" />
<text text-anchor="" x="163.27" y="267.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (7 samples, 0.02%)</title><rect x="540.8" y="353" width="0.2" height="15.0" fill="rgb(205,120,43)" rx="2" ry="2" />
<text text-anchor="" x="543.78" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.01%)</title><rect x="370.0" y="305" width="0.1" height="15.0" fill="rgb(215,63,49)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (12 samples, 0.03%)</title><rect x="592.5" y="401" width="0.3" height="15.0" fill="rgb(241,120,9)" rx="2" ry="2" />
<text text-anchor="" x="595.45" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free@plt (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (12 samples, 0.03%)</title><rect x="844.7" y="417" width="0.4" height="15.0" fill="rgb(212,181,44)" rx="2" ry="2" />
<text text-anchor="" x="847.70" 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 (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (11 samples, 0.03%)</title><rect x="314.5" y="241" width="0.3" height="15.0" fill="rgb(230,29,8)" rx="2" ry="2" />
<text text-anchor="" x="317.47" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (18 samples, 0.05%)</title><rect x="849.4" y="417" width="0.6" height="15.0" fill="rgb(232,44,36)" rx="2" ry="2" />
<text text-anchor="" x="852.45" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (35 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (35 samples, 0.09%)</title><rect x="656.8" y="257" width="1.1" height="15.0" fill="rgb(242,224,34)" rx="2" ry="2" />
<text text-anchor="" x="659.82" 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 (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (23 samples, 0.06%)</title><rect x="264.6" y="289" width="0.7" height="15.0" fill="rgb(223,10,45)" rx="2" ry="2" />
<text text-anchor="" x="267.56" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('source_load (58 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>source_load (58 samples, 0.15%)</title><rect x="1081.1" y="129" width="1.8" height="15.0" fill="rgb(210,11,1)" rx="2" ry="2" />
<text text-anchor="" x="1084.08" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (4,037 samples, 10.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (4,037 samples, 10.54%)</title><rect x="686.2" y="385" width="124.4" height="15.0" fill="rgb(224,95,45)" rx="2" ry="2" />
<text text-anchor="" x="689.24" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (127 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (127 samples, 0.33%)</title><rect x="152.8" y="241" width="3.9" height="15.0" fill="rgb(239,68,41)" rx="2" ry="2" />
<text text-anchor="" x="155.81" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.01%)</title><rect x="370.0" y="177" width="0.1" height="15.0" fill="rgb(205,30,24)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (50 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (50 samples, 0.13%)</title><rect x="259.3" y="337" width="1.5" height="15.0" fill="rgb(214,176,25)" rx="2" ry="2" />
<text text-anchor="" x="262.26" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (168 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (168 samples, 0.44%)</title><rect x="795.9" y="209" width="5.2" height="15.0" fill="rgb(213,4,6)" rx="2" ry="2" />
<text text-anchor="" x="798.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (7 samples, 0.02%)</title><rect x="10.3" y="529" width="0.2" height="15.0" fill="rgb(225,131,21)" rx="2" ry="2" />
<text text-anchor="" x="13.28" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (11 samples, 0.03%)</title><rect x="269.8" y="369" width="0.3" height="15.0" fill="rgb(241,105,22)" rx="2" ry="2" />
<text text-anchor="" x="272.77" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (12 samples, 0.03%)</title><rect x="592.5" y="481" width="0.3" height="15.0" fill="rgb(243,178,6)" rx="2" ry="2" />
<text text-anchor="" x="595.45" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (45 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (45 samples, 0.12%)</title><rect x="445.4" y="449" width="1.3" height="15.0" fill="rgb(232,69,18)" rx="2" ry="2" />
<text text-anchor="" x="448.36" 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 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (4 samples, 0.01%)</title><rect x="1069.5" y="49" width="0.2" height="15.0" fill="rgb(241,86,33)" rx="2" ry="2" />
<text text-anchor="" x="1072.53" y="59.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.01%)</title><rect x="10.1" y="161" width="0.1" height="15.0" fill="rgb(239,192,17)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (27 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (27 samples, 0.07%)</title><rect x="830.2" y="417" width="0.8" height="15.0" fill="rgb(223,40,54)" rx="2" ry="2" />
<text text-anchor="" x="833.19" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (9 samples, 0.02%)</title><rect x="528.1" y="321" width="0.3" height="15.0" fill="rgb(242,135,20)" rx="2" ry="2" />
<text text-anchor="" x="531.15" 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 (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (25 samples, 0.07%)</title><rect x="1068.6" y="145" width="0.7" height="15.0" fill="rgb(228,122,21)" rx="2" ry="2" />
<text text-anchor="" x="1071.57" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (5,022 samples, 13.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (5,022 samples, 13.11%)</title><rect x="993.7" y="353" width="154.7" height="15.0" fill="rgb(251,141,34)" rx="2" ry="2" />
<text text-anchor="" x="996.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Chann..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (5,186 samples, 13.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (5,186 samples, 13.54%)</title><rect x="410.9" y="545" width="159.8" height="15.0" fill="rgb(221,60,21)" rx="2" ry="2" />
<text text-anchor="" x="413.91" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (21 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (21 samples, 0.05%)</title><rect x="825.0" y="433" width="0.6" height="15.0" fill="rgb(214,60,31)" rx="2" ry="2" />
<text text-anchor="" x="827.95" 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 (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_destroy@@GLIBC_2.3.2 (26 samples, 0.07%)</title><rect x="565.9" y="529" width="0.8" height="15.0" fill="rgb(217,25,16)" rx="2" ry="2" />
<text text-anchor="" x="568.86" y="539.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 (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (14 samples, 0.04%)</title><rect x="424.0" y="497" width="0.4" height="15.0" fill="rgb(229,56,24)" rx="2" ry="2" />
<text text-anchor="" x="426.98" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (14 samples, 0.04%)</title><rect x="512.4" y="433" width="0.4" height="15.0" fill="rgb(205,229,18)" rx="2" ry="2" />
<text text-anchor="" x="515.37" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (55 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (55 samples, 0.14%)</title><rect x="531.9" y="321" width="1.7" height="15.0" fill="rgb(209,212,7)" rx="2" ry="2" />
<text text-anchor="" x="534.88" y="331.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>verify_iovec (12 samples, 0.03%)</title><rect x="949.2" y="305" width="0.4" height="15.0" fill="rgb(247,67,13)" rx="2" ry="2" />
<text text-anchor="" x="952.21" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key_refs.isra.13 (71 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (71 samples, 0.19%)</title><rect x="1053.8" y="193" width="2.2" height="15.0" fill="rgb(225,3,9)" rx="2" ry="2" />
<text text-anchor="" x="1056.85" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (11 samples, 0.03%)</title><rect x="443.4" y="433" width="0.3" height="15.0" fill="rgb(244,127,53)" rx="2" ry="2" />
<text text-anchor="" x="446.39" y="443.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.01%)</title><rect x="371.3" y="401" width="0.1" height="15.0" fill="rgb(236,228,2)" rx="2" ry="2" />
<text text-anchor="" x="374.29" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="529" width="0.2" height="15.0" fill="rgb(251,43,3)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="539.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (4 samples, 0.01%)</title><rect x="10.0" y="497" width="0.1" height="15.0" fill="rgb(205,38,48)" 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('put_prev_task_fair (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (17 samples, 0.04%)</title><rect x="809.6" y="321" width="0.5" height="15.0" fill="rgb(241,43,41)" rx="2" ry="2" />
<text text-anchor="" x="812.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_unlock_usercnt (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_unlock_usercnt (16 samples, 0.04%)</title><rect x="271.1" y="369" width="0.5" height="15.0" fill="rgb(245,62,29)" rx="2" ry="2" />
<text text-anchor="" x="274.12" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (5 samples, 0.01%)</title><rect x="299.1" y="321" width="0.2" height="15.0" fill="rgb(221,131,38)" rx="2" ry="2" />
<text text-anchor="" x="302.10" 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 (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (12 samples, 0.03%)</title><rect x="592.5" y="385" width="0.3" height="15.0" fill="rgb(226,44,51)" rx="2" ry="2" />
<text text-anchor="" x="595.45" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (37 samples, 0.10%)</title><rect x="28.2" y="529" width="1.1" height="15.0" fill="rgb(215,123,21)" rx="2" ry="2" />
<text text-anchor="" x="31.21" 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_refs.isra.13 (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.13 (24 samples, 0.06%)</title><rect x="554.4" y="417" width="0.8" height="15.0" fill="rgb(241,119,34)" rx="2" ry="2" />
<text text-anchor="" x="557.43" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (364 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (364 samples, 0.95%)</title><rect x="1116.3" y="129" width="11.2" height="15.0" fill="rgb(225,216,20)" rx="2" ry="2" />
<text text-anchor="" x="1119.27" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kretprobe_trampoline (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (5 samples, 0.01%)</title><rect x="10.1" y="321" width="0.2" height="15.0" fill="rgb(229,176,5)" rx="2" ry="2" />
<text text-anchor="" x="13.12" 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 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (4 samples, 0.01%)</title><rect x="424.6" y="513" width="0.1" height="15.0" fill="rgb(214,222,45)" rx="2" ry="2" />
<text text-anchor="" x="427.62" y="523.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (5 samples, 0.01%)</title><rect x="674.7" y="401" width="0.1" height="15.0" fill="rgb(222,13,23)" rx="2" ry="2" />
<text text-anchor="" x="677.66" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (45 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (45 samples, 0.12%)</title><rect x="552.3" y="417" width="1.4" height="15.0" fill="rgb(243,209,15)" rx="2" ry="2" />
<text text-anchor="" x="555.27" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (15 samples, 0.04%)</title><rect x="447.0" y="449" width="0.5" height="15.0" fill="rgb(240,217,22)" rx="2" ry="2" />
<text text-anchor="" x="449.99" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (181 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (181 samples, 0.47%)</title><rect x="938.8" y="273" width="5.6" height="15.0" fill="rgb(240,144,45)" rx="2" ry="2" />
<text text-anchor="" x="941.80" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (17 samples, 0.04%)</title><rect x="26.6" y="529" width="0.5" height="15.0" fill="rgb(208,228,47)" rx="2" ry="2" />
<text text-anchor="" x="29.61" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (11 samples, 0.03%)</title><rect x="806.8" y="321" width="0.4" height="15.0" fill="rgb(242,60,51)" rx="2" ry="2" />
<text text-anchor="" x="809.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_active (132 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (132 samples, 0.34%)</title><rect x="1183.9" y="433" width="4.0" height="15.0" fill="rgb(219,81,9)" rx="2" ry="2" />
<text text-anchor="" x="1186.87" 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 (62 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (62 samples, 0.16%)</title><rect x="451.4" y="481" width="1.9" height="15.0" fill="rgb(248,80,32)" rx="2" ry="2" />
<text text-anchor="" x="454.43" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (4 samples, 0.01%)</title><rect x="210.8" y="369" width="0.1" height="15.0" fill="rgb(229,155,21)" rx="2" ry="2" />
<text text-anchor="" x="213.76" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (69 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (69 samples, 0.18%)</title><rect x="538.1" y="289" width="2.1" height="15.0" fill="rgb(248,218,37)" rx="2" ry="2" />
<text text-anchor="" x="541.07" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (19,382 samples, 50.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (19,382 samples, 50.61%)</title><rect x="592.8" y="497" width="597.2" height="15.0" fill="rgb(211,153,47)" rx="2" ry="2" />
<text text-anchor="" x="595.82" 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('idle_balance (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (8 samples, 0.02%)</title><rect x="346.9" y="257" width="0.2" height="15.0" fill="rgb(232,2,46)" rx="2" ry="2" />
<text text-anchor="" x="349.89" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (170 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (170 samples, 0.44%)</title><rect x="795.8" y="225" width="5.3" height="15.0" fill="rgb(246,197,11)" rx="2" ry="2" />
<text text-anchor="" x="798.83" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (7 samples, 0.02%)</title><rect x="1069.7" y="145" width="0.3" height="15.0" fill="rgb(211,16,52)" rx="2" ry="2" />
<text text-anchor="" x="1072.74" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (58 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (58 samples, 0.15%)</title><rect x="793.8" y="241" width="1.8" height="15.0" fill="rgb(231,111,14)" rx="2" ry="2" />
<text text-anchor="" x="796.80" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (40 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (40 samples, 0.10%)</title><rect x="848.2" y="417" width="1.2" height="15.0" fill="rgb(238,80,6)" rx="2" ry="2" />
<text text-anchor="" x="851.21" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (24 samples, 0.06%)</title><rect x="829.4" y="417" width="0.8" height="15.0" fill="rgb(236,166,24)" rx="2" ry="2" />
<text text-anchor="" x="832.45" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (14 samples, 0.04%)</title><rect x="760.6" y="225" width="0.5" height="15.0" fill="rgb(205,67,16)" rx="2" ry="2" />
<text text-anchor="" x="763.65" y="235.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.01%)</title><rect x="370.0" y="113" width="0.1" height="15.0" fill="rgb(220,81,2)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_getpeersec_dgram (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (13 samples, 0.03%)</title><rect x="61.6" y="449" width="0.4" height="15.0" fill="rgb(212,97,43)" rx="2" ry="2" />
<text text-anchor="" x="64.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (74 samples, 0.19%)</title><rect x="655.6" y="353" width="2.3" height="15.0" fill="rgb(254,36,36)" rx="2" ry="2" />
<text text-anchor="" x="658.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (65 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (65 samples, 0.17%)</title><rect x="199.0" y="417" width="2.0" height="15.0" fill="rgb(220,203,24)" rx="2" ry="2" />
<text text-anchor="" x="201.99" y="427.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (4 samples, 0.01%)</title><rect x="10.0" y="481" width="0.1" height="15.0" fill="rgb(237,83,46)" 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('mojo_message_pi (18,202 samples, 47.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo_message_pi (18,202 samples, 47.53%)</title><rect x="10.1" y="561" width="560.8" height="15.0" fill="rgb(239,209,32)" rx="2" ry="2" />
<text text-anchor="" x="13.12" 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('account_entity_dequeue (46 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (46 samples, 0.12%)</title><rect x="746.8" y="257" width="1.4" height="15.0" fill="rgb(236,78,27)" rx="2" ry="2" />
<text text-anchor="" x="749.78" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (11 samples, 0.03%)</title><rect x="682.9" y="401" width="0.3" height="15.0" fill="rgb(246,54,1)" rx="2" ry="2" />
<text text-anchor="" x="685.85" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (27 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (27 samples, 0.07%)</title><rect x="742.1" y="305" width="0.9" height="15.0" fill="rgb(223,192,50)" rx="2" ry="2" />
<text text-anchor="" x="745.13" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('find_busiest_group (34 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (34 samples, 0.09%)</title><rect x="336.6" y="209" width="1.0" height="15.0" fill="rgb(228,178,3)" rx="2" ry="2" />
<text text-anchor="" x="339.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (13 samples, 0.03%)</title><rect x="742.5" y="241" width="0.4" height="15.0" fill="rgb(229,65,52)" rx="2" ry="2" />
<text text-anchor="" x="745.50" 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 (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (19 samples, 0.05%)</title><rect x="450.2" y="465" width="0.6" height="15.0" fill="rgb(223,107,25)" rx="2" ry="2" />
<text text-anchor="" x="453.23" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (31 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (31 samples, 0.08%)</title><rect x="1150.9" y="337" width="1.0" height="15.0" fill="rgb(215,76,39)" rx="2" ry="2" />
<text text-anchor="" x="1153.90" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (506 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (506 samples, 1.32%)</title><rect x="460.7" y="513" width="15.6" height="15.0" fill="rgb(207,130,17)" rx="2" ry="2" />
<text text-anchor="" x="463.73" y="523.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 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (6 samples, 0.02%)</title><rect x="446.7" y="449" width="0.2" height="15.0" fill="rgb(231,193,10)" rx="2" ry="2" />
<text text-anchor="" x="449.75" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (6 samples, 0.02%)</title><rect x="315.2" y="209" width="0.2" height="15.0" fill="rgb(252,57,30)" rx="2" ry="2" />
<text text-anchor="" x="318.18" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (23 samples, 0.06%)</title><rect x="1115.3" y="65" width="0.7" height="15.0" fill="rgb(245,47,54)" rx="2" ry="2" />
<text text-anchor="" x="1118.31" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (311 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (311 samples, 0.81%)</title><rect x="923.5" y="177" width="9.6" height="15.0" fill="rgb(219,228,9)" rx="2" ry="2" />
<text text-anchor="" x="926.55" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (4 samples, 0.01%)</title><rect x="629.1" y="433" width="0.1" height="15.0" fill="rgb(215,164,51)" rx="2" ry="2" />
<text text-anchor="" x="632.09" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (5 samples, 0.01%)</title><rect x="1028.4" y="241" width="0.2" height="15.0" fill="rgb(243,188,42)" rx="2" ry="2" />
<text text-anchor="" x="1031.43" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_alloc (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (8 samples, 0.02%)</title><rect x="83.2" y="385" width="0.3" height="15.0" fill="rgb(220,67,46)" rx="2" ry="2" />
<text text-anchor="" x="86.24" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (106 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (106 samples, 0.28%)</title><rect x="341.1" y="193" width="3.2" height="15.0" fill="rgb(225,34,26)" rx="2" ry="2" />
<text text-anchor="" x="344.06" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (147 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (147 samples, 0.38%)</title><rect x="1130.7" y="273" width="4.5" height="15.0" fill="rgb(231,179,25)" rx="2" ry="2" />
<text text-anchor="" x="1133.69" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (705 samples, 1.84%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (705 samples, 1.84%)</title><rect x="371.4" y="545" width="21.7" height="15.0" fill="rgb(245,53,26)" rx="2" ry="2" />
<text text-anchor="" x="374.41" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (4 samples, 0.01%)</title><rect x="1069.5" y="33" width="0.2" height="15.0" fill="rgb(245,180,28)" rx="2" ry="2" />
<text text-anchor="" x="1072.53" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (71 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (71 samples, 0.19%)</title><rect x="349.8" y="273" width="2.2" height="15.0" fill="rgb(250,206,44)" rx="2" ry="2" />
<text text-anchor="" x="352.85" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::Test::Run (5,488 samples, 14.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::Test::Run (5,488 samples, 14.33%)</title><rect x="201.2" y="433" width="169.0" height="15.0" fill="rgb(208,156,45)" rx="2" ry="2" />
<text text-anchor="" x="204.15" 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('__pthread_enable_asynccancel (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (16 samples, 0.04%)</title><rect x="477.4" y="513" width="0.5" height="15.0" fill="rgb(239,205,24)" rx="2" ry="2" />
<text text-anchor="" x="480.43" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (6 samples, 0.02%)</title><rect x="769.1" y="257" width="0.2" height="15.0" fill="rgb(224,224,32)" rx="2" ry="2" />
<text text-anchor="" x="772.09" 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::WriteMessage (1,010 samples, 2.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (1,010 samples, 2.64%)</title><rect x="426.6" y="529" width="31.1" height="15.0" fill="rgb(251,191,44)" rx="2" ry="2" />
<text text-anchor="" x="429.56" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.01%)</title><rect x="371.3" y="385" width="0.1" height="15.0" fill="rgb(236,216,2)" rx="2" ry="2" />
<text text-anchor="" x="374.29" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (7 samples, 0.02%)</title><rect x="314.6" y="177" width="0.2" height="15.0" fill="rgb(235,227,29)" rx="2" ry="2" />
<text text-anchor="" x="317.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_futex_key (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (10 samples, 0.03%)</title><rect x="475.7" y="449" width="0.3" height="15.0" fill="rgb(254,157,52)" rx="2" ry="2" />
<text text-anchor="" x="478.74" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (13 samples, 0.03%)</title><rect x="1027.8" y="257" width="0.4" height="15.0" fill="rgb(222,45,10)" rx="2" ry="2" />
<text text-anchor="" x="1030.84" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.01%)</title><rect x="371.3" y="497" width="0.1" height="15.0" fill="rgb(248,220,7)" rx="2" ry="2" />
<text text-anchor="" x="374.29" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (12 samples, 0.03%)</title><rect x="950.7" y="321" width="0.4" height="15.0" fill="rgb(226,61,40)" rx="2" ry="2" />
<text text-anchor="" x="953.69" 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::EnqueueMessageNoLock (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (9 samples, 0.02%)</title><rect x="239.0" y="289" width="0.2" height="15.0" fill="rgb(229,149,5)" rx="2" ry="2" />
<text text-anchor="" x="241.96" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (187 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (187 samples, 0.49%)</title><rect x="262.2" y="305" width="5.7" height="15.0" fill="rgb(209,89,26)" rx="2" ry="2" />
<text text-anchor="" x="265.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_process_times (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (10 samples, 0.03%)</title><rect x="742.6" y="193" width="0.3" height="15.0" fill="rgb(242,199,14)" rx="2" ry="2" />
<text text-anchor="" x="745.59" y="203.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.01%)</title><rect x="10.0" y="353" width="0.1" height="15.0" fill="rgb(231,19,42)" 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('__perf_event_task_sched_in (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (12 samples, 0.03%)</title><rect x="592.5" y="465" width="0.3" height="15.0" fill="rgb(212,11,46)" rx="2" ry="2" />
<text text-anchor="" x="595.45" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (8 samples, 0.02%)</title><rect x="314.6" y="193" width="0.2" height="15.0" fill="rgb(238,60,16)" rx="2" ry="2" />
<text text-anchor="" x="317.57" y="203.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (4 samples, 0.01%)</title><rect x="26.5" y="529" width="0.1" height="15.0" fill="rgb(246,64,49)" rx="2" ry="2" />
<text text-anchor="" x="29.48" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (183 samples, 0.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (183 samples, 0.48%)</title><rect x="419.0" y="513" width="5.6" height="15.0" fill="rgb(207,221,28)" rx="2" ry="2" />
<text text-anchor="" x="421.99" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (15 samples, 0.04%)</title><rect x="300.8" y="353" width="0.5" height="15.0" fill="rgb(229,53,43)" rx="2" ry="2" />
<text text-anchor="" x="303.83" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (113 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (113 samples, 0.30%)</title><rect x="537.5" y="369" width="3.5" height="15.0" fill="rgb(212,171,47)" rx="2" ry="2" />
<text text-anchor="" x="540.52" 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 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (7 samples, 0.02%)</title><rect x="776.9" y="273" width="0.2" height="15.0" fill="rgb(240,141,9)" rx="2" ry="2" />
<text text-anchor="" x="779.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (109 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (109 samples, 0.28%)</title><rect x="652.1" y="401" width="3.4" height="15.0" fill="rgb(219,72,11)" rx="2" ry="2" />
<text text-anchor="" x="655.10" 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 (66 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (66 samples, 0.17%)</title><rect x="502.7" y="465" width="2.0" height="15.0" fill="rgb(238,8,26)" rx="2" ry="2" />
<text text-anchor="" x="505.70" y="475.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_comm (4 samples, 0.01%)</title><rect x="10.0" y="417" width="0.1" height="15.0" fill="rgb(225,203,14)" 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('malloc (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (5 samples, 0.01%)</title><rect x="228.6" y="353" width="0.2" height="15.0" fill="rgb(219,11,41)" rx="2" ry="2" />
<text text-anchor="" x="231.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (78 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (78 samples, 0.20%)</title><rect x="198.7" y="497" width="2.5" height="15.0" fill="rgb(251,32,48)" rx="2" ry="2" />
<text text-anchor="" x="201.75" 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 (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (23 samples, 0.06%)</title><rect x="1115.3" y="49" width="0.7" height="15.0" fill="rgb(232,227,29)" rx="2" ry="2" />
<text text-anchor="" x="1118.31" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (3,313 samples, 8.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (3,313 samples, 8.65%)</title><rect x="1028.6" y="241" width="102.1" height="15.0" fill="rgb(205,134,6)" rx="2" ry="2" />
<text text-anchor="" x="1031.58" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_futex</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (23 samples, 0.06%)</title><rect x="259.8" y="321" width="0.7" height="15.0" fill="rgb(214,125,34)" rx="2" ry="2" />
<text text-anchor="" x="262.78" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (7 samples, 0.02%)</title><rect x="83.6" y="401" width="0.2" height="15.0" fill="rgb(227,117,39)" rx="2" ry="2" />
<text text-anchor="" x="86.58" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (30 samples, 0.08%)</title><rect x="436.2" y="465" width="0.9" height="15.0" fill="rgb(245,41,1)" rx="2" ry="2" />
<text text-anchor="" x="439.18" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (6 samples, 0.02%)</title><rect x="327.4" y="177" width="0.2" height="15.0" fill="rgb(237,223,10)" rx="2" ry="2" />
<text text-anchor="" x="330.38" y="187.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (4 samples, 0.01%)</title><rect x="435.8" y="481" width="0.1" height="15.0" fill="rgb(250,61,27)" rx="2" ry="2" />
<text text-anchor="" x="438.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (4 samples, 0.01%)</title><rect x="292.6" y="353" width="0.1" height="15.0" fill="rgb(242,201,36)" rx="2" ry="2" />
<text text-anchor="" x="295.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock (56 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (56 samples, 0.15%)</title><rect x="726.6" y="353" width="1.8" height="15.0" fill="rgb(241,168,14)" rx="2" ry="2" />
<text text-anchor="" x="729.63" y="363.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.01%)</title><rect x="582.9" y="417" width="0.2" height="15.0" fill="rgb(248,43,9)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait_setup (119 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (119 samples, 0.31%)</title><rect x="551.5" y="433" width="3.7" height="15.0" fill="rgb(242,15,50)" rx="2" ry="2" />
<text text-anchor="" x="554.50" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (58 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (58 samples, 0.15%)</title><rect x="416.8" y="513" width="1.8" height="15.0" fill="rgb(211,39,39)" rx="2" ry="2" />
<text text-anchor="" x="419.83" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (10 samples, 0.03%)</title><rect x="726.3" y="337" width="0.3" height="15.0" fill="rgb(249,27,49)" rx="2" ry="2" />
<text text-anchor="" x="729.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (16 samples, 0.04%)</title><rect x="634.9" y="449" width="0.5" height="15.0" fill="rgb(220,175,46)" rx="2" ry="2" />
<text text-anchor="" x="637.94" 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 (113 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (113 samples, 0.30%)</title><rect x="249.3" y="353" width="3.5" height="15.0" fill="rgb(220,175,0)" rx="2" ry="2" />
<text text-anchor="" x="252.34" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (65 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (65 samples, 0.17%)</title><rect x="199.0" y="353" width="2.0" height="15.0" fill="rgb(219,144,21)" rx="2" ry="2" />
<text text-anchor="" x="201.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (48 samples, 0.13%)</title><rect x="566.7" y="529" width="1.5" height="15.0" fill="rgb(246,19,41)" rx="2" ry="2" />
<text text-anchor="" x="569.69" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (15 samples, 0.04%)</title><rect x="876.8" y="305" width="0.5" height="15.0" fill="rgb(223,132,3)" rx="2" ry="2" />
<text text-anchor="" x="879.84" 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 (35 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (35 samples, 0.09%)</title><rect x="534.3" y="353" width="1.1" height="15.0" fill="rgb(226,30,45)" rx="2" ry="2" />
<text text-anchor="" x="537.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_condattr_init (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_condattr_init (17 samples, 0.04%)</title><rect x="493.3" y="497" width="0.6" height="15.0" fill="rgb(221,121,35)" rx="2" ry="2" />
<text text-anchor="" x="496.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('maybe_add_creds (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>maybe_add_creds (7 samples, 0.02%)</title><rect x="62.0" y="449" width="0.2" height="15.0" fill="rgb(209,157,45)" rx="2" ry="2" />
<text text-anchor="" x="64.98" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (7 samples, 0.02%)</title><rect x="771.0" y="305" width="0.2" height="15.0" fill="rgb(213,58,8)" rx="2" ry="2" />
<text text-anchor="" x="774.00" 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 (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (23 samples, 0.06%)</title><rect x="328.2" y="209" width="0.7" height="15.0" fill="rgb(210,213,25)" rx="2" ry="2" />
<text text-anchor="" x="331.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (17 samples, 0.04%)</title><rect x="654.9" y="385" width="0.6" height="15.0" fill="rgb(254,23,26)" rx="2" ry="2" />
<text text-anchor="" x="657.94" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (41 samples, 0.11%)</title><rect x="891.3" y="273" width="1.3" height="15.0" fill="rgb(251,154,32)" rx="2" ry="2" />
<text text-anchor="" x="894.35" 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 (103 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (103 samples, 0.27%)</title><rect x="679.5" y="417" width="3.1" height="15.0" fill="rgb(228,149,42)" rx="2" ry="2" />
<text text-anchor="" x="682.46" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_recvmsg (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (15 samples, 0.04%)</title><rect x="879.6" y="289" width="0.5" height="15.0" fill="rgb(242,115,44)" rx="2" ry="2" />
<text text-anchor="" x="882.64" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpumask_next_and (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_and (6 samples, 0.02%)</title><rect x="337.2" y="193" width="0.2" height="15.0" fill="rgb(247,21,27)" rx="2" ry="2" />
<text text-anchor="" x="340.18" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (32 samples, 0.08%)</title><rect x="292.8" y="337" width="0.9" height="15.0" fill="rgb(254,59,1)" rx="2" ry="2" />
<text text-anchor="" x="295.75" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (29 samples, 0.08%)</title><rect x="438.3" y="449" width="0.9" height="15.0" fill="rgb(243,38,21)" rx="2" ry="2" />
<text text-anchor="" x="441.30" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (174 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (174 samples, 0.45%)</title><rect x="294.6" y="353" width="5.3" height="15.0" fill="rgb(234,59,31)" rx="2" ry="2" />
<text text-anchor="" x="297.57" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (20 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (20 samples, 0.05%)</title><rect x="399.5" y="545" width="0.6" height="15.0" fill="rgb(247,66,6)" rx="2" ry="2" />
<text text-anchor="" x="402.45" 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 (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::ConditionVariable::ConditionVariable (13 samples, 0.03%)</title><rect x="283.9" y="353" width="0.4" height="15.0" fill="rgb(224,226,35)" rx="2" ry="2" />
<text text-anchor="" x="286.94" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (34 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (34 samples, 0.09%)</title><rect x="985.7" y="369" width="1.1" height="15.0" fill="rgb(244,5,13)" rx="2" ry="2" />
<text text-anchor="" x="988.72" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="824.8" y="417" width="0.2" height="15.0" fill="rgb(223,120,49)" rx="2" ry="2" />
<text text-anchor="" x="827.83" 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@plt (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (11 samples, 0.03%)</title><rect x="564.9" y="513" width="0.3" height="15.0" fill="rgb(253,148,25)" rx="2" ry="2" />
<text text-anchor="" x="567.91" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (11,298 samples, 29.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (11,298 samples, 29.50%)</title><rect x="825.6" y="433" width="348.1" height="15.0" fill="rgb(217,116,20)" rx="2" ry="2" />
<text text-anchor="" x="828.60" 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 (58 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (58 samples, 0.15%)</title><rect x="1162.5" y="369" width="1.8" height="15.0" fill="rgb(246,43,19)" rx="2" ry="2" />
<text text-anchor="" x="1165.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('SYSC_sendto (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (8 samples, 0.02%)</title><rect x="30.1" y="513" width="0.2" height="15.0" fill="rgb(211,30,16)" rx="2" ry="2" />
<text text-anchor="" x="33.09" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (327 samples, 0.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (327 samples, 0.85%)</title><rect x="437.4" y="465" width="10.1" height="15.0" fill="rgb(230,66,47)" rx="2" ry="2" />
<text text-anchor="" x="440.41" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (6 samples, 0.02%)</title><rect x="710.4" y="353" width="0.2" height="15.0" fill="rgb(213,135,23)" rx="2" ry="2" />
<text text-anchor="" x="713.40" y="363.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 (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (11 samples, 0.03%)</title><rect x="424.7" y="513" width="0.4" height="15.0" fill="rgb(231,38,28)" rx="2" ry="2" />
<text text-anchor="" x="427.75" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (5 samples, 0.01%)</title><rect x="114.2" y="321" width="0.2" height="15.0" fill="rgb(254,75,16)" rx="2" ry="2" />
<text text-anchor="" x="117.23" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (151 samples, 0.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (151 samples, 0.39%)</title><rect x="501.7" y="481" width="4.6" height="15.0" fill="rgb(234,141,28)" rx="2" ry="2" />
<text text-anchor="" x="504.68" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (30 samples, 0.08%)</title><rect x="276.0" y="353" width="0.9" height="15.0" fill="rgb(223,50,45)" rx="2" ry="2" />
<text text-anchor="" x="278.99" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="481" width="0.2" height="15.0" fill="rgb(208,13,9)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (38 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (38 samples, 0.10%)</title><rect x="1003.2" y="305" width="1.2" height="15.0" fill="rgb(223,52,42)" rx="2" ry="2" />
<text text-anchor="" x="1006.22" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_futex (314 samples, 0.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (314 samples, 0.82%)</title><rect x="466.4" y="465" width="9.6" height="15.0" fill="rgb(218,53,40)" rx="2" ry="2" />
<text text-anchor="" x="469.37" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (131 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (131 samples, 0.34%)</title><rect x="117.6" y="305" width="4.1" height="15.0" fill="rgb(239,128,48)" rx="2" ry="2" />
<text text-anchor="" x="120.62" 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 (236 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (236 samples, 0.62%)</title><rect x="187.8" y="481" width="7.3" height="15.0" fill="rgb(239,122,50)" rx="2" ry="2" />
<text text-anchor="" x="190.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (4 samples, 0.01%)</title><rect x="535.4" y="369" width="0.1" height="15.0" fill="rgb(253,3,25)" rx="2" ry="2" />
<text text-anchor="" x="538.39" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.01%)</title><rect x="10.1" y="209" width="0.1" height="15.0" fill="rgb(211,117,52)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (241 samples, 0.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (241 samples, 0.63%)</title><rect x="18.5" y="513" width="7.4" height="15.0" fill="rgb(215,109,44)" rx="2" ry="2" />
<text text-anchor="" x="21.47" y="523.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 (410 samples, 1.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (410 samples, 1.07%)</title><rect x="789.6" y="305" width="12.7" height="15.0" fill="rgb(250,138,12)" rx="2" ry="2" />
<text text-anchor="" x="792.64" y="315.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 (71 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (71 samples, 0.19%)</title><rect x="62.3" y="449" width="2.2" height="15.0" fill="rgb(239,14,26)" rx="2" ry="2" />
<text text-anchor="" x="65.29" 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::GetNextMessageSize (56 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::GetNextMessageSize (56 samples, 0.15%)</title><rect x="967.7" y="401" width="1.7" height="15.0" fill="rgb(232,36,6)" rx="2" ry="2" />
<text text-anchor="" x="970.70" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (731 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (731 samples, 1.91%)</title><rect x="1091.0" y="81" width="22.5" height="15.0" fill="rgb(225,91,35)" rx="2" ry="2" />
<text text-anchor="" x="1094.00" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</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; (8 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; (8 samples, 0.02%)</title><rect x="239.8" y="273" width="0.3" height="15.0" fill="rgb(219,125,6)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (7 samples, 0.02%)</title><rect x="521.6" y="337" width="0.2" height="15.0" fill="rgb(212,125,19)" rx="2" ry="2" />
<text text-anchor="" x="524.62" 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 (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (19 samples, 0.05%)</title><rect x="471.6" y="433" width="0.6" height="15.0" fill="rgb(222,170,17)" rx="2" ry="2" />
<text text-anchor="" x="474.58" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (51 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (51 samples, 0.13%)</title><rect x="674.9" y="417" width="1.6" height="15.0" fill="rgb(226,79,12)" rx="2" ry="2" />
<text text-anchor="" x="677.93" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (302 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (302 samples, 0.79%)</title><rect x="583.1" y="545" width="9.3" height="15.0" fill="rgb(249,190,0)" rx="2" ry="2" />
<text text-anchor="" x="586.08" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (797 samples, 2.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (797 samples, 2.08%)</title><rect x="228.8" y="369" width="24.5" height="15.0" fill="rgb(250,7,8)" rx="2" ry="2" />
<text text-anchor="" x="231.76" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (230 samples, 0.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (230 samples, 0.60%)</title><rect x="778.0" y="209" width="7.1" height="15.0" fill="rgb(213,32,51)" rx="2" ry="2" />
<text text-anchor="" x="780.96" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (2,774 samples, 7.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (2,774 samples, 7.24%)</title><rect x="872.9" y="337" width="85.5" height="15.0" fill="rgb(246,97,51)" rx="2" ry="2" />
<text text-anchor="" x="875.89" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sys_recv..</text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (8 samples, 0.02%)</title><rect x="1069.5" y="81" width="0.2" height="15.0" fill="rgb(228,138,13)" rx="2" ry="2" />
<text text-anchor="" x="1072.50" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (12 samples, 0.03%)</title><rect x="1069.4" y="145" width="0.3" height="15.0" fill="rgb(236,138,14)" rx="2" ry="2" />
<text text-anchor="" x="1072.37" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (12 samples, 0.03%)</title><rect x="258.3" y="321" width="0.4" height="15.0" fill="rgb(237,85,13)" rx="2" ry="2" />
<text text-anchor="" x="261.34" 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 (111 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (111 samples, 0.29%)</title><rect x="704.4" y="369" width="3.4" height="15.0" fill="rgb(222,107,32)" rx="2" ry="2" />
<text text-anchor="" x="707.39" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (7 samples, 0.02%)</title><rect x="522.1" y="353" width="0.2" height="15.0" fill="rgb(224,2,50)" rx="2" ry="2" />
<text text-anchor="" x="525.08" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (58 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (58 samples, 0.15%)</title><rect x="414.9" y="513" width="1.8" height="15.0" fill="rgb(214,97,21)" rx="2" ry="2" />
<text text-anchor="" x="417.95" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (4 samples, 0.01%)</title><rect x="817.8" y="385" width="0.1" height="15.0" fill="rgb(236,30,27)" rx="2" ry="2" />
<text text-anchor="" x="820.77" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (28 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (28 samples, 0.07%)</title><rect x="656.0" y="257" width="0.8" height="15.0" fill="rgb(207,57,6)" rx="2" ry="2" />
<text text-anchor="" x="658.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (49 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (49 samples, 0.13%)</title><rect x="541.0" y="385" width="1.5" height="15.0" fill="rgb(232,119,13)" rx="2" ry="2" />
<text text-anchor="" x="544.00" 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,829 samples, 4.78%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (1,829 samples, 4.78%)</title><rect x="892.7" y="289" width="56.4" height="15.0" fill="rgb(210,176,30)" rx="2" ry="2" />
<text text-anchor="" x="895.74" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_..</text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (32 samples, 0.08%)</title><rect x="370.3" y="545" width="1.0" height="15.0" fill="rgb(248,8,32)" rx="2" ry="2" />
<text text-anchor="" x="373.30" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (10 samples, 0.03%)</title><rect x="506.4" y="481" width="0.3" height="15.0" fill="rgb(233,31,4)" rx="2" ry="2" />
<text text-anchor="" x="509.40" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (630 samples, 1.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (630 samples, 1.64%)</title><rect x="434.5" y="497" width="19.4" height="15.0" fill="rgb(254,185,4)" rx="2" ry="2" />
<text text-anchor="" x="437.48" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (2,453 samples, 6.41%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (2,453 samples, 6.41%)</title><rect x="101.8" y="337" width="75.5" height="15.0" fill="rgb(230,136,14)" rx="2" ry="2" />
<text text-anchor="" x="104.76" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >try_to_w..</text>
</g>
<g class="func_g" onmouseover="s('kfree_skbmem (109 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (109 samples, 0.28%)</title><rect x="898.7" y="257" width="3.3" height="15.0" fill="rgb(248,20,54)" rx="2" ry="2" />
<text text-anchor="" x="901.65" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (460 samples, 1.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (460 samples, 1.20%)</title><rect x="314.8" y="241" width="14.2" height="15.0" fill="rgb(205,88,2)" rx="2" ry="2" />
<text text-anchor="" x="317.81" 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 (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (11 samples, 0.03%)</title><rect x="548.2" y="385" width="0.3" height="15.0" fill="rgb(217,78,49)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (54 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (54 samples, 0.14%)</title><rect x="631.3" y="449" width="1.7" height="15.0" fill="rgb(216,215,17)" rx="2" ry="2" />
<text text-anchor="" x="634.33" 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 (108 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (108 samples, 0.28%)</title><rect x="453.9" y="497" width="3.4" height="15.0" fill="rgb(251,208,12)" rx="2" ry="2" />
<text text-anchor="" x="456.93" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (39 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (39 samples, 0.10%)</title><rect x="1000.5" y="321" width="1.2" height="15.0" fill="rgb(231,20,7)" rx="2" ry="2" />
<text text-anchor="" x="1003.51" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (6 samples, 0.02%)</title><rect x="549.7" y="401" width="0.2" height="15.0" fill="rgb(232,107,32)" rx="2" ry="2" />
<text text-anchor="" x="552.72" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (15 samples, 0.04%)</title><rect x="252.9" y="353" width="0.4" height="15.0" fill="rgb(230,136,20)" rx="2" ry="2" />
<text text-anchor="" x="255.85" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (7 samples, 0.02%)</title><rect x="880.1" y="289" width="0.2" height="15.0" fill="rgb(205,213,52)" rx="2" ry="2" />
<text text-anchor="" x="883.10" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (4 samples, 0.01%)</title><rect x="314.6" y="113" width="0.1" height="15.0" fill="rgb(240,200,39)" rx="2" ry="2" />
<text text-anchor="" x="317.60" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake_op (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (7 samples, 0.02%)</title><rect x="1130.4" y="225" width="0.3" height="15.0" fill="rgb(245,7,20)" rx="2" ry="2" />
<text text-anchor="" x="1133.44" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (4 samples, 0.01%)</title><rect x="465.9" y="497" width="0.1" height="15.0" fill="rgb(248,163,3)" rx="2" ry="2" />
<text text-anchor="" x="468.91" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (440 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (440 samples, 1.15%)</title><rect x="521.8" y="369" width="13.6" height="15.0" fill="rgb(223,218,51)" rx="2" ry="2" />
<text text-anchor="" x="524.83" y="379.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 (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (9 samples, 0.02%)</title><rect x="335.8" y="193" width="0.3" height="15.0" fill="rgb(223,214,39)" rx="2" ry="2" />
<text text-anchor="" x="338.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (31 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (31 samples, 0.08%)</title><rect x="195.2" y="497" width="0.9" height="15.0" fill="rgb(254,125,20)" rx="2" ry="2" />
<text text-anchor="" x="198.17" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::AddAwakable (75 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (75 samples, 0.20%)</title><rect x="480.5" y="513" width="2.3" height="15.0" fill="rgb(241,50,19)" rx="2" ry="2" />
<text text-anchor="" x="483.48" y="523.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 (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_hook (14 samples, 0.04%)</title><rect x="482.4" y="497" width="0.4" height="15.0" fill="rgb(238,115,7)" rx="2" ry="2" />
<text text-anchor="" x="485.36" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (17 samples, 0.04%)</title><rect x="748.2" y="257" width="0.5" height="15.0" fill="rgb(211,167,29)" rx="2" ry="2" />
<text text-anchor="" x="751.20" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (18 samples, 0.05%)</title><rect x="33.0" y="481" width="0.5" height="15.0" fill="rgb(214,15,22)" rx="2" ry="2" />
<text text-anchor="" x="35.99" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (9 samples, 0.02%)</title><rect x="1027.0" y="225" width="0.3" height="15.0" fill="rgb(213,75,13)" rx="2" ry="2" />
<text text-anchor="" x="1030.04" y="235.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_exec (4 samples, 0.01%)</title><rect x="10.1" y="273" width="0.1" height="15.0" fill="rgb(227,68,42)" rx="2" ry="2" />
<text text-anchor="" x="13.12" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="497" width="0.2" height="15.0" fill="rgb(247,51,39)" rx="2" ry="2" />
<text text-anchor="" x="13.12" 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 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (10 samples, 0.03%)</title><rect x="806.1" y="305" width="0.3" height="15.0" fill="rgb(251,144,22)" rx="2" ry="2" />
<text text-anchor="" x="809.09" 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@plt (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (7 samples, 0.02%)</title><rect x="361.9" y="369" width="0.2" height="15.0" fill="rgb(217,98,1)" rx="2" ry="2" />
<text text-anchor="" x="364.89" 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 (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (22 samples, 0.06%)</title><rect x="803.9" y="305" width="0.7" height="15.0" fill="rgb(217,117,3)" rx="2" ry="2" />
<text text-anchor="" x="806.91" 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::Release (92 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (92 samples, 0.24%)</title><rect x="840.1" y="417" width="2.8" height="15.0" fill="rgb(249,106,45)" rx="2" ry="2" />
<text text-anchor="" x="843.08" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__cmpxchg_double_slab.isra.40 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__cmpxchg_double_slab.isra.40 (8 samples, 0.02%)</title><rect x="88.0" y="385" width="0.2" height="15.0" fill="rgb(212,185,20)" rx="2" ry="2" />
<text text-anchor="" x="90.95" 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 (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (19 samples, 0.05%)</title><rect x="248.7" y="337" width="0.6" height="15.0" fill="rgb(233,27,1)" rx="2" ry="2" />
<text text-anchor="" x="251.69" 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 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (7 samples, 0.02%)</title><rect x="463.0" y="465" width="0.3" height="15.0" fill="rgb(209,79,42)" rx="2" ry="2" />
<text text-anchor="" x="466.05" 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 (27 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (27 samples, 0.07%)</title><rect x="239.2" y="289" width="0.9" height="15.0" fill="rgb(237,78,37)" rx="2" ry="2" />
<text text-anchor="" x="242.23" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__queue_work (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__queue_work (4 samples, 0.01%)</title><rect x="521.5" y="273" width="0.1" height="15.0" fill="rgb(226,59,21)" rx="2" ry="2" />
<text text-anchor="" x="524.46" 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 (1,513 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (1,513 samples, 3.95%)</title><rect x="128.0" y="321" width="46.7" height="15.0" fill="rgb(222,152,54)" rx="2" ry="2" />
<text text-anchor="" x="131.04" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ttwu..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (6 samples, 0.02%)</title><rect x="878.3" y="289" width="0.2" height="15.0" fill="rgb(223,162,34)" rx="2" ry="2" />
<text text-anchor="" x="881.35" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_sendmsg (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (24 samples, 0.06%)</title><rect x="37.7" y="465" width="0.7" height="15.0" fill="rgb(238,228,6)" rx="2" ry="2" />
<text text-anchor="" x="40.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (13 samples, 0.03%)</title><rect x="344.8" y="241" width="0.4" height="15.0" fill="rgb(205,60,20)" rx="2" ry="2" />
<text text-anchor="" x="347.76" y="251.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (4 samples, 0.01%)</title><rect x="674.8" y="417" width="0.1" height="15.0" fill="rgb(247,103,12)" rx="2" ry="2" />
<text text-anchor="" x="677.81" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mntput (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mntput (5 samples, 0.01%)</title><rect x="672.3" y="385" width="0.2" height="15.0" fill="rgb(212,124,38)" rx="2" ry="2" />
<text text-anchor="" x="675.34" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (90 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (90 samples, 0.23%)</title><rect x="237.5" y="305" width="2.8" height="15.0" fill="rgb(220,164,10)" rx="2" ry="2" />
<text text-anchor="" x="240.54" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (4 samples, 0.01%)</title><rect x="905.2" y="225" width="0.2" height="15.0" fill="rgb(234,102,44)" rx="2" ry="2" />
<text text-anchor="" x="908.24" 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 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (6 samples, 0.02%)</title><rect x="293.2" y="321" width="0.1" height="15.0" fill="rgb(234,162,34)" rx="2" ry="2" />
<text text-anchor="" x="296.15" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (28 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (28 samples, 0.07%)</title><rect x="1147.5" y="337" width="0.9" height="15.0" fill="rgb(242,215,54)" rx="2" ry="2" />
<text text-anchor="" x="1150.54" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5,583 samples, 14.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5,583 samples, 14.58%)</title><rect x="645.9" y="433" width="172.1" height="15.0" fill="rgb(227,80,25)" rx="2" ry="2" />
<text text-anchor="" x="648.94" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('sys_futex (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (14 samples, 0.04%)</title><rect x="294.1" y="353" width="0.5" height="15.0" fill="rgb(212,192,44)" rx="2" ry="2" />
<text text-anchor="" x="297.14" y="363.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>stop_one_cpu (4 samples, 0.01%)</title><rect x="10.1" y="257" width="0.1" height="15.0" fill="rgb(235,104,51)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (6 samples, 0.02%)</title><rect x="912.0" y="225" width="0.2" height="15.0" fill="rgb(212,101,31)" rx="2" ry="2" />
<text text-anchor="" x="915.02" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (16 samples, 0.04%)</title><rect x="742.5" y="273" width="0.5" height="15.0" fill="rgb(234,153,30)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (5,336 samples, 13.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (5,336 samples, 13.93%)</title><rect x="205.5" y="401" width="164.4" height="15.0" fill="rgb(244,228,19)" rx="2" ry="2" />
<text text-anchor="" x="208.47" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('operator new (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (4 samples, 0.01%)</title><rect x="444.5" y="417" width="0.1" height="15.0" fill="rgb(215,225,44)" rx="2" ry="2" />
<text text-anchor="" x="447.47" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (103 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (103 samples, 0.27%)</title><rect x="341.2" y="177" width="3.1" height="15.0" fill="rgb(207,200,23)" rx="2" ry="2" />
<text text-anchor="" x="344.16" 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::OnReadMessageForClient (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (74 samples, 0.19%)</title><rect x="655.6" y="337" width="2.3" height="15.0" fill="rgb(237,27,9)" rx="2" ry="2" />
<text text-anchor="" x="658.61" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('effective_load.isra.35 (119 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.35 (119 samples, 0.31%)</title><rect x="1074.2" y="129" width="3.6" height="15.0" fill="rgb(215,126,52)" rx="2" ry="2" />
<text text-anchor="" x="1077.15" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (494 samples, 1.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (494 samples, 1.29%)</title><rect x="771.2" y="305" width="15.2" height="15.0" fill="rgb(218,147,28)" rx="2" ry="2" />
<text text-anchor="" x="774.22" 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 (114 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (114 samples, 0.30%)</title><rect x="322.1" y="177" width="3.5" height="15.0" fill="rgb(233,88,6)" rx="2" ry="2" />
<text text-anchor="" x="325.05" y="187.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (11 samples, 0.03%)</title><rect x="160.4" y="257" width="0.4" height="15.0" fill="rgb(224,2,34)" rx="2" ry="2" />
<text text-anchor="" x="163.42" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (71 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (71 samples, 0.19%)</title><rect x="868.5" y="337" width="2.1" height="15.0" fill="rgb(214,71,34)" rx="2" ry="2" />
<text text-anchor="" x="871.46" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (32 samples, 0.08%)</title><rect x="728.4" y="353" width="0.9" height="15.0" fill="rgb(215,89,31)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (1,475 samples, 3.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1,475 samples, 3.85%)</title><rect x="509.9" y="449" width="45.5" height="15.0" fill="rgb(216,27,32)" rx="2" ry="2" />
<text text-anchor="" x="512.91" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fute..</text>
</g>
<g class="func_g" onmouseover="s('scheduler_tick (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (5 samples, 0.01%)</title><rect x="742.7" y="177" width="0.2" height="15.0" fill="rgb(239,204,45)" rx="2" ry="2" />
<text text-anchor="" x="745.72" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (18 samples, 0.05%)</title><rect x="432.6" y="497" width="0.6" height="15.0" fill="rgb(237,123,37)" rx="2" ry="2" />
<text text-anchor="" x="435.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (5 samples, 0.01%)</title><rect x="260.6" y="321" width="0.2" height="15.0" fill="rgb(213,203,9)" rx="2" ry="2" />
<text text-anchor="" x="263.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_irqsave (120 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (120 samples, 0.31%)</title><rect x="177.8" y="385" width="3.7" height="15.0" fill="rgb(221,150,51)" rx="2" ry="2" />
<text text-anchor="" x="180.77" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (22 samples, 0.06%)</title><rect x="227.7" y="353" width="0.7" height="15.0" fill="rgb(213,109,54)" rx="2" ry="2" />
<text text-anchor="" x="230.74" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (29 samples, 0.08%)</title><rect x="231.7" y="321" width="0.9" height="15.0" fill="rgb(218,99,49)" rx="2" ry="2" />
<text text-anchor="" x="234.72" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (14 samples, 0.04%)</title><rect x="1153.5" y="369" width="0.5" height="15.0" fill="rgb(249,12,13)" rx="2" ry="2" />
<text text-anchor="" x="1156.52" 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 (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (12 samples, 0.03%)</title><rect x="592.5" y="417" width="0.3" height="15.0" fill="rgb(220,75,53)" rx="2" ry="2" />
<text text-anchor="" x="595.45" 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 (35 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (35 samples, 0.09%)</title><rect x="961.7" y="385" width="1.1" height="15.0" fill="rgb(250,21,15)" rx="2" ry="2" />
<text text-anchor="" x="964.69" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('resched_task (326 samples, 0.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>resched_task (326 samples, 0.85%)</title><rect x="164.6" y="289" width="10.1" height="15.0" fill="rgb(244,123,47)" rx="2" ry="2" />
<text text-anchor="" x="167.61" y="299.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 (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (11 samples, 0.03%)</title><rect x="159.9" y="257" width="0.4" height="15.0" fill="rgb(244,224,27)" rx="2" ry="2" />
<text text-anchor="" x="162.93" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (138 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (138 samples, 0.36%)</title><rect x="1023.3" y="241" width="4.3" height="15.0" fill="rgb(205,99,15)" rx="2" ry="2" />
<text text-anchor="" x="1026.31" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_sys_call (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_sys_call (7 samples, 0.02%)</title><rect x="293.9" y="353" width="0.2" height="15.0" fill="rgb(227,137,52)" rx="2" ry="2" />
<text text-anchor="" x="296.92" y="363.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.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (20 samples, 0.05%)</title><rect x="565.2" y="529" width="0.7" height="15.0" fill="rgb(233,119,41)" rx="2" ry="2" />
<text text-anchor="" x="568.25" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_mutex_cond_lock (34 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (34 samples, 0.09%)</title><rect x="477.9" y="513" width="1.1" height="15.0" fill="rgb(224,46,48)" rx="2" ry="2" />
<text text-anchor="" x="480.93" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (12 samples, 0.03%)</title><rect x="592.5" y="433" width="0.3" height="15.0" fill="rgb(247,123,50)" rx="2" ry="2" />
<text text-anchor="" x="595.45" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_process (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (4 samples, 0.01%)</title><rect x="742.3" y="145" width="0.1" height="15.0" fill="rgb(243,95,42)" rx="2" ry="2" />
<text text-anchor="" x="745.32" y="155.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 (170 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (170 samples, 0.44%)</title><rect x="542.6" y="369" width="5.2" height="15.0" fill="rgb(229,148,3)" rx="2" ry="2" />
<text text-anchor="" x="545.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="337" width="0.2" height="15.0" fill="rgb(215,61,38)" rx="2" ry="2" />
<text text-anchor="" x="13.12" 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::WriteMessage (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (5 samples, 0.01%)</title><rect x="198.7" y="481" width="0.2" height="15.0" fill="rgb(239,211,13)" rx="2" ry="2" />
<text text-anchor="" x="201.75" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (52 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (52 samples, 0.14%)</title><rect x="808.0" y="321" width="1.6" height="15.0" fill="rgb(248,217,25)" rx="2" ry="2" />
<text text-anchor="" x="811.01" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (67 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (67 samples, 0.17%)</title><rect x="10.5" y="529" width="2.1" height="15.0" fill="rgb(216,88,48)" rx="2" ry="2" />
<text text-anchor="" x="13.49" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (6,041 samples, 15.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (6,041 samples, 15.77%)</title><rect x="12.6" y="545" width="186.1" height="15.0" fill="rgb(243,210,36)" rx="2" ry="2" />
<text text-anchor="" x="15.62" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_send</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (25 samples, 0.07%)</title><rect x="998.4" y="337" width="0.8" height="15.0" fill="rgb(221,120,11)" rx="2" ry="2" />
<text text-anchor="" x="1001.45" y="347.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (4 samples, 0.01%)</title><rect x="10.0" y="529" width="0.1" height="15.0" fill="rgb(210,90,14)" 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('path_put (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (9 samples, 0.02%)</title><rect x="870.9" y="337" width="0.2" height="15.0" fill="rgb(252,186,10)" rx="2" ry="2" />
<text text-anchor="" x="873.86" 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 (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (23 samples, 0.06%)</title><rect x="464.4" y="465" width="0.7" height="15.0" fill="rgb(229,111,51)" rx="2" ry="2" />
<text text-anchor="" x="467.40" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (17 samples, 0.04%)</title><rect x="1175.5" y="433" width="0.5" height="15.0" fill="rgb(239,60,18)" rx="2" ry="2" />
<text text-anchor="" x="1178.46" 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 (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (22 samples, 0.06%)</title><rect x="541.4" y="353" width="0.7" height="15.0" fill="rgb(224,112,26)" rx="2" ry="2" />
<text text-anchor="" x="544.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (258 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (258 samples, 0.67%)</title><rect x="777.3" y="257" width="8.0" height="15.0" fill="rgb(234,88,44)" rx="2" ry="2" />
<text text-anchor="" x="780.32" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (8 samples, 0.02%)</title><rect x="729.3" y="369" width="0.3" height="15.0" fill="rgb(206,46,16)" rx="2" ry="2" />
<text text-anchor="" x="732.34" 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 (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (29 samples, 0.08%)</title><rect x="505.4" y="465" width="0.9" height="15.0" fill="rgb(211,71,16)" rx="2" ry="2" />
<text text-anchor="" x="508.44" 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 (60 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (60 samples, 0.16%)</title><rect x="629.2" y="433" width="1.9" height="15.0" fill="rgb(240,33,39)" rx="2" ry="2" />
<text text-anchor="" x="632.21" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (720 samples, 1.88%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (720 samples, 1.88%)</title><rect x="911.2" y="241" width="22.2" height="15.0" fill="rgb(226,24,37)" rx="2" ry="2" />
<text text-anchor="" x="914.22" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (6 samples, 0.02%)</title><rect x="933.6" y="257" width="0.1" height="15.0" fill="rgb(211,59,36)" rx="2" ry="2" />
<text text-anchor="" x="936.56" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (69 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (69 samples, 0.18%)</title><rect x="367.7" y="385" width="2.1" height="15.0" fill="rgb(221,140,43)" rx="2" ry="2" />
<text text-anchor="" x="370.72" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_unix_gc (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (16 samples, 0.04%)</title><rect x="186.9" y="449" width="0.5" height="15.0" fill="rgb(225,189,5)" rx="2" ry="2" />
<text text-anchor="" x="189.92" 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 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (6 samples, 0.02%)</title><rect x="831.0" y="417" width="0.2" height="15.0" fill="rgb(205,83,5)" rx="2" ry="2" />
<text text-anchor="" x="834.02" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="10.1" y="385" width="0.2" height="15.0" fill="rgb(215,20,7)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (22 samples, 0.06%)</title><rect x="770.3" y="241" width="0.6" height="15.0" fill="rgb(251,34,2)" rx="2" ry="2" />
<text text-anchor="" x="773.26" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (37 samples, 0.10%)</title><rect x="223.0" y="369" width="1.1" height="15.0" fill="rgb(222,223,33)" rx="2" ry="2" />
<text text-anchor="" x="225.97" y="379.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_task_comm (4 samples, 0.01%)</title><rect x="10.0" y="433" width="0.1" height="15.0" fill="rgb(232,90,25)" 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('base::TestIOThread::Start (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestIOThread::Start (5 samples, 0.01%)</title><rect x="370.0" y="369" width="0.2" height="15.0" fill="rgb(218,42,35)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (25 samples, 0.07%)</title><rect x="316.6" y="193" width="0.7" height="15.0" fill="rgb(252,143,28)" rx="2" ry="2" />
<text text-anchor="" x="319.57" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (1,528 samples, 3.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1,528 samples, 3.99%)</title><rect x="508.5" y="481" width="47.1" height="15.0" fill="rgb(246,24,32)" rx="2" ry="2" />
<text text-anchor="" x="511.52" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (1,044 samples, 2.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (1,044 samples, 2.73%)</title><rect x="221.2" y="385" width="32.1" height="15.0" fill="rgb(212,97,43)" rx="2" ry="2" />
<text text-anchor="" x="224.18" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::RemoveAwakable (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::RemoveAwakable (24 samples, 0.06%)</title><rect x="425.8" y="529" width="0.8" height="15.0" fill="rgb(208,85,38)" rx="2" ry="2" />
<text text-anchor="" x="428.83" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (6 samples, 0.02%)</title><rect x="482.2" y="497" width="0.2" height="15.0" fill="rgb(252,77,4)" rx="2" ry="2" />
<text text-anchor="" x="485.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (74 samples, 0.19%)</title><rect x="655.6" y="305" width="2.3" height="15.0" fill="rgb(207,92,45)" rx="2" ry="2" />
<text text-anchor="" x="658.61" y="315.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 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (7 samples, 0.02%)</title><rect x="424.4" y="497" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text text-anchor="" x="427.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (8 samples, 0.02%)</title><rect x="481.3" y="481" width="0.2" height="15.0" fill="rgb(239,176,20)" rx="2" ry="2" />
<text text-anchor="" x="484.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_queue_tail (153 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (153 samples, 0.40%)</title><rect x="64.5" y="449" width="4.7" height="15.0" fill="rgb(228,21,30)" rx="2" ry="2" />
<text text-anchor="" x="67.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (7 samples, 0.02%)</title><rect x="544.5" y="273" width="0.3" height="15.0" fill="rgb(228,223,49)" rx="2" ry="2" />
<text text-anchor="" x="547.54" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (6 samples, 0.02%)</title><rect x="788.6" y="257" width="0.2" height="15.0" fill="rgb(213,185,36)" rx="2" ry="2" />
<text text-anchor="" x="791.62" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (102 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (102 samples, 0.27%)</title><rect x="528.7" y="321" width="3.2" height="15.0" fill="rgb(235,154,13)" rx="2" ry="2" />
<text text-anchor="" x="531.73" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::ConditionVariable::ConditionVariable (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::ConditionVariable::ConditionVariable (6 samples, 0.02%)</title><rect x="479.5" y="513" width="0.2" height="15.0" fill="rgb(249,47,5)" rx="2" ry="2" />
<text text-anchor="" x="482.50" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (17 samples, 0.04%)</title><rect x="201.2" y="417" width="0.5" height="15.0" fill="rgb(207,120,11)" rx="2" ry="2" />
<text text-anchor="" x="204.15" y="427.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 (35 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (35 samples, 0.09%)</title><rect x="151.7" y="241" width="1.1" height="15.0" fill="rgb(247,89,4)" rx="2" ry="2" />
<text text-anchor="" x="154.73" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_wait (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (32 samples, 0.08%)</title><rect x="1182.9" y="433" width="0.9" height="15.0" fill="rgb(235,190,39)" rx="2" ry="2" />
<text text-anchor="" x="1185.85" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (508 samples, 1.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (508 samples, 1.33%)</title><rect x="659.2" y="417" width="15.6" height="15.0" fill="rgb(220,2,34)" rx="2" ry="2" />
<text text-anchor="" x="662.16" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (223 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (223 samples, 0.58%)</title><rect x="188.2" y="465" width="6.9" height="15.0" fill="rgb(253,81,4)" rx="2" ry="2" />
<text text-anchor="" x="191.18" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (86 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (86 samples, 0.22%)</title><rect x="544.8" y="321" width="2.6" height="15.0" fill="rgb(219,81,39)" rx="2" ry="2" />
<text text-anchor="" x="547.76" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.01%)</title><rect x="10.0" y="369" width="0.1" height="15.0" fill="rgb(250,84,21)" 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('pthread_cond_init@@GLIBC_2.3.2 (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_init@@GLIBC_2.3.2 (9 samples, 0.02%)</title><rect x="284.3" y="353" width="0.3" height="15.0" fill="rgb(224,57,54)" rx="2" ry="2" />
<text text-anchor="" x="287.34" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_scm_to_skb (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_scm_to_skb (5 samples, 0.01%)</title><rect x="186.8" y="449" width="0.1" height="15.0" fill="rgb(213,119,29)" rx="2" ry="2" />
<text text-anchor="" x="189.76" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('main (5,566 samples, 14.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>main (5,566 samples, 14.53%)</title><rect x="198.7" y="529" width="171.5" height="15.0" fill="rgb(224,15,10)" rx="2" ry="2" />
<text text-anchor="" x="201.75" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (97 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (97 samples, 0.25%)</title><rect x="537.8" y="353" width="3.0" height="15.0" fill="rgb(236,63,45)" rx="2" ry="2" />
<text text-anchor="" x="540.79" 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 (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (26 samples, 0.07%)</title><rect x="181.5" y="385" width="0.8" height="15.0" fill="rgb(240,111,18)" rx="2" ry="2" />
<text text-anchor="" x="184.46" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('source_load (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>source_load (9 samples, 0.02%)</title><rect x="127.5" y="321" width="0.3" height="15.0" fill="rgb(209,205,45)" rx="2" ry="2" />
<text text-anchor="" x="130.51" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (4 samples, 0.01%)</title><rect x="582.9" y="545" width="0.2" height="15.0" fill="rgb(233,198,40)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (8 samples, 0.02%)</title><rect x="207.1" y="385" width="0.3" height="15.0" fill="rgb(243,212,7)" rx="2" ry="2" />
<text text-anchor="" x="210.13" 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 (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (22 samples, 0.06%)</title><rect x="430.1" y="513" width="0.7" height="15.0" fill="rgb(227,222,43)" rx="2" ry="2" />
<text text-anchor="" x="433.14" 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::GetHandleSignalsState (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (12 samples, 0.03%)</title><rect x="1138.5" y="305" width="0.4" height="15.0" fill="rgb(242,63,27)" rx="2" ry="2" />
<text text-anchor="" x="1141.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (10 samples, 0.03%)</title><rect x="683.7" y="401" width="0.3" height="15.0" fill="rgb(218,172,36)" rx="2" ry="2" />
<text text-anchor="" x="686.65" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (33 samples, 0.09%)</title><rect x="1083.1" y="145" width="1.0" height="15.0" fill="rgb(212,117,10)" rx="2" ry="2" />
<text text-anchor="" x="1086.05" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (34 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (34 samples, 0.09%)</title><rect x="240.4" y="305" width="1.1" height="15.0" fill="rgb(209,56,51)" rx="2" ry="2" />
<text text-anchor="" x="243.44" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="933.2" y="177" width="0.1" height="15.0" fill="rgb(238,168,51)" rx="2" ry="2" />
<text text-anchor="" x="936.19" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (23 samples, 0.06%)</title><rect x="25.2" y="497" width="0.7" height="15.0" fill="rgb(230,207,42)" rx="2" ry="2" />
<text text-anchor="" x="28.19" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_idle (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (10 samples, 0.03%)</title><rect x="347.5" y="257" width="0.3" height="15.0" fill="rgb(226,222,9)" rx="2" ry="2" />
<text text-anchor="" x="350.47" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (32 samples, 0.08%)</title><rect x="324.5" y="161" width="1.0" height="15.0" fill="rgb(209,110,52)" rx="2" ry="2" />
<text text-anchor="" x="327.55" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_worker (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_worker (4 samples, 0.01%)</title><rect x="742.3" y="161" width="0.1" height="15.0" fill="rgb(231,66,38)" rx="2" ry="2" />
<text text-anchor="" x="745.32" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg_handler (35 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg_handler (35 samples, 0.09%)</title><rect x="888.7" y="257" width="1.1" height="15.0" fill="rgb(212,111,1)" rx="2" ry="2" />
<text text-anchor="" x="891.70" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clock_gettime@plt (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>clock_gettime@plt (12 samples, 0.03%)</title><rect x="634.6" y="449" width="0.3" height="15.0" fill="rgb(209,190,51)" rx="2" ry="2" />
<text text-anchor="" x="637.57" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (5 samples, 0.01%)</title><rect x="674.5" y="401" width="0.2" height="15.0" fill="rgb(224,55,33)" rx="2" ry="2" />
<text text-anchor="" x="677.50" y="411.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (8 samples, 0.02%)</title><rect x="886.2" y="257" width="0.2" height="15.0" fill="rgb(223,169,3)" rx="2" ry="2" />
<text text-anchor="" x="889.17" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.01%)</title><rect x="10.0" y="401" width="0.1" height="15.0" fill="rgb(243,176,27)" 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('kprobe_ftrace_handler (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (74 samples, 0.19%)</title><rect x="886.4" y="257" width="2.3" height="15.0" fill="rgb(242,105,2)" rx="2" ry="2" />
<text text-anchor="" x="889.42" 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::OnReadMessage (74 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (74 samples, 0.19%)</title><rect x="655.6" y="385" width="2.3" height="15.0" fill="rgb(207,37,46)" rx="2" ry="2" />
<text text-anchor="" x="658.61" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (22 samples, 0.06%)</title><rect x="161.7" y="209" width="0.6" height="15.0" fill="rgb(245,128,29)" rx="2" ry="2" />
<text text-anchor="" x="164.65" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (190 samples, 0.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (190 samples, 0.50%)</title><rect x="905.4" y="225" width="5.8" height="15.0" fill="rgb(236,53,11)" rx="2" ry="2" />
<text text-anchor="" x="908.37" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (79 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (79 samples, 0.21%)</title><rect x="1168.6" y="417" width="2.5" height="15.0" fill="rgb(209,127,48)" rx="2" ry="2" />
<text text-anchor="" x="1171.62" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestInfo::Run (5,488 samples, 14.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestInfo::Run (5,488 samples, 14.33%)</title><rect x="201.2" y="449" width="169.0" height="15.0" fill="rgb(229,191,41)" rx="2" ry="2" />
<text text-anchor="" x="204.15" 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('__sys_recvmsg (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (14 samples, 0.04%)</title><rect x="872.4" y="353" width="0.4" height="15.0" fill="rgb(228,156,33)" rx="2" ry="2" />
<text text-anchor="" x="875.40" 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 (28 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (28 samples, 0.07%)</title><rect x="932.1" y="161" width="0.9" height="15.0" fill="rgb(210,144,20)" rx="2" ry="2" />
<text text-anchor="" x="935.14" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (10 samples, 0.03%)</title><rect x="207.4" y="385" width="0.3" height="15.0" fill="rgb(250,197,30)" rx="2" ry="2" />
<text text-anchor="" x="210.38" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_blocked_averages (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (11 samples, 0.03%)</title><rect x="542.2" y="369" width="0.3" height="15.0" fill="rgb(222,159,20)" rx="2" ry="2" />
<text text-anchor="" x="545.17" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (82 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (82 samples, 0.21%)</title><rect x="1102.9" y="65" width="2.5" height="15.0" fill="rgb(231,201,2)" rx="2" ry="2" />
<text text-anchor="" x="1105.87" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (789 samples, 2.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (789 samples, 2.06%)</title><rect x="135.5" y="257" width="24.3" height="15.0" fill="rgb(253,46,47)" rx="2" ry="2" />
<text text-anchor="" x="138.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (3,320 samples, 8.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (3,320 samples, 8.67%)</title><rect x="1028.4" y="257" width="102.3" height="15.0" fill="rgb(219,167,51)" rx="2" ry="2" />
<text text-anchor="" x="1031.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call_..</text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (4 samples, 0.01%)</title><rect x="186.6" y="337" width="0.1" height="15.0" fill="rgb(253,128,22)" rx="2" ry="2" />
<text text-anchor="" x="189.58" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (40 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (40 samples, 0.10%)</title><rect x="431.4" y="497" width="1.2" height="15.0" fill="rgb(209,141,9)" rx="2" ry="2" />
<text text-anchor="" x="434.40" y="507.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.01%)</title><rect x="570.8" y="545" width="0.1" height="15.0" fill="rgb(236,58,42)" rx="2" ry="2" />
<text text-anchor="" x="573.79" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (4 samples, 0.01%)</title><rect x="314.6" y="97" width="0.1" height="15.0" fill="rgb(206,89,48)" rx="2" ry="2" />
<text text-anchor="" x="317.60" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (21 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (21 samples, 0.05%)</title><rect x="770.3" y="225" width="0.6" height="15.0" fill="rgb(215,197,18)" rx="2" ry="2" />
<text text-anchor="" x="773.29" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (5 samples, 0.01%)</title><rect x="434.3" y="497" width="0.2" height="15.0" fill="rgb(211,203,44)" rx="2" ry="2" />
<text text-anchor="" x="437.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (328 samples, 0.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (328 samples, 0.86%)</title><rect x="466.2" y="481" width="10.1" height="15.0" fill="rgb(249,28,4)" rx="2" ry="2" />
<text text-anchor="" x="469.22" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (116 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (116 samples, 0.30%)</title><rect x="928.6" y="161" width="3.5" height="15.0" fill="rgb(250,72,23)" rx="2" ry="2" />
<text text-anchor="" x="931.57" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.01%)</title><rect x="10.1" y="145" width="0.1" height="15.0" fill="rgb(246,43,23)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_futex (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (14 samples, 0.04%)</title><rect x="501.2" y="497" width="0.4" height="15.0" fill="rgb(251,146,0)" rx="2" ry="2" />
<text text-anchor="" x="504.19" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('plist_add (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>plist_add (23 samples, 0.06%)</title><rect x="515.4" y="417" width="0.7" height="15.0" fill="rgb(227,66,15)" rx="2" ry="2" />
<text text-anchor="" x="518.42" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__cmpxchg_double_slab.isra.40 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__cmpxchg_double_slab.isra.40 (5 samples, 0.01%)</title><rect x="83.3" y="369" width="0.2" height="15.0" fill="rgb(254,179,54)" rx="2" ry="2" />
<text text-anchor="" x="86.33" 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::Remove (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (23 samples, 0.06%)</title><rect x="482.9" y="497" width="0.7" height="15.0" fill="rgb(217,64,26)" rx="2" ry="2" />
<text text-anchor="" x="485.92" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_scan_ready_list.isra.9 (698 samples, 1.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (698 samples, 1.82%)</title><rect x="707.8" y="369" width="21.5" height="15.0" fill="rgb(251,108,37)" rx="2" ry="2" />
<text text-anchor="" x="710.84" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (11 samples, 0.03%)</title><rect x="807.7" y="321" width="0.3" height="15.0" fill="rgb(210,78,49)" rx="2" ry="2" />
<text text-anchor="" x="810.67" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (71 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (71 samples, 0.19%)</title><rect x="485.3" y="481" width="2.1" height="15.0" fill="rgb(211,38,39)" rx="2" ry="2" />
<text text-anchor="" x="488.26" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (2,768 samples, 7.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2,768 samples, 7.23%)</title><rect x="97.0" y="417" width="85.3" height="15.0" fill="rgb(223,181,3)" rx="2" ry="2" />
<text text-anchor="" x="99.98" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake_up_..</text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (31 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (31 samples, 0.08%)</title><rect x="63.0" y="433" width="0.9" height="15.0" fill="rgb(241,71,35)" rx="2" ry="2" />
<text text-anchor="" x="65.96" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (35 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (35 samples, 0.09%)</title><rect x="878.5" y="289" width="1.1" height="15.0" fill="rgb(213,119,40)" rx="2" ry="2" />
<text text-anchor="" x="881.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (22 samples, 0.06%)</title><rect x="44.6" y="417" width="0.7" height="15.0" fill="rgb(205,11,31)" rx="2" ry="2" />
<text text-anchor="" x="47.63" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (81 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (81 samples, 0.21%)</title><rect x="723.8" y="337" width="2.5" height="15.0" fill="rgb(229,184,48)" rx="2" ry="2" />
<text text-anchor="" x="726.83" 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 (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (15 samples, 0.04%)</title><rect x="15.0" y="497" width="0.5" height="15.0" fill="rgb(236,73,18)" rx="2" ry="2" />
<text text-anchor="" x="18.02" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (10 samples, 0.03%)</title><rect x="651.3" y="417" width="0.3" height="15.0" fill="rgb(221,52,7)" rx="2" ry="2" />
<text text-anchor="" x="654.27" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (30 samples, 0.08%)</title><rect x="794.7" y="209" width="0.9" height="15.0" fill="rgb(224,181,54)" rx="2" ry="2" />
<text text-anchor="" x="797.66" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1,202 samples, 3.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1,202 samples, 3.14%)</title><rect x="309.8" y="257" width="37.1" height="15.0" fill="rgb(245,25,15)" rx="2" ry="2" />
<text text-anchor="" x="312.82" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__s..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (403 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (403 samples, 1.05%)</title><rect x="208.1" y="385" width="12.4" height="15.0" fill="rgb(245,106,30)" rx="2" ry="2" />
<text text-anchor="" x="211.08" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (6 samples, 0.02%)</title><rect x="547.6" y="353" width="0.2" height="15.0" fill="rgb(220,90,36)" rx="2" ry="2" />
<text text-anchor="" x="550.62" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (33 samples, 0.09%)</title><rect x="462.5" y="481" width="1.0" height="15.0" fill="rgb(222,57,49)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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 (88 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Waiter (88 samples, 0.23%)</title><rect x="491.6" y="513" width="2.7" height="15.0" fill="rgb(229,193,14)" rx="2" ry="2" />
<text text-anchor="" x="494.58" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (46 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (46 samples, 0.12%)</title><rect x="462.3" y="497" width="1.4" height="15.0" fill="rgb(232,47,38)" rx="2" ry="2" />
<text text-anchor="" x="465.31" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (910 samples, 2.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (910 samples, 2.38%)</title><rect x="743.0" y="305" width="28.0" height="15.0" fill="rgb(222,210,9)" rx="2" ry="2" />
<text text-anchor="" x="745.96" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s('test_io_thread (20,092 samples, 52.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>test_io_thread (20,092 samples, 52.46%)</title><rect x="570.9" y="561" width="619.1" height="15.0" fill="rgb(233,85,54)" rx="2" ry="2" />
<text text-anchor="" x="573.95" 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('perf_event_context_sched_in (64 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (64 samples, 0.17%)</title><rect x="199.0" y="305" width="2.0" height="15.0" fill="rgb(209,65,43)" rx="2" ry="2" />
<text text-anchor="" x="202.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg_handler (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg_handler (13 samples, 0.03%)</title><rect x="888.3" y="241" width="0.4" height="15.0" fill="rgb(216,145,31)" rx="2" ry="2" />
<text text-anchor="" x="891.30" 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 (938 samples, 2.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (938 samples, 2.45%)</title><rect x="131.9" y="273" width="28.9" height="15.0" fill="rgb(250,150,16)" rx="2" ry="2" />
<text text-anchor="" x="134.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (237 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (237 samples, 0.62%)</title><rect x="777.7" y="225" width="7.4" height="15.0" fill="rgb(241,6,21)" rx="2" ry="2" />
<text text-anchor="" x="780.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.01%)</title><rect x="370.0" y="209" width="0.1" height="15.0" fill="rgb(239,62,45)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (36 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (36 samples, 0.09%)</title><rect x="865.7" y="369" width="1.2" height="15.0" fill="rgb(241,74,52)" rx="2" ry="2" />
<text text-anchor="" x="868.74" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (8 samples, 0.02%)</title><rect x="198.5" y="497" width="0.2" height="15.0" fill="rgb(249,43,28)" rx="2" ry="2" />
<text text-anchor="" x="201.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('irq_exit (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (4 samples, 0.01%)</title><rect x="1069.4" y="113" width="0.1" height="15.0" fill="rgb(238,50,10)" rx="2" ry="2" />
<text text-anchor="" x="1072.37" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (7 samples, 0.02%)</title><rect x="413.3" y="529" width="0.2" height="15.0" fill="rgb(227,218,3)" rx="2" ry="2" />
<text text-anchor="" x="416.25" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_blocked_averages (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (12 samples, 0.03%)</title><rect x="789.2" y="289" width="0.3" height="15.0" fill="rgb(239,32,26)" rx="2" ry="2" />
<text text-anchor="" x="792.18" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wait (1,708 samples, 4.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1,708 samples, 4.46%)</title><rect x="302.7" y="305" width="52.7" height="15.0" fill="rgb(249,6,36)" rx="2" ry="2" />
<text text-anchor="" x="305.74" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex..</text>
</g>
<g class="func_g" onmouseover="s('update_curr (38 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (38 samples, 0.10%)</title><rect x="530.7" y="305" width="1.1" height="15.0" fill="rgb(241,57,27)" rx="2" ry="2" />
<text text-anchor="" x="533.68" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_tick_fair (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_tick_fair (4 samples, 0.01%)</title><rect x="742.7" y="161" width="0.2" height="15.0" fill="rgb(239,155,47)" rx="2" ry="2" />
<text text-anchor="" x="745.75" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (11 samples, 0.03%)</title><rect x="340.7" y="129" width="0.4" height="15.0" fill="rgb(207,228,15)" rx="2" ry="2" />
<text text-anchor="" x="343.73" 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 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (8 samples, 0.02%)</title><rect x="327.6" y="193" width="0.2" height="15.0" fill="rgb(215,5,45)" rx="2" ry="2" />
<text text-anchor="" x="330.57" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (502 samples, 1.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (502 samples, 1.31%)</title><rect x="607.0" y="433" width="15.5" height="15.0" fill="rgb(242,2,42)" rx="2" ry="2" />
<text text-anchor="" x="610.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::LocalMessagePipeEndpoint::RemoveAwakable (189 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (189 samples, 0.49%)</title><rect x="484.3" y="497" width="5.8" height="15.0" fill="rgb(213,99,11)" rx="2" ry="2" />
<text text-anchor="" x="487.27" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (155 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (155 samples, 0.40%)</title><rect x="934.0" y="273" width="4.8" height="15.0" fill="rgb(247,6,23)" rx="2" ry="2" />
<text text-anchor="" x="937.02" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (59 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (59 samples, 0.15%)</title><rect x="325.6" y="177" width="1.8" height="15.0" fill="rgb(235,146,29)" rx="2" ry="2" />
<text text-anchor="" x="328.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (4 samples, 0.01%)</title><rect x="50.5" y="465" width="0.2" height="15.0" fill="rgb(233,173,18)" rx="2" ry="2" />
<text text-anchor="" x="53.55" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (86 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (86 samples, 0.22%)</title><rect x="296.2" y="321" width="2.7" height="15.0" fill="rgb(253,145,12)" rx="2" ry="2" />
<text text-anchor="" x="299.23" 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 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (6 samples, 0.02%)</title><rect x="219.7" y="369" width="0.2" height="15.0" fill="rgb(221,92,22)" rx="2" ry="2" />
<text text-anchor="" x="222.70" 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 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.01%)</title><rect x="371.3" y="449" width="0.1" height="15.0" fill="rgb(243,46,53)" rx="2" ry="2" />
<text text-anchor="" x="374.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (4 samples, 0.01%)</title><rect x="57.7" y="449" width="0.1" height="15.0" fill="rgb(245,16,7)" rx="2" ry="2" />
<text text-anchor="" x="60.70" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (1,019 samples, 2.66%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1,019 samples, 2.66%)</title><rect x="902.2" y="257" width="31.4" height="15.0" fill="rgb(247,99,42)" rx="2" ry="2" />
<text text-anchor="" x="905.16" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sk..</text>
</g>
<g class="func_g" onmouseover="s('auditsys (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (48 samples, 0.13%)</title><rect x="1020.5" y="257" width="1.5" height="15.0" fill="rgb(232,225,48)" rx="2" ry="2" />
<text text-anchor="" x="1023.54" y="267.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (4 samples, 0.01%)</title><rect x="1021.9" y="241" width="0.1" height="15.0" fill="rgb(209,23,43)" rx="2" ry="2" />
<text text-anchor="" x="1024.90" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (7 samples, 0.02%)</title><rect x="785.1" y="225" width="0.2" height="15.0" fill="rgb(236,166,25)" rx="2" ry="2" />
<text text-anchor="" x="788.05" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (18 samples, 0.05%)</title><rect x="277.1" y="337" width="0.6" height="15.0" fill="rgb(225,186,42)" rx="2" ry="2" />
<text text-anchor="" x="280.10" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (155 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (155 samples, 0.40%)</title><rect x="331.3" y="209" width="4.8" height="15.0" fill="rgb(252,91,43)" rx="2" ry="2" />
<text text-anchor="" x="334.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (24 samples, 0.06%)</title><rect x="1177.5" y="433" width="0.7" height="15.0" fill="rgb(230,104,22)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.01%)</title><rect x="10.1" y="177" width="0.1" height="15.0" fill="rgb(224,205,11)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (331 samples, 0.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (331 samples, 0.86%)</title><rect x="466.1" y="497" width="10.2" height="15.0" fill="rgb(252,172,20)" rx="2" ry="2" />
<text text-anchor="" x="469.13" 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 (49 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (49 samples, 0.13%)</title><rect x="804.6" y="305" width="1.5" height="15.0" fill="rgb(231,53,33)" rx="2" ry="2" />
<text text-anchor="" x="807.59" 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 (180 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (180 samples, 0.47%)</title><rect x="356.3" y="369" width="5.6" height="15.0" fill="rgb(238,50,49)" rx="2" ry="2" />
<text text-anchor="" x="359.35" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (1,148 samples, 3.00%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1,148 samples, 3.00%)</title><rect x="516.1" y="417" width="35.4" height="15.0" fill="rgb(228,192,19)" rx="2" ry="2" />
<text text-anchor="" x="519.13" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.01%)</title><rect x="582.9" y="401" width="0.2" height="15.0" fill="rgb(227,36,14)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_sys_call (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_sys_call (16 samples, 0.04%)</title><rect x="16.1" y="529" width="0.5" height="15.0" fill="rgb(212,48,32)" rx="2" ry="2" />
<text text-anchor="" x="19.13" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (63 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (63 samples, 0.16%)</title><rect x="593.4" y="465" width="2.0" height="15.0" fill="rgb(252,133,43)" rx="2" ry="2" />
<text text-anchor="" x="596.44" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::RemoveAwakable (17 samples, 0.04%)</title><rect x="480.0" y="513" width="0.5" height="15.0" fill="rgb(209,7,36)" rx="2" ry="2" />
<text text-anchor="" x="482.96" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (19 samples, 0.05%)</title><rect x="507.7" y="497" width="0.6" height="15.0" fill="rgb(247,32,44)" rx="2" ry="2" />
<text text-anchor="" x="510.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg_handler (27 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg_handler (27 samples, 0.07%)</title><rect x="45.3" y="417" width="0.8" height="15.0" fill="rgb(238,168,9)" rx="2" ry="2" />
<text text-anchor="" x="48.31" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (65 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (65 samples, 0.17%)</title><rect x="199.0" y="369" width="2.0" height="15.0" fill="rgb(254,124,25)" rx="2" ry="2" />
<text text-anchor="" x="201.99" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (4 samples, 0.01%)</title><rect x="1060.8" y="161" width="0.1" height="15.0" fill="rgb(243,162,4)" rx="2" ry="2" />
<text text-anchor="" x="1063.81" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (7 samples, 0.02%)</title><rect x="794.4" y="225" width="0.2" height="15.0" fill="rgb(252,16,3)" rx="2" ry="2" />
<text text-anchor="" x="797.39" 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 (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (13 samples, 0.03%)</title><rect x="864.3" y="337" width="0.4" height="15.0" fill="rgb(216,159,47)" rx="2" ry="2" />
<text text-anchor="" x="867.27" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_stop (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_stop (19 samples, 0.05%)</title><rect x="345.5" y="241" width="0.6" height="15.0" fill="rgb(237,37,0)" rx="2" ry="2" />
<text text-anchor="" x="348.50" 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 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (6 samples, 0.02%)</title><rect x="655.6" y="257" width="0.2" height="15.0" fill="rgb(216,60,0)" rx="2" ry="2" />
<text text-anchor="" x="658.61" 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::~LockImpl (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::~LockImpl (4 samples, 0.01%)</title><rect x="271.9" y="369" width="0.1" height="15.0" fill="rgb(254,70,3)" rx="2" ry="2" />
<text text-anchor="" x="274.92" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (4 samples, 0.01%)</title><rect x="92.0" y="433" width="0.1" height="15.0" fill="rgb(223,5,45)" rx="2" ry="2" />
<text text-anchor="" x="95.02" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (43 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (43 samples, 0.11%)</title><rect x="280.2" y="337" width="1.3" height="15.0" fill="rgb(250,80,12)" rx="2" ry="2" />
<text text-anchor="" x="283.21" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (8 samples, 0.02%)</title><rect x="133.8" y="257" width="0.2" height="15.0" fill="rgb(227,189,47)" rx="2" ry="2" />
<text text-anchor="" x="136.77" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.01%)</title><rect x="582.9" y="465" width="0.2" height="15.0" fill="rgb(211,205,6)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (131 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (131 samples, 0.34%)</title><rect x="331.7" y="145" width="4.1" height="15.0" fill="rgb(205,222,39)" rx="2" ry="2" />
<text text-anchor="" x="334.73" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (11 samples, 0.03%)</title><rect x="547.9" y="385" width="0.3" height="15.0" fill="rgb(245,197,28)" rx="2" ry="2" />
<text text-anchor="" x="550.87" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (128 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (128 samples, 0.33%)</title><rect x="764.3" y="241" width="3.9" height="15.0" fill="rgb(209,219,4)" rx="2" ry="2" />
<text text-anchor="" x="767.25" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_elf_binary (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (4 samples, 0.01%)</title><rect x="10.0" y="465" width="0.1" height="15.0" fill="rgb(237,224,53)" 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('update_cfs_rq_blocked_load (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (5 samples, 0.01%)</title><rect x="321.9" y="177" width="0.2" height="15.0" fill="rgb(247,70,16)" rx="2" ry="2" />
<text text-anchor="" x="324.90" y="187.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.01%)</title><rect x="370.0" y="145" width="0.1" height="15.0" fill="rgb(245,28,22)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (10 samples, 0.03%)</title><rect x="958.7" y="337" width="0.3" height="15.0" fill="rgb(249,92,53)" rx="2" ry="2" />
<text text-anchor="" x="961.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::View::View (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::View (9 samples, 0.02%)</title><rect x="969.5" y="401" width="0.3" height="15.0" fill="rgb(209,43,13)" rx="2" ry="2" />
<text text-anchor="" x="972.52" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (17 samples, 0.04%)</title><rect x="887.8" y="241" width="0.5" height="15.0" fill="rgb(253,147,11)" rx="2" ry="2" />
<text text-anchor="" x="890.77" y="251.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 (46 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (46 samples, 0.12%)</title><rect x="1164.5" y="385" width="1.4" height="15.0" fill="rgb(227,101,10)" rx="2" ry="2" />
<text text-anchor="" x="1167.49" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc@plt (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc@plt (5 samples, 0.01%)</title><rect x="274.3" y="337" width="0.2" height="15.0" fill="rgb(245,35,54)" rx="2" ry="2" />
<text text-anchor="" x="277.30" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (12 samples, 0.03%)</title><rect x="551.1" y="401" width="0.4" height="15.0" fill="rgb(218,207,0)" rx="2" ry="2" />
<text text-anchor="" x="554.10" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (4 samples, 0.01%)</title><rect x="1027.4" y="225" width="0.1" height="15.0" fill="rgb(212,89,16)" rx="2" ry="2" />
<text text-anchor="" x="1030.38" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (82 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (82 samples, 0.21%)</title><rect x="883.6" y="241" width="2.6" height="15.0" fill="rgb(223,214,48)" rx="2" ry="2" />
<text text-anchor="" x="886.65" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_start_main (5,566 samples, 14.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (5,566 samples, 14.53%)</title><rect x="198.7" y="545" width="171.5" height="15.0" fill="rgb(205,49,5)" rx="2" ry="2" />
<text text-anchor="" x="201.75" 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('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (780 samples, 2.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (780 samples, 2.04%)</title><rect x="433.6" y="513" width="24.1" height="15.0" fill="rgb(249,114,42)" rx="2" ry="2" />
<text text-anchor="" x="436.62" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (112 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (112 samples, 0.29%)</title><rect x="1148.7" y="353" width="3.5" height="15.0" fill="rgb(238,66,13)" rx="2" ry="2" />
<text text-anchor="" x="1151.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (43 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (43 samples, 0.11%)</title><rect x="1161.2" y="369" width="1.3" height="15.0" fill="rgb(215,75,9)" rx="2" ry="2" />
<text text-anchor="" x="1164.22" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__lll_unlock_wake (393 samples, 1.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (393 samples, 1.03%)</title><rect x="256.1" y="369" width="12.2" height="15.0" fill="rgb(220,200,6)" rx="2" ry="2" />
<text text-anchor="" x="259.15" 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_irqrestore (20 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (20 samples, 0.05%)</title><rect x="113.5" y="321" width="0.6" height="15.0" fill="rgb(217,41,41)" rx="2" ry="2" />
<text text-anchor="" x="116.46" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (281 samples, 0.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (281 samples, 0.73%)</title><rect x="662.9" y="385" width="8.7" height="15.0" fill="rgb(233,6,20)" rx="2" ry="2" />
<text text-anchor="" x="665.92" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (22 samples, 0.06%)</title><rect x="324.8" y="145" width="0.7" height="15.0" fill="rgb(240,225,28)" rx="2" ry="2" />
<text text-anchor="" x="327.83" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (12 samples, 0.03%)</title><rect x="340.7" y="161" width="0.4" height="15.0" fill="rgb(248,150,30)" rx="2" ry="2" />
<text text-anchor="" x="343.69" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__slab_free (140 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (140 samples, 0.37%)</title><rect x="906.8" y="193" width="4.4" height="15.0" fill="rgb(242,229,51)" rx="2" ry="2" />
<text text-anchor="" x="909.85" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (7 samples, 0.02%)</title><rect x="743.8" y="273" width="0.2" height="15.0" fill="rgb(250,175,49)" rx="2" ry="2" />
<text text-anchor="" x="746.83" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::AddAwakable (78 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (78 samples, 0.20%)</title><rect x="273.1" y="369" width="2.4" height="15.0" fill="rgb(226,198,40)" rx="2" ry="2" />
<text text-anchor="" x="276.06" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wake_up_state (2,252 samples, 5.88%)')" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_state (2,252 samples, 5.88%)</title><rect x="1060.5" y="177" width="69.4" height="15.0" fill="rgb(230,155,21)" rx="2" ry="2" />
<text text-anchor="" x="1063.50" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >wake_up..</text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_destroy@@GLIBC_2.3.2 (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_destroy@@GLIBC_2.3.2 (48 samples, 0.13%)</title><rect x="365.4" y="385" width="1.5" height="15.0" fill="rgb(253,153,42)" rx="2" ry="2" />
<text text-anchor="" x="368.37" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (14 samples, 0.04%)</title><rect x="731.1" y="353" width="0.4" height="15.0" fill="rgb(208,148,11)" rx="2" ry="2" />
<text text-anchor="" x="734.07" 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::WaitIfNecessary (70 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::WaitIfNecessary (70 samples, 0.18%)</title><rect x="198.9" y="481" width="2.2" height="15.0" fill="rgb(227,25,16)" rx="2" ry="2" />
<text text-anchor="" x="201.90" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (2,919 samples, 7.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (2,919 samples, 7.62%)</title><rect x="96.8" y="433" width="89.9" height="15.0" fill="rgb(225,184,51)" rx="2" ry="2" />
<text text-anchor="" x="99.76" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake_up_..</text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (79 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (79 samples, 0.21%)</title><rect x="863.0" y="353" width="2.4" height="15.0" fill="rgb(223,99,50)" rx="2" ry="2" />
<text text-anchor="" x="865.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (13 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (13 samples, 0.03%)</title><rect x="500.7" y="481" width="0.4" height="15.0" fill="rgb(225,195,40)" rx="2" ry="2" />
<text text-anchor="" x="503.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Remove (20 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (20 samples, 0.05%)</title><rect x="487.4" y="481" width="0.7" height="15.0" fill="rgb(249,36,33)" rx="2" ry="2" />
<text text-anchor="" x="490.45" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3,163 samples, 8.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3,163 samples, 8.26%)</title><rect x="861.5" y="385" width="97.5" height="15.0" fill="rgb(240,114,48)" rx="2" ry="2" />
<text text-anchor="" x="864.52" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_rt (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (11 samples, 0.03%)</title><rect x="345.2" y="241" width="0.3" height="15.0" fill="rgb(251,185,52)" rx="2" ry="2" />
<text text-anchor="" x="348.16" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (30 samples, 0.08%)</title><rect x="27.3" y="529" width="0.9" height="15.0" fill="rgb(205,140,0)" rx="2" ry="2" />
<text text-anchor="" x="30.28" 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 (32 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (32 samples, 0.08%)</title><rect x="1117.2" y="113" width="1.0" height="15.0" fill="rgb(216,222,37)" rx="2" ry="2" />
<text text-anchor="" x="1120.22" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (292 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (292 samples, 0.76%)</title><rect x="38.7" y="465" width="9.0" height="15.0" fill="rgb(254,110,16)" rx="2" ry="2" />
<text text-anchor="" x="41.72" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (10 samples, 0.03%)</title><rect x="732.5" y="337" width="0.3" height="15.0" fill="rgb(247,41,11)" rx="2" ry="2" />
<text text-anchor="" x="735.46" 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 (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (9 samples, 0.02%)</title><rect x="768.2" y="241" width="0.3" height="15.0" fill="rgb(222,6,20)" rx="2" ry="2" />
<text text-anchor="" x="771.20" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (60 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (60 samples, 0.16%)</title><rect x="951.1" y="321" width="1.8" height="15.0" fill="rgb(209,46,51)" rx="2" ry="2" />
<text text-anchor="" x="954.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::DoWork (203 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (203 samples, 0.53%)</title><rect x="624.9" y="449" width="6.2" height="15.0" fill="rgb(230,38,47)" rx="2" ry="2" />
<text text-anchor="" x="627.86" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (8 samples, 0.02%)</title><rect x="1069.5" y="97" width="0.2" height="15.0" fill="rgb(229,20,14)" rx="2" ry="2" />
<text text-anchor="" x="1072.50" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (24 samples, 0.06%)</title><rect x="428.1" y="513" width="0.8" height="15.0" fill="rgb(250,88,7)" rx="2" ry="2" />
<text text-anchor="" x="431.14" y="523.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 (50 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (50 samples, 0.13%)</title><rect x="769.4" y="273" width="1.5" height="15.0" fill="rgb(230,79,53)" rx="2" ry="2" />
<text text-anchor="" x="772.40" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (10 samples, 0.03%)</title><rect x="42.6" y="433" width="0.3" height="15.0" fill="rgb(245,149,27)" rx="2" ry="2" />
<text text-anchor="" x="45.60" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (17 samples, 0.04%)</title><rect x="457.7" y="529" width="0.5" height="15.0" fill="rgb(205,201,5)" rx="2" ry="2" />
<text text-anchor="" x="460.68" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.01%)</title><rect x="370.0" y="193" width="0.1" height="15.0" fill="rgb(226,108,29)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (5 samples, 0.01%)</title><rect x="344.4" y="193" width="0.1" height="15.0" fill="rgb(235,127,20)" rx="2" ry="2" />
<text text-anchor="" x="347.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (4,742 samples, 12.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (4,742 samples, 12.38%)</title><rect x="999.2" y="337" width="146.1" height="15.0" fill="rgb(235,206,46)" rx="2" ry="2" />
<text text-anchor="" x="1002.22" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Chan..</text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (4 samples, 0.01%)</title><rect x="824.8" y="433" width="0.2" height="15.0" fill="rgb(205,134,18)" rx="2" ry="2" />
<text text-anchor="" x="827.83" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (17 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (17 samples, 0.04%)</title><rect x="500.7" y="497" width="0.5" height="15.0" fill="rgb(237,63,17)" rx="2" ry="2" />
<text text-anchor="" x="503.67" y="507.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.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (6 samples, 0.02%)</title><rect x="761.1" y="225" width="0.2" height="15.0" fill="rgb(211,82,27)" rx="2" ry="2" />
<text text-anchor="" x="764.08" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (16 samples, 0.04%)</title><rect x="340.6" y="177" width="0.5" height="15.0" fill="rgb(248,156,5)" rx="2" ry="2" />
<text text-anchor="" x="343.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (133 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (133 samples, 0.35%)</title><rect x="710.6" y="353" width="4.1" height="15.0" fill="rgb(225,30,5)" rx="2" ry="2" />
<text text-anchor="" x="713.58" 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 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (6 samples, 0.02%)</title><rect x="674.1" y="401" width="0.2" height="15.0" fill="rgb(205,62,2)" rx="2" ry="2" />
<text text-anchor="" x="677.07" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (867 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (867 samples, 2.26%)</title><rect x="1087.4" y="97" width="26.7" height="15.0" fill="rgb(214,1,36)" rx="2" ry="2" />
<text text-anchor="" x="1090.43" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('irq_exit (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (11 samples, 0.03%)</title><rect x="742.1" y="273" width="0.4" height="15.0" fill="rgb(244,128,41)" rx="2" ry="2" />
<text text-anchor="" x="745.13" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (5 samples, 0.01%)</title><rect x="1000.4" y="321" width="0.1" height="15.0" fill="rgb(244,143,45)" rx="2" ry="2" />
<text text-anchor="" x="1003.36" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (15 samples, 0.04%)</title><rect x="521.4" y="385" width="0.4" height="15.0" fill="rgb(244,46,3)" rx="2" ry="2" />
<text text-anchor="" x="524.37" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (83 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (83 samples, 0.22%)</title><rect x="571.1" y="545" width="2.6" height="15.0" fill="rgb(229,216,35)" rx="2" ry="2" />
<text text-anchor="" x="574.10" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('futex_wake (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (5 samples, 0.01%)</title><rect x="268.1" y="321" width="0.2" height="15.0" fill="rgb(207,88,30)" rx="2" ry="2" />
<text text-anchor="" x="271.10" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (4 samples, 0.01%)</title><rect x="1060.4" y="177" width="0.1" height="15.0" fill="rgb(250,66,46)" rx="2" ry="2" />
<text text-anchor="" x="1063.38" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (93 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (93 samples, 0.24%)</title><rect x="714.7" y="353" width="2.8" height="15.0" fill="rgb(222,107,51)" rx="2" ry="2" />
<text text-anchor="" x="717.68" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (58 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (58 samples, 0.15%)</title><rect x="362.1" y="369" width="1.8" height="15.0" fill="rgb(238,140,49)" rx="2" ry="2" />
<text text-anchor="" x="365.11" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (179 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (179 samples, 0.47%)</title><rect x="79.9" y="417" width="5.5" height="15.0" fill="rgb(240,33,24)" rx="2" ry="2" />
<text text-anchor="" x="82.88" 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 (84 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (84 samples, 0.22%)</title><rect x="562.3" y="513" width="2.6" height="15.0" fill="rgb(214,144,9)" rx="2" ry="2" />
<text text-anchor="" x="565.32" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (39 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (39 samples, 0.10%)</title><rect x="292.7" y="353" width="1.2" height="15.0" fill="rgb(207,162,18)" rx="2" ry="2" />
<text text-anchor="" x="295.72" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pm_relax (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (4 samples, 0.01%)</title><rect x="697.7" y="369" width="0.1" height="15.0" fill="rgb(214,156,4)" rx="2" ry="2" />
<text text-anchor="" x="700.70" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (54 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (54 samples, 0.14%)</title><rect x="1105.4" y="65" width="1.7" height="15.0" fill="rgb(226,167,0)" rx="2" ry="2" />
<text text-anchor="" x="1108.39" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (9 samples, 0.02%)</title><rect x="876.6" y="305" width="0.2" height="15.0" fill="rgb(238,202,5)" rx="2" ry="2" />
<text text-anchor="" x="879.56" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_balance (104 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_balance (104 samples, 0.27%)</title><rect x="786.4" y="305" width="3.2" height="15.0" fill="rgb(223,189,47)" rx="2" ry="2" />
<text text-anchor="" x="789.44" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (7 samples, 0.02%)</title><rect x="20.1" y="497" width="0.2" height="15.0" fill="rgb(227,101,43)" rx="2" ry="2" />
<text text-anchor="" x="23.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (16 samples, 0.04%)</title><rect x="453.4" y="481" width="0.5" height="15.0" fill="rgb(239,95,31)" rx="2" ry="2" />
<text text-anchor="" x="456.37" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (1,988 samples, 5.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (1,988 samples, 5.19%)</title><rect x="494.3" y="513" width="61.3" height="15.0" fill="rgb(206,82,50)" rx="2" ry="2" />
<text text-anchor="" x="497.35" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthrea..</text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (1,409 samples, 3.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (1,409 samples, 3.68%)</title><rect x="1084.1" y="145" width="43.4" height="15.0" fill="rgb(235,137,30)" rx="2" ry="2" />
<text text-anchor="" x="1087.07" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ttwu..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (7 samples, 0.02%)</title><rect x="502.5" y="465" width="0.2" height="15.0" fill="rgb(234,202,53)" rx="2" ry="2" />
<text text-anchor="" x="505.48" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (4 samples, 0.01%)</title><rect x="862.7" y="369" width="0.1" height="15.0" fill="rgb(220,126,27)" rx="2" ry="2" />
<text text-anchor="" x="865.69" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (10 samples, 0.03%)</title><rect x="1070.0" y="145" width="0.3" height="15.0" fill="rgb(247,109,18)" rx="2" ry="2" />
<text text-anchor="" x="1072.96" 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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.01%)</title><rect x="582.9" y="385" width="0.2" height="15.0" fill="rgb(251,107,25)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('idle_cpu (106 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (106 samples, 0.28%)</title><rect x="1077.8" y="129" width="3.3" height="15.0" fill="rgb(248,178,7)" rx="2" ry="2" />
<text text-anchor="" x="1080.82" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (4 samples, 0.01%)</title><rect x="505.3" y="465" width="0.1" height="15.0" fill="rgb(217,50,39)" rx="2" ry="2" />
<text text-anchor="" x="508.32" y="475.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.01%)</title><rect x="10.1" y="113" width="0.1" height="15.0" fill="rgb(235,112,47)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (5 samples, 0.01%)</title><rect x="10.3" y="513" width="0.1" height="15.0" fill="rgb(210,182,25)" rx="2" ry="2" />
<text text-anchor="" x="13.28" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (59 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (59 samples, 0.15%)</title><rect x="762.1" y="209" width="1.8" height="15.0" fill="rgb(250,126,5)" rx="2" ry="2" />
<text text-anchor="" x="765.07" y="219.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (4 samples, 0.01%)</title><rect x="582.9" y="513" width="0.2" height="15.0" fill="rgb(249,91,52)" rx="2" ry="2" />
<text text-anchor="" x="585.93" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (16 samples, 0.04%)</title><rect x="504.8" y="465" width="0.5" height="15.0" fill="rgb(219,38,12)" rx="2" ry="2" />
<text text-anchor="" x="507.79" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.01%)</title><rect x="10.0" y="337" width="0.1" height="15.0" fill="rgb(221,14,34)" 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('enqueue_entity (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (5 samples, 0.01%)</title><rect x="131.7" y="273" width="0.2" height="15.0" fill="rgb(206,149,19)" rx="2" ry="2" />
<text text-anchor="" x="134.70" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (2,339 samples, 6.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2,339 samples, 6.11%)</title><rect x="734.3" y="321" width="72.1" height="15.0" fill="rgb(225,115,47)" rx="2" ry="2" />
<text text-anchor="" x="737.34" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__schedule</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (109 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (109 samples, 0.28%)</title><rect x="106.3" y="321" width="3.3" height="15.0" fill="rgb(209,95,27)" rx="2" ry="2" />
<text text-anchor="" x="109.28" 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 (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Waiter::Init (9 samples, 0.02%)</title><rect x="254.2" y="385" width="0.3" height="15.0" fill="rgb(213,138,1)" rx="2" ry="2" />
<text text-anchor="" x="257.21" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (24 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (24 samples, 0.06%)</title><rect x="544.0" y="321" width="0.8" height="15.0" fill="rgb(251,5,23)" rx="2" ry="2" />
<text text-anchor="" x="547.02" 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::GetHandleSignalsState (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (4 samples, 0.01%)</title><rect x="418.9" y="513" width="0.1" height="15.0" fill="rgb(212,39,25)" rx="2" ry="2" />
<text text-anchor="" x="421.86" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (4 samples, 0.01%)</title><rect x="524.4" y="337" width="0.1" height="15.0" fill="rgb(254,118,47)" rx="2" ry="2" />
<text text-anchor="" x="527.36" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (64 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (64 samples, 0.17%)</title><rect x="199.0" y="241" width="2.0" height="15.0" fill="rgb(237,227,7)" rx="2" ry="2" />
<text text-anchor="" x="202.03" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Remove (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Remove (15 samples, 0.04%)</title><rect x="279.8" y="337" width="0.4" height="15.0" fill="rgb(238,15,51)" rx="2" ry="2" />
<text text-anchor="" x="282.75" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (35 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (35 samples, 0.09%)</title><rect x="802.3" y="305" width="1.1" height="15.0" fill="rgb(227,110,39)" rx="2" ry="2" />
<text text-anchor="" x="805.27" y="315.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::Thread::StartWithOptions (5 samples, 0.01%)</title><rect x="370.0" y="353" width="0.2" height="15.0" fill="rgb(227,92,33)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (718 samples, 1.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (718 samples, 1.87%)</title><rect x="600.5" y="449" width="22.1" height="15.0" fill="rgb(240,67,53)" rx="2" ry="2" />
<text text-anchor="" x="603.46" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('base:: (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>base:: (5 samples, 0.01%)</title><rect x="370.0" y="337" width="0.2" height="15.0" fill="rgb(224,198,51)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('delayed_work_timer_fn (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>delayed_work_timer_fn (4 samples, 0.01%)</title><rect x="742.3" y="209" width="0.1" height="15.0" fill="rgb(237,188,37)" rx="2" ry="2" />
<text text-anchor="" x="745.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (5 samples, 0.01%)</title><rect x="27.1" y="529" width="0.2" height="15.0" fill="rgb(212,23,4)" rx="2" ry="2" />
<text text-anchor="" x="30.13" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (7 samples, 0.02%)</title><rect x="1014.7" y="273" width="0.2" height="15.0" fill="rgb(217,213,10)" rx="2" ry="2" />
<text text-anchor="" x="1017.69" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (7 samples, 0.02%)</title><rect x="1069.5" y="65" width="0.2" height="15.0" fill="rgb(233,164,36)" rx="2" ry="2" />
<text text-anchor="" x="1072.53" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (5 samples, 0.01%)</title><rect x="207.7" y="385" width="0.2" height="15.0" fill="rgb(237,196,13)" rx="2" ry="2" />
<text text-anchor="" x="210.75" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (118 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (118 samples, 0.31%)</title><rect x="441.5" y="449" width="3.7" height="15.0" fill="rgb(230,11,27)" rx="2" ry="2" />
<text text-anchor="" x="444.54" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_pid (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_pid (7 samples, 0.02%)</title><rect x="911.8" y="225" width="0.2" height="15.0" fill="rgb(243,197,6)" rx="2" ry="2" />
<text text-anchor="" x="914.81" y="235.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.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::test::ChannelThread::Start (5 samples, 0.01%)</title><rect x="370.0" y="385" width="0.2" height="15.0" fill="rgb(222,22,39)" rx="2" ry="2" />
<text text-anchor="" x="373.03" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment