Skip to content

Instantly share code, notes, and snippets.

@bobrik
Last active December 2, 2019 19:36
Show Gist options
  • Save bobrik/a9c46cffe9daa5840abd137443d8bab0 to your computer and use it in GitHub Desktop.
Save bobrik/a9c46cffe9daa5840abd137443d8bab0 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1440" height="934" onload="init(evt)" viewBox="0 0 1440 934" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<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, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
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 g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
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 = "";
}
// zoom
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]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1440.0" height="934.0" fill="url(#background)" />
<text text-anchor="middle" x="720.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >72m32</text>
<text text-anchor="" x="10.00" y="917" 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>
<text text-anchor="" x="1330.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1330.00" y="917" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdl-2.24.so] (16 samples, 1.68%)</title><rect x="48.7" y="533" width="23.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_inline_sym (1 samples, 0.10%)</title><rect x="1428.5" y="629" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_user_addr_fault (1 samples, 0.10%)</title><rect x="1266.3" y="373" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.10%)</title><rect x="21.9" y="693" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tasklet_action_common.isra.0 (1 samples, 0.10%)</title><rect x="1206.7" y="341" width="1.5" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libbfd-2.28-system.so] (1 samples, 0.10%)</title><rect x="1421.1" y="421" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1424.07" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (5 samples, 0.52%)</title><rect x="1190.4" y="485" width="7.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1193.36" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.10%)</title><rect x="1352.6" y="357" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1355.60" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.10%)</title><rect x="1182.9" y="389" width="1.5" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>symbols__find (2 samples, 0.21%)</title><rect x="1383.9" y="453" width="2.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1386.86" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filemap_map_pages (1 samples, 0.10%)</title><rect x="1370.5" y="357" width="1.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1373.46" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_open (1 samples, 0.10%)</title><rect x="1382.4" y="373" width="1.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1385.37" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (1 samples, 0.10%)</title><rect x="74.0" y="469" width="1.5" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_user_addr_fault (1 samples, 0.10%)</title><rect x="71.0" y="389" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="74.03" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.10%)</title><rect x="11.5" y="581" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_bfd_elf_find_nearest_line (15 samples, 1.57%)</title><rect x="1403.2" y="485" width="22.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1406.21" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1 samples, 0.10%)</title><rect x="1382.4" y="453" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1385.37" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (4 samples, 0.42%)</title><rect x="1252.9" y="405" width="5.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1255.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (2 samples, 0.21%)</title><rect x="38.3" y="453" width="3.0" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="41.28" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unwind_entry (1 samples, 0.10%)</title><rect x="1428.5" y="725" width="1.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (1 samples, 0.10%)</title><rect x="1395.8" y="69" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (2 samples, 0.21%)</title><rect x="1191.8" y="325" width="3.0" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdl-2.24.so] (2 samples, 0.21%)</title><rect x="1191.8" y="389" width="3.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mod_timer (1 samples, 0.10%)</title><rect x="1206.7" y="245" width="1.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vm_munmap (3 samples, 0.31%)</title><rect x="90.4" y="485" width="4.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="93.38" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1 samples, 0.10%)</title><rect x="74.0" y="437" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vsnprintf_chk (1 samples, 0.10%)</title><rect x="42.7" y="581" width="1.5" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="45.75" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fprintf (1 samples, 0.10%)</title><rect x="45.7" y="613" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="48.72" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwarf_next_cfi (1 samples, 0.10%)</title><rect x="1203.8" y="405" width="1.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1206.75" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_move (1 samples, 0.10%)</title><rect x="32.3" y="677" width="1.5" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="35.33" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_end (26 samples, 2.73%)</title><rect x="72.5" y="613" width="38.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="75.52" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__write_once_size (1 samples, 0.10%)</title><rect x="32.3" y="629" width="1.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="35.33" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_mmap (4 samples, 0.42%)</title><rect x="1391.3" y="421" width="6.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1394.30" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>d_path (1 samples, 0.10%)</title><rect x="68.1" y="277" width="1.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="71.05" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_filp_open (1 samples, 0.10%)</title><rect x="1382.4" y="421" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1385.37" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwarf_end (11 samples, 1.15%)</title><rect x="94.8" y="581" width="16.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwarf_begin_elf (67 samples, 7.02%)</title><rect x="1266.3" y="453" width="99.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwarf_begin_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (3 samples, 0.31%)</title><rect x="57.6" y="357" width="4.5" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="60.63" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>validate_xmit_skb_list (1 samples, 0.10%)</title><rect x="1395.8" y="53" width="1.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (1 samples, 0.10%)</title><rect x="74.0" y="533" width="1.5" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.10%)</title><rect x="1266.3" y="357" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (2 samples, 0.21%)</title><rect x="38.3" y="533" width="3.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="41.28" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (9 samples, 0.94%)</title><rect x="97.8" y="373" width="13.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="100.82" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_user_addr_fault (4 samples, 0.42%)</title><rect x="1371.9" y="405" width="6.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1374.95" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (6 samples, 0.63%)</title><rect x="1389.8" y="565" width="8.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1392.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdl-2.24.so] (2 samples, 0.21%)</title><rect x="1191.8" y="421" width="3.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_module_info (1 samples, 0.10%)</title><rect x="1366.0" y="501" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1369.00" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.10%)</title><rect x="21.9" y="677" width="1.5" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_openat (1 samples, 0.10%)</title><rect x="1382.4" y="405" width="1.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1385.37" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.10%)</title><rect x="1379.4" y="437" width="1.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1382.39" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.10%)</title><rect x="1206.7" y="293" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.10%)</title><rect x="1182.9" y="357" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_remove_rmap (2 samples, 0.21%)</title><rect x="91.9" y="405" width="2.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="94.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_keepalive_timer (1 samples, 0.10%)</title><rect x="1182.9" y="293" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fprintf (1 samples, 0.10%)</title><rect x="44.2" y="581" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="47.23" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__symbol__fprintf_symname_offs (1 samples, 0.10%)</title><rect x="44.2" y="597" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="47.23" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (5 samples, 0.52%)</title><rect x="54.7" y="373" width="7.4" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="57.65" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__symbol__fprintf_symname_offs (1 samples, 0.10%)</title><rect x="44.2" y="613" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="47.23" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (16 samples, 1.68%)</title><rect x="48.7" y="581" width="23.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_timer_handler (1 samples, 0.10%)</title><rect x="1395.8" y="261" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (3 samples, 0.31%)</title><rect x="11.5" y="725" width="4.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (3 samples, 0.31%)</title><rect x="1191.8" y="453" width="4.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_sample_event (935 samples, 98.01%)</title><rect x="36.8" y="661" width="1391.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="39.79" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >process_sample_event</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (1 samples, 0.10%)</title><rect x="62.1" y="373" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="65.10" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cplus_demangle (1 samples, 0.10%)</title><rect x="1428.5" y="565" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (1 samples, 0.10%)</title><rect x="44.2" y="549" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="47.23" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (15 samples, 1.57%)</title><rect x="72.5" y="581" width="22.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="75.52" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1 samples, 0.10%)</title><rect x="62.1" y="357" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="65.10" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.10%)</title><rect x="18.9" y="677" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (46 samples, 4.82%)</title><rect x="1197.8" y="469" width="68.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1200.80" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libdw-..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get (1 samples, 0.10%)</title><rect x="13.0" y="613" width="1.5" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="15.98" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_simple (940 samples, 98.53%)</title><rect x="29.4" y="773" width="1399.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >process_simple</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (13 samples, 1.36%)</title><rect x="10.0" y="869" width="19.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (1 samples, 0.10%)</title><rect x="1206.7" y="357" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.10%)</title><rect x="71.0" y="373" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="74.03" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_filp_open (2 samples, 0.21%)</title><rect x="1398.7" y="501" width="3.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1401.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>map__find_symbol (2 samples, 0.21%)</title><rect x="1383.9" y="485" width="2.9" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="1386.86" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_addrmodule (1 samples, 0.10%)</title><rect x="1367.5" y="501" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1370.48" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_pages (1 samples, 0.10%)</title><rect x="74.0" y="325" width="1.5" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (1 samples, 0.10%)</title><rect x="11.5" y="629" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.10%)</title><rect x="1032.6" y="309" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1035.58" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (1 samples, 0.10%)</title><rect x="1369.0" y="469" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1371.97" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_flush (940 samples, 98.53%)</title><rect x="29.4" y="709" width="1399.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_flush</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="437" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>symbols__find (1 samples, 0.10%)</title><rect x="47.2" y="533" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="50.21" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unmap_vmas (2 samples, 0.21%)</title><rect x="91.9" y="437" width="2.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="94.87" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.10%)</title><rect x="1182.9" y="213" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vsnprintf (1 samples, 0.10%)</title><rect x="42.7" y="597" width="1.5" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="45.75" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>append_inlines (1 samples, 0.10%)</title><rect x="1428.5" y="709" width="1.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filemap_map_pages (1 samples, 0.10%)</title><rect x="69.5" y="325" width="1.5" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="72.54" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ordered_events__delete (1 samples, 0.10%)</title><rect x="32.3" y="693" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="35.33" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scnprintf (1 samples, 0.10%)</title><rect x="42.7" y="613" width="1.5" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="45.75" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (118 samples, 12.37%)</title><rect x="1190.4" y="517" width="175.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1193.36" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libdw-0.168.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksys_mmap_pgoff (2 samples, 0.21%)</title><rect x="66.6" y="357" width="2.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="69.56" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (1 samples, 0.10%)</title><rect x="38.3" y="437" width="1.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="41.28" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_tasklet_func (1 samples, 0.10%)</title><rect x="1206.7" y="325" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libelf-0.168.so] (1 samples, 0.10%)</title><rect x="1369.0" y="453" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1371.97" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (2 samples, 0.21%)</title><rect x="1374.9" y="389" width="3.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1377.93" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_open (2 samples, 0.21%)</title><rect x="1398.7" y="517" width="3.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1401.74" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cplus_demangle_v3 (1 samples, 0.10%)</title><rect x="1428.5" y="549" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.10%)</title><rect x="18.9" y="725" width="1.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_openat (1 samples, 0.10%)</title><rect x="62.1" y="309" width="1.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="65.10" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip6_input (1 samples, 0.10%)</title><rect x="26.4" y="757" width="1.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="29.37" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.10%)</title><rect x="1182.9" y="165" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (10 samples, 1.05%)</title><rect x="75.5" y="533" width="14.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="78.49" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.10%)</title><rect x="1206.7" y="229" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>addr2line (1 samples, 0.10%)</title><rect x="1428.5" y="661" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread__find_symbol (4 samples, 0.42%)</title><rect x="1383.9" y="501" width="5.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1386.86" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (1 samples, 0.10%)</title><rect x="18.9" y="597" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libbfd-2.28-system.so] (1 samples, 0.10%)</title><rect x="1421.1" y="405" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1424.07" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unmap_region (3 samples, 0.31%)</title><rect x="90.4" y="453" width="4.4" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="93.38" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.10%)</title><rect x="1395.8" y="101" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1 samples, 0.10%)</title><rect x="1377.9" y="421" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1380.90" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mlx5e_handle_rx_cqe (5 samples, 0.52%)</title><rect x="17.4" y="773" width="7.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="20.44" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (709 samples, 74.32%)</title><rect x="130.6" y="501" width="1055.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="133.57" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libdw-0.168.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_openat (2 samples, 0.21%)</title><rect x="1398.7" y="485" width="3.0" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1401.74" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_bfd_dwarf2_find_nearest_line (13 samples, 1.36%)</title><rect x="1403.2" y="469" width="19.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1406.21" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tsearch (34 samples, 3.56%)</title><rect x="1208.2" y="437" width="50.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1211.22" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__tse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_session__process_user_event (1 samples, 0.10%)</title><rect x="1428.5" y="853" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>addr2inlines (1 samples, 0.10%)</title><rect x="1428.5" y="677" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_open (1 samples, 0.10%)</title><rect x="1382.4" y="437" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1385.37" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__handle_mm_fault (1 samples, 0.10%)</title><rect x="1352.6" y="309" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1355.60" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (2 samples, 0.21%)</title><rect x="1191.8" y="405" width="3.0" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (2 samples, 0.21%)</title><rect x="21.9" y="709" width="3.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unwind__get_entries (1 samples, 0.10%)</title><rect x="1428.5" y="741" width="1.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1 samples, 0.10%)</title><rect x="1193.3" y="261" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1196.33" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__handle_mm_fault (1 samples, 0.10%)</title><rect x="69.5" y="341" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="72.54" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (2 samples, 0.21%)</title><rect x="126.1" y="469" width="3.0" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="129.10" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (724 samples, 75.89%)</title><rect x="111.2" y="549" width="1077.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="114.22" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libdw-0.168.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread__find_symbol (1 samples, 0.10%)</title><rect x="47.2" y="581" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="50.21" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (2 samples, 0.21%)</title><rect x="108.2" y="325" width="3.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="111.24" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cplus_demangle_print_callback (1 samples, 0.10%)</title><rect x="1428.5" y="501" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="533" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.10%)</title><rect x="18.9" y="693" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_module_dwarf_cfi (67 samples, 7.02%)</title><rect x="1266.3" y="501" width="99.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwfl_module_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libelf-0.168.so] (1 samples, 0.10%)</title><rect x="1389.8" y="533" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1392.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tsearch (6 samples, 0.63%)</title><rect x="117.2" y="469" width="8.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="120.17" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (1 samples, 0.10%)</title><rect x="1263.3" y="421" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1266.29" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_protocol_deliver_rcu (1 samples, 0.10%)</title><rect x="18.9" y="645" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_queue_xmit (1 samples, 0.10%)</title><rect x="1395.8" y="197" width="1.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (3 samples, 0.31%)</title><rect x="11.5" y="741" width="4.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__report_module (8 samples, 0.84%)</title><rect x="1389.8" y="597" width="11.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1392.81" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>adler32 (8 samples, 0.84%)</title><rect x="1354.1" y="373" width="11.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1357.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (3 samples, 0.31%)</title><rect x="112.7" y="469" width="4.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="115.70" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.10%)</title><rect x="1196.3" y="453" width="1.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1199.31" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>map__init (1 samples, 0.10%)</title><rect x="33.8" y="645" width="1.5" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="36.82" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.10%)</title><rect x="38.3" y="421" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="41.28" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (1 samples, 0.10%)</title><rect x="74.0" y="453" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (1 samples, 0.10%)</title><rect x="44.2" y="533" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="47.23" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (1 samples, 0.10%)</title><rect x="1203.8" y="421" width="1.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1206.75" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (1 samples, 0.10%)</title><rect x="1389.8" y="517" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1392.81" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_schedule_loss_probe (1 samples, 0.10%)</title><rect x="1206.7" y="277" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (16 samples, 1.68%)</title><rect x="48.7" y="597" width="23.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_user_addr_fault (1 samples, 0.10%)</title><rect x="1034.1" y="373" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1037.07" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>elf_end (13 samples, 1.36%)</title><rect x="75.5" y="565" width="19.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="78.49" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.10%)</title><rect x="23.4" y="693" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="26.40" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>elf_compress_gnu (709 samples, 74.32%)</title><rect x="130.6" y="453" width="1055.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="133.57" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >elf_compress_gnu</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_iterate_sb (4 samples, 0.42%)</title><rect x="1391.3" y="405" width="6.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1394.30" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mprotect_fixup (2 samples, 0.21%)</title><rect x="63.6" y="325" width="3.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="66.58" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unmap_region (1 samples, 0.10%)</title><rect x="74.0" y="373" width="1.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_sample__fprintf_start (1 samples, 0.10%)</title><rect x="42.7" y="629" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="45.75" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__open_nocancel (2 samples, 0.21%)</title><rect x="1380.9" y="485" width="3.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1383.88" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mmap64 (1 samples, 0.10%)</title><rect x="1377.9" y="453" width="1.5" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="1380.90" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread__insert_map (1 samples, 0.10%)</title><rect x="35.3" y="661" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="38.30" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.10%)</title><rect x="1206.7" y="373" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksys_write (2 samples, 0.21%)</title><rect x="38.3" y="501" width="3.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="41.28" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_sample_event (935 samples, 98.01%)</title><rect x="36.8" y="677" width="1391.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="39.79" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >process_sample_event</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (1 samples, 0.10%)</title><rect x="1193.3" y="245" width="1.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1196.33" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.10%)</title><rect x="69.5" y="357" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="72.54" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>report_module (8 samples, 0.84%)</title><rect x="1389.8" y="613" width="11.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1392.81" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.10%)</title><rect x="71.0" y="405" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="74.03" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.10%)</title><rect x="1395.8" y="133" width="1.5" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (7 samples, 0.73%)</title><rect x="100.8" y="341" width="10.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="103.80" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>flush_tlb_mm_range (1 samples, 0.10%)</title><rect x="90.4" y="421" width="1.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="93.38" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (1 samples, 0.10%)</title><rect x="109.7" y="309" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="112.73" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="501" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fprintf_chk (1 samples, 0.10%)</title><rect x="44.2" y="565" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="47.23" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_vlan_untag (1 samples, 0.10%)</title><rect x="20.4" y="693" width="1.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="23.42" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__inode_security_revalidate (1 samples, 0.10%)</title><rect x="1382.4" y="341" width="1.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="1385.37" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vlan_dev_hard_start_xmit (1 samples, 0.10%)</title><rect x="1395.8" y="117" width="1.5" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.10%)</title><rect x="1032.6" y="373" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1035.58" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.10%)</title><rect x="1034.1" y="389" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1037.07" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_mmap (1 samples, 0.10%)</title><rect x="68.1" y="293" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="71.05" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__qdisc_run (1 samples, 0.10%)</title><rect x="1395.8" y="85" width="1.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (2 samples, 0.21%)</title><rect x="1398.7" y="533" width="3.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1401.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x64_sys_munmap (1 samples, 0.10%)</title><rect x="74.0" y="421" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ordered_events__flush (940 samples, 98.53%)</title><rect x="29.4" y="725" width="1399.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__ordered_events__flush</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (3 samples, 0.31%)</title><rect x="11.5" y="789" width="4.5" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (2 samples, 0.21%)</title><rect x="11.5" y="661" width="3.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.10%)</title><rect x="11.5" y="597" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (1 samples, 0.10%)</title><rect x="1395.8" y="213" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mlx5e_skb_from_cqe_linear (1 samples, 0.10%)</title><rect x="17.4" y="757" width="1.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="20.44" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (1 samples, 0.10%)</title><rect x="1193.3" y="277" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1196.33" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_report_module (1 samples, 0.10%)</title><rect x="1379.4" y="469" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1382.39" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_event (1 samples, 0.10%)</title><rect x="1428.5" y="757" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (16 samples, 1.68%)</title><rect x="48.7" y="517" width="23.8" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_user_addr_fault (1 samples, 0.10%)</title><rect x="1352.6" y="341" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1355.60" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libz.so.1.2.8] (604 samples, 63.31%)</title><rect x="136.5" y="405" width="899.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="139.52" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libz.so.1.2.8]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_frame_pc (118 samples, 12.37%)</title><rect x="1190.4" y="533" width="175.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1193.36" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwfl_frame_pc</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__handle_mm_fault (1 samples, 0.10%)</title><rect x="1370.5" y="373" width="1.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1373.46" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_counter_try_charge (1 samples, 0.10%)</title><rect x="1266.3" y="261" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mlx5e_poll_xdpsq_cq (1 samples, 0.10%)</title><rect x="24.9" y="789" width="1.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="27.88" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>validate_xmit_skb.isra.0 (1 samples, 0.10%)</title><rect x="1395.8" y="37" width="1.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_one_core (1 samples, 0.10%)</title><rect x="18.9" y="709" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="405" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (4 samples, 0.42%)</title><rect x="1391.3" y="517" width="6.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1394.30" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inflateEnd (1 samples, 0.10%)</title><rect x="1184.4" y="421" width="1.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1187.40" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.10%)</title><rect x="26.4" y="741" width="1.5" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="29.37" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dlopen (16 samples, 1.68%)</title><rect x="48.7" y="549" width="23.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>map__new (1 samples, 0.10%)</title><rect x="33.8" y="661" width="1.5" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="36.82" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_dentry_open (1 samples, 0.10%)</title><rect x="1382.4" y="389" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1385.37" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (13 samples, 1.36%)</title><rect x="10.0" y="837" width="19.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlock_page (1 samples, 0.10%)</title><rect x="1376.4" y="341" width="1.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1379.42" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_module_getdwarf (710 samples, 74.42%)</title><rect x="129.1" y="517" width="1056.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="132.08" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwfl_module_getdwarf</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (1 samples, 0.10%)</title><rect x="1182.9" y="277" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libelf-0.168.so] (6 samples, 0.63%)</title><rect x="1370.5" y="469" width="8.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1373.46" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_report_elf (8 samples, 0.84%)</title><rect x="1389.8" y="581" width="11.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1392.81" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (1 samples, 0.10%)</title><rect x="1370.5" y="437" width="1.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1373.46" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libbfd-2.28-system.so] (1 samples, 0.10%)</title><rect x="1428.5" y="485" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (3 samples, 0.31%)</title><rect x="11.5" y="773" width="4.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filemap_map_pages (2 samples, 0.21%)</title><rect x="1374.9" y="357" width="3.0" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1377.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip6t_do_table (1 samples, 0.10%)</title><rect x="26.4" y="725" width="1.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="29.37" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_add_file_rmap (1 samples, 0.10%)</title><rect x="69.5" y="293" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="72.54" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_attach_state (16 samples, 1.68%)</title><rect x="48.7" y="613" width="23.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (4 samples, 0.42%)</title><rect x="1371.9" y="421" width="6.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1374.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (1 samples, 0.10%)</title><rect x="1382.4" y="469" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1385.37" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (3 samples, 0.31%)</title><rect x="90.4" y="533" width="4.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="93.38" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_module_eh_cfi (2 samples, 0.21%)</title><rect x="1185.9" y="533" width="3.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1188.89" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bfd_demangle (1 samples, 0.10%)</title><rect x="1428.5" y="581" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>selinux_file_open (1 samples, 0.10%)</title><rect x="1382.4" y="357" width="1.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1385.37" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__call_rcu (1 samples, 0.10%)</title><rect x="1193.3" y="213" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1196.33" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sample__fprintf_callchain (2 samples, 0.21%)</title><rect x="44.2" y="629" width="3.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="47.23" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__open_nocancel (2 samples, 0.21%)</title><rect x="1398.7" y="565" width="3.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1401.74" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inflate (66 samples, 6.92%)</title><rect x="1267.8" y="389" width="98.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1270.76" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >inflate</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.10%)</title><rect x="1182.9" y="373" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>map__find_symbol (1 samples, 0.10%)</title><rect x="47.2" y="565" width="1.5" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="50.21" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__list_del (1 samples, 0.10%)</title><rect x="32.3" y="645" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="35.33" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_user_addr_fault (1 samples, 0.10%)</title><rect x="1187.4" y="469" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1190.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.10%)</title><rect x="1182.9" y="245" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>adler32 (100 samples, 10.48%)</title><rect x="1035.6" y="405" width="148.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >adler32</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vm_munmap (1 samples, 0.10%)</title><rect x="74.0" y="405" width="1.5" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copyin (1 samples, 0.10%)</title><rect x="39.8" y="421" width="1.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="42.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_tsq_handler (1 samples, 0.10%)</title><rect x="1206.7" y="309" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filemap_map_pages (1 samples, 0.10%)</title><rect x="1352.6" y="293" width="1.5" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1355.60" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libelf-0.168.so] (709 samples, 74.32%)</title><rect x="130.6" y="437" width="1055.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="133.57" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libelf-0.168.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_addrsegment (1 samples, 0.10%)</title><rect x="1367.5" y="485" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1370.48" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (14 samples, 1.47%)</title><rect x="51.7" y="421" width="20.8" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="54.68" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_open (1 samples, 0.10%)</title><rect x="62.1" y="341" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="65.10" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (12 samples, 1.26%)</title><rect x="53.2" y="405" width="17.8" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="56.17" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdl-2.24.so] (16 samples, 1.68%)</title><rect x="48.7" y="501" width="23.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="485" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.10%)</title><rect x="1187.4" y="485" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1190.38" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="453" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libelf-0.168.so] (5 samples, 0.52%)</title><rect x="1370.5" y="453" width="7.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1373.46" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (11 samples, 1.15%)</title><rect x="94.8" y="565" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.10%)</title><rect x="1395.8" y="341" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mod_lruvec_state (1 samples, 0.10%)</title><rect x="69.5" y="277" width="1.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="72.54" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__list_del_entry (1 samples, 0.10%)</title><rect x="32.3" y="661" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="35.33" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_session__process_events (940 samples, 98.53%)</title><rect x="29.4" y="805" width="1399.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf_session__process_events</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_session__process_event (940 samples, 98.53%)</title><rect x="29.4" y="757" width="1399.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_session__process_event</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (2 samples, 0.21%)</title><rect x="38.3" y="469" width="3.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="41.28" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (4 samples, 0.42%)</title><rect x="63.6" y="389" width="5.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="66.58" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_mmap (4 samples, 0.42%)</title><rect x="1391.3" y="453" width="6.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1394.30" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tlb_batch_pages_flush (1 samples, 0.10%)</title><rect x="74.0" y="341" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdl-2.24.so] (2 samples, 0.21%)</title><rect x="72.5" y="549" width="3.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="75.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_work_run (1 samples, 0.10%)</title><rect x="1193.3" y="229" width="1.5" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1196.33" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_timer_fn (1 samples, 0.10%)</title><rect x="1182.9" y="309" width="1.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_mstamp_refresh (1 samples, 0.10%)</title><rect x="13.0" y="629" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="15.98" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_do_write (3 samples, 0.31%)</title><rect x="36.8" y="597" width="4.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="39.79" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish_core.isra.0 (1 samples, 0.10%)</title><rect x="23.4" y="677" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="26.40" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_event (935 samples, 98.01%)</title><rect x="36.8" y="645" width="1391.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="39.79" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >process_event</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.10%)</title><rect x="1395.8" y="149" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_getthread_frames (859 samples, 90.04%)</title><rect x="111.2" y="613" width="1278.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="114.22" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwfl_getthread_frames</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>map_groups__find (1 samples, 0.10%)</title><rect x="1388.3" y="469" width="1.5" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="1391.32" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (3 samples, 0.31%)</title><rect x="90.4" y="517" width="4.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="93.38" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (2 samples, 0.21%)</title><rect x="1398.7" y="549" width="3.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1401.74" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (5 samples, 0.52%)</title><rect x="1251.4" y="421" width="7.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1254.38" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>append_inlines (18 samples, 1.89%)</title><rect x="1401.7" y="597" width="26.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1404.72" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_bfd_elf_find_function (2 samples, 0.21%)</title><rect x="1422.6" y="469" width="2.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1425.56" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (4 samples, 0.42%)</title><rect x="63.6" y="373" width="5.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="66.58" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (709 samples, 74.32%)</title><rect x="130.6" y="469" width="1055.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="133.57" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libdw-0.168.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.10%)</title><rect x="1032.6" y="357" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1035.58" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (10 samples, 1.05%)</title><rect x="75.5" y="549" width="14.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="78.49" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_user_addr_fault (1 samples, 0.10%)</title><rect x="1370.5" y="405" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1373.46" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_inode_permission (1 samples, 0.10%)</title><rect x="62.1" y="277" width="1.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="65.10" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.10%)</title><rect x="1194.8" y="437" width="1.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1197.82" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_one_core (3 samples, 0.31%)</title><rect x="20.4" y="725" width="4.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="23.42" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_protocol_deliver_rcu (2 samples, 0.21%)</title><rect x="11.5" y="693" width="3.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (6 samples, 0.63%)</title><rect x="54.7" y="389" width="8.9" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="57.65" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (4 samples, 0.42%)</title><rect x="1391.3" y="501" width="6.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1394.30" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_tx_action (1 samples, 0.10%)</title><rect x="1032.6" y="325" width="1.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1035.58" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (6 samples, 0.63%)</title><rect x="1242.5" y="421" width="8.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1245.45" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (1 samples, 0.10%)</title><rect x="1266.3" y="405" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.10%)</title><rect x="1206.7" y="405" width="1.5" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.10%)</title><rect x="18.9" y="661" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>avc_has_perm_noaudit (1 samples, 0.10%)</title><rect x="62.1" y="245" width="1.5" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="65.10" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_flush (1 samples, 0.10%)</title><rect x="1428.5" y="821" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>report_module (15 samples, 1.57%)</title><rect x="1367.5" y="533" width="22.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1370.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dso__demangle_sym (1 samples, 0.10%)</title><rect x="1428.5" y="613" width="1.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (954 samples, 100%)</title><rect x="10.0" y="885" width="1420.0" height="15.0" fill="rgb(255,130,130)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv6_rcv (1 samples, 0.10%)</title><rect x="26.4" y="773" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="29.37" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.10%)</title><rect x="20.4" y="709" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="23.42" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cmd_script (940 samples, 98.53%)</title><rect x="29.4" y="837" width="1399.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__cmd_script</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>may_open.isra.0 (1 samples, 0.10%)</title><rect x="1400.2" y="469" width="1.5" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="1403.23" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_reset_timer (1 samples, 0.10%)</title><rect x="1206.7" y="261" width="1.5" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__split_vma (2 samples, 0.21%)</title><rect x="63.6" y="309" width="3.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="66.58" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_session__process_events (940 samples, 98.53%)</title><rect x="29.4" y="821" width="1399.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_session__process_events</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (5 samples, 0.52%)</title><rect x="1190.4" y="469" width="7.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1193.36" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (2 samples, 0.21%)</title><rect x="1191.8" y="309" width="3.0" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry (1 samples, 0.10%)</title><rect x="1366.0" y="533" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1369.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dso__parse_addr_inlines (15 samples, 1.57%)</title><rect x="1403.2" y="581" width="22.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1406.21" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_sample_event (1 samples, 0.10%)</title><rect x="1428.5" y="789" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_callchain_ip (1 samples, 0.10%)</title><rect x="47.2" y="597" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="50.21" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.10%)</title><rect x="39.8" y="405" width="1.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="42.77" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (3 samples, 0.31%)</title><rect x="20.4" y="741" width="4.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="23.42" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk.part.0 (1 samples, 0.10%)</title><rect x="62.1" y="293" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="65.10" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_report_elf (10 samples, 1.05%)</title><rect x="1369.0" y="501" width="14.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1371.97" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.10%)</title><rect x="1266.3" y="389" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.10%)</title><rect x="1389.8" y="501" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1392.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (1 samples, 0.10%)</title><rect x="1261.8" y="421" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1264.80" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (9 samples, 0.94%)</title><rect x="97.8" y="357" width="13.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="100.82" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>machine__process_mmap2_event (2 samples, 0.21%)</title><rect x="33.8" y="677" width="3.0" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="36.82" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (1 samples, 0.10%)</title><rect x="1397.3" y="517" width="1.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1400.25" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_filp_open (1 samples, 0.10%)</title><rect x="62.1" y="325" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="65.10" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcg_kmem_charge (1 samples, 0.10%)</title><rect x="1266.3" y="293" width="1.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_tsc (1 samples, 0.10%)</title><rect x="13.0" y="597" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="15.98" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fputc (1 samples, 0.10%)</title><rect x="41.3" y="629" width="1.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="44.26" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (2 samples, 0.21%)</title><rect x="1191.8" y="293" width="3.0" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dlclose (2 samples, 0.21%)</title><rect x="72.5" y="565" width="3.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="75.52" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_mmap (2 samples, 0.21%)</title><rect x="66.6" y="325" width="2.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="69.56" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepend_path.isra.0 (1 samples, 0.10%)</title><rect x="68.1" y="261" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="71.05" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inode_permission (1 samples, 0.10%)</title><rect x="1398.7" y="453" width="1.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1401.74" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_pull_rcsum (1 samples, 0.10%)</title><rect x="20.4" y="677" width="1.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="23.42" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (26 samples, 2.73%)</title><rect x="72.5" y="597" width="38.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="75.52" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[li..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 0.31%)</title><rect x="1258.8" y="437" width="4.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1261.83" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_session__deliver_event (937 samples, 98.22%)</title><rect x="33.8" y="693" width="1394.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="36.82" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_session__deliver_event</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (51 samples, 5.35%)</title><rect x="1190.4" y="501" width="75.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1193.36" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libdw-0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (1 samples, 0.10%)</title><rect x="1032.6" y="341" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1035.58" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filemap_map_pages (1 samples, 0.10%)</title><rect x="71.0" y="341" width="1.5" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="74.03" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libbfd-2.28-system.so] (1 samples, 0.10%)</title><rect x="1428.5" y="517" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_session__process_user_event (940 samples, 98.53%)</title><rect x="29.4" y="741" width="1399.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_session__process_user_event</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>maps__find (1 samples, 0.10%)</title><rect x="1388.3" y="453" width="1.5" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="1391.32" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shmem_get_unmapped_area (1 samples, 0.10%)</title><rect x="66.6" y="293" width="1.5" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="69.56" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="469" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.10%)</title><rect x="1370.5" y="389" width="1.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1373.46" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.10%)</title><rect x="1352.6" y="325" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1355.60" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (1 samples, 0.10%)</title><rect x="74.0" y="501" width="1.5" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread__find_map (2 samples, 0.21%)</title><rect x="1386.8" y="485" width="3.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1389.83" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcg_kmem_charge_memcg (1 samples, 0.10%)</title><rect x="1266.3" y="277" width="1.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libbfd-2.28-system.so] (9 samples, 0.94%)</title><rect x="1409.2" y="453" width="13.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1412.16" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.10%)</title><rect x="1182.9" y="197" width="1.5" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_unmapped_area (1 samples, 0.10%)</title><rect x="66.6" y="309" width="1.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="69.56" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (1 samples, 0.10%)</title><rect x="74.0" y="517" width="1.5" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (2 samples, 0.21%)</title><rect x="1191.8" y="373" width="3.0" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__handle_mm_fault (1 samples, 0.10%)</title><rect x="71.0" y="357" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="74.03" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (2 samples, 0.21%)</title><rect x="38.3" y="517" width="3.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="41.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pte_alloc_one (1 samples, 0.10%)</title><rect x="1266.3" y="325" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unmap_page_range (2 samples, 0.21%)</title><rect x="91.9" y="421" width="2.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="94.87" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__report_module (15 samples, 1.57%)</title><rect x="1367.5" y="517" width="22.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1370.48" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="421" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (16 samples, 1.68%)</title><rect x="48.7" y="485" width="23.8" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.10%)</title><rect x="69.5" y="389" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="72.54" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__inet_lookup_established (1 samples, 0.10%)</title><rect x="23.4" y="645" width="1.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="26.40" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>munmap (3 samples, 0.31%)</title><rect x="90.4" y="549" width="4.4" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="93.38" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwarf_next_cfi (1 samples, 0.10%)</title><rect x="1264.8" y="453" width="1.5" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1267.78" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_queue_xmit (1 samples, 0.10%)</title><rect x="11.5" y="613" width="1.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (16 samples, 1.68%)</title><rect x="48.7" y="565" width="23.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_munmap (1 samples, 0.10%)</title><rect x="74.0" y="389" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_timer_softirq (1 samples, 0.10%)</title><rect x="1182.9" y="325" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reader__process_events (940 samples, 98.53%)</title><rect x="29.4" y="789" width="1399.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >reader__process_events</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (1 samples, 0.10%)</title><rect x="1182.9" y="341" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame_callback (135 samples, 14.15%)</title><rect x="1188.9" y="549" width="200.9" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="1191.87" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >frame_callback</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_file_write (2 samples, 0.21%)</title><rect x="38.3" y="565" width="3.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="41.28" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_sample_event (1 samples, 0.10%)</title><rect x="1428.5" y="773" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwarf_cfi_addrframe (46 samples, 4.82%)</title><rect x="1197.8" y="485" width="68.5" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1200.80" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwarf_c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread__resolve_callchain (1 samples, 0.10%)</title><rect x="47.2" y="629" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="50.21" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unwind__get_entries (927 samples, 97.17%)</title><rect x="48.7" y="629" width="1379.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unwind__get_entries</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.10%)</title><rect x="1395.8" y="181" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mod_node_page_state (1 samples, 0.10%)</title><rect x="69.5" y="261" width="1.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="72.54" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_user_addr_fault (1 samples, 0.10%)</title><rect x="69.5" y="373" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="72.54" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ordered_events__flush (1 samples, 0.10%)</title><rect x="1428.5" y="837" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.10%)</title><rect x="1182.9" y="149" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (67 samples, 7.02%)</title><rect x="1266.3" y="469" width="99.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libdw-0.168..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libbfd-2.28-system.so] (1 samples, 0.10%)</title><rect x="1428.5" y="533" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.10%)</title><rect x="18.9" y="629" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.10%)</title><rect x="1032.6" y="389" width="1.5" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1035.58" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cmd_script (940 samples, 98.53%)</title><rect x="29.4" y="853" width="1399.1" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cmd_script</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (1 samples, 0.10%)</title><rect x="1196.3" y="437" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1199.31" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>addr2inlines (15 samples, 1.57%)</title><rect x="1403.2" y="565" width="22.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1406.21" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mlx5e_poll_rx_cq (6 samples, 0.63%)</title><rect x="16.0" y="789" width="8.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="18.95" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>elf_compress_gnu (67 samples, 7.02%)</title><rect x="1266.3" y="421" width="99.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >elf_compress..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipt_do_table (1 samples, 0.10%)</title><rect x="14.5" y="693" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="17.47" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_file_sync (3 samples, 0.31%)</title><rect x="36.8" y="613" width="4.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="39.79" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>map__map_ip (1 samples, 0.10%)</title><rect x="1386.8" y="469" width="1.5" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="1389.83" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (3 samples, 0.31%)</title><rect x="36.8" y="581" width="4.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="39.79" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (8 samples, 0.84%)</title><rect x="1230.5" y="421" width="12.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1233.55" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>write (2 samples, 0.21%)</title><rect x="38.3" y="549" width="3.0" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text text-anchor="" x="41.28" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>selinux_inode_permission (1 samples, 0.10%)</title><rect x="62.1" y="261" width="1.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="65.10" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (16 samples, 1.68%)</title><rect x="48.7" y="453" width="23.8" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_early_demux (1 samples, 0.10%)</title><rect x="23.4" y="661" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="26.40" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipt_do_table (1 samples, 0.10%)</title><rect x="21.9" y="661" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libz.so.1.2.8] (1 samples, 0.10%)</title><rect x="1184.4" y="405" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1187.40" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_module_getdwarf (67 samples, 7.02%)</title><rect x="1266.3" y="485" width="99.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwfl_module_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (45 samples, 4.72%)</title><rect x="1197.8" y="453" width="67.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1200.80" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libdw-..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf (941 samples, 98.64%)</title><rect x="29.4" y="869" width="1400.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="32.35" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_getthreads (859 samples, 90.04%)</title><rect x="111.2" y="597" width="1278.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="114.22" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwfl_getthreads</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inlines__tree_find (2 samples, 0.21%)</title><rect x="1425.5" y="581" width="3.0" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="1428.53" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__handle_mm_fault (2 samples, 0.21%)</title><rect x="1374.9" y="373" width="3.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1377.93" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unmapped_area_topdown (1 samples, 0.10%)</title><rect x="66.6" y="261" width="1.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="69.56" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libbfd-2.28-system.so] (1 samples, 0.10%)</title><rect x="1421.1" y="437" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1424.07" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__report_module (1 samples, 0.10%)</title><rect x="1366.0" y="517" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1369.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (1 samples, 0.10%)</title><rect x="1187.4" y="501" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1190.38" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_thread_getframes (859 samples, 90.04%)</title><rect x="111.2" y="565" width="1278.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="114.22" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwfl_thread_getframes</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (12 samples, 1.26%)</title><rect x="111.2" y="533" width="17.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="114.22" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap_pgoff (4 samples, 0.42%)</title><rect x="1391.3" y="469" width="6.0" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text text-anchor="" x="1394.30" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inflate (708 samples, 74.21%)</title><rect x="130.6" y="421" width="1053.8" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="133.57" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >inflate</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_address_in_section (15 samples, 1.57%)</title><rect x="1403.2" y="501" width="22.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1406.21" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libelf-0.168.so] (5 samples, 0.52%)</title><rect x="1389.8" y="549" width="7.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1392.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>realloc (1 samples, 0.10%)</title><rect x="1263.3" y="437" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1266.29" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.10%)</title><rect x="1389.8" y="469" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1392.81" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="517" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwfl_module_dwarf_cfi (710 samples, 74.42%)</title><rect x="129.1" y="533" width="1056.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="132.08" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwfl_module_dwarf_cfi</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_from_iter (1 samples, 0.10%)</title><rect x="39.8" y="437" width="1.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="42.77" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dso__find_symbol (2 samples, 0.21%)</title><rect x="1383.9" y="469" width="2.9" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1386.86" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vlan_dev_hard_start_xmit (1 samples, 0.10%)</title><rect x="1182.9" y="181" width="1.5" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__handle_mm_fault (1 samples, 0.10%)</title><rect x="1266.3" y="341" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_munmap (3 samples, 0.31%)</title><rect x="90.4" y="469" width="4.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="93.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x64_sys_mprotect (2 samples, 0.21%)</title><rect x="63.6" y="357" width="3.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="66.58" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libelf-0.168.so] (66 samples, 6.92%)</title><rect x="1267.8" y="405" width="98.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1270.76" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libelf-0.1..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (13 samples, 1.36%)</title><rect x="10.0" y="853" width="19.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_loss_probe (1 samples, 0.10%)</title><rect x="1395.8" y="245" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (1 samples, 0.10%)</title><rect x="1266.3" y="309" width="1.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inline_list__append_dso_a2l (1 samples, 0.10%)</title><rect x="1428.5" y="645" width="1.5" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.10%)</title><rect x="1395.8" y="357" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwarf_cfi_addrframe (12 samples, 1.26%)</title><rect x="111.2" y="517" width="17.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="114.22" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mmap64 (4 samples, 0.42%)</title><rect x="1391.3" y="533" width="6.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="1394.30" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strdup (1 samples, 0.10%)</title><rect x="1379.4" y="453" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1382.39" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (859 samples, 90.04%)</title><rect x="111.2" y="581" width="1278.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="114.22" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libdw-0.168.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (1 samples, 0.10%)</title><rect x="74.0" y="485" width="1.5" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (1 samples, 0.10%)</title><rect x="1395.8" y="325" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (2 samples, 0.21%)</title><rect x="11.5" y="709" width="3.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>addr2line (15 samples, 1.57%)</title><rect x="1403.2" y="549" width="22.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1406.21" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (1 samples, 0.10%)</title><rect x="1377.9" y="437" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1380.90" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_set_pte (1 samples, 0.10%)</title><rect x="69.5" y="309" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="72.54" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="549" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libz.so.1.2.8] (58 samples, 6.08%)</title><rect x="1267.8" y="373" width="86.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1270.76" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libz.so.1..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mmap_region (1 samples, 0.10%)</title><rect x="68.1" y="309" width="1.4" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="71.05" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tasklet_action_common.isra.0 (1 samples, 0.10%)</title><rect x="27.9" y="821" width="1.5" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="30.86" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_timer_softirq (1 samples, 0.10%)</title><rect x="1395.8" y="309" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.10%)</title><rect x="1397.3" y="533" width="1.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1400.25" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap_pgoff (2 samples, 0.21%)</title><rect x="66.6" y="341" width="2.9" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text text-anchor="" x="69.56" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (16 samples, 1.68%)</title><rect x="48.7" y="469" width="23.8" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksys_mmap_pgoff (4 samples, 0.42%)</title><rect x="1391.3" y="485" width="6.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1394.30" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (2 samples, 0.21%)</title><rect x="1191.8" y="341" width="3.0" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tlb_finish_mmu (1 samples, 0.10%)</title><rect x="90.4" y="437" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="93.38" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_iterate_ctx (4 samples, 0.42%)</title><rect x="1391.3" y="389" width="6.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1394.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (2 samples, 0.21%)</title><rect x="11.5" y="677" width="3.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (1 samples, 0.10%)</title><rect x="42.7" y="565" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="45.75" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libelf-0.168.so] (4 samples, 0.42%)</title><rect x="1371.9" y="437" width="6.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1374.95" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (2 samples, 0.21%)</title><rect x="126.1" y="453" width="3.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="129.10" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vma_adjust (1 samples, 0.10%)</title><rect x="65.1" y="293" width="1.5" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="68.07" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gro_cell_poll (3 samples, 0.31%)</title><rect x="11.5" y="805" width="4.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tfind (2 samples, 0.21%)</title><rect x="1205.2" y="421" width="3.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1208.24" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dso__find_symbol (1 samples, 0.10%)</title><rect x="47.2" y="549" width="1.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="50.21" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_mprotect_pkey (2 samples, 0.21%)</title><rect x="63.6" y="341" width="3.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="66.58" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (1 samples, 0.10%)</title><rect x="18.9" y="613" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (12 samples, 1.26%)</title><rect x="111.2" y="485" width="17.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="114.22" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strdup (1 samples, 0.10%)</title><rect x="1397.3" y="549" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1400.25" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwarf_getcfi_elf (2 samples, 0.21%)</title><rect x="1185.9" y="517" width="3.0" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1188.89" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fprintf_chk (1 samples, 0.10%)</title><rect x="45.7" y="597" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="48.72" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_user_addr_fault (1 samples, 0.10%)</title><rect x="1389.8" y="485" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1392.81" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (2 samples, 0.21%)</title><rect x="11.5" y="645" width="3.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.10%)</title><rect x="1370.5" y="421" width="1.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1373.46" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (12 samples, 1.26%)</title><rect x="111.2" y="501" width="17.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="114.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dso__parse_addr_inlines (1 samples, 0.10%)</title><rect x="1428.5" y="693" width="1.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>demangle_sym (1 samples, 0.10%)</title><rect x="1428.5" y="597" width="1.5" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (5 samples, 0.52%)</title><rect x="1200.8" y="437" width="7.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1203.78" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vma_interval_tree_insert (1 samples, 0.10%)</title><rect x="65.1" y="277" width="1.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="68.07" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tlb_finish_mmu (1 samples, 0.10%)</title><rect x="74.0" y="357" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="77.00" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.10%)</title><rect x="14.5" y="709" width="1.5" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="17.47" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_one_core (3 samples, 0.31%)</title><rect x="11.5" y="757" width="4.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (2 samples, 0.21%)</title><rect x="1191.8" y="357" width="3.0" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.10%)</title><rect x="1395.8" y="373" width="1.5" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_retransmit_skb (1 samples, 0.10%)</title><rect x="1395.8" y="229" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x64_sys_munmap (3 samples, 0.31%)</title><rect x="90.4" y="501" width="4.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="93.38" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_timer_fn (1 samples, 0.10%)</title><rect x="1395.8" y="293" width="1.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (2 samples, 0.21%)</title><rect x="123.1" y="453" width="3.0" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="126.12" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mmap_region (4 samples, 0.42%)</title><rect x="1391.3" y="437" width="6.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="1394.30" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.10%)</title><rect x="1206.7" y="389" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1209.73" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.24.so] (16 samples, 1.68%)</title><rect x="48.7" y="437" width="23.8" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="51.70" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>multiport_mt (1 samples, 0.10%)</title><rect x="14.5" y="677" width="1.5" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="17.47" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_fflush (3 samples, 0.31%)</title><rect x="36.8" y="629" width="4.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="39.79" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (11 samples, 1.15%)</title><rect x="94.8" y="389" width="16.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.84" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk.part.0 (1 samples, 0.10%)</title><rect x="1398.7" y="469" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1401.74" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (67 samples, 7.02%)</title><rect x="1266.3" y="437" width="99.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1269.27" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libdw-0.168..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (2 samples, 0.21%)</title><rect x="38.3" y="485" width="3.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="41.28" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (11 samples, 1.15%)</title><rect x="11.5" y="821" width="16.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="14.49" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_queue_xmit (1 samples, 0.10%)</title><rect x="1182.9" y="261" width="1.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_session__deliver_event (1 samples, 0.10%)</title><rect x="1428.5" y="805" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1431.51" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_timer (1 samples, 0.10%)</title><rect x="1395.8" y="277" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread__resolve_callchain_sample (1 samples, 0.10%)</title><rect x="47.2" y="613" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="50.21" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dwarf_begin_elf (709 samples, 74.32%)</title><rect x="130.6" y="485" width="1055.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="133.57" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dwarf_begin_elf</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_one_core (1 samples, 0.10%)</title><rect x="26.4" y="789" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="29.37" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libdw-0.168.so] (8 samples, 0.84%)</title><rect x="1369.0" y="485" width="11.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1371.97" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (4 samples, 0.42%)</title><rect x="18.9" y="757" width="6.0" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.10%)</title><rect x="26.4" y="805" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="29.37" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_gro_receive (1 samples, 0.10%)</title><rect x="18.9" y="741" width="1.5" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="21.93" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unwind_entry (18 samples, 1.89%)</title><rect x="1401.7" y="613" width="26.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1404.72" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.24.so] (1 samples, 0.10%)</title><rect x="121.6" y="453" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="124.64" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_address_in_section (15 samples, 1.57%)</title><rect x="1403.2" y="517" width="22.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1406.21" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dlopen (2 samples, 0.21%)</title><rect x="1191.8" y="437" width="3.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1194.84" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arch_get_unmapped_area_topdown (1 samples, 0.10%)</title><rect x="66.6" y="277" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="69.56" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.10%)</title><rect x="1395.8" y="165" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1398.77" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mlx5e_napi_poll (7 samples, 0.73%)</title><rect x="16.0" y="805" width="10.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="18.95" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bfd_map_over_sections (15 samples, 1.57%)</title><rect x="1403.2" y="533" width="22.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1406.21" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >b..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.10%)</title><rect x="1182.9" y="229" width="1.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1185.91" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment