Project

General

Profile

Enhancement #19976 » perf7.svg

server side, centos8 - Nicolas CHARLES, 2021-09-17 14:48

 
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="646" onload="init(evt)" viewBox="0 0 1200 646" 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">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;

// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}

// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
if (!document.querySelector('.parent')) {
clearzoom();
return;
}

// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)

// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)

// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)

// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)

// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
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]").attributes.x.value + 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;

unzoombtn.classList.remove("hide");

var el = document.getElementById("frames").children;
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);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();

// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}

// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;

var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "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;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));

searchbtn.classList.add("show");
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.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="646.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="629" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="629" > </text>
<g id="frames">
<g >
<title>futex_wait_queue_me (3 samples, 0.01%)</title><rect x="1189.8" y="469" width="0.2" height="15.0" fill="rgb(218,132,17)" rx="2" ry="2" />
<text x="1192.81" y="479.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.01%)</title><rect x="211.9" y="469" width="0.1" height="15.0" fill="rgb(214,39,27)" rx="2" ry="2" />
<text x="214.88" y="479.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="119.5" y="501" width="0.1" height="15.0" fill="rgb(221,5,38)" rx="2" ry="2" />
<text x="122.45" y="511.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10 samples, 0.04%)</title><rect x="209.1" y="501" width="0.5" height="15.0" fill="rgb(209,198,8)" rx="2" ry="2" />
<text x="212.09" y="511.5" ></text>
</g>
<g >
<title>VerifyVarPromise (5 samples, 0.02%)</title><rect x="33.8" y="549" width="0.3" height="15.0" fill="rgb(211,175,31)" rx="2" ry="2" />
<text x="36.82" y="559.5" ></text>
</g>
<g >
<title>EvalContextVariablePutTagsSetWithComment (5 samples, 0.02%)</title><rect x="12.4" y="565" width="0.3" height="15.0" fill="rgb(239,82,25)" rx="2" ry="2" />
<text x="15.41" y="575.5" ></text>
</g>
<g >
<title>ksys_read (23 samples, 0.09%)</title><rect x="196.5" y="517" width="1.2" height="15.0" fill="rgb(244,70,37)" rx="2" ry="2" />
<text x="199.55" y="527.5" ></text>
</g>
<g >
<title>kthread (4 samples, 0.02%)</title><rect x="212.5" y="549" width="0.2" height="15.0" fill="rgb(253,154,4)" rx="2" ry="2" />
<text x="215.51" y="559.5" ></text>
</g>
<g >
<title>futex_wait (4 samples, 0.02%)</title><rect x="1189.8" y="485" width="0.2" height="15.0" fill="rgb(208,70,32)" rx="2" ry="2" />
<text x="1192.81" y="495.5" ></text>
</g>
<g >
<title>start_thread (7 samples, 0.03%)</title><rect x="208.7" y="565" width="0.3" height="15.0" fill="rgb(224,217,14)" rx="2" ry="2" />
<text x="211.70" y="575.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (4 samples, 0.02%)</title><rect x="220.7" y="421" width="0.2" height="15.0" fill="rgb(225,10,4)" rx="2" ry="2" />
<text x="223.66" y="431.5" ></text>
</g>
<g >
<title>__do_page_cache_readahead (17 samples, 0.07%)</title><rect x="196.7" y="405" width="0.8" height="15.0" fill="rgb(228,158,26)" rx="2" ry="2" />
<text x="199.69" y="415.5" ></text>
</g>
<g >
<title>HashMapIteratorNext (45 samples, 0.18%)</title><rect x="17.0" y="517" width="2.2" height="15.0" fill="rgb(224,52,6)" rx="2" ry="2" />
<text x="20.04" y="527.5" ></text>
</g>
<g >
<title>__do_sys_newstat (3 samples, 0.01%)</title><rect x="216.6" y="501" width="0.2" height="15.0" fill="rgb(249,23,24)" rx="2" ry="2" />
<text x="219.61" y="511.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (3 samples, 0.01%)</title><rect x="173.4" y="469" width="0.1" height="15.0" fill="rgb(237,193,35)" rx="2" ry="2" />
<text x="176.36" y="479.5" ></text>
</g>
<g >
<title>vfs_statx (10 samples, 0.04%)</title><rect x="173.6" y="469" width="0.5" height="15.0" fill="rgb(220,54,8)" rx="2" ry="2" />
<text x="176.65" y="479.5" ></text>
</g>
<g >
<title>VariableTableIteratorNext (19 samples, 0.08%)</title><rect x="45.5" y="533" width="0.9" height="15.0" fill="rgb(211,18,10)" rx="2" ry="2" />
<text x="48.49" y="543.5" ></text>
</g>
<g >
<title>exit_mmap (21 samples, 0.09%)</title><rect x="175.4" y="421" width="1.0" height="15.0" fill="rgb(229,2,10)" rx="2" ry="2" />
<text x="178.43" y="431.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (3 samples, 0.01%)</title><rect x="1189.1" y="533" width="0.1" height="15.0" fill="rgb(214,136,42)" rx="2" ry="2" />
<text x="1192.08" y="543.5" ></text>
</g>
<g >
<title>irq_exit (14 samples, 0.06%)</title><rect x="1183.1" y="421" width="0.7" height="15.0" fill="rgb(237,59,41)" rx="2" ry="2" />
<text x="1186.11" y="431.5" ></text>
</g>
<g >
<title>sock_sendmsg (3 samples, 0.01%)</title><rect x="1189.3" y="485" width="0.1" height="15.0" fill="rgb(225,49,42)" rx="2" ry="2" />
<text x="1192.28" y="495.5" ></text>
</g>
<g >
<title>StringMatchWithPrecompiledRegex (7 samples, 0.03%)</title><rect x="32.8" y="549" width="0.3" height="15.0" fill="rgb(235,203,13)" rx="2" ry="2" />
<text x="35.81" y="559.5" ></text>
</g>
<g >
<title>PolicyMerge (5 samples, 0.02%)</title><rect x="14.0" y="565" width="0.2" height="15.0" fill="rgb(237,90,19)" rx="2" ry="2" />
<text x="17.00" y="575.5" ></text>
</g>
<g >
<title>printf (5 samples, 0.02%)</title><rect x="214.1" y="581" width="0.2" height="15.0" fill="rgb(241,121,37)" rx="2" ry="2" />
<text x="217.05" y="591.5" ></text>
</g>
<g >
<title>futex_wake (7 samples, 0.03%)</title><rect x="1189.5" y="485" width="0.3" height="15.0" fill="rgb(219,123,23)" rx="2" ry="2" />
<text x="1192.47" y="495.5" ></text>
</g>
<g >
<title>__close (7 samples, 0.03%)</title><rect x="173.2" y="533" width="0.3" height="15.0" fill="rgb(238,133,49)" rx="2" ry="2" />
<text x="176.16" y="543.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.37 (7 samples, 0.03%)</title><rect x="213.0" y="501" width="0.4" height="15.0" fill="rgb(239,64,41)" rx="2" ry="2" />
<text x="216.04" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (4 samples, 0.02%)</title><rect x="10.4" y="517" width="0.2" height="15.0" fill="rgb(233,198,9)" rx="2" ry="2" />
<text x="13.39" y="527.5" ></text>
</g>
<g >
<title>prep_new_page (9 samples, 0.04%)</title><rect x="170.0" y="389" width="0.5" height="15.0" fill="rgb(242,224,41)" rx="2" ry="2" />
<text x="173.03" y="399.5" ></text>
</g>
<g >
<title>safe_fopen_create_perms (33 samples, 0.13%)</title><rect x="172.6" y="549" width="1.6" height="15.0" fill="rgb(221,187,49)" rx="2" ry="2" />
<text x="175.63" y="559.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (5 samples, 0.02%)</title><rect x="34.3" y="549" width="0.3" height="15.0" fill="rgb(212,143,50)" rx="2" ry="2" />
<text x="37.35" y="559.5" ></text>
</g>
<g >
<title>ondemand_readahead (17 samples, 0.07%)</title><rect x="196.7" y="421" width="0.8" height="15.0" fill="rgb(241,35,50)" rx="2" ry="2" />
<text x="199.69" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (7 samples, 0.03%)</title><rect x="218.9" y="533" width="0.3" height="15.0" fill="rgb(253,40,26)" rx="2" ry="2" />
<text x="221.87" y="543.5" ></text>
</g>
<g >
<title>ret_from_fork (3 samples, 0.01%)</title><rect x="211.9" y="565" width="0.1" height="15.0" fill="rgb(235,55,31)" rx="2" ry="2" />
<text x="214.88" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="216.6" y="517" width="0.2" height="15.0" fill="rgb(208,65,29)" rx="2" ry="2" />
<text x="219.61" y="527.5" ></text>
</g>
<g >
<title>do_futex (4 samples, 0.02%)</title><rect x="1189.8" y="501" width="0.2" height="15.0" fill="rgb(211,79,48)" rx="2" ry="2" />
<text x="1192.81" y="511.5" ></text>
</g>
<g >
<title>[unknown] (2,424 samples, 9.90%)</title><rect x="40.5" y="549" width="116.9" height="15.0" fill="rgb(214,155,25)" rx="2" ry="2" />
<text x="43.52" y="559.5" >[unknown]</text>
</g>
<g >
<title>default_idle_call (1,440 samples, 5.88%)</title><rect x="221.1" y="501" width="69.4" height="15.0" fill="rgb(232,139,22)" rx="2" ry="2" />
<text x="224.09" y="511.5" >default..</text>
</g>
<g >
<title>iomap_apply (4 samples, 0.02%)</title><rect x="212.8" y="421" width="0.2" height="15.0" fill="rgb(254,17,33)" rx="2" ry="2" />
<text x="215.85" y="431.5" ></text>
</g>
<g >
<title>do_sys_open (10 samples, 0.04%)</title><rect x="172.7" y="485" width="0.5" height="15.0" fill="rgb(237,97,33)" rx="2" ry="2" />
<text x="175.68" y="495.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list (14 samples, 0.06%)</title><rect x="196.7" y="341" width="0.7" height="15.0" fill="rgb(217,176,28)" rx="2" ry="2" />
<text x="199.69" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (21 samples, 0.09%)</title><rect x="175.4" y="533" width="1.0" height="15.0" fill="rgb(214,79,47)" rx="2" ry="2" />
<text x="178.43" y="543.5" ></text>
</g>
<g >
<title>handle_mm_fault (7 samples, 0.03%)</title><rect x="187.9" y="501" width="0.3" height="15.0" fill="rgb(238,16,53)" rx="2" ry="2" />
<text x="190.87" y="511.5" ></text>
</g>
<g >
<title>xfs_vn_lookup (9 samples, 0.04%)</title><rect x="173.6" y="373" width="0.5" height="15.0" fill="rgb(228,63,46)" rx="2" ry="2" />
<text x="176.65" y="383.5" ></text>
</g>
<g >
<title>[cf-promises] (3 samples, 0.01%)</title><rect x="34.2" y="549" width="0.1" height="15.0" fill="rgb(237,3,24)" rx="2" ry="2" />
<text x="37.16" y="559.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (73 samples, 0.30%)</title><rect x="1179.3" y="453" width="3.6" height="15.0" fill="rgb(245,72,49)" rx="2" ry="2" />
<text x="1182.34" y="463.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (14 samples, 0.06%)</title><rect x="196.7" y="277" width="0.7" height="15.0" fill="rgb(232,32,31)" rx="2" ry="2" />
<text x="199.69" y="287.5" ></text>
</g>
<g >
<title>e1000_watchdog (3 samples, 0.01%)</title><rect x="211.9" y="501" width="0.1" height="15.0" fill="rgb(240,106,2)" rx="2" ry="2" />
<text x="214.88" y="511.5" ></text>
</g>
<g >
<title>ret_from_fork (10 samples, 0.04%)</title><rect x="209.1" y="565" width="0.5" height="15.0" fill="rgb(254,157,30)" rx="2" ry="2" />
<text x="212.09" y="575.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.37 (11 samples, 0.04%)</title><rect x="216.9" y="501" width="0.5" height="15.0" fill="rgb(238,43,1)" rx="2" ry="2" />
<text x="219.90" y="511.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (8 samples, 0.03%)</title><rect x="178.7" y="565" width="0.3" height="15.0" fill="rgb(252,32,52)" rx="2" ry="2" />
<text x="181.66" y="575.5" ></text>
</g>
<g >
<title>blk_finish_plug (14 samples, 0.06%)</title><rect x="196.7" y="373" width="0.7" height="15.0" fill="rgb(211,101,3)" rx="2" ry="2" />
<text x="199.69" y="383.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (14 samples, 0.06%)</title><rect x="196.7" y="261" width="0.7" height="15.0" fill="rgb(219,94,35)" rx="2" ry="2" />
<text x="199.69" y="271.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (14 samples, 0.06%)</title><rect x="196.7" y="245" width="0.7" height="15.0" fill="rgb(238,185,28)" rx="2" ry="2" />
<text x="199.69" y="255.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="14.1" y="549" width="0.1" height="15.0" fill="rgb(226,225,18)" rx="2" ry="2" />
<text x="17.10" y="559.5" ></text>
</g>
<g >
<title>__blk_mq_delay_run_hw_queue (14 samples, 0.06%)</title><rect x="196.7" y="309" width="0.7" height="15.0" fill="rgb(228,99,48)" rx="2" ry="2" />
<text x="199.69" y="319.5" ></text>
</g>
<g >
<title>[libpromises.so.3.0.6] (10 samples, 0.04%)</title><rect x="108.2" y="453" width="0.5" height="15.0" fill="rgb(209,188,26)" rx="2" ry="2" />
<text x="111.22" y="463.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (14 samples, 0.06%)</title><rect x="196.7" y="229" width="0.7" height="15.0" fill="rgb(233,160,12)" rx="2" ry="2" />
<text x="199.69" y="239.5" ></text>
</g>
<g >
<title>xfs_imap_to_bp (5 samples, 0.02%)</title><rect x="173.8" y="309" width="0.2" height="15.0" fill="rgb(251,226,15)" rx="2" ry="2" />
<text x="176.79" y="319.5" ></text>
</g>
<g >
<title>[libpromises.so.3.0.6] (72 samples, 0.29%)</title><rect x="37.0" y="549" width="3.5" height="15.0" fill="rgb(245,28,16)" rx="2" ry="2" />
<text x="40.05" y="559.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (5 samples, 0.02%)</title><rect x="219.8" y="309" width="0.2" height="15.0" fill="rgb(245,50,10)" rx="2" ry="2" />
<text x="222.79" y="319.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (6 samples, 0.02%)</title><rect x="219.7" y="357" width="0.3" height="15.0" fill="rgb(235,167,13)" rx="2" ry="2" />
<text x="222.74" y="367.5" ></text>
</g>
<g >
<title>yylex (130 samples, 0.53%)</title><rect x="199.0" y="565" width="6.2" height="15.0" fill="rgb(243,219,15)" rx="2" ry="2" />
<text x="201.96" y="575.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3 samples, 0.01%)</title><rect x="1189.1" y="485" width="0.1" height="15.0" fill="rgb(208,198,45)" rx="2" ry="2" />
<text x="1192.08" y="495.5" ></text>
</g>
<g >
<title>__libc_recv (4 samples, 0.02%)</title><rect x="10.4" y="565" width="0.2" height="15.0" fill="rgb(252,109,4)" rx="2" ry="2" />
<text x="13.39" y="575.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (5 samples, 0.02%)</title><rect x="1182.9" y="421" width="0.2" height="15.0" fill="rgb(229,102,44)" rx="2" ry="2" />
<text x="1185.86" y="431.5" ></text>
</g>
<g >
<title>EvalContextVariablePutSpecialTagsSetWithComment (4 samples, 0.02%)</title><rect x="29.9" y="549" width="0.2" height="15.0" fill="rgb(228,198,31)" rx="2" ry="2" />
<text x="32.87" y="559.5" ></text>
</g>
<g >
<title>shrink_slab (7 samples, 0.03%)</title><rect x="211.5" y="485" width="0.4" height="15.0" fill="rgb(247,186,54)" rx="2" ry="2" />
<text x="214.54" y="495.5" ></text>
</g>
<g >
<title>BufferAppend (5 samples, 0.02%)</title><rect x="11.9" y="565" width="0.2" height="15.0" fill="rgb(247,227,42)" rx="2" ry="2" />
<text x="14.88" y="575.5" ></text>
</g>
<g >
<title>tcp_sendmsg (9 samples, 0.04%)</title><rect x="219.6" y="421" width="0.5" height="15.0" fill="rgb(209,73,52)" rx="2" ry="2" />
<text x="222.64" y="431.5" ></text>
</g>
<g >
<title>__do_page_fault (14 samples, 0.06%)</title><rect x="187.5" y="517" width="0.7" height="15.0" fill="rgb(237,76,29)" rx="2" ry="2" />
<text x="190.53" y="527.5" ></text>
</g>
<g >
<title>pcre_exec (8 samples, 0.03%)</title><rect x="172.1" y="549" width="0.4" height="15.0" fill="rgb(226,136,52)" rx="2" ry="2" />
<text x="175.10" y="559.5" ></text>
</g>
<g >
<title>kthread (3 samples, 0.01%)</title><rect x="212.3" y="549" width="0.1" height="15.0" fill="rgb(241,172,49)" rx="2" ry="2" />
<text x="215.27" y="559.5" ></text>
</g>
<g >
<title>shrink_node (46 samples, 0.19%)</title><rect x="209.7" y="501" width="2.2" height="15.0" fill="rgb(225,119,40)" rx="2" ry="2" />
<text x="212.66" y="511.5" ></text>
</g>
<g >
<title>load_elf_binary (7 samples, 0.03%)</title><rect x="217.1" y="469" width="0.3" height="15.0" fill="rgb(221,218,21)" rx="2" ry="2" />
<text x="220.09" y="479.5" ></text>
</g>
<g >
<title>reschedule_interrupt (5 samples, 0.02%)</title><rect x="1182.9" y="453" width="0.2" height="15.0" fill="rgb(240,5,38)" rx="2" ry="2" />
<text x="1185.86" y="463.5" ></text>
</g>
<g >
<title>sed (25 samples, 0.10%)</title><rect x="214.6" y="581" width="1.2" height="15.0" fill="rgb(231,106,43)" rx="2" ry="2" />
<text x="217.63" y="591.5" ></text>
</g>
<g >
<title>do_page_fault (5 samples, 0.02%)</title><rect x="28.3" y="533" width="0.3" height="15.0" fill="rgb(234,98,8)" rx="2" ry="2" />
<text x="31.32" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (27 samples, 0.11%)</title><rect x="188.2" y="565" width="1.3" height="15.0" fill="rgb(225,206,38)" rx="2" ry="2" />
<text x="191.21" y="575.5" ></text>
</g>
<g >
<title>yyparse (22 samples, 0.09%)</title><rect x="205.2" y="565" width="1.1" height="15.0" fill="rgb(230,145,33)" rx="2" ry="2" />
<text x="208.23" y="575.5" ></text>
</g>
<g >
<title>__libc_send (4 samples, 0.02%)</title><rect x="213.8" y="565" width="0.2" height="15.0" fill="rgb(234,13,11)" rx="2" ry="2" />
<text x="216.76" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="10.4" y="533" width="0.2" height="15.0" fill="rgb(233,27,48)" rx="2" ry="2" />
<text x="13.39" y="543.5" ></text>
</g>
<g >
<title>kworker/6:1-xfs (3 samples, 0.01%)</title><rect x="212.3" y="581" width="0.1" height="15.0" fill="rgb(225,123,46)" rx="2" ry="2" />
<text x="215.27" y="591.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="208.4" y="565" width="0.1" height="15.0" fill="rgb(215,162,35)" rx="2" ry="2" />
<text x="211.36" y="575.5" ></text>
</g>
<g >
<title>SeqLength (3 samples, 0.01%)</title><rect x="108.1" y="453" width="0.1" height="15.0" fill="rgb(213,14,30)" rx="2" ry="2" />
<text x="111.07" y="463.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (3 samples, 0.01%)</title><rect x="28.1" y="549" width="0.1" height="15.0" fill="rgb(229,214,29)" rx="2" ry="2" />
<text x="31.08" y="559.5" ></text>
</g>
<g >
<title>__schedule (14 samples, 0.06%)</title><rect x="1183.8" y="485" width="0.7" height="15.0" fill="rgb(251,228,44)" rx="2" ry="2" />
<text x="1186.83" y="495.5" ></text>
</g>
<g >
<title>irq_exit (73 samples, 0.30%)</title><rect x="1179.3" y="421" width="3.6" height="15.0" fill="rgb(246,82,41)" rx="2" ry="2" />
<text x="1182.34" y="431.5" ></text>
</g>
<g >
<title>dup_mm (4 samples, 0.02%)</title><rect x="217.7" y="485" width="0.2" height="15.0" fill="rgb(247,229,44)" rx="2" ry="2" />
<text x="220.72" y="495.5" ></text>
</g>
<g >
<title>super_cache_scan (4 samples, 0.02%)</title><rect x="211.7" y="453" width="0.2" height="15.0" fill="rgb(248,141,43)" rx="2" ry="2" />
<text x="214.69" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (3 samples, 0.01%)</title><rect x="218.3" y="469" width="0.2" height="15.0" fill="rgb(207,3,1)" rx="2" ry="2" />
<text x="221.34" y="479.5" ></text>
</g>
<g >
<title>native_safe_halt (1,440 samples, 5.88%)</title><rect x="221.1" y="469" width="69.4" height="15.0" fill="rgb(244,119,7)" rx="2" ry="2" />
<text x="224.09" y="479.5" >native_..</text>
</g>
<g >
<title>Connection_read (15 samples, 0.06%)</title><rect x="10.0" y="581" width="0.7" height="15.0" fill="rgb(245,176,6)" rx="2" ry="2" />
<text x="13.00" y="591.5" ></text>
</g>
<g >
<title>[libpcre.so.1.2.10] (25 samples, 0.10%)</title><rect x="25.9" y="565" width="1.2" height="15.0" fill="rgb(219,12,26)" rx="2" ry="2" />
<text x="28.91" y="575.5" ></text>
</g>
<g >
<title>process_one_work (3 samples, 0.01%)</title><rect x="211.9" y="517" width="0.1" height="15.0" fill="rgb(239,127,5)" rx="2" ry="2" />
<text x="214.88" y="527.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (14 samples, 0.06%)</title><rect x="1183.1" y="405" width="0.7" height="15.0" fill="rgb(229,14,1)" rx="2" ry="2" />
<text x="1186.11" y="415.5" ></text>
</g>
<g >
<title>RvalNewRewriter (3 samples, 0.01%)</title><rect x="14.6" y="565" width="0.2" height="15.0" fill="rgb(215,76,28)" rx="2" ry="2" />
<text x="17.63" y="575.5" ></text>
</g>
<g >
<title>do_shrink_slab (7 samples, 0.03%)</title><rect x="211.5" y="469" width="0.4" height="15.0" fill="rgb(217,63,19)" rx="2" ry="2" />
<text x="214.54" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.1.1g] (35 samples, 0.14%)</title><rect x="34.6" y="549" width="1.7" height="15.0" fill="rgb(209,82,40)" rx="2" ry="2" />
<text x="37.59" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.03%)</title><rect x="173.2" y="517" width="0.3" height="15.0" fill="rgb(242,165,41)" rx="2" ry="2" />
<text x="176.16" y="527.5" ></text>
</g>
<g >
<title>VarRefDestroy_untyped (8 samples, 0.03%)</title><rect x="33.2" y="549" width="0.4" height="15.0" fill="rgb(205,147,28)" rx="2" ry="2" />
<text x="36.19" y="559.5" ></text>
</g>
<g >
<title>yylex (13 samples, 0.05%)</title><rect x="174.4" y="549" width="0.6" height="15.0" fill="rgb(225,211,48)" rx="2" ry="2" />
<text x="177.37" y="559.5" ></text>
</g>
<g >
<title>__vasprintf_chk (3 samples, 0.01%)</title><rect x="168.3" y="549" width="0.2" height="15.0" fill="rgb(213,85,49)" rx="2" ry="2" />
<text x="171.34" y="559.5" ></text>
</g>
<g >
<title>vfs_write (12 samples, 0.05%)</title><rect x="219.5" y="485" width="0.6" height="15.0" fill="rgb(250,139,14)" rx="2" ry="2" />
<text x="222.55" y="495.5" ></text>
</g>
<g >
<title>StringSetAddSplit (4 samples, 0.02%)</title><rect x="70.8" y="517" width="0.2" height="15.0" fill="rgb(224,205,51)" rx="2" ry="2" />
<text x="73.85" y="527.5" ></text>
</g>
<g >
<title>__vsnprintf_chk (27 samples, 0.11%)</title><rect x="182.4" y="565" width="1.3" height="15.0" fill="rgb(247,6,21)" rx="2" ry="2" />
<text x="185.42" y="575.5" ></text>
</g>
<g >
<title>__x64_sys_execve (21 samples, 0.09%)</title><rect x="175.4" y="517" width="1.0" height="15.0" fill="rgb(225,184,10)" rx="2" ry="2" />
<text x="178.43" y="527.5" ></text>
</g>
<g >
<title>__libc_fork (11 samples, 0.04%)</title><rect x="217.6" y="565" width="0.6" height="15.0" fill="rgb(254,187,48)" rx="2" ry="2" />
<text x="220.62" y="575.5" ></text>
</g>
<g >
<title>free_unref_page_list (6 samples, 0.02%)</title><rect x="211.1" y="437" width="0.3" height="15.0" fill="rgb(238,15,27)" rx="2" ry="2" />
<text x="214.06" y="447.5" ></text>
</g>
<g >
<title>ret_from_fork (3 samples, 0.01%)</title><rect x="212.3" y="565" width="0.1" height="15.0" fill="rgb(215,66,51)" rx="2" ry="2" />
<text x="215.27" y="575.5" ></text>
</g>
<g >
<title>slapd (25 samples, 0.10%)</title><rect x="219.4" y="581" width="1.2" height="15.0" fill="rgb(211,212,37)" rx="2" ry="2" />
<text x="222.36" y="591.5" ></text>
</g>
<g >
<title>ip_rcv (4 samples, 0.02%)</title><rect x="219.8" y="197" width="0.2" height="15.0" fill="rgb(225,38,24)" rx="2" ry="2" />
<text x="222.84" y="207.5" ></text>
</g>
<g >
<title>rcu_sched (5 samples, 0.02%)</title><rect x="214.4" y="581" width="0.2" height="15.0" fill="rgb(207,41,41)" rx="2" ry="2" />
<text x="217.39" y="591.5" ></text>
</g>
<g >
<title>__strchr_avx2 (26 samples, 0.11%)</title><rect x="148.9" y="533" width="1.3" height="15.0" fill="rgb(252,61,49)" rx="2" ry="2" />
<text x="151.91" y="543.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (4 samples, 0.02%)</title><rect x="219.8" y="149" width="0.2" height="15.0" fill="rgb(227,108,38)" rx="2" ry="2" />
<text x="222.84" y="159.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (8 samples, 0.03%)</title><rect x="178.3" y="565" width="0.4" height="15.0" fill="rgb(232,98,11)" rx="2" ry="2" />
<text x="181.28" y="575.5" ></text>
</g>
<g >
<title>__sys_sendto (4 samples, 0.02%)</title><rect x="213.8" y="501" width="0.2" height="15.0" fill="rgb(238,75,51)" rx="2" ry="2" />
<text x="216.76" y="511.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (3 samples, 0.01%)</title><rect x="119.7" y="517" width="0.2" height="15.0" fill="rgb(235,119,2)" rx="2" ry="2" />
<text x="122.74" y="527.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (7 samples, 0.03%)</title><rect x="220.6" y="549" width="0.3" height="15.0" fill="rgb(235,145,22)" rx="2" ry="2" />
<text x="223.61" y="559.5" ></text>
</g>
<g >
<title>unlink_chunk.isra.2 (19 samples, 0.08%)</title><rect x="197.8" y="565" width="0.9" height="15.0" fill="rgb(214,150,17)" rx="2" ry="2" />
<text x="200.80" y="575.5" ></text>
</g>
<g >
<title>tcp_rcv_established (3 samples, 0.01%)</title><rect x="219.9" y="101" width="0.1" height="15.0" fill="rgb(220,197,20)" rx="2" ry="2" />
<text x="222.89" y="111.5" ></text>
</g>
<g >
<title>worker_thread (3 samples, 0.01%)</title><rect x="211.9" y="533" width="0.1" height="15.0" fill="rgb(241,211,26)" rx="2" ry="2" />
<text x="214.88" y="543.5" ></text>
</g>
<g >
<title>[libpcre.so.1.2.10] (16 samples, 0.07%)</title><rect x="36.3" y="549" width="0.7" height="15.0" fill="rgb(228,90,35)" rx="2" ry="2" />
<text x="39.28" y="559.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (3 samples, 0.01%)</title><rect x="1189.3" y="405" width="0.1" height="15.0" fill="rgb(227,181,37)" rx="2" ry="2" />
<text x="1192.28" y="415.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (3 samples, 0.01%)</title><rect x="46.5" y="533" width="0.1" height="15.0" fill="rgb(223,138,24)" rx="2" ry="2" />
<text x="49.45" y="543.5" ></text>
</g>
<g >
<title>load_elf_binary (21 samples, 0.09%)</title><rect x="175.4" y="469" width="1.0" height="15.0" fill="rgb(210,71,5)" rx="2" ry="2" />
<text x="178.43" y="479.5" ></text>
</g>
<g >
<title>prep_new_page (4 samples, 0.02%)</title><rect x="220.7" y="373" width="0.2" height="15.0" fill="rgb(211,98,25)" rx="2" ry="2" />
<text x="223.66" y="383.5" ></text>
</g>
<g >
<title>ip_local_deliver (4 samples, 0.02%)</title><rect x="219.8" y="181" width="0.2" height="15.0" fill="rgb(252,32,53)" rx="2" ry="2" />
<text x="222.84" y="191.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (23 samples, 0.09%)</title><rect x="196.5" y="549" width="1.2" height="15.0" fill="rgb(248,203,26)" rx="2" ry="2" />
<text x="199.55" y="559.5" ></text>
</g>
<g >
<title>PromiseTypeSyntaxGetConstraintSyntax (4 samples, 0.02%)</title><rect x="31.7" y="549" width="0.2" height="15.0" fill="rgb(211,228,54)" rx="2" ry="2" />
<text x="34.70" y="559.5" ></text>
</g>
<g >
<title>xfs_trans_read_buf_map (5 samples, 0.02%)</title><rect x="173.8" y="293" width="0.2" height="15.0" fill="rgb(242,114,48)" rx="2" ry="2" />
<text x="176.79" y="303.5" ></text>
</g>
<g >
<title>try_to_wake_up (6 samples, 0.02%)</title><rect x="1189.5" y="453" width="0.3" height="15.0" fill="rgb(244,80,18)" rx="2" ry="2" />
<text x="1192.52" y="463.5" ></text>
</g>
<g >
<title>schedule_idle (14 samples, 0.06%)</title><rect x="1183.8" y="501" width="0.7" height="15.0" fill="rgb(244,60,16)" rx="2" ry="2" />
<text x="1186.83" y="511.5" ></text>
</g>
<g >
<title>java_start (7 samples, 0.03%)</title><rect x="208.7" y="549" width="0.3" height="15.0" fill="rgb(252,100,10)" rx="2" ry="2" />
<text x="211.70" y="559.5" ></text>
</g>
<g >
<title>sock_write_iter (9 samples, 0.04%)</title><rect x="219.6" y="453" width="0.5" height="15.0" fill="rgb(247,20,31)" rx="2" ry="2" />
<text x="222.64" y="463.5" ></text>
</g>
<g >
<title>search_binary_handler (7 samples, 0.03%)</title><rect x="217.1" y="485" width="0.3" height="15.0" fill="rgb(235,217,15)" rx="2" ry="2" />
<text x="220.09" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="108.9" y="485" width="0.2" height="15.0" fill="rgb(243,178,19)" rx="2" ry="2" />
<text x="111.89" y="495.5" ></text>
</g>
<g >
<title>blk_flush_plug_list (4 samples, 0.02%)</title><rect x="173.8" y="213" width="0.2" height="15.0" fill="rgb(215,44,51)" rx="2" ry="2" />
<text x="176.79" y="223.5" ></text>
</g>
<g >
<title>ExpandPromise (7 samples, 0.03%)</title><rect x="102.8" y="501" width="0.4" height="15.0" fill="rgb(206,197,53)" rx="2" ry="2" />
<text x="105.82" y="511.5" ></text>
</g>
<g >
<title>[perf-2938437.map] (3 samples, 0.01%)</title><rect x="10.9" y="565" width="0.2" height="15.0" fill="rgb(236,129,37)" rx="2" ry="2" />
<text x="13.92" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.03%)</title><rect x="218.9" y="549" width="0.3" height="15.0" fill="rgb(227,94,8)" rx="2" ry="2" />
<text x="221.87" y="559.5" ></text>
</g>
<g >
<title>copy_process (7 samples, 0.03%)</title><rect x="217.6" y="501" width="0.4" height="15.0" fill="rgb(229,28,43)" rx="2" ry="2" />
<text x="220.62" y="511.5" ></text>
</g>
<g >
<title>finish_task_switch (14 samples, 0.06%)</title><rect x="1183.8" y="469" width="0.7" height="15.0" fill="rgb(244,147,14)" rx="2" ry="2" />
<text x="1186.83" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (42 samples, 0.17%)</title><rect x="168.9" y="549" width="2.0" height="15.0" fill="rgb(231,126,47)" rx="2" ry="2" />
<text x="171.87" y="559.5" ></text>
</g>
<g >
<title>__xstat64 (4 samples, 0.02%)</title><rect x="168.6" y="549" width="0.2" height="15.0" fill="rgb(228,105,26)" rx="2" ry="2" />
<text x="171.58" y="559.5" ></text>
</g>
<g >
<title>filename_lookup.part.65 (9 samples, 0.04%)</title><rect x="173.6" y="453" width="0.5" height="15.0" fill="rgb(229,54,10)" rx="2" ry="2" />
<text x="176.65" y="463.5" ></text>
</g>
<g >
<title>process_backlog (4 samples, 0.02%)</title><rect x="219.8" y="229" width="0.2" height="15.0" fill="rgb(230,81,19)" rx="2" ry="2" />
<text x="222.84" y="239.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.03%)</title><rect x="213.0" y="533" width="0.4" height="15.0" fill="rgb(215,169,18)" rx="2" ry="2" />
<text x="216.04" y="543.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="215.3" y="533" width="0.2" height="15.0" fill="rgb(252,178,38)" rx="2" ry="2" />
<text x="218.31" y="543.5" ></text>
</g>
<g >
<title>unmap_vmas (17 samples, 0.07%)</title><rect x="175.6" y="405" width="0.8" height="15.0" fill="rgb(233,138,50)" rx="2" ry="2" />
<text x="178.62" y="415.5" ></text>
</g>
<g >
<title>ksys_write (5 samples, 0.02%)</title><rect x="212.8" y="501" width="0.2" height="15.0" fill="rgb(211,162,7)" rx="2" ry="2" />
<text x="215.80" y="511.5" ></text>
</g>
<g >
<title>unmap_page_range (3 samples, 0.01%)</title><rect x="213.2" y="389" width="0.1" height="15.0" fill="rgb(223,99,30)" rx="2" ry="2" />
<text x="216.18" y="399.5" ></text>
</g>
<g >
<title>ArrayMapClear (4 samples, 0.02%)</title><rect x="11.6" y="565" width="0.2" height="15.0" fill="rgb(209,101,33)" rx="2" ry="2" />
<text x="14.64" y="575.5" ></text>
</g>
<g >
<title>PolicyCheckRunnable (8 samples, 0.03%)</title><rect x="107.7" y="453" width="0.4" height="15.0" fill="rgb(217,53,12)" rx="2" ry="2" />
<text x="110.69" y="463.5" ></text>
</g>
<g >
<title>java_start (3 samples, 0.01%)</title><rect x="10.8" y="549" width="0.1" height="15.0" fill="rgb(240,155,42)" rx="2" ry="2" />
<text x="13.77" y="559.5" ></text>
</g>
<g >
<title>CanonifyNameInPlace (4 samples, 0.02%)</title><rect x="28.9" y="549" width="0.1" height="15.0" fill="rgb(252,23,27)" rx="2" ry="2" />
<text x="31.85" y="559.5" ></text>
</g>
<g >
<title>[unknown] (25 samples, 0.10%)</title><rect x="1188.0" y="565" width="1.2" height="15.0" fill="rgb(249,111,21)" rx="2" ry="2" />
<text x="1191.02" y="575.5" ></text>
</g>
<g >
<title>blk_mq_sched_insert_requests (14 samples, 0.06%)</title><rect x="196.7" y="325" width="0.7" height="15.0" fill="rgb(225,32,6)" rx="2" ry="2" />
<text x="199.69" y="335.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (3 samples, 0.01%)</title><rect x="1189.3" y="517" width="0.1" height="15.0" fill="rgb(210,95,10)" rx="2" ry="2" />
<text x="1192.28" y="527.5" ></text>
</g>
<g >
<title>tcp_sendmsg (3 samples, 0.01%)</title><rect x="1189.3" y="469" width="0.1" height="15.0" fill="rgb(224,39,28)" rx="2" ry="2" />
<text x="1192.28" y="479.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (9 samples, 0.04%)</title><rect x="156.6" y="533" width="0.4" height="15.0" fill="rgb(215,97,12)" rx="2" ry="2" />
<text x="159.58" y="543.5" ></text>
</g>
<g >
<title>xfs_file_buffered_aio_write (4 samples, 0.02%)</title><rect x="212.8" y="453" width="0.2" height="15.0" fill="rgb(230,148,49)" rx="2" ry="2" />
<text x="215.85" y="463.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (73 samples, 0.30%)</title><rect x="1179.3" y="437" width="3.6" height="15.0" fill="rgb(229,96,31)" rx="2" ry="2" />
<text x="1182.34" y="447.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="218.3" y="517" width="0.2" height="15.0" fill="rgb(233,159,53)" rx="2" ry="2" />
<text x="221.34" y="527.5" ></text>
</g>
<g >
<title>PolicyGetBundle (62 samples, 0.25%)</title><rect x="103.6" y="501" width="3.0" height="15.0" fill="rgb(228,6,17)" rx="2" ry="2" />
<text x="106.59" y="511.5" ></text>
</g>
<g >
<title>__close (3 samples, 0.01%)</title><rect x="217.5" y="565" width="0.1" height="15.0" fill="rgb(221,169,48)" rx="2" ry="2" />
<text x="220.48" y="575.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (4 samples, 0.02%)</title><rect x="213.8" y="517" width="0.2" height="15.0" fill="rgb(205,14,27)" rx="2" ry="2" />
<text x="216.76" y="527.5" ></text>
</g>
<g >
<title>__GI___execve (7 samples, 0.03%)</title><rect x="213.0" y="565" width="0.4" height="15.0" fill="rgb(211,172,1)" rx="2" ry="2" />
<text x="216.04" y="575.5" ></text>
</g>
<g >
<title>vfs_read (23 samples, 0.09%)</title><rect x="196.5" y="501" width="1.2" height="15.0" fill="rgb(226,15,18)" rx="2" ry="2" />
<text x="199.55" y="511.5" ></text>
</g>
<g >
<title>EvalContextVariablePutSpecial (3 samples, 0.01%)</title><rect x="29.7" y="549" width="0.1" height="15.0" fill="rgb(215,62,32)" rx="2" ry="2" />
<text x="32.67" y="559.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="212.8" y="517" width="0.2" height="15.0" fill="rgb(242,151,49)" rx="2" ry="2" />
<text x="215.80" y="527.5" ></text>
</g>
<g >
<title>cpu_startup_entry (1,441 samples, 5.89%)</title><rect x="221.0" y="533" width="69.5" height="15.0" fill="rgb(217,148,50)" rx="2" ry="2" />
<text x="224.04" y="543.5" >cpu_sta..</text>
</g>
<g >
<title>shrink_inactive_list (23 samples, 0.09%)</title><rect x="210.4" y="469" width="1.1" height="15.0" fill="rgb(242,103,50)" rx="2" ry="2" />
<text x="213.44" y="479.5" ></text>
</g>
<g >
<title>[unknown] (25 samples, 0.10%)</title><rect x="107.7" y="485" width="1.2" height="15.0" fill="rgb(238,165,16)" rx="2" ry="2" />
<text x="110.69" y="495.5" ></text>
</g>
<g >
<title>__lookup_slow (9 samples, 0.04%)</title><rect x="173.6" y="389" width="0.5" height="15.0" fill="rgb(247,70,42)" rx="2" ry="2" />
<text x="176.65" y="399.5" ></text>
</g>
<g >
<title>blk_flush_plug_list (14 samples, 0.06%)</title><rect x="196.7" y="357" width="0.7" height="15.0" fill="rgb(227,209,15)" rx="2" ry="2" />
<text x="199.69" y="367.5" ></text>
</g>
<g >
<title>__libc_write (5 samples, 0.02%)</title><rect x="212.8" y="549" width="0.2" height="15.0" fill="rgb(250,148,51)" rx="2" ry="2" />
<text x="215.80" y="559.5" ></text>
</g>
<g >
<title>ret_from_fork (46 samples, 0.19%)</title><rect x="209.7" y="565" width="2.2" height="15.0" fill="rgb(226,4,0)" rx="2" ry="2" />
<text x="212.66" y="575.5" ></text>
</g>
<g >
<title>httpd (3 samples, 0.01%)</title><rect x="208.2" y="581" width="0.2" height="15.0" fill="rgb(250,45,35)" rx="2" ry="2" />
<text x="211.22" y="591.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (4 samples, 0.02%)</title><rect x="173.8" y="117" width="0.2" height="15.0" fill="rgb(254,148,28)" rx="2" ry="2" />
<text x="176.79" y="127.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="1189.8" y="565" width="0.2" height="15.0" fill="rgb(249,8,41)" rx="2" ry="2" />
<text x="1192.81" y="575.5" ></text>
</g>
<g >
<title>__libc_calloc (18 samples, 0.07%)</title><rect x="176.5" y="565" width="0.9" height="15.0" fill="rgb(251,133,34)" rx="2" ry="2" />
<text x="179.49" y="575.5" ></text>
</g>
<g >
<title>anon_vma_fork (3 samples, 0.01%)</title><rect x="177.4" y="469" width="0.2" height="15.0" fill="rgb(234,63,25)" rx="2" ry="2" />
<text x="180.41" y="479.5" ></text>
</g>
<g >
<title>xfs_inode_free_callback (3 samples, 0.01%)</title><rect x="209.4" y="453" width="0.2" height="15.0" fill="rgb(245,171,12)" rx="2" ry="2" />
<text x="212.42" y="463.5" ></text>
</g>
<g >
<title>tcp_recvmsg (4 samples, 0.02%)</title><rect x="10.4" y="469" width="0.2" height="15.0" fill="rgb(226,43,36)" rx="2" ry="2" />
<text x="13.39" y="479.5" ></text>
</g>
<g >
<title>StringHash (4 samples, 0.02%)</title><rect x="32.5" y="533" width="0.2" height="15.0" fill="rgb(210,83,51)" rx="2" ry="2" />
<text x="35.52" y="543.5" ></text>
</g>
<g >
<title>mmput (5 samples, 0.02%)</title><rect x="218.9" y="485" width="0.3" height="15.0" fill="rgb(213,55,22)" rx="2" ry="2" />
<text x="221.92" y="495.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="212.8" y="565" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="215.80" y="575.5" ></text>
</g>
<g >
<title>__strcmp_avx2 (48 samples, 0.20%)</title><rect x="22.4" y="517" width="2.4" height="15.0" fill="rgb(212,219,27)" rx="2" ry="2" />
<text x="25.44" y="527.5" ></text>
</g>
<g >
<title>blk_finish_plug (4 samples, 0.02%)</title><rect x="173.8" y="229" width="0.2" height="15.0" fill="rgb(250,125,51)" rx="2" ry="2" />
<text x="176.79" y="239.5" ></text>
</g>
<g >
<title>__strcmp_avx2 (167 samples, 0.68%)</title><rect x="158.3" y="549" width="8.1" height="15.0" fill="rgb(234,100,23)" rx="2" ry="2" />
<text x="161.31" y="559.5" ></text>
</g>
<g >
<title>xfs_lookup (7 samples, 0.03%)</title><rect x="173.7" y="357" width="0.4" height="15.0" fill="rgb(219,70,45)" rx="2" ry="2" />
<text x="176.74" y="367.5" ></text>
</g>
<g >
<title>__blk_mq_run_hw_queue (14 samples, 0.06%)</title><rect x="196.7" y="293" width="0.7" height="15.0" fill="rgb(223,48,45)" rx="2" ry="2" />
<text x="199.69" y="303.5" ></text>
</g>
<g >
<title>__strchrnul_avx2 (3 samples, 0.01%)</title><rect x="182.7" y="549" width="0.1" height="15.0" fill="rgb(217,215,23)" rx="2" ry="2" />
<text x="185.66" y="559.5" ></text>
</g>
<g >
<title>xfs_buf_read_map (5 samples, 0.02%)</title><rect x="173.8" y="277" width="0.2" height="15.0" fill="rgb(252,229,37)" rx="2" ry="2" />
<text x="176.79" y="287.5" ></text>
</g>
<g >
<title>wake_up_q (6 samples, 0.02%)</title><rect x="1189.5" y="469" width="0.3" height="15.0" fill="rgb(243,44,36)" rx="2" ry="2" />
<text x="1192.52" y="479.5" ></text>
</g>
<g >
<title>[unknown] (30 samples, 0.12%)</title><rect x="107.6" y="501" width="1.5" height="15.0" fill="rgb(211,224,39)" rx="2" ry="2" />
<text x="110.64" y="511.5" ></text>
</g>
<g >
<title>rmap_walk_file (10 samples, 0.04%)</title><rect x="209.9" y="437" width="0.5" height="15.0" fill="rgb(254,170,44)" rx="2" ry="2" />
<text x="212.91" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_futex (4 samples, 0.02%)</title><rect x="1189.8" y="517" width="0.2" height="15.0" fill="rgb(217,149,35)" rx="2" ry="2" />
<text x="1192.81" y="527.5" ></text>
</g>
<g >
<title>process_one_work (3 samples, 0.01%)</title><rect x="212.3" y="517" width="0.1" height="15.0" fill="rgb(237,218,30)" rx="2" ry="2" />
<text x="215.27" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="213.8" y="533" width="0.2" height="15.0" fill="rgb(251,122,27)" rx="2" ry="2" />
<text x="216.76" y="543.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (3 samples, 0.01%)</title><rect x="219.9" y="117" width="0.1" height="15.0" fill="rgb(221,218,3)" rx="2" ry="2" />
<text x="222.89" y="127.5" ></text>
</g>
<g >
<title>unlink_chunk.isra.2 (4 samples, 0.02%)</title><rect x="157.1" y="533" width="0.2" height="15.0" fill="rgb(221,47,2)" rx="2" ry="2" />
<text x="160.11" y="543.5" ></text>
</g>
<g >
<title>rcu_do_batch (8 samples, 0.03%)</title><rect x="1182.1" y="373" width="0.4" height="15.0" fill="rgb(252,142,15)" rx="2" ry="2" />
<text x="1185.09" y="383.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (3 samples, 0.01%)</title><rect x="1189.1" y="517" width="0.1" height="15.0" fill="rgb(220,15,46)" rx="2" ry="2" />
<text x="1192.08" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.01%)</title><rect x="170.6" y="405" width="0.2" height="15.0" fill="rgb(252,13,26)" rx="2" ry="2" />
<text x="173.61" y="415.5" ></text>
</g>
<g >
<title>__handle_mm_fault (28 samples, 0.11%)</title><rect x="169.5" y="469" width="1.4" height="15.0" fill="rgb(221,44,6)" rx="2" ry="2" />
<text x="172.55" y="479.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.02%)</title><rect x="214.7" y="565" width="0.3" height="15.0" fill="rgb(241,119,39)" rx="2" ry="2" />
<text x="217.68" y="575.5" ></text>
</g>
<g >
<title>search_binary_handler (21 samples, 0.09%)</title><rect x="175.4" y="485" width="1.0" height="15.0" fill="rgb(244,109,51)" rx="2" ry="2" />
<text x="178.43" y="495.5" ></text>
</g>
<g >
<title>__blk_mq_run_hw_queue (4 samples, 0.02%)</title><rect x="173.8" y="149" width="0.2" height="15.0" fill="rgb(213,206,39)" rx="2" ry="2" />
<text x="176.79" y="159.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1189.3" y="549" width="0.1" height="15.0" fill="rgb(228,66,35)" rx="2" ry="2" />
<text x="1192.28" y="559.5" ></text>
</g>
<g >
<title>SpecialScopeFromString (7 samples, 0.03%)</title><rect x="44.3" y="533" width="0.3" height="15.0" fill="rgb(211,180,23)" rx="2" ry="2" />
<text x="47.28" y="543.5" ></text>
</g>
<g >
<title>ip_finish_output2 (6 samples, 0.02%)</title><rect x="219.7" y="325" width="0.3" height="15.0" fill="rgb(209,142,33)" rx="2" ry="2" />
<text x="222.74" y="335.5" ></text>
</g>
<g >
<title>do_anonymous_page (5 samples, 0.02%)</title><rect x="220.7" y="453" width="0.2" height="15.0" fill="rgb(206,121,23)" rx="2" ry="2" />
<text x="223.66" y="463.5" ></text>
</g>
<g >
<title>alloc_pages_vma (4 samples, 0.02%)</title><rect x="220.7" y="437" width="0.2" height="15.0" fill="rgb(228,22,12)" rx="2" ry="2" />
<text x="223.66" y="447.5" ></text>
</g>
<g >
<title>[unknown] (11 samples, 0.04%)</title><rect x="207.0" y="565" width="0.5" height="15.0" fill="rgb(238,11,43)" rx="2" ry="2" />
<text x="210.01" y="575.5" ></text>
</g>
<g >
<title>_do_fork (8 samples, 0.03%)</title><rect x="217.6" y="517" width="0.4" height="15.0" fill="rgb(213,151,30)" rx="2" ry="2" />
<text x="220.62" y="527.5" ></text>
</g>
<g >
<title>do_lookup_x (8 samples, 0.03%)</title><rect x="190.5" y="565" width="0.4" height="15.0" fill="rgb(240,107,50)" rx="2" ry="2" />
<text x="193.52" y="575.5" ></text>
</g>
<g >
<title>ArrayMapNew (3 samples, 0.01%)</title><rect x="28.7" y="549" width="0.1" height="15.0" fill="rgb(248,44,19)" rx="2" ry="2" />
<text x="31.66" y="559.5" ></text>
</g>
<g >
<title>__xfs_buf_submit (5 samples, 0.02%)</title><rect x="173.8" y="261" width="0.2" height="15.0" fill="rgb(209,4,26)" rx="2" ry="2" />
<text x="176.79" y="271.5" ></text>
</g>
<g >
<title>do_page_fault (14 samples, 0.06%)</title><rect x="187.5" y="533" width="0.7" height="15.0" fill="rgb(218,80,25)" rx="2" ry="2" />
<text x="190.53" y="543.5" ></text>
</g>
<g >
<title>unmap_vmas (3 samples, 0.01%)</title><rect x="213.2" y="405" width="0.1" height="15.0" fill="rgb(237,68,4)" rx="2" ry="2" />
<text x="216.18" y="415.5" ></text>
</g>
<g >
<title>StringConcatenate (3 samples, 0.01%)</title><rect x="15.9" y="565" width="0.2" height="15.0" fill="rgb(227,99,19)" rx="2" ry="2" />
<text x="18.93" y="575.5" ></text>
</g>
<g >
<title>irq_exit (15 samples, 0.06%)</title><rect x="289.8" y="437" width="0.7" height="15.0" fill="rgb(241,179,23)" rx="2" ry="2" />
<text x="292.80" y="447.5" ></text>
</g>
<g >
<title>mmput (6 samples, 0.02%)</title><rect x="213.0" y="437" width="0.3" height="15.0" fill="rgb(224,184,19)" rx="2" ry="2" />
<text x="216.04" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.06%)</title><rect x="219.5" y="533" width="0.7" height="15.0" fill="rgb(250,117,51)" rx="2" ry="2" />
<text x="222.50" y="543.5" ></text>
</g>
<g >
<title>balance_pgdat (46 samples, 0.19%)</title><rect x="209.7" y="517" width="2.2" height="15.0" fill="rgb(213,174,25)" rx="2" ry="2" />
<text x="212.66" y="527.5" ></text>
</g>
<g >
<title>irq_exit (3 samples, 0.01%)</title><rect x="1189.1" y="501" width="0.1" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="1192.08" y="511.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (3 samples, 0.01%)</title><rect x="173.8" y="53" width="0.1" height="15.0" fill="rgb(233,53,44)" rx="2" ry="2" />
<text x="176.79" y="63.5" ></text>
</g>
<g >
<title>HashMapIteratorNext (14 samples, 0.06%)</title><rect x="41.2" y="533" width="0.7" height="15.0" fill="rgb(222,60,16)" rx="2" ry="2" />
<text x="44.24" y="543.5" ></text>
</g>
<g >
<title>worker_thread (4 samples, 0.02%)</title><rect x="212.5" y="533" width="0.2" height="15.0" fill="rgb(208,139,22)" rx="2" ry="2" />
<text x="215.51" y="543.5" ></text>
</g>
<g >
<title>VariableTableIteratorNext (590 samples, 2.41%)</title><rect x="71.0" y="517" width="28.5" height="15.0" fill="rgb(209,104,48)" rx="2" ry="2" />
<text x="74.04" y="527.5" >Va..</text>
</g>
<g >
<title>sock_sendmsg (9 samples, 0.04%)</title><rect x="219.6" y="437" width="0.5" height="15.0" fill="rgb(251,90,31)" rx="2" ry="2" />
<text x="222.64" y="447.5" ></text>
</g>
<g >
<title>rcu_do_batch (3 samples, 0.01%)</title><rect x="210.9" y="325" width="0.2" height="15.0" fill="rgb(245,125,47)" rx="2" ry="2" />
<text x="213.92" y="335.5" ></text>
</g>
<g >
<title>do_filp_open (8 samples, 0.03%)</title><rect x="172.7" y="469" width="0.4" height="15.0" fill="rgb(237,133,24)" rx="2" ry="2" />
<text x="175.73" y="479.5" ></text>
</g>
<g >
<title>xfs_inode_free_callback (3 samples, 0.01%)</title><rect x="1182.3" y="357" width="0.2" height="15.0" fill="rgb(225,137,19)" rx="2" ry="2" />
<text x="1185.33" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.04%)</title><rect x="173.6" y="517" width="0.5" height="15.0" fill="rgb(214,107,13)" rx="2" ry="2" />
<text x="176.65" y="527.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="213.6" y="565" width="0.2" height="15.0" fill="rgb(207,204,43)" rx="2" ry="2" />
<text x="216.57" y="575.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned (4 samples, 0.02%)</title><rect x="178.1" y="565" width="0.2" height="15.0" fill="rgb(215,22,40)" rx="2" ry="2" />
<text x="181.08" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.04%)</title><rect x="216.9" y="533" width="0.5" height="15.0" fill="rgb(243,167,5)" rx="2" ry="2" />
<text x="219.90" y="543.5" ></text>
</g>
<g >
<title>SafepointSynchronize::do_cleanup_tasks (3 samples, 0.01%)</title><rect x="10.8" y="485" width="0.1" height="15.0" fill="rgb(223,126,34)" rx="2" ry="2" />
<text x="13.77" y="495.5" ></text>
</g>
<g >
<title>[perf-2938437.map] (3 samples, 0.01%)</title><rect x="10.2" y="549" width="0.2" height="15.0" fill="rgb(227,101,34)" rx="2" ry="2" />
<text x="13.24" y="559.5" ></text>
</g>
<g >
<title>dl_main (4 samples, 0.02%)</title><rect x="218.3" y="549" width="0.2" height="15.0" fill="rgb(207,51,1)" rx="2" ry="2" />
<text x="221.29" y="559.5" ></text>
</g>
<g >
<title>ret_from_fork (4 samples, 0.02%)</title><rect x="1185.5" y="565" width="0.2" height="15.0" fill="rgb(233,48,35)" rx="2" ry="2" />
<text x="1188.47" y="575.5" ></text>
</g>
<g >
<title>mmput (21 samples, 0.09%)</title><rect x="175.4" y="437" width="1.0" height="15.0" fill="rgb(228,97,39)" rx="2" ry="2" />
<text x="178.43" y="447.5" ></text>
</g>
<g >
<title>[libpromises.so.3.0.6] (30 samples, 0.12%)</title><rect x="99.5" y="517" width="1.4" height="15.0" fill="rgb(252,203,17)" rx="2" ry="2" />
<text x="102.49" y="527.5" ></text>
</g>
<g >
<title>ArrayMapInsert (4 samples, 0.02%)</title><rect x="33.2" y="533" width="0.2" height="15.0" fill="rgb(205,65,3)" rx="2" ry="2" />
<text x="36.24" y="543.5" ></text>
</g>
<g >
<title>tcp_sendmsg (4 samples, 0.02%)</title><rect x="213.8" y="469" width="0.2" height="15.0" fill="rgb(223,109,46)" rx="2" ry="2" />
<text x="216.76" y="479.5" ></text>
</g>
<g >
<title>__strcmp_avx2 (591 samples, 2.41%)</title><rect x="119.9" y="517" width="28.5" height="15.0" fill="rgb(250,96,35)" rx="2" ry="2" />
<text x="122.89" y="527.5" >__..</text>
</g>
<g >
<title>pcre_exec (4 samples, 0.02%)</title><rect x="196.4" y="565" width="0.1" height="15.0" fill="rgb(218,157,11)" rx="2" ry="2" />
<text x="199.36" y="575.5" ></text>
</g>
<g >
<title>page_referenced_one (9 samples, 0.04%)</title><rect x="209.9" y="421" width="0.4" height="15.0" fill="rgb(215,129,18)" rx="2" ry="2" />
<text x="212.91" y="431.5" ></text>
</g>
<g >
<title>YoungList::rs_length_sampling_next (7 samples, 0.03%)</title><rect x="208.7" y="501" width="0.3" height="15.0" fill="rgb(253,117,20)" rx="2" ry="2" />
<text x="211.70" y="511.5" ></text>
</g>
<g >
<title>do_page_fault (3 samples, 0.01%)</title><rect x="215.3" y="517" width="0.2" height="15.0" fill="rgb(233,96,40)" rx="2" ry="2" />
<text x="218.31" y="527.5" ></text>
</g>
<g >
<title>__pthread_getspecific (3 samples, 0.01%)</title><rect x="179.1" y="565" width="0.1" height="15.0" fill="rgb(229,10,16)" rx="2" ry="2" />
<text x="182.09" y="575.5" ></text>
</g>
<g >
<title>vfs_statx (3 samples, 0.01%)</title><rect x="216.6" y="485" width="0.2" height="15.0" fill="rgb(227,87,46)" rx="2" ry="2" />
<text x="219.61" y="495.5" ></text>
</g>
<g >
<title>process_one_work (4 samples, 0.02%)</title><rect x="212.5" y="517" width="0.2" height="15.0" fill="rgb(208,25,32)" rx="2" ry="2" />
<text x="215.51" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="217.6" y="549" width="0.4" height="15.0" fill="rgb(251,85,4)" rx="2" ry="2" />
<text x="220.62" y="559.5" ></text>
</g>
<g >
<title>handle_mm_fault (3 samples, 0.01%)</title><rect x="215.3" y="485" width="0.2" height="15.0" fill="rgb(222,16,30)" rx="2" ry="2" />
<text x="218.31" y="495.5" ></text>
</g>
<g >
<title>__alloc_pages_slowpath (4 samples, 0.02%)</title><rect x="220.7" y="405" width="0.2" height="15.0" fill="rgb(237,209,37)" rx="2" ry="2" />
<text x="223.66" y="415.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="11.1" y="565" width="0.1" height="15.0" fill="rgb(250,22,13)" rx="2" ry="2" />
<text x="14.06" y="575.5" ></text>
</g>
<g >
<title>[unknown] (3,039 samples, 12.42%)</title><rect x="28.6" y="565" width="146.5" height="15.0" fill="rgb(242,148,48)" rx="2" ry="2" />
<text x="31.56" y="575.5" >[unknown]</text>
</g>
<g >
<title>__softirqentry_text_start (8 samples, 0.03%)</title><rect x="289.4" y="405" width="0.4" height="15.0" fill="rgb(208,207,2)" rx="2" ry="2" />
<text x="292.41" y="415.5" ></text>
</g>
<g >
<title>__strchr_avx2 (7 samples, 0.03%)</title><rect x="158.0" y="549" width="0.3" height="15.0" fill="rgb(240,166,12)" rx="2" ry="2" />
<text x="160.98" y="559.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5 samples, 0.02%)</title><rect x="220.7" y="469" width="0.2" height="15.0" fill="rgb(228,192,51)" rx="2" ry="2" />
<text x="223.66" y="479.5" ></text>
</g>
<g >
<title>_dl_sysdep_start (4 samples, 0.02%)</title><rect x="218.3" y="565" width="0.2" height="15.0" fill="rgb(205,128,7)" rx="2" ry="2" />
<text x="221.29" y="575.5" ></text>
</g>
<g >
<title>load_balance (4 samples, 0.02%)</title><rect x="1182.5" y="373" width="0.2" height="15.0" fill="rgb(209,112,28)" rx="2" ry="2" />
<text x="1185.48" y="383.5" ></text>
</g>
<g >
<title>__do_sys_newstat (3 samples, 0.01%)</title><rect x="168.6" y="501" width="0.2" height="15.0" fill="rgb(251,122,21)" rx="2" ry="2" />
<text x="171.63" y="511.5" ></text>
</g>
<g >
<title>do_softirq.part.14 (5 samples, 0.02%)</title><rect x="219.8" y="293" width="0.2" height="15.0" fill="rgb(217,212,2)" rx="2" ry="2" />
<text x="222.79" y="303.5" ></text>
</g>
<g >
<title>net_rx_action (5 samples, 0.02%)</title><rect x="219.8" y="245" width="0.2" height="15.0" fill="rgb(246,195,3)" rx="2" ry="2" />
<text x="222.79" y="255.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (4 samples, 0.02%)</title><rect x="219.8" y="213" width="0.2" height="15.0" fill="rgb(210,173,9)" rx="2" ry="2" />
<text x="222.84" y="223.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (4 samples, 0.02%)</title><rect x="219.8" y="165" width="0.2" height="15.0" fill="rgb(254,187,7)" rx="2" ry="2" />
<text x="222.84" y="175.5" ></text>
</g>
<g >
<title>cat (12 samples, 0.05%)</title><rect x="11.1" y="581" width="0.5" height="15.0" fill="rgb(249,178,38)" rx="2" ry="2" />
<text x="14.06" y="591.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (73 samples, 0.30%)</title><rect x="1179.3" y="405" width="3.6" height="15.0" fill="rgb(241,215,51)" rx="2" ry="2" />
<text x="1182.34" y="415.5" ></text>
</g>
<g >
<title>load_elf_binary (7 samples, 0.03%)</title><rect x="213.0" y="469" width="0.4" height="15.0" fill="rgb(238,38,27)" rx="2" ry="2" />
<text x="216.04" y="479.5" ></text>
</g>
<g >
<title>_nohz_idle_balance (3 samples, 0.01%)</title><rect x="290.4" y="405" width="0.1" height="15.0" fill="rgb(221,179,8)" rx="2" ry="2" />
<text x="293.38" y="415.5" ></text>
</g>
<g >
<title>page_fault (6 samples, 0.02%)</title><rect x="220.7" y="533" width="0.2" height="15.0" fill="rgb(244,193,41)" rx="2" ry="2" />
<text x="223.66" y="543.5" ></text>
</g>
<g >
<title>irq_exit (3 samples, 0.01%)</title><rect x="210.9" y="373" width="0.2" height="15.0" fill="rgb(234,92,48)" rx="2" ry="2" />
<text x="213.92" y="383.5" ></text>
</g>
<g >
<title>VariableTableIteratorNext (66 samples, 0.27%)</title><rect x="19.2" y="517" width="3.2" height="15.0" fill="rgb(217,217,40)" rx="2" ry="2" />
<text x="22.21" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="212.8" y="533" width="0.2" height="15.0" fill="rgb(219,179,29)" rx="2" ry="2" />
<text x="215.80" y="543.5" ></text>
</g>
<g >
<title>clear_page_rep (4 samples, 0.02%)</title><rect x="220.7" y="357" width="0.2" height="15.0" fill="rgb(211,80,39)" rx="2" ry="2" />
<text x="223.66" y="367.5" ></text>
</g>
<g >
<title>new_sync_write (5 samples, 0.02%)</title><rect x="212.8" y="469" width="0.2" height="15.0" fill="rgb(223,118,52)" rx="2" ry="2" />
<text x="215.80" y="479.5" ></text>
</g>
<g >
<title>FnCallIsBuiltIn (3 samples, 0.01%)</title><rect x="30.3" y="549" width="0.1" height="15.0" fill="rgb(219,190,21)" rx="2" ry="2" />
<text x="33.25" y="559.5" ></text>
</g>
<g >
<title>__strdup (5 samples, 0.02%)</title><rect x="166.4" y="549" width="0.2" height="15.0" fill="rgb(241,29,54)" rx="2" ry="2" />
<text x="169.37" y="559.5" ></text>
</g>
<g >
<title>kthread (3 samples, 0.01%)</title><rect x="211.9" y="549" width="0.1" height="15.0" fill="rgb(222,102,36)" rx="2" ry="2" />
<text x="214.88" y="559.5" ></text>
</g>
<g >
<title>SeqDestroy (7 samples, 0.03%)</title><rect x="14.8" y="565" width="0.3" height="15.0" fill="rgb(240,217,40)" rx="2" ry="2" />
<text x="17.77" y="575.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.06%)</title><rect x="177.4" y="549" width="0.7" height="15.0" fill="rgb(244,141,31)" rx="2" ry="2" />
<text x="180.41" y="559.5" ></text>
</g>
<g >
<title>rcu_gp_kthread (5 samples, 0.02%)</title><rect x="214.4" y="533" width="0.2" height="15.0" fill="rgb(206,6,10)" rx="2" ry="2" />
<text x="217.39" y="543.5" ></text>
</g>
<g >
<title>do_page_fault (3 samples, 0.01%)</title><rect x="14.1" y="533" width="0.1" height="15.0" fill="rgb(210,214,37)" rx="2" ry="2" />
<text x="17.10" y="543.5" ></text>
</g>
<g >
<title>ret_from_fork (5 samples, 0.02%)</title><rect x="214.4" y="565" width="0.2" height="15.0" fill="rgb(224,115,37)" rx="2" ry="2" />
<text x="217.39" y="575.5" ></text>
</g>
<g >
<title>do_anonymous_page (26 samples, 0.11%)</title><rect x="169.6" y="453" width="1.3" height="15.0" fill="rgb(205,214,17)" rx="2" ry="2" />
<text x="172.64" y="463.5" ></text>
</g>
<g >
<title>ksys_write (13 samples, 0.05%)</title><rect x="219.5" y="501" width="0.6" height="15.0" fill="rgb(245,208,0)" rx="2" ry="2" />
<text x="222.50" y="511.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="168.6" y="517" width="0.2" height="15.0" fill="rgb(210,43,46)" rx="2" ry="2" />
<text x="171.63" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (6 samples, 0.02%)</title><rect x="1189.5" y="437" width="0.3" height="15.0" fill="rgb(238,85,36)" rx="2" ry="2" />
<text x="1192.52" y="447.5" ></text>
</g>
<g >
<title>unmap_page_range (16 samples, 0.07%)</title><rect x="175.6" y="389" width="0.8" height="15.0" fill="rgb(235,116,39)" rx="2" ry="2" />
<text x="178.62" y="399.5" ></text>
</g>
<g >
<title>_dl_map_object (7 samples, 0.03%)</title><rect x="183.7" y="565" width="0.4" height="15.0" fill="rgb(226,225,43)" rx="2" ry="2" />
<text x="186.72" y="575.5" ></text>
</g>
<g >
<title>do_idle (1,441 samples, 5.89%)</title><rect x="221.0" y="517" width="69.5" height="15.0" fill="rgb(248,24,28)" rx="2" ry="2" />
<text x="224.04" y="527.5" >do_idle</text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="216.1" y="549" width="0.2" height="15.0" fill="rgb(230,53,45)" rx="2" ry="2" />
<text x="219.13" y="559.5" ></text>
</g>
<g >
<title>__x64_sys_execve (11 samples, 0.04%)</title><rect x="216.9" y="517" width="0.5" height="15.0" fill="rgb(235,124,44)" rx="2" ry="2" />
<text x="219.90" y="527.5" ></text>
</g>
<g >
<title>page_fault (14 samples, 0.06%)</title><rect x="187.5" y="549" width="0.7" height="15.0" fill="rgb(210,109,39)" rx="2" ry="2" />
<text x="190.53" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="213.8" y="549" width="0.2" height="15.0" fill="rgb(225,109,41)" rx="2" ry="2" />
<text x="216.76" y="559.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1189.3" y="533" width="0.1" height="15.0" fill="rgb(209,205,24)" rx="2" ry="2" />
<text x="1192.28" y="543.5" ></text>
</g>
<g >
<title>read_pages (17 samples, 0.07%)</title><rect x="196.7" y="389" width="0.8" height="15.0" fill="rgb(229,213,46)" rx="2" ry="2" />
<text x="199.69" y="399.5" ></text>
</g>
<g >
<title>pcre_compile2 (3 samples, 0.01%)</title><rect x="196.2" y="565" width="0.2" height="15.0" fill="rgb(232,217,19)" rx="2" ry="2" />
<text x="199.21" y="575.5" ></text>
</g>
<g >
<title>page_remove_rmap (3 samples, 0.01%)</title><rect x="176.2" y="373" width="0.1" height="15.0" fill="rgb(240,11,16)" rx="2" ry="2" />
<text x="179.20" y="383.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (3 samples, 0.01%)</title><rect x="1189.3" y="453" width="0.1" height="15.0" fill="rgb(241,14,54)" rx="2" ry="2" />
<text x="1192.28" y="463.5" ></text>
</g>
<g >
<title>EvalContextStackPushPromiseFrame (4 samples, 0.02%)</title><rect x="102.4" y="501" width="0.2" height="15.0" fill="rgb(230,70,2)" rx="2" ry="2" />
<text x="105.43" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.01%)</title><rect x="212.5" y="469" width="0.2" height="15.0" fill="rgb(233,19,14)" rx="2" ry="2" />
<text x="215.51" y="479.5" ></text>
</g>
<g >
<title>do_page_fault (3 samples, 0.01%)</title><rect x="218.3" y="501" width="0.2" height="15.0" fill="rgb(251,221,47)" rx="2" ry="2" />
<text x="221.34" y="511.5" ></text>
</g>
<g >
<title>cpu_startup_entry (18,556 samples, 75.82%)</title><rect x="290.5" y="533" width="894.7" height="15.0" fill="rgb(243,213,24)" rx="2" ry="2" />
<text x="293.52" y="543.5" >cpu_startup_entry</text>
</g>
<g >
<title>tick_nohz_idle_exit (14 samples, 0.06%)</title><rect x="1184.6" y="501" width="0.6" height="15.0" fill="rgb(249,147,49)" rx="2" ry="2" />
<text x="1187.55" y="511.5" ></text>
</g>
<g >
<title>inet6_recvmsg (4 samples, 0.02%)</title><rect x="10.4" y="485" width="0.2" height="15.0" fill="rgb(236,22,49)" rx="2" ry="2" />
<text x="13.39" y="495.5" ></text>
</g>
<g >
<title>dl_main (4 samples, 0.02%)</title><rect x="184.1" y="549" width="0.2" height="15.0" fill="rgb(250,119,31)" rx="2" ry="2" />
<text x="187.06" y="559.5" ></text>
</g>
<g >
<title>BufferFilter (3 samples, 0.01%)</title><rect x="40.7" y="533" width="0.2" height="15.0" fill="rgb(236,11,49)" rx="2" ry="2" />
<text x="43.71" y="543.5" ></text>
</g>
<g >
<title>__sys_recvfrom (4 samples, 0.02%)</title><rect x="10.4" y="501" width="0.2" height="15.0" fill="rgb(248,119,11)" rx="2" ry="2" />
<text x="13.39" y="511.5" ></text>
</g>
<g >
<title>rmap_walk_file (3 samples, 0.01%)</title><rect x="211.4" y="421" width="0.1" height="15.0" fill="rgb(244,120,33)" rx="2" ry="2" />
<text x="214.35" y="431.5" ></text>
</g>
<g >
<title>wp_page_reuse (3 samples, 0.01%)</title><rect x="188.1" y="453" width="0.1" height="15.0" fill="rgb(208,104,19)" rx="2" ry="2" />
<text x="191.06" y="463.5" ></text>
</g>
<g >
<title>HashMapGet (4 samples, 0.02%)</title><rect x="32.3" y="533" width="0.2" height="15.0" fill="rgb(233,218,11)" rx="2" ry="2" />
<text x="35.32" y="543.5" ></text>
</g>
<g >
<title>rcu_core (11 samples, 0.04%)</title><rect x="1181.9" y="389" width="0.6" height="15.0" fill="rgb(233,1,23)" rx="2" ry="2" />
<text x="1184.95" y="399.5" ></text>
</g>
<g >
<title>shrink_lruvec (38 samples, 0.16%)</title><rect x="209.7" y="485" width="1.8" height="15.0" fill="rgb(215,164,40)" rx="2" ry="2" />
<text x="212.71" y="495.5" ></text>
</g>
<g >
<title>search_binary_handler (7 samples, 0.03%)</title><rect x="213.0" y="485" width="0.4" height="15.0" fill="rgb(251,229,4)" rx="2" ry="2" />
<text x="216.04" y="495.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.37 (21 samples, 0.09%)</title><rect x="175.4" y="501" width="1.0" height="15.0" fill="rgb(239,223,12)" rx="2" ry="2" />
<text x="178.43" y="511.5" ></text>
</g>
<g >
<title>page_referenced (11 samples, 0.04%)</title><rect x="209.9" y="453" width="0.5" height="15.0" fill="rgb(226,88,47)" rx="2" ry="2" />
<text x="212.91" y="463.5" ></text>
</g>
<g >
<title>exit_mmap (5 samples, 0.02%)</title><rect x="218.9" y="469" width="0.3" height="15.0" fill="rgb(248,30,25)" rx="2" ry="2" />
<text x="221.92" y="479.5" ></text>
</g>
<g >
<title>StringEqual_untyped (10 samples, 0.04%)</title><rect x="32.3" y="549" width="0.5" height="15.0" fill="rgb(251,51,5)" rx="2" ry="2" />
<text x="35.32" y="559.5" ></text>
</g>
<g >
<title>do_wp_page (5 samples, 0.02%)</title><rect x="188.0" y="469" width="0.2" height="15.0" fill="rgb(243,202,26)" rx="2" ry="2" />
<text x="190.97" y="479.5" ></text>
</g>
<g >
<title>pool-2-thread-9 (3 samples, 0.01%)</title><rect x="213.4" y="581" width="0.2" height="15.0" fill="rgb(244,154,43)" rx="2" ry="2" />
<text x="216.42" y="591.5" ></text>
</g>
<g >
<title>handle_mm_fault (28 samples, 0.11%)</title><rect x="169.5" y="485" width="1.4" height="15.0" fill="rgb(251,166,25)" rx="2" ry="2" />
<text x="172.55" y="495.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (6 samples, 0.02%)</title><rect x="219.7" y="389" width="0.3" height="15.0" fill="rgb(239,223,31)" rx="2" ry="2" />
<text x="222.74" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.03%)</title><rect x="213.0" y="549" width="0.4" height="15.0" fill="rgb(211,80,50)" rx="2" ry="2" />
<text x="216.04" y="559.5" ></text>
</g>
<g >
<title>get_page_from_freelist (13 samples, 0.05%)</title><rect x="169.8" y="405" width="0.7" height="15.0" fill="rgb(216,64,42)" rx="2" ry="2" />
<text x="172.84" y="415.5" ></text>
</g>
<g >
<title>MapIteratorNext (4 samples, 0.02%)</title><rect x="69.9" y="517" width="0.2" height="15.0" fill="rgb(231,118,16)" rx="2" ry="2" />
<text x="72.88" y="527.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (5 samples, 0.02%)</title><rect x="219.8" y="277" width="0.2" height="15.0" fill="rgb(246,67,37)" rx="2" ry="2" />
<text x="222.79" y="287.5" ></text>
</g>
<g >
<title>free_pgtables (3 samples, 0.01%)</title><rect x="175.4" y="405" width="0.2" height="15.0" fill="rgb(207,121,0)" rx="2" ry="2" />
<text x="178.43" y="415.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (4 samples, 0.02%)</title><rect x="213.8" y="453" width="0.2" height="15.0" fill="rgb(238,192,4)" rx="2" ry="2" />
<text x="216.76" y="463.5" ></text>
</g>
<g >
<title>xfsaild (4 samples, 0.02%)</title><rect x="1185.5" y="533" width="0.2" height="15.0" fill="rgb(249,146,0)" rx="2" ry="2" />
<text x="1188.47" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (14 samples, 0.06%)</title><rect x="196.7" y="181" width="0.7" height="15.0" fill="rgb(208,45,32)" rx="2" ry="2" />
<text x="199.69" y="191.5" ></text>
</g>
<g >
<title>rcu_do_batch (9 samples, 0.04%)</title><rect x="209.1" y="469" width="0.5" height="15.0" fill="rgb(231,61,7)" rx="2" ry="2" />
<text x="212.13" y="479.5" ></text>
</g>
<g >
<title>irq_exit (8 samples, 0.03%)</title><rect x="289.4" y="421" width="0.4" height="15.0" fill="rgb(246,49,53)" rx="2" ry="2" />
<text x="292.41" y="431.5" ></text>
</g>
<g >
<title>PolicyGetBody (13 samples, 0.05%)</title><rect x="43.1" y="533" width="0.6" height="15.0" fill="rgb(236,150,29)" rx="2" ry="2" />
<text x="46.08" y="543.5" ></text>
</g>
<g >
<title>kswapd0 (47 samples, 0.19%)</title><rect x="209.6" y="581" width="2.3" height="15.0" fill="rgb(242,82,27)" rx="2" ry="2" />
<text x="212.62" y="591.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3 samples, 0.01%)</title><rect x="218.3" y="453" width="0.2" height="15.0" fill="rgb(246,70,24)" rx="2" ry="2" />
<text x="221.34" y="463.5" ></text>
</g>
<g >
<title>[perf-2938437.map] (45 samples, 0.18%)</title><rect x="1185.9" y="565" width="2.1" height="15.0" fill="rgb(249,41,4)" rx="2" ry="2" />
<text x="1188.85" y="575.5" ></text>
</g>
<g >
<title>__cpuidle_text_start (1,440 samples, 5.88%)</title><rect x="221.1" y="485" width="69.4" height="15.0" fill="rgb(246,182,22)" rx="2" ry="2" />
<text x="224.09" y="495.5" >__cpuid..</text>
</g>
<g >
<title>__libc_fork (14 samples, 0.06%)</title><rect x="177.4" y="565" width="0.7" height="15.0" fill="rgb(216,226,37)" rx="2" ry="2" />
<text x="180.41" y="575.5" ></text>
</g>
<g >
<title>copy_process (14 samples, 0.06%)</title><rect x="177.4" y="501" width="0.7" height="15.0" fill="rgb(249,87,43)" rx="2" ry="2" />
<text x="180.41" y="511.5" ></text>
</g>
<g >
<title>walk_component (9 samples, 0.04%)</title><rect x="173.6" y="421" width="0.5" height="15.0" fill="rgb(233,89,43)" rx="2" ry="2" />
<text x="176.65" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.04%)</title><rect x="173.6" y="501" width="0.5" height="15.0" fill="rgb(223,228,49)" rx="2" ry="2" />
<text x="176.65" y="511.5" ></text>
</g>
<g >
<title>clear_page_rep (8 samples, 0.03%)</title><rect x="170.1" y="373" width="0.4" height="15.0" fill="rgb(246,119,48)" rx="2" ry="2" />
<text x="173.08" y="383.5" ></text>
</g>
<g >
<title>new_sync_read (22 samples, 0.09%)</title><rect x="196.5" y="485" width="1.1" height="15.0" fill="rgb(235,211,50)" rx="2" ry="2" />
<text x="199.55" y="495.5" ></text>
</g>
<g >
<title>e1000_watchdog (4 samples, 0.02%)</title><rect x="212.5" y="501" width="0.2" height="15.0" fill="rgb(247,129,8)" rx="2" ry="2" />
<text x="215.51" y="511.5" ></text>
</g>
<g >
<title>flush_old_exec (6 samples, 0.02%)</title><rect x="217.1" y="453" width="0.3" height="15.0" fill="rgb(211,199,33)" rx="2" ry="2" />
<text x="220.09" y="463.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3 samples, 0.01%)</title><rect x="215.3" y="469" width="0.2" height="15.0" fill="rgb(216,200,46)" rx="2" ry="2" />
<text x="218.31" y="479.5" ></text>
</g>
<g >
<title>[unknown] (16 samples, 0.07%)</title><rect x="216.1" y="565" width="0.8" height="15.0" fill="rgb(222,9,25)" rx="2" ry="2" />
<text x="219.13" y="575.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (3 samples, 0.01%)</title><rect x="1189.3" y="437" width="0.1" height="15.0" fill="rgb(237,116,40)" rx="2" ry="2" />
<text x="1192.28" y="447.5" ></text>
</g>
<g >
<title>shrink_active_list (15 samples, 0.06%)</title><rect x="209.7" y="469" width="0.7" height="15.0" fill="rgb(205,34,14)" rx="2" ry="2" />
<text x="212.71" y="479.5" ></text>
</g>
<g >
<title>do_exit (7 samples, 0.03%)</title><rect x="218.9" y="501" width="0.3" height="15.0" fill="rgb(252,158,4)" rx="2" ry="2" />
<text x="221.87" y="511.5" ></text>
</g>
<g >
<title>do_syscall_64 (14 samples, 0.06%)</title><rect x="177.4" y="533" width="0.7" height="15.0" fill="rgb(237,200,0)" rx="2" ry="2" />
<text x="180.41" y="543.5" ></text>
</g>
<g >
<title>blk_mq_sched_insert_requests (4 samples, 0.02%)</title><rect x="173.8" y="181" width="0.2" height="15.0" fill="rgb(252,196,7)" rx="2" ry="2" />
<text x="176.79" y="191.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="1189.4" y="533" width="0.4" height="15.0" fill="rgb(218,84,13)" rx="2" ry="2" />
<text x="1192.42" y="543.5" ></text>
</g>
<g >
<title>__GI___execve (21 samples, 0.09%)</title><rect x="175.4" y="565" width="1.0" height="15.0" fill="rgb(234,36,11)" rx="2" ry="2" />
<text x="178.43" y="575.5" ></text>
</g>
<g >
<title>kswapd (46 samples, 0.19%)</title><rect x="209.7" y="533" width="2.2" height="15.0" fill="rgb(237,94,10)" rx="2" ry="2" />
<text x="212.66" y="543.5" ></text>
</g>
<g >
<title>page_referenced (3 samples, 0.01%)</title><rect x="211.4" y="437" width="0.1" height="15.0" fill="rgb(239,77,47)" rx="2" ry="2" />
<text x="214.35" y="447.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (3 samples, 0.01%)</title><rect x="182.5" y="549" width="0.2" height="15.0" fill="rgb(245,197,18)" rx="2" ry="2" />
<text x="185.52" y="559.5" ></text>
</g>
<g >
<title>do_wp_page (3 samples, 0.01%)</title><rect x="14.1" y="469" width="0.1" height="15.0" fill="rgb(254,192,5)" rx="2" ry="2" />
<text x="17.10" y="479.5" ></text>
</g>
<g >
<title>__blk_mq_delay_run_hw_queue (4 samples, 0.02%)</title><rect x="173.8" y="165" width="0.2" height="15.0" fill="rgb(240,118,27)" rx="2" ry="2" />
<text x="176.79" y="175.5" ></text>
</g>
<g >
<title>_dl_sysdep_start (4 samples, 0.02%)</title><rect x="184.1" y="565" width="0.2" height="15.0" fill="rgb(225,88,37)" rx="2" ry="2" />
<text x="187.06" y="575.5" ></text>
</g>
<g >
<title>__remove_mapping (8 samples, 0.03%)</title><rect x="210.7" y="437" width="0.4" height="15.0" fill="rgb(230,160,11)" rx="2" ry="2" />
<text x="213.68" y="447.5" ></text>
</g>
<g >
<title>e1000_update_stats (3 samples, 0.01%)</title><rect x="211.9" y="485" width="0.1" height="15.0" fill="rgb(247,168,10)" rx="2" ry="2" />
<text x="214.88" y="495.5" ></text>
</g>
<g >
<title>perf (13 samples, 0.05%)</title><rect x="212.8" y="581" width="0.6" height="15.0" fill="rgb(214,152,38)" rx="2" ry="2" />
<text x="215.80" y="591.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (11 samples, 0.04%)</title><rect x="170.9" y="549" width="0.5" height="15.0" fill="rgb(251,205,3)" rx="2" ry="2" />
<text x="173.90" y="559.5" ></text>
</g>
<g >
<title>worker_thread (3 samples, 0.01%)</title><rect x="212.3" y="533" width="0.1" height="15.0" fill="rgb(254,171,5)" rx="2" ry="2" />
<text x="215.27" y="543.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (10 samples, 0.04%)</title><rect x="173.6" y="485" width="0.5" height="15.0" fill="rgb(241,119,48)" rx="2" ry="2" />
<text x="176.65" y="495.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (3 samples, 0.01%)</title><rect x="210.9" y="405" width="0.2" height="15.0" fill="rgb(234,225,40)" rx="2" ry="2" />
<text x="213.92" y="415.5" ></text>
</g>
<g >
<title>[libpromises.so.3.0.6] (14 samples, 0.06%)</title><rect x="107.0" y="501" width="0.6" height="15.0" fill="rgb(211,222,21)" rx="2" ry="2" />
<text x="109.96" y="511.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (5 samples, 0.02%)</title><rect x="219.8" y="261" width="0.2" height="15.0" fill="rgb(238,55,17)" rx="2" ry="2" />
<text x="222.79" y="271.5" ></text>
</g>
<g >
<title>xcalloc (4 samples, 0.02%)</title><rect x="198.7" y="565" width="0.2" height="15.0" fill="rgb(230,61,10)" rx="2" ry="2" />
<text x="201.72" y="575.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (16 samples, 0.07%)</title><rect x="169.7" y="421" width="0.8" height="15.0" fill="rgb(254,105,36)" rx="2" ry="2" />
<text x="172.69" y="431.5" ></text>
</g>
<g >
<title>zio-default-blo (86 samples, 0.35%)</title><rect x="1185.9" y="581" width="4.1" height="15.0" fill="rgb(206,167,31)" rx="2" ry="2" />
<text x="1188.85" y="591.5" ></text>
</g>
<g >
<title>rcu_core (3 samples, 0.01%)</title><rect x="210.9" y="341" width="0.2" height="15.0" fill="rgb(236,87,9)" rx="2" ry="2" />
<text x="213.92" y="351.5" ></text>
</g>
<g >
<title>__xstat64 (4 samples, 0.02%)</title><rect x="216.6" y="549" width="0.2" height="15.0" fill="rgb(251,44,50)" rx="2" ry="2" />
<text x="219.56" y="559.5" ></text>
</g>
<g >
<title>do_page_fault (6 samples, 0.02%)</title><rect x="220.7" y="517" width="0.2" height="15.0" fill="rgb(206,143,33)" rx="2" ry="2" />
<text x="223.66" y="527.5" ></text>
</g>
<g >
<title>swapper (19,997 samples, 81.71%)</title><rect x="221.0" y="581" width="964.2" height="15.0" fill="rgb(233,197,18)" rx="2" ry="2" />
<text x="224.04" y="591.5" >swapper</text>
</g>
<g >
<title>VM_Thread (3 samples, 0.01%)</title><rect x="10.8" y="581" width="0.1" height="15.0" fill="rgb(247,144,21)" rx="2" ry="2" />
<text x="13.77" y="591.5" ></text>
</g>
<g >
<title>kworker/9:1-eve (4 samples, 0.02%)</title><rect x="212.5" y="581" width="0.2" height="15.0" fill="rgb(215,163,5)" rx="2" ry="2" />
<text x="215.51" y="591.5" ></text>
</g>
<g >
<title>[libpromises.so.3.0.6] (30 samples, 0.12%)</title><rect x="27.1" y="565" width="1.5" height="15.0" fill="rgb(224,160,40)" rx="2" ry="2" />
<text x="30.12" y="575.5" ></text>
</g>
<g >
<title>Write_Timeout_H (3 samples, 0.01%)</title><rect x="10.9" y="581" width="0.2" height="15.0" fill="rgb(252,186,11)" rx="2" ry="2" />
<text x="13.92" y="591.5" ></text>
</g>
<g >
<title>ret_from_intr (14 samples, 0.06%)</title><rect x="1183.1" y="453" width="0.7" height="15.0" fill="rgb(252,4,35)" rx="2" ry="2" />
<text x="1186.11" y="463.5" ></text>
</g>
<g >
<title>__GI___openat64 (10 samples, 0.04%)</title><rect x="172.7" y="533" width="0.5" height="15.0" fill="rgb(245,174,2)" rx="2" ry="2" />
<text x="175.68" y="543.5" ></text>
</g>
<g >
<title>all (24,473 samples, 100%)</title><rect x="10.0" y="597" width="1180.0" height="15.0" fill="rgb(225,147,43)" rx="2" ry="2" />
<text x="13.00" y="607.5" ></text>
</g>
<g >
<title>iomap_file_buffered_write (4 samples, 0.02%)</title><rect x="212.8" y="437" width="0.2" height="15.0" fill="rgb(254,118,49)" rx="2" ry="2" />
<text x="215.85" y="447.5" ></text>
</g>
<g >
<title>zio-default-asy (4 samples, 0.02%)</title><rect x="1185.7" y="581" width="0.2" height="15.0" fill="rgb(245,19,45)" rx="2" ry="2" />
<text x="1188.66" y="591.5" ></text>
</g>
<g >
<title>SeqIndexOf (3 samples, 0.01%)</title><rect x="70.5" y="517" width="0.1" height="15.0" fill="rgb(231,60,7)" rx="2" ry="2" />
<text x="73.46" y="527.5" ></text>
</g>
<g >
<title>kthread (4 samples, 0.02%)</title><rect x="1185.5" y="549" width="0.2" height="15.0" fill="rgb(217,39,7)" rx="2" ry="2" />
<text x="1188.47" y="559.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4 samples, 0.02%)</title><rect x="28.4" y="485" width="0.2" height="15.0" fill="rgb(253,200,36)" rx="2" ry="2" />
<text x="31.37" y="495.5" ></text>
</g>
<g >
<title>HashMapIteratorNext (471 samples, 1.92%)</title><rect x="47.1" y="517" width="22.7" height="15.0" fill="rgb(206,52,3)" rx="2" ry="2" />
<text x="50.13" y="527.5" >H..</text>
</g>
<g >
<title>copy_p4d_range (7 samples, 0.03%)</title><rect x="177.6" y="453" width="0.3" height="15.0" fill="rgb(250,122,42)" rx="2" ry="2" />
<text x="180.55" y="463.5" ></text>
</g>
<g >
<title>call_timer_fn (3 samples, 0.01%)</title><rect x="1182.7" y="373" width="0.2" height="15.0" fill="rgb(224,77,15)" rx="2" ry="2" />
<text x="1185.72" y="383.5" ></text>
</g>
<g >
<title>ifconfig (6 samples, 0.02%)</title><rect x="208.4" y="581" width="0.3" height="15.0" fill="rgb(245,168,28)" rx="2" ry="2" />
<text x="211.36" y="591.5" ></text>
</g>
<g >
<title>[unknown] (390 samples, 1.59%)</title><rect x="100.9" y="517" width="18.8" height="15.0" fill="rgb(226,140,10)" rx="2" ry="2" />
<text x="103.94" y="527.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (4 samples, 0.02%)</title><rect x="173.8" y="133" width="0.2" height="15.0" fill="rgb(236,105,1)" rx="2" ry="2" />
<text x="176.79" y="143.5" ></text>
</g>
<g >
<title>VarRefHash_untyped (13 samples, 0.05%)</title><rect x="44.7" y="533" width="0.6" height="15.0" fill="rgb(238,162,29)" rx="2" ry="2" />
<text x="47.67" y="543.5" ></text>
</g>
<g >
<title>ExtractScalarReference (3 samples, 0.01%)</title><rect x="12.7" y="565" width="0.1" height="15.0" fill="rgb(251,36,50)" rx="2" ry="2" />
<text x="15.65" y="575.5" ></text>
</g>
<g >
<title>rebalance_domains (4 samples, 0.02%)</title><rect x="1182.5" y="389" width="0.2" height="15.0" fill="rgb(205,124,1)" rx="2" ry="2" />
<text x="1185.48" y="399.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.03%)</title><rect x="220.6" y="565" width="0.3" height="15.0" fill="rgb(205,105,33)" rx="2" ry="2" />
<text x="223.56" y="575.5" ></text>
</g>
<g >
<title>xfs_iread (6 samples, 0.02%)</title><rect x="173.7" y="325" width="0.3" height="15.0" fill="rgb(250,212,49)" rx="2" ry="2" />
<text x="176.74" y="335.5" ></text>
</g>
<g >
<title>__strncpy_avx2 (4 samples, 0.02%)</title><rect x="168.0" y="549" width="0.1" height="15.0" fill="rgb(208,83,26)" rx="2" ry="2" />
<text x="170.96" y="559.5" ></text>
</g>
<g >
<title>__strcmp_avx2 (37 samples, 0.15%)</title><rect x="179.6" y="565" width="1.8" height="15.0" fill="rgb(217,43,29)" rx="2" ry="2" />
<text x="182.58" y="575.5" ></text>
</g>
<g >
<title>__libc_write (14 samples, 0.06%)</title><rect x="219.5" y="549" width="0.7" height="15.0" fill="rgb(225,23,2)" rx="2" ry="2" />
<text x="222.50" y="559.5" ></text>
</g>
<g >
<title>kthread (10 samples, 0.04%)</title><rect x="209.1" y="549" width="0.5" height="15.0" fill="rgb(230,166,5)" rx="2" ry="2" />
<text x="212.09" y="559.5" ></text>
</g>
<g >
<title>copy_page_range (7 samples, 0.03%)</title><rect x="177.6" y="469" width="0.3" height="15.0" fill="rgb(213,38,47)" rx="2" ry="2" />
<text x="180.55" y="479.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (8 samples, 0.03%)</title><rect x="219.7" y="405" width="0.4" height="15.0" fill="rgb(243,191,43)" rx="2" ry="2" />
<text x="222.69" y="415.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (18 samples, 0.07%)</title><rect x="189.7" y="565" width="0.8" height="15.0" fill="rgb(247,186,14)" rx="2" ry="2" />
<text x="192.65" y="575.5" ></text>
</g>
<g >
<title>__strcmp_avx2 (214 samples, 0.87%)</title><rect x="109.1" y="501" width="10.3" height="15.0" fill="rgb(215,216,13)" rx="2" ry="2" />
<text x="112.08" y="511.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="10.2" y="565" width="0.2" height="15.0" fill="rgb(232,171,14)" rx="2" ry="2" />
<text x="13.24" y="575.5" ></text>
</g>
<g >
<title>sock_sendmsg (4 samples, 0.02%)</title><rect x="213.8" y="485" width="0.2" height="15.0" fill="rgb(245,29,46)" rx="2" ry="2" />
<text x="216.76" y="495.5" ></text>
</g>
<g >
<title>SeqLength (3 samples, 0.01%)</title><rect x="106.8" y="501" width="0.1" height="15.0" fill="rgb(208,183,7)" rx="2" ry="2" />
<text x="109.77" y="511.5" ></text>
</g>
<g >
<title>[perf-2938437.map] (5 samples, 0.02%)</title><rect x="10.0" y="565" width="0.2" height="15.0" fill="rgb(224,100,6)" rx="2" ry="2" />
<text x="13.00" y="575.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (4 samples, 0.02%)</title><rect x="170.6" y="421" width="0.2" height="15.0" fill="rgb(213,62,32)" rx="2" ry="2" />
<text x="173.61" y="431.5" ></text>
</g>
<g >
<title>_int_free (82 samples, 0.34%)</title><rect x="184.3" y="565" width="3.9" height="15.0" fill="rgb(247,54,6)" rx="2" ry="2" />
<text x="187.25" y="575.5" ></text>
</g>
<g >
<title>iov_iter_fault_in_readable (3 samples, 0.01%)</title><rect x="212.9" y="389" width="0.1" height="15.0" fill="rgb(228,225,50)" rx="2" ry="2" />
<text x="215.89" y="399.5" ></text>
</g>
<g >
<title>EvalContextFindFirstMatchingBody (30 samples, 0.12%)</title><rect x="101.0" y="501" width="1.4" height="15.0" fill="rgb(221,80,17)" rx="2" ry="2" />
<text x="103.98" y="511.5" ></text>
</g>
<g >
<title>exit_mmap (6 samples, 0.02%)</title><rect x="217.1" y="421" width="0.3" height="15.0" fill="rgb(247,194,53)" rx="2" ry="2" />
<text x="220.09" y="431.5" ></text>
</g>
<g >
<title>sssd_kcm (8 samples, 0.03%)</title><rect x="220.6" y="581" width="0.3" height="15.0" fill="rgb(243,19,23)" rx="2" ry="2" />
<text x="223.56" y="591.5" ></text>
</g>
<g >
<title>__strnlen_avx2 (12 samples, 0.05%)</title><rect x="181.7" y="565" width="0.6" height="15.0" fill="rgb(236,144,52)" rx="2" ry="2" />
<text x="184.75" y="575.5" ></text>
</g>
<g >
<title>ConcurrentG1RefineThread::run (7 samples, 0.03%)</title><rect x="208.7" y="533" width="0.3" height="15.0" fill="rgb(253,153,35)" rx="2" ry="2" />
<text x="211.70" y="543.5" ></text>
</g>
<g >
<title>VMThread::run (3 samples, 0.01%)</title><rect x="10.8" y="533" width="0.1" height="15.0" fill="rgb(228,190,1)" rx="2" ry="2" />
<text x="13.77" y="543.5" ></text>
</g>
<g >
<title>page_fault (33 samples, 0.13%)</title><rect x="169.3" y="533" width="1.6" height="15.0" fill="rgb(207,168,7)" rx="2" ry="2" />
<text x="172.31" y="543.5" ></text>
</g>
<g >
<title>flush_old_exec (21 samples, 0.09%)</title><rect x="175.4" y="453" width="1.0" height="15.0" fill="rgb(252,1,6)" rx="2" ry="2" />
<text x="178.43" y="463.5" ></text>
</g>
<g >
<title>start_thread (3 samples, 0.01%)</title><rect x="10.8" y="565" width="0.1" height="15.0" fill="rgb(210,201,53)" rx="2" ry="2" />
<text x="13.77" y="575.5" ></text>
</g>
<g >
<title>Monitor::ILock (3 samples, 0.01%)</title><rect x="208.8" y="469" width="0.1" height="15.0" fill="rgb(233,8,37)" rx="2" ry="2" />
<text x="211.80" y="479.5" ></text>
</g>
<g >
<title>vfs_write (5 samples, 0.02%)</title><rect x="212.8" y="485" width="0.2" height="15.0" fill="rgb(249,223,41)" rx="2" ry="2" />
<text x="215.80" y="495.5" ></text>
</g>
<g >
<title>do_syscall_64 (14 samples, 0.06%)</title><rect x="219.5" y="517" width="0.7" height="15.0" fill="rgb(213,86,15)" rx="2" ry="2" />
<text x="222.50" y="527.5" ></text>
</g>
<g >
<title>java (8 samples, 0.03%)</title><rect x="208.7" y="581" width="0.3" height="15.0" fill="rgb(247,227,10)" rx="2" ry="2" />
<text x="211.65" y="591.5" ></text>
</g>
<g >
<title>reschedule_interrupt (15 samples, 0.06%)</title><rect x="289.8" y="453" width="0.7" height="15.0" fill="rgb(241,211,33)" rx="2" ry="2" />
<text x="292.80" y="463.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="14.1" y="517" width="0.1" height="15.0" fill="rgb(210,152,10)" rx="2" ry="2" />
<text x="17.10" y="527.5" ></text>
</g>
<g >
<title>_dl_relocate_object (4 samples, 0.02%)</title><rect x="218.3" y="533" width="0.2" height="15.0" fill="rgb(230,139,43)" rx="2" ry="2" />
<text x="221.29" y="543.5" ></text>
</g>
<g >
<title>xfsaild/sda3 (4 samples, 0.02%)</title><rect x="1185.5" y="581" width="0.2" height="15.0" fill="rgb(246,153,6)" rx="2" ry="2" />
<text x="1188.47" y="591.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (15 samples, 0.06%)</title><rect x="289.8" y="421" width="0.7" height="15.0" fill="rgb(229,170,45)" rx="2" ry="2" />
<text x="292.80" y="431.5" ></text>
</g>
<g >
<title>[unknown] (23 samples, 0.09%)</title><rect x="107.7" y="469" width="1.1" height="15.0" fill="rgb(233,125,45)" rx="2" ry="2" />
<text x="110.69" y="479.5" ></text>
</g>
<g >
<title>shrink_page_list (21 samples, 0.09%)</title><rect x="210.5" y="453" width="1.0" height="15.0" fill="rgb(224,208,23)" rx="2" ry="2" />
<text x="213.53" y="463.5" ></text>
</g>
<g >
<title>[unknown] (2,114 samples, 8.64%)</title><rect x="46.8" y="533" width="101.9" height="15.0" fill="rgb(230,39,12)" rx="2" ry="2" />
<text x="49.79" y="543.5" >[unknown]</text>
</g>
<g >
<title>SeqLength (4 samples, 0.02%)</title><rect x="70.6" y="517" width="0.2" height="15.0" fill="rgb(208,200,11)" rx="2" ry="2" />
<text x="73.61" y="527.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3 samples, 0.01%)</title><rect x="14.1" y="485" width="0.1" height="15.0" fill="rgb(235,157,6)" rx="2" ry="2" />
<text x="17.10" y="495.5" ></text>
</g>
<g >
<title>secondary_startup_64_no_verify (19,997 samples, 81.71%)</title><rect x="221.0" y="565" width="964.2" height="15.0" fill="rgb(237,32,18)" rx="2" ry="2" />
<text x="224.04" y="575.5" >secondary_startup_64_no_verify</text>
</g>
<g >
<title>native_safe_halt (18,515 samples, 75.65%)</title><rect x="291.1" y="469" width="892.7" height="15.0" fill="rgb(252,59,29)" rx="2" ry="2" />
<text x="294.05" y="479.5" >native_safe_halt</text>
</g>
<g >
<title>start_kernel (1,441 samples, 5.89%)</title><rect x="221.0" y="549" width="69.5" height="15.0" fill="rgb(216,29,45)" rx="2" ry="2" />
<text x="224.04" y="559.5" >start_k..</text>
</g>
<g >
<title>__x64_sys_futex (7 samples, 0.03%)</title><rect x="1189.5" y="517" width="0.3" height="15.0" fill="rgb(223,212,32)" rx="2" ry="2" />
<text x="1192.47" y="527.5" ></text>
</g>
<g >
<title>tcp_write_xmit (3 samples, 0.01%)</title><rect x="1189.3" y="421" width="0.1" height="15.0" fill="rgb(208,32,5)" rx="2" ry="2" />
<text x="1192.28" y="431.5" ></text>
</g>
<g >
<title>exit_mmap (6 samples, 0.02%)</title><rect x="213.0" y="421" width="0.3" height="15.0" fill="rgb(228,225,20)" rx="2" ry="2" />
<text x="216.04" y="431.5" ></text>
</g>
<g >
<title>[perf-2938437.map] (25 samples, 0.10%)</title><rect x="1188.0" y="549" width="1.2" height="15.0" fill="rgb(229,61,15)" rx="2" ry="2" />
<text x="1191.02" y="559.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (8 samples, 0.03%)</title><rect x="210.7" y="421" width="0.4" height="15.0" fill="rgb(238,165,31)" rx="2" ry="2" />
<text x="213.68" y="431.5" ></text>
</g>
<g >
<title>_dl_map_object (6 samples, 0.02%)</title><rect x="215.2" y="565" width="0.3" height="15.0" fill="rgb(235,180,2)" rx="2" ry="2" />
<text x="218.21" y="575.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1189.8" y="549" width="0.2" height="15.0" fill="rgb(209,168,42)" rx="2" ry="2" />
<text x="1192.81" y="559.5" ></text>
</g>
<g >
<title>read (23 samples, 0.09%)</title><rect x="196.5" y="565" width="1.2" height="15.0" fill="rgb(253,124,47)" rx="2" ry="2" />
<text x="199.55" y="575.5" ></text>
</g>
<g >
<title>start_secondary (18,556 samples, 75.82%)</title><rect x="290.5" y="549" width="894.7" height="15.0" fill="rgb(244,187,35)" rx="2" ry="2" />
<text x="293.52" y="559.5" >start_secondary</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.03%)</title><rect x="218.9" y="565" width="0.3" height="15.0" fill="rgb(210,179,35)" rx="2" ry="2" />
<text x="221.87" y="575.5" ></text>
</g>
<g >
<title>path_lookupat.isra.49 (9 samples, 0.04%)</title><rect x="173.6" y="437" width="0.5" height="15.0" fill="rgb(250,32,43)" rx="2" ry="2" />
<text x="176.65" y="447.5" ></text>
</g>
<g >
<title>date (13 samples, 0.05%)</title><rect x="206.3" y="581" width="0.6" height="15.0" fill="rgb(215,97,36)" rx="2" ry="2" />
<text x="209.29" y="591.5" ></text>
</g>
<g >
<title>mmput (6 samples, 0.02%)</title><rect x="217.1" y="437" width="0.3" height="15.0" fill="rgb(214,151,27)" rx="2" ry="2" />
<text x="220.09" y="447.5" ></text>
</g>
<g >
<title>alloc_pages_vma (16 samples, 0.07%)</title><rect x="169.7" y="437" width="0.8" height="15.0" fill="rgb(254,130,44)" rx="2" ry="2" />
<text x="172.69" y="447.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (4 samples, 0.02%)</title><rect x="175.1" y="565" width="0.2" height="15.0" fill="rgb(241,91,49)" rx="2" ry="2" />
<text x="178.09" y="575.5" ></text>
</g>
<g >
<title>new_sync_write (10 samples, 0.04%)</title><rect x="219.6" y="469" width="0.5" height="15.0" fill="rgb(227,136,44)" rx="2" ry="2" />
<text x="222.60" y="479.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.03%)</title><rect x="173.2" y="501" width="0.3" height="15.0" fill="rgb(242,171,13)" rx="2" ry="2" />
<text x="176.16" y="511.5" ></text>
</g>
<g >
<title>__strcmp_avx2 (75 samples, 0.31%)</title><rect x="150.2" y="533" width="3.6" height="15.0" fill="rgb(232,103,31)" rx="2" ry="2" />
<text x="153.17" y="543.5" ></text>
</g>
<g >
<title>do_group_exit (7 samples, 0.03%)</title><rect x="218.9" y="517" width="0.3" height="15.0" fill="rgb(219,185,47)" rx="2" ry="2" />
<text x="221.87" y="527.5" ></text>
</g>
<g >
<title>_dl_relocate_object (3 samples, 0.01%)</title><rect x="184.1" y="533" width="0.2" height="15.0" fill="rgb(244,27,51)" rx="2" ry="2" />
<text x="187.11" y="543.5" ></text>
</g>
<g >
<title>malloc (35 samples, 0.14%)</title><rect x="191.0" y="565" width="1.7" height="15.0" fill="rgb(219,122,6)" rx="2" ry="2" />
<text x="194.00" y="575.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.01%)</title><rect x="173.8" y="37" width="0.1" height="15.0" fill="rgb(250,79,25)" rx="2" ry="2" />
<text x="176.79" y="47.5" ></text>
</g>
<g >
<title>do_page_fault (33 samples, 0.13%)</title><rect x="169.3" y="517" width="1.6" height="15.0" fill="rgb(248,128,3)" rx="2" ry="2" />
<text x="172.31" y="527.5" ></text>
</g>
<g >
<title>iomap_readpages (3 samples, 0.01%)</title><rect x="197.4" y="373" width="0.1" height="15.0" fill="rgb(206,89,54)" rx="2" ry="2" />
<text x="200.37" y="383.5" ></text>
</g>
<g >
<title>sh (73 samples, 0.30%)</title><rect x="215.8" y="581" width="3.6" height="15.0" fill="rgb(253,221,42)" rx="2" ry="2" />
<text x="218.84" y="591.5" ></text>
</g>
<g >
<title>__strchr_avx2 (3 samples, 0.01%)</title><rect x="179.4" y="565" width="0.2" height="15.0" fill="rgb(230,120,15)" rx="2" ry="2" />
<text x="182.43" y="575.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.04%)</title><rect x="216.9" y="549" width="0.5" height="15.0" fill="rgb(248,0,36)" rx="2" ry="2" />
<text x="219.90" y="559.5" ></text>
</g>
<g >
<title>PolicyCheckPartial (4 samples, 0.02%)</title><rect x="13.8" y="565" width="0.2" height="15.0" fill="rgb(231,164,10)" rx="2" ry="2" />
<text x="16.81" y="575.5" ></text>
</g>
<g >
<title>GetRealPath (3 samples, 0.01%)</title><rect x="30.4" y="549" width="0.1" height="15.0" fill="rgb(219,14,25)" rx="2" ry="2" />
<text x="33.40" y="559.5" ></text>
</g>
<g >
<title>SafepointSynchronize::begin (3 samples, 0.01%)</title><rect x="10.8" y="501" width="0.1" height="15.0" fill="rgb(224,9,28)" rx="2" ry="2" />
<text x="13.77" y="511.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (8 samples, 0.03%)</title><rect x="1189.4" y="565" width="0.4" height="15.0" fill="rgb(215,210,44)" rx="2" ry="2" />
<text x="1192.42" y="575.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list (4 samples, 0.02%)</title><rect x="173.8" y="197" width="0.2" height="15.0" fill="rgb(214,205,2)" rx="2" ry="2" />
<text x="176.79" y="207.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.1.1g] (13 samples, 0.05%)</title><rect x="25.2" y="565" width="0.7" height="15.0" fill="rgb(215,10,44)" rx="2" ry="2" />
<text x="28.24" y="575.5" ></text>
</g>
<g >
<title>lru_cache_add (5 samples, 0.02%)</title><rect x="170.6" y="437" width="0.2" height="15.0" fill="rgb(211,190,35)" rx="2" ry="2" />
<text x="173.56" y="447.5" ></text>
</g>
<g >
<title>kthread (5 samples, 0.02%)</title><rect x="214.4" y="549" width="0.2" height="15.0" fill="rgb(222,119,1)" rx="2" ry="2" />
<text x="217.39" y="559.5" ></text>
</g>
<g >
<title>lookup_slow (9 samples, 0.04%)</title><rect x="173.6" y="405" width="0.5" height="15.0" fill="rgb(253,194,5)" rx="2" ry="2" />
<text x="176.65" y="415.5" ></text>
</g>
<g >
<title>[unknown] (21 samples, 0.09%)</title><rect x="219.4" y="565" width="1.0" height="15.0" fill="rgb(238,88,54)" rx="2" ry="2" />
<text x="222.40" y="575.5" ></text>
</g>
<g >
<title>iomap_write_actor (4 samples, 0.02%)</title><rect x="212.8" y="405" width="0.2" height="15.0" fill="rgb(226,85,1)" rx="2" ry="2" />
<text x="215.85" y="415.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (179 samples, 0.73%)</title><rect x="16.6" y="565" width="8.6" height="15.0" fill="rgb(218,167,32)" rx="2" ry="2" />
<text x="19.61" y="575.5" ></text>
</g>
<g >
<title>SpecialScopeFromString (15 samples, 0.06%)</title><rect x="15.2" y="565" width="0.7" height="15.0" fill="rgb(222,42,12)" rx="2" ry="2" />
<text x="18.16" y="575.5" ></text>
</g>
<g >
<title>__do_page_fault (5 samples, 0.02%)</title><rect x="28.3" y="517" width="0.3" height="15.0" fill="rgb(208,179,49)" rx="2" ry="2" />
<text x="31.32" y="527.5" ></text>
</g>
<g >
<title>e1000_update_stats (3 samples, 0.01%)</title><rect x="212.5" y="485" width="0.2" height="15.0" fill="rgb(253,198,0)" rx="2" ry="2" />
<text x="215.51" y="495.5" ></text>
</g>
<g >
<title>VarRefEqual_untyped (4 samples, 0.02%)</title><rect x="33.6" y="549" width="0.2" height="15.0" fill="rgb(229,72,14)" rx="2" ry="2" />
<text x="36.58" y="559.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (4 samples, 0.02%)</title><rect x="173.8" y="101" width="0.2" height="15.0" fill="rgb(251,91,0)" rx="2" ry="2" />
<text x="176.79" y="111.5" ></text>
</g>
<g >
<title>run_ksoftirqd (10 samples, 0.04%)</title><rect x="209.1" y="517" width="0.5" height="15.0" fill="rgb(252,174,49)" rx="2" ry="2" />
<text x="212.09" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="168.6" y="533" width="0.2" height="15.0" fill="rgb(235,85,49)" rx="2" ry="2" />
<text x="171.63" y="543.5" ></text>
</g>
<g >
<title>do_IRQ (14 samples, 0.06%)</title><rect x="1183.1" y="437" width="0.7" height="15.0" fill="rgb(252,75,53)" rx="2" ry="2" />
<text x="1186.11" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (51 samples, 0.21%)</title><rect x="154.1" y="533" width="2.5" height="15.0" fill="rgb(230,221,53)" rx="2" ry="2" />
<text x="157.12" y="543.5" ></text>
</g>
<g >
<title>__strlen_avx2 (4 samples, 0.02%)</title><rect x="181.4" y="565" width="0.2" height="15.0" fill="rgb(231,4,37)" rx="2" ry="2" />
<text x="184.41" y="575.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="216.6" y="533" width="0.2" height="15.0" fill="rgb(227,190,49)" rx="2" ry="2" />
<text x="219.61" y="543.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="215.3" y="501" width="0.2" height="15.0" fill="rgb(236,214,5)" rx="2" ry="2" />
<text x="218.31" y="511.5" ></text>
</g>
<g >
<title>__do_page_fault (6 samples, 0.02%)</title><rect x="220.7" y="501" width="0.2" height="15.0" fill="rgb(243,174,42)" rx="2" ry="2" />
<text x="223.66" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="10.4" y="549" width="0.2" height="15.0" fill="rgb(232,10,44)" rx="2" ry="2" />
<text x="13.39" y="559.5" ></text>
</g>
<g >
<title>ParseStringExpression (3 samples, 0.01%)</title><rect x="13.7" y="565" width="0.1" height="15.0" fill="rgb(240,136,27)" rx="2" ry="2" />
<text x="16.66" y="575.5" ></text>
</g>
<g >
<title>[find] (4 samples, 0.02%)</title><rect x="207.0" y="549" width="0.2" height="15.0" fill="rgb(235,151,27)" rx="2" ry="2" />
<text x="210.01" y="559.5" ></text>
</g>
<g >
<title>VMThread::loop (3 samples, 0.01%)</title><rect x="10.8" y="517" width="0.1" height="15.0" fill="rgb(253,158,16)" rx="2" ry="2" />
<text x="13.77" y="527.5" ></text>
</g>
<g >
<title>IsAbsoluteFileName (3 samples, 0.01%)</title><rect x="103.2" y="501" width="0.1" height="15.0" fill="rgb(246,154,7)" rx="2" ry="2" />
<text x="106.15" y="511.5" ></text>
</g>
<g >
<title>do_syscall_64 (23 samples, 0.09%)</title><rect x="196.5" y="533" width="1.2" height="15.0" fill="rgb(223,173,29)" rx="2" ry="2" />
<text x="199.55" y="543.5" ></text>
</g>
<g >
<title>__strlen_avx2 (4 samples, 0.02%)</title><rect x="153.8" y="533" width="0.2" height="15.0" fill="rgb(226,87,41)" rx="2" ry="2" />
<text x="156.83" y="543.5" ></text>
</g>
<g >
<title>Monitor::lock_without_safepoint_check (3 samples, 0.01%)</title><rect x="208.8" y="485" width="0.1" height="15.0" fill="rgb(222,223,11)" rx="2" ry="2" />
<text x="211.80" y="495.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3 samples, 0.01%)</title><rect x="209.3" y="453" width="0.1" height="15.0" fill="rgb(249,165,36)" rx="2" ry="2" />
<text x="212.28" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (3 samples, 0.01%)</title><rect x="14.1" y="501" width="0.1" height="15.0" fill="rgb(219,130,7)" rx="2" ry="2" />
<text x="17.10" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.04%)</title><rect x="172.7" y="517" width="0.5" height="15.0" fill="rgb(226,49,1)" rx="2" ry="2" />
<text x="175.68" y="527.5" ></text>
</g>
<g >
<title>PolicyCheckDuplicateHandles (4 samples, 0.02%)</title><rect x="103.4" y="501" width="0.2" height="15.0" fill="rgb(237,129,6)" rx="2" ry="2" />
<text x="106.40" y="511.5" ></text>
</g>
<g >
<title>page_vma_mapped_walk (7 samples, 0.03%)</title><rect x="210.0" y="405" width="0.3" height="15.0" fill="rgb(237,46,52)" rx="2" ry="2" />
<text x="213.00" y="415.5" ></text>
</g>
<g >
<title>find (26 samples, 0.11%)</title><rect x="207.0" y="581" width="1.2" height="15.0" fill="rgb(205,101,0)" rx="2" ry="2" />
<text x="209.96" y="591.5" ></text>
</g>
<g >
<title>cf-promises (4,037 samples, 16.50%)</title><rect x="11.6" y="581" width="194.7" height="15.0" fill="rgb(226,213,11)" rx="2" ry="2" />
<text x="14.64" y="591.5" >cf-promises</text>
</g>
<g >
<title>apic_timer_interrupt (8 samples, 0.03%)</title><rect x="289.4" y="453" width="0.4" height="15.0" fill="rgb(220,211,23)" rx="2" ry="2" />
<text x="292.41" y="463.5" ></text>
</g>
<g >
<title>PolicyCheckPartial (21 samples, 0.09%)</title><rect x="42.1" y="533" width="1.0" height="15.0" fill="rgb(236,187,0)" rx="2" ry="2" />
<text x="45.06" y="543.5" ></text>
</g>
<g >
<title>flush_old_exec (7 samples, 0.03%)</title><rect x="213.0" y="453" width="0.4" height="15.0" fill="rgb(233,94,43)" rx="2" ry="2" />
<text x="216.04" y="463.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (3 samples, 0.01%)</title><rect x="148.5" y="517" width="0.2" height="15.0" fill="rgb(237,122,19)" rx="2" ry="2" />
<text x="151.53" y="527.5" ></text>
</g>
<g >
<title>dup_mm (13 samples, 0.05%)</title><rect x="177.4" y="485" width="0.6" height="15.0" fill="rgb(227,147,35)" rx="2" ry="2" />
<text x="180.41" y="495.5" ></text>
</g>
<g >
<title>__sys_sendto (3 samples, 0.01%)</title><rect x="1189.3" y="501" width="0.1" height="15.0" fill="rgb(233,70,9)" rx="2" ry="2" />
<text x="1192.28" y="511.5" ></text>
</g>
<g >
<title>xfs_file_buffered_aio_read (22 samples, 0.09%)</title><rect x="196.5" y="453" width="1.1" height="15.0" fill="rgb(249,148,24)" rx="2" ry="2" />
<text x="199.55" y="463.5" ></text>
</g>
<g >
<title>ksoftirqd/4 (11 samples, 0.04%)</title><rect x="209.0" y="581" width="0.6" height="15.0" fill="rgb(222,121,47)" rx="2" ry="2" />
<text x="212.04" y="591.5" ></text>
</g>
<g >
<title>HashMapGet (3 samples, 0.01%)</title><rect x="33.6" y="533" width="0.1" height="15.0" fill="rgb(254,119,39)" rx="2" ry="2" />
<text x="36.58" y="543.5" ></text>
</g>
<g >
<title>irq_exit (5 samples, 0.02%)</title><rect x="1182.9" y="437" width="0.2" height="15.0" fill="rgb(219,107,45)" rx="2" ry="2" />
<text x="1185.86" y="447.5" ></text>
</g>
<g >
<title>xfs_iget (7 samples, 0.03%)</title><rect x="173.7" y="341" width="0.4" height="15.0" fill="rgb(228,198,24)" rx="2" ry="2" />
<text x="176.74" y="351.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (3 samples, 0.01%)</title><rect x="210.9" y="389" width="0.2" height="15.0" fill="rgb(207,81,10)" rx="2" ry="2" />
<text x="213.92" y="399.5" ></text>
</g>
<g >
<title>[unknown] (167 samples, 0.68%)</title><rect x="16.9" y="549" width="8.0" height="15.0" fill="rgb(246,114,36)" rx="2" ry="2" />
<text x="19.89" y="559.5" ></text>
</g>
<g >
<title>VarRefToString (3 samples, 0.01%)</title><rect x="45.3" y="533" width="0.1" height="15.0" fill="rgb(216,128,11)" rx="2" ry="2" />
<text x="48.29" y="543.5" ></text>
</g>
<g >
<title>ip_output (6 samples, 0.02%)</title><rect x="219.7" y="341" width="0.3" height="15.0" fill="rgb(248,216,42)" rx="2" ry="2" />
<text x="222.74" y="351.5" ></text>
</g>
<g >
<title>[unknown] (160 samples, 0.65%)</title><rect x="17.0" y="533" width="7.8" height="15.0" fill="rgb(250,32,7)" rx="2" ry="2" />
<text x="20.04" y="543.5" ></text>
</g>
<g >
<title>SeqLength (4 samples, 0.02%)</title><rect x="44.1" y="533" width="0.2" height="15.0" fill="rgb(251,134,49)" rx="2" ry="2" />
<text x="47.09" y="543.5" ></text>
</g>
<g >
<title>xfs_dir_open (3 samples, 0.01%)</title><rect x="172.9" y="421" width="0.1" height="15.0" fill="rgb(234,24,21)" rx="2" ry="2" />
<text x="175.88" y="431.5" ></text>
</g>
<g >
<title>__do_page_fault (33 samples, 0.13%)</title><rect x="169.3" y="501" width="1.6" height="15.0" fill="rgb(219,2,44)" rx="2" ry="2" />
<text x="172.31" y="511.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4 samples, 0.02%)</title><rect x="220.7" y="389" width="0.2" height="15.0" fill="rgb(226,185,52)" rx="2" ry="2" />
<text x="223.66" y="399.5" ></text>
</g>
<g >
<title>postmaster (10 samples, 0.04%)</title><rect x="213.6" y="581" width="0.5" height="15.0" fill="rgb(241,36,31)" rx="2" ry="2" />
<text x="216.57" y="591.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="1189.4" y="549" width="0.4" height="15.0" fill="rgb(209,27,8)" rx="2" ry="2" />
<text x="1192.42" y="559.5" ></text>
</g>
<g >
<title>kmem_cache_free (4 samples, 0.02%)</title><rect x="1182.1" y="357" width="0.2" height="15.0" fill="rgb(219,43,14)" rx="2" ry="2" />
<text x="1185.09" y="367.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="218.3" y="485" width="0.2" height="15.0" fill="rgb(235,188,40)" rx="2" ry="2" />
<text x="221.34" y="495.5" ></text>
</g>
<g >
<title>tcp_write_xmit (6 samples, 0.02%)</title><rect x="219.7" y="373" width="0.3" height="15.0" fill="rgb(206,1,36)" rx="2" ry="2" />
<text x="222.74" y="383.5" ></text>
</g>
<g >
<title>RlistAppendRval (5 samples, 0.02%)</title><rect x="14.2" y="565" width="0.3" height="15.0" fill="rgb(212,121,39)" rx="2" ry="2" />
<text x="17.24" y="575.5" ></text>
</g>
<g >
<title>__cpuidle_text_start (18,517 samples, 75.66%)</title><rect x="291.0" y="485" width="892.8" height="15.0" fill="rgb(247,10,27)" rx="2" ry="2" />
<text x="293.96" y="495.5" >__cpuidle_text_start</text>
</g>
<g >
<title>ata_scsi_queuecmd (14 samples, 0.06%)</title><rect x="196.7" y="197" width="0.7" height="15.0" fill="rgb(228,103,13)" rx="2" ry="2" />
<text x="199.69" y="207.5" ></text>
</g>
<g >
<title>malloc (12 samples, 0.05%)</title><rect x="171.5" y="549" width="0.6" height="15.0" fill="rgb(238,28,20)" rx="2" ry="2" />
<text x="174.48" y="559.5" ></text>
</g>
<g >
<title>do_idle (18,556 samples, 75.82%)</title><rect x="290.5" y="517" width="894.7" height="15.0" fill="rgb(250,152,29)" rx="2" ry="2" />
<text x="293.52" y="527.5" >do_idle</text>
</g>
<g >
<title>scsi_queue_rq (3 samples, 0.01%)</title><rect x="173.8" y="69" width="0.1" height="15.0" fill="rgb(209,53,53)" rx="2" ry="2" />
<text x="176.79" y="79.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.04%)</title><rect x="172.7" y="501" width="0.5" height="15.0" fill="rgb(246,105,40)" rx="2" ry="2" />
<text x="175.68" y="511.5" ></text>
</g>
<g >
<title>do_dentry_open (3 samples, 0.01%)</title><rect x="172.9" y="437" width="0.1" height="15.0" fill="rgb(226,185,38)" rx="2" ry="2" />
<text x="175.88" y="447.5" ></text>
</g>
<g >
<title>do_futex (7 samples, 0.03%)</title><rect x="1189.5" y="501" width="0.3" height="15.0" fill="rgb(206,114,46)" rx="2" ry="2" />
<text x="1192.47" y="511.5" ></text>
</g>
<g >
<title>scsi_queue_rq (14 samples, 0.06%)</title><rect x="196.7" y="213" width="0.7" height="15.0" fill="rgb(226,24,33)" rx="2" ry="2" />
<text x="199.69" y="223.5" ></text>
</g>
<g >
<title>run_timer_softirq (3 samples, 0.01%)</title><rect x="1182.7" y="389" width="0.2" height="15.0" fill="rgb(233,135,41)" rx="2" ry="2" />
<text x="1185.72" y="399.5" ></text>
</g>
<g >
<title>_xfs_buf_ioapply (4 samples, 0.02%)</title><rect x="173.8" y="245" width="0.2" height="15.0" fill="rgb(232,12,3)" rx="2" ry="2" />
<text x="176.79" y="255.5" ></text>
</g>
<g >
<title>kthread (46 samples, 0.19%)</title><rect x="209.7" y="549" width="2.2" height="15.0" fill="rgb(241,199,9)" rx="2" ry="2" />
<text x="212.66" y="559.5" ></text>
</g>
<g >
<title>kworker/0:1-eve (3 samples, 0.01%)</title><rect x="211.9" y="581" width="0.1" height="15.0" fill="rgb(244,125,26)" rx="2" ry="2" />
<text x="214.88" y="591.5" ></text>
</g>
<g >
<title>page_fault (5 samples, 0.02%)</title><rect x="28.3" y="549" width="0.3" height="15.0" fill="rgb(226,52,32)" rx="2" ry="2" />
<text x="31.32" y="559.5" ></text>
</g>
<g >
<title>__GI___execve (11 samples, 0.04%)</title><rect x="216.9" y="565" width="0.5" height="15.0" fill="rgb(223,193,22)" rx="2" ry="2" />
<text x="219.90" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="217.6" y="533" width="0.4" height="15.0" fill="rgb(243,138,14)" rx="2" ry="2" />
<text x="220.62" y="543.5" ></text>
</g>
<g >
<title>_dl_map_object_from_fd (4 samples, 0.02%)</title><rect x="215.3" y="549" width="0.2" height="15.0" fill="rgb(239,204,42)" rx="2" ry="2" />
<text x="218.26" y="559.5" ></text>
</g>
<g >
<title>[libpromises.so.3.0.6] (4 samples, 0.02%)</title><rect x="46.6" y="533" width="0.2" height="15.0" fill="rgb(237,66,25)" rx="2" ry="2" />
<text x="49.60" y="543.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (3 samples, 0.01%)</title><rect x="219.9" y="133" width="0.1" height="15.0" fill="rgb(207,196,23)" rx="2" ry="2" />
<text x="222.89" y="143.5" ></text>
</g>
<g >
<title>EvalContextVariableGet (3 samples, 0.01%)</title><rect x="29.5" y="549" width="0.2" height="15.0" fill="rgb(236,186,32)" rx="2" ry="2" />
<text x="32.53" y="559.5" ></text>
</g>
<g >
<title>_do_fork (14 samples, 0.06%)</title><rect x="177.4" y="517" width="0.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="180.41" y="527.5" ></text>
</g>
<g >
<title>vfprintf (17 samples, 0.07%)</title><rect x="182.9" y="549" width="0.8" height="15.0" fill="rgb(235,226,1)" rx="2" ry="2" />
<text x="185.90" y="559.5" ></text>
</g>
<g >
<title>xfs_file_read_iter (22 samples, 0.09%)</title><rect x="196.5" y="469" width="1.1" height="15.0" fill="rgb(213,204,54)" rx="2" ry="2" />
<text x="199.55" y="479.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (8 samples, 0.03%)</title><rect x="289.4" y="437" width="0.4" height="15.0" fill="rgb(230,102,47)" rx="2" ry="2" />
<text x="292.41" y="447.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1189.8" y="533" width="0.2" height="15.0" fill="rgb(254,70,6)" rx="2" ry="2" />
<text x="1192.81" y="543.5" ></text>
</g>
<g >
<title>__handle_mm_fault (7 samples, 0.03%)</title><rect x="187.9" y="485" width="0.3" height="15.0" fill="rgb(227,91,10)" rx="2" ry="2" />
<text x="190.87" y="495.5" ></text>
</g>
<g >
<title>__libc_send (3 samples, 0.01%)</title><rect x="1189.3" y="565" width="0.1" height="15.0" fill="rgb(234,172,15)" rx="2" ry="2" />
<text x="1192.28" y="575.5" ></text>
</g>
<g >
<title>handle_mm_fault (6 samples, 0.02%)</title><rect x="220.7" y="485" width="0.2" height="15.0" fill="rgb(210,191,8)" rx="2" ry="2" />
<text x="223.66" y="495.5" ></text>
</g>
<g >
<title>__lxstat64 (3 samples, 0.01%)</title><rect x="30.4" y="533" width="0.1" height="15.0" fill="rgb(235,185,25)" rx="2" ry="2" />
<text x="33.40" y="543.5" ></text>
</g>
<g >
<title>generic_file_buffered_read (22 samples, 0.09%)</title><rect x="196.5" y="437" width="1.1" height="15.0" fill="rgb(244,155,11)" rx="2" ry="2" />
<text x="199.55" y="447.5" ></text>
</g>
<g >
<title>__strlen_avx2 (27 samples, 0.11%)</title><rect x="166.6" y="549" width="1.3" height="15.0" fill="rgb(230,109,0)" rx="2" ry="2" />
<text x="169.61" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (21 samples, 0.09%)</title><rect x="175.4" y="549" width="1.0" height="15.0" fill="rgb(254,51,54)" rx="2" ry="2" />
<text x="178.43" y="559.5" ></text>
</g>
<g >
<title>handle_mm_fault (4 samples, 0.02%)</title><rect x="28.4" y="501" width="0.2" height="15.0" fill="rgb(243,153,14)" rx="2" ry="2" />
<text x="31.37" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_execve (7 samples, 0.03%)</title><rect x="213.0" y="517" width="0.4" height="15.0" fill="rgb(212,117,12)" rx="2" ry="2" />
<text x="216.04" y="527.5" ></text>
</g>
<g >
<title>ret_from_fork (4 samples, 0.02%)</title><rect x="212.5" y="565" width="0.2" height="15.0" fill="rgb(221,122,22)" rx="2" ry="2" />
<text x="215.51" y="575.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3 samples, 0.01%)</title><rect x="210.9" y="357" width="0.2" height="15.0" fill="rgb(224,53,37)" rx="2" ry="2" />
<text x="213.92" y="367.5" ></text>
</g>
<g >
<title>malloc_consolidate (71 samples, 0.29%)</title><rect x="192.7" y="565" width="3.4" height="15.0" fill="rgb(236,84,23)" rx="2" ry="2" />
<text x="195.69" y="575.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (3 samples, 0.01%)</title><rect x="173.8" y="85" width="0.1" height="15.0" fill="rgb(230,106,49)" rx="2" ry="2" />
<text x="176.79" y="95.5" ></text>
</g>
<g >
<title>smpboot_thread_fn (10 samples, 0.04%)</title><rect x="209.1" y="533" width="0.5" height="15.0" fill="rgb(222,156,34)" rx="2" ry="2" />
<text x="212.09" y="543.5" ></text>
</g>
<g >
<title>ConcurrentG1RefineThread::run_young_rs_sampling (7 samples, 0.03%)</title><rect x="208.7" y="517" width="0.3" height="15.0" fill="rgb(252,36,18)" rx="2" ry="2" />
<text x="211.70" y="527.5" ></text>
</g>
<g >
<title>default_idle_call (18,524 samples, 75.69%)</title><rect x="290.7" y="501" width="893.1" height="15.0" fill="rgb(232,28,31)" rx="2" ry="2" />
<text x="293.67" y="511.5" >default_idle_call</text>
</g>
<g >
<title>path_openat (8 samples, 0.03%)</title><rect x="172.7" y="453" width="0.4" height="15.0" fill="rgb(208,228,48)" rx="2" ry="2" />
<text x="175.73" y="463.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (3 samples, 0.01%)</title><rect x="173.4" y="485" width="0.1" height="15.0" fill="rgb(215,208,39)" rx="2" ry="2" />
<text x="176.36" y="495.5" ></text>
</g>
<g >
<title>__fxstatat64 (12 samples, 0.05%)</title><rect x="173.6" y="533" width="0.5" height="15.0" fill="rgb(213,93,41)" rx="2" ry="2" />
<text x="176.55" y="543.5" ></text>
</g>
<g >
<title>rcu_core (10 samples, 0.04%)</title><rect x="209.1" y="485" width="0.5" height="15.0" fill="rgb(230,40,34)" rx="2" ry="2" />
<text x="212.09" y="495.5" ></text>
</g>
<g >
<title>IsCf3VarString (7 samples, 0.03%)</title><rect x="13.1" y="565" width="0.3" height="15.0" fill="rgb(240,80,49)" rx="2" ry="2" />
<text x="16.09" y="575.5" ></text>
</g>
</g>
</svg>
(3-3/4)