Project

General

Profile

Enhancement #19976 » perf7.svg

node centos7 - Nicolas CHARLES, 2021-09-17 14:47

 
<?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="710" onload="init(evt)" viewBox="0 0 1200 710" 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="710.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="693" > </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="693" > </text>
<g id="frames">
<g >
<title>[unknown] (59 samples, 56.19%)</title><rect x="313.4" y="629" width="663.1" height="15.0" fill="rgb(237,154,9)" rx="2" ry="2" />
<text x="316.43" y="639.5" >[unknown]</text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.95%)</title><rect x="223.5" y="565" width="11.3" height="15.0" fill="rgb(214,213,53)" rx="2" ry="2" />
<text x="226.52" y="575.5" ></text>
</g>
<g >
<title>start_kernel (1 samples, 0.95%)</title><rect x="1167.5" y="581" width="11.3" height="15.0" fill="rgb(246,131,34)" rx="2" ry="2" />
<text x="1170.52" y="591.5" ></text>
</g>
<g >
<title>kworker/u2:0 (4 samples, 3.81%)</title><rect x="1088.9" y="645" width="44.9" height="15.0" fill="rgb(235,25,18)" rx="2" ry="2" />
<text x="1091.86" y="655.5" >kwor..</text>
</g>
<g >
<title>avtab_search_node (1 samples, 0.95%)</title><rect x="605.6" y="405" width="11.3" height="15.0" fill="rgb(225,67,19)" rx="2" ry="2" />
<text x="608.62" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_open (1 samples, 0.95%)</title><rect x="594.4" y="597" width="11.2" height="15.0" fill="rgb(237,204,26)" rx="2" ry="2" />
<text x="597.38" y="607.5" ></text>
</g>
<g >
<title>seq_vprintf (1 samples, 0.95%)</title><rect x="583.1" y="485" width="11.3" height="15.0" fill="rgb(211,27,53)" rx="2" ry="2" />
<text x="586.14" y="495.5" ></text>
</g>
<g >
<title>ret_from_fork_nospec_end (2 samples, 1.90%)</title><rect x="1066.4" y="629" width="22.5" height="15.0" fill="rgb(248,73,19)" rx="2" ry="2" />
<text x="1069.38" y="639.5" >r..</text>
</g>
<g >
<title>clear_user (1 samples, 0.95%)</title><rect x="1043.9" y="517" width="11.2" height="15.0" fill="rgb(240,217,42)" rx="2" ry="2" />
<text x="1046.90" y="527.5" ></text>
</g>
<g >
<title>x86_64_start_reservations (1 samples, 0.95%)</title><rect x="1167.5" y="597" width="11.3" height="15.0" fill="rgb(212,99,29)" rx="2" ry="2" />
<text x="1170.52" y="607.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.95%)</title><rect x="1167.5" y="501" width="11.3" height="15.0" fill="rgb(244,164,2)" rx="2" ry="2" />
<text x="1170.52" y="511.5" ></text>
</g>
<g >
<title>xfsaild/dm-0 (1 samples, 0.95%)</title><rect x="1178.8" y="645" width="11.2" height="15.0" fill="rgb(239,29,17)" rx="2" ry="2" />
<text x="1181.76" y="655.5" ></text>
</g>
<g >
<title>xsnprintf@plt (1 samples, 0.95%)</title><rect x="335.9" y="597" width="11.2" height="15.0" fill="rgb(215,172,21)" rx="2" ry="2" />
<text x="338.90" y="607.5" ></text>
</g>
<g >
<title>meminfo_proc_show (1 samples, 0.95%)</title><rect x="583.1" y="517" width="11.3" height="15.0" fill="rgb(252,89,53)" rx="2" ry="2" />
<text x="586.14" y="527.5" ></text>
</g>
<g >
<title>kthread (2 samples, 1.90%)</title><rect x="1066.4" y="613" width="22.5" height="15.0" fill="rgb(222,164,11)" rx="2" ry="2" />
<text x="1069.38" y="623.5" >k..</text>
</g>
<g >
<title>shrink_slab (1 samples, 0.95%)</title><rect x="1055.1" y="565" width="11.3" height="15.0" fill="rgb(212,139,8)" rx="2" ry="2" />
<text x="1058.14" y="575.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.95%)</title><rect x="302.2" y="517" width="11.2" height="15.0" fill="rgb(230,130,47)" rx="2" ry="2" />
<text x="305.19" y="527.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="1167.5" y="229" width="11.3" height="15.0" fill="rgb(217,93,0)" rx="2" ry="2" />
<text x="1170.52" y="239.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.95%)</title><rect x="302.2" y="549" width="11.2" height="15.0" fill="rgb(220,54,46)" rx="2" ry="2" />
<text x="305.19" y="559.5" ></text>
</g>
<g >
<title>e1000_watchdog (1 samples, 0.95%)</title><rect x="1077.6" y="565" width="11.3" height="15.0" fill="rgb(230,18,27)" rx="2" ry="2" />
<text x="1080.62" y="575.5" ></text>
</g>
<g >
<title>kswapd0 (1 samples, 0.95%)</title><rect x="1055.1" y="645" width="11.3" height="15.0" fill="rgb(224,58,27)" rx="2" ry="2" />
<text x="1058.14" y="655.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.95%)</title><rect x="965.2" y="597" width="11.3" height="15.0" fill="rgb(253,101,43)" rx="2" ry="2" />
<text x="968.24" y="607.5" ></text>
</g>
<g >
<title>scsi_finish_command (1 samples, 0.95%)</title><rect x="21.2" y="485" width="11.3" height="15.0" fill="rgb(217,62,33)" rx="2" ry="2" />
<text x="24.24" y="495.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.95%)</title><rect x="965.2" y="533" width="11.3" height="15.0" fill="rgb(248,27,0)" rx="2" ry="2" />
<text x="968.24" y="543.5" ></text>
</g>
<g >
<title>blk_run_queue (1 samples, 0.95%)</title><rect x="1055.1" y="245" width="11.3" height="15.0" fill="rgb(213,16,32)" rx="2" ry="2" />
<text x="1058.14" y="255.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.95%)</title><rect x="1100.1" y="245" width="11.2" height="15.0" fill="rgb(226,1,18)" rx="2" ry="2" />
<text x="1103.10" y="255.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.95%)</title><rect x="1167.5" y="469" width="11.3" height="15.0" fill="rgb(253,225,22)" rx="2" ry="2" />
<text x="1170.52" y="479.5" ></text>
</g>
<g >
<title>scsi_finish_command (1 samples, 0.95%)</title><rect x="1100.1" y="197" width="11.2" height="15.0" fill="rgb(213,33,53)" rx="2" ry="2" />
<text x="1103.10" y="207.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.95%)</title><rect x="1100.1" y="261" width="11.2" height="15.0" fill="rgb(248,69,1)" rx="2" ry="2" />
<text x="1103.10" y="271.5" ></text>
</g>
<g >
<title>blk_run_queue (1 samples, 0.95%)</title><rect x="10.0" y="405" width="11.2" height="15.0" fill="rgb(217,149,32)" rx="2" ry="2" />
<text x="13.00" y="415.5" ></text>
</g>
<g >
<title>create_elf_tables (1 samples, 0.95%)</title><rect x="1032.7" y="533" width="11.2" height="15.0" fill="rgb(229,194,42)" rx="2" ry="2" />
<text x="1035.67" y="543.5" ></text>
</g>
<g >
<title>vfs_read (1 samples, 0.95%)</title><rect x="583.1" y="565" width="11.3" height="15.0" fill="rgb(254,199,5)" rx="2" ry="2" />
<text x="586.14" y="575.5" ></text>
</g>
<g >
<title>process_one_work (4 samples, 3.81%)</title><rect x="1088.9" y="581" width="44.9" height="15.0" fill="rgb(211,123,1)" rx="2" ry="2" />
<text x="1091.86" y="591.5" >proc..</text>
</g>
<g >
<title>scsi_finish_command (1 samples, 0.95%)</title><rect x="448.3" y="437" width="11.2" height="15.0" fill="rgb(228,43,35)" rx="2" ry="2" />
<text x="451.29" y="447.5" ></text>
</g>
<g >
<title>scsi_finish_command (1 samples, 0.95%)</title><rect x="302.2" y="437" width="11.2" height="15.0" fill="rgb(244,162,44)" rx="2" ry="2" />
<text x="305.19" y="447.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.95%)</title><rect x="448.3" y="533" width="11.2" height="15.0" fill="rgb(248,9,21)" rx="2" ry="2" />
<text x="451.29" y="543.5" ></text>
</g>
<g >
<title>do_mmap (1 samples, 0.95%)</title><rect x="1145.0" y="549" width="11.3" height="15.0" fill="rgb(208,173,6)" rx="2" ry="2" />
<text x="1148.05" y="559.5" ></text>
</g>
<g >
<title>scsi_run_queue (1 samples, 0.95%)</title><rect x="1088.9" y="245" width="11.2" height="15.0" fill="rgb(245,77,21)" rx="2" ry="2" />
<text x="1091.86" y="255.5" ></text>
</g>
<g >
<title>do_page_fault (1 samples, 0.95%)</title><rect x="650.6" y="581" width="11.2" height="15.0" fill="rgb(206,21,37)" rx="2" ry="2" />
<text x="653.57" y="591.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="21.2" y="357" width="11.3" height="15.0" fill="rgb(239,4,53)" rx="2" ry="2" />
<text x="24.24" y="367.5" ></text>
</g>
<g >
<title>xfs_bmap_alloc (1 samples, 0.95%)</title><rect x="1111.3" y="373" width="11.3" height="15.0" fill="rgb(205,46,41)" rx="2" ry="2" />
<text x="1114.33" y="383.5" ></text>
</g>
<g >
<title>__xfs_filemap_fault (1 samples, 0.95%)</title><rect x="1043.9" y="389" width="11.2" height="15.0" fill="rgb(211,120,9)" rx="2" ry="2" />
<text x="1046.90" y="399.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="1167.5" y="261" width="11.3" height="15.0" fill="rgb(252,46,51)" rx="2" ry="2" />
<text x="1170.52" y="271.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (1 samples, 0.95%)</title><rect x="1145.0" y="565" width="11.3" height="15.0" fill="rgb(205,58,45)" rx="2" ry="2" />
<text x="1148.05" y="575.5" ></text>
</g>
<g >
<title>__writeback_inodes_wb (4 samples, 3.81%)</title><rect x="1088.9" y="533" width="44.9" height="15.0" fill="rgb(244,228,32)" rx="2" ry="2" />
<text x="1091.86" y="543.5" >__wr..</text>
</g>
<g >
<title>_int_malloc (1 samples, 0.95%)</title><rect x="1021.4" y="629" width="11.3" height="15.0" fill="rgb(244,201,45)" rx="2" ry="2" />
<text x="1024.43" y="639.5" ></text>
</g>
<g >
<title>scsi_end_request (1 samples, 0.95%)</title><rect x="965.2" y="437" width="11.3" height="15.0" fill="rgb(208,203,47)" rx="2" ry="2" />
<text x="968.24" y="447.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="1088.9" y="165" width="11.2" height="15.0" fill="rgb(241,68,41)" rx="2" ry="2" />
<text x="1091.86" y="175.5" ></text>
</g>
<g >
<title>blk_done_softirq (1 samples, 0.95%)</title><rect x="21.2" y="517" width="11.3" height="15.0" fill="rgb(238,124,40)" rx="2" ry="2" />
<text x="24.24" y="527.5" ></text>
</g>
<g >
<title>generic_make_request (1 samples, 0.95%)</title><rect x="1178.8" y="501" width="11.2" height="15.0" fill="rgb(206,71,44)" rx="2" ry="2" />
<text x="1181.76" y="511.5" ></text>
</g>
<g >
<title>xfs_do_writepage (2 samples, 1.90%)</title><rect x="1100.1" y="437" width="22.5" height="15.0" fill="rgb(250,196,33)" rx="2" ry="2" />
<text x="1103.10" y="447.5" >x..</text>
</g>
<g >
<title>do_softirq (1 samples, 0.95%)</title><rect x="448.3" y="517" width="11.2" height="15.0" fill="rgb(244,14,35)" rx="2" ry="2" />
<text x="451.29" y="527.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="448.3" y="309" width="11.2" height="15.0" fill="rgb(235,4,25)" rx="2" ry="2" />
<text x="451.29" y="319.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="10.0" y="341" width="11.2" height="15.0" fill="rgb(229,93,46)" rx="2" ry="2" />
<text x="13.00" y="351.5" ></text>
</g>
<g >
<title>scsi_io_completion (1 samples, 0.95%)</title><rect x="1088.9" y="293" width="11.2" height="15.0" fill="rgb(222,64,40)" rx="2" ry="2" />
<text x="1091.86" y="303.5" ></text>
</g>
<g >
<title>scsi_next_command (1 samples, 0.95%)</title><rect x="21.2" y="437" width="11.3" height="15.0" fill="rgb(227,4,0)" rx="2" ry="2" />
<text x="24.24" y="447.5" ></text>
</g>
<g >
<title>format_decode (1 samples, 0.95%)</title><rect x="583.1" y="453" width="11.3" height="15.0" fill="rgb(218,94,52)" rx="2" ry="2" />
<text x="586.14" y="463.5" ></text>
</g>
<g >
<title>[libc-2.17.so] (22 samples, 20.95%)</title><rect x="66.2" y="629" width="247.2" height="15.0" fill="rgb(246,153,28)" rx="2" ry="2" />
<text x="69.19" y="639.5" >[libc-2.17.so]</text>
</g>
<g >
<title>scsi_end_request (1 samples, 0.95%)</title><rect x="1167.5" y="341" width="11.3" height="15.0" fill="rgb(239,227,45)" rx="2" ry="2" />
<text x="1170.52" y="351.5" ></text>
</g>
<g >
<title>blk_run_queue (1 samples, 0.95%)</title><rect x="448.3" y="357" width="11.2" height="15.0" fill="rgb(254,199,18)" rx="2" ry="2" />
<text x="451.29" y="367.5" ></text>
</g>
<g >
<title>mutex_lock (1 samples, 0.95%)</title><rect x="1145.0" y="453" width="11.3" height="15.0" fill="rgb(252,48,25)" rx="2" ry="2" />
<text x="1148.05" y="463.5" ></text>
</g>
<g >
<title>arch_cpu_idle (1 samples, 0.95%)</title><rect x="1167.5" y="533" width="11.3" height="15.0" fill="rgb(238,97,44)" rx="2" ry="2" />
<text x="1170.52" y="543.5" ></text>
</g>
<g >
<title>handle_mm_fault (1 samples, 0.95%)</title><rect x="1043.9" y="453" width="11.2" height="15.0" fill="rgb(225,141,31)" rx="2" ry="2" />
<text x="1046.90" y="463.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.95%)</title><rect x="21.2" y="533" width="11.3" height="15.0" fill="rgb(223,159,35)" rx="2" ry="2" />
<text x="24.24" y="543.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="1055.1" y="181" width="11.3" height="15.0" fill="rgb(235,156,21)" rx="2" ry="2" />
<text x="1058.14" y="191.5" ></text>
</g>
<g >
<title>vfprintf (1 samples, 0.95%)</title><rect x="999.0" y="597" width="11.2" height="15.0" fill="rgb(252,107,53)" rx="2" ry="2" />
<text x="1001.95" y="607.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 0.95%)</title><rect x="1055.1" y="341" width="11.3" height="15.0" fill="rgb(219,114,15)" rx="2" ry="2" />
<text x="1058.14" y="351.5" ></text>
</g>
<g >
<title>clear_user (1 samples, 0.95%)</title><rect x="1133.8" y="517" width="11.2" height="15.0" fill="rgb(237,106,54)" rx="2" ry="2" />
<text x="1136.81" y="527.5" ></text>
</g>
<g >
<title>load_elf_binary (2 samples, 1.90%)</title><rect x="1032.7" y="549" width="22.4" height="15.0" fill="rgb(206,123,42)" rx="2" ry="2" />
<text x="1035.67" y="559.5" >l..</text>
</g>
<g >
<title>blk_flush_plug_list (1 samples, 0.95%)</title><rect x="1133.8" y="309" width="11.2" height="15.0" fill="rgb(248,182,7)" rx="2" ry="2" />
<text x="1136.81" y="319.5" ></text>
</g>
<g >
<title>__execve (2 samples, 1.90%)</title><rect x="1032.7" y="629" width="22.4" height="15.0" fill="rgb(224,67,16)" rx="2" ry="2" />
<text x="1035.67" y="639.5" >_..</text>
</g>
<g >
<title>blk_flush_plug_list (1 samples, 0.95%)</title><rect x="1043.9" y="309" width="11.2" height="15.0" fill="rgb(246,181,7)" rx="2" ry="2" />
<text x="1046.90" y="319.5" ></text>
</g>
<g >
<title>submit_bio (1 samples, 0.95%)</title><rect x="1122.6" y="437" width="11.2" height="15.0" fill="rgb(216,195,31)" rx="2" ry="2" />
<text x="1125.57" y="447.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="10.0" y="373" width="11.2" height="15.0" fill="rgb(205,150,3)" rx="2" ry="2" />
<text x="13.00" y="383.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.95%)</title><rect x="1100.1" y="309" width="11.2" height="15.0" fill="rgb(231,77,36)" rx="2" ry="2" />
<text x="1103.10" y="319.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.95%)</title><rect x="1055.1" y="389" width="11.3" height="15.0" fill="rgb(242,204,52)" rx="2" ry="2" />
<text x="1058.14" y="399.5" ></text>
</g>
<g >
<title>do_page_fault (1 samples, 0.95%)</title><rect x="369.6" y="565" width="11.3" height="15.0" fill="rgb(208,12,52)" rx="2" ry="2" />
<text x="372.62" y="575.5" ></text>
</g>
<g >
<title>page_fault (1 samples, 0.95%)</title><rect x="1043.9" y="501" width="11.2" height="15.0" fill="rgb(246,94,25)" rx="2" ry="2" />
<text x="1046.90" y="511.5" ></text>
</g>
<g >
<title>cf-promises (91 samples, 86.67%)</title><rect x="10.0" y="645" width="1022.7" height="15.0" fill="rgb(230,1,35)" rx="2" ry="2" />
<text x="13.00" y="655.5" >cf-promises</text>
</g>
<g >
<title>proc_reg_read (1 samples, 0.95%)</title><rect x="583.1" y="549" width="11.3" height="15.0" fill="rgb(234,199,47)" rx="2" ry="2" />
<text x="586.14" y="559.5" ></text>
</g>
<g >
<title>shrink_dentry_list (1 samples, 0.95%)</title><rect x="1055.1" y="501" width="11.3" height="15.0" fill="rgb(231,69,24)" rx="2" ry="2" />
<text x="1058.14" y="511.5" ></text>
</g>
<g >
<title>__fopen_internal (1 samples, 0.95%)</title><rect x="594.4" y="613" width="11.2" height="15.0" fill="rgb(237,171,32)" rx="2" ry="2" />
<text x="597.38" y="623.5" ></text>
</g>
<g >
<title>scsi_io_completion (1 samples, 0.95%)</title><rect x="1100.1" y="181" width="11.2" height="15.0" fill="rgb(232,143,50)" rx="2" ry="2" />
<text x="1103.10" y="191.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="1055.1" y="213" width="11.3" height="15.0" fill="rgb(236,88,47)" rx="2" ry="2" />
<text x="1058.14" y="223.5" ></text>
</g>
<g >
<title>yylex (14 samples, 13.33%)</title><rect x="819.1" y="613" width="157.4" height="15.0" fill="rgb(232,86,23)" rx="2" ry="2" />
<text x="822.14" y="623.5" >yylex</text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="965.2" y="373" width="11.3" height="15.0" fill="rgb(229,192,43)" rx="2" ry="2" />
<text x="968.24" y="383.5" ></text>
</g>
<g >
<title>lookup_fast (1 samples, 0.95%)</title><rect x="594.4" y="485" width="11.2" height="15.0" fill="rgb(236,206,53)" rx="2" ry="2" />
<text x="597.38" y="495.5" ></text>
</g>
<g >
<title>scsi_next_command (1 samples, 0.95%)</title><rect x="1100.1" y="149" width="11.2" height="15.0" fill="rgb(205,138,7)" rx="2" ry="2" />
<text x="1103.10" y="159.5" ></text>
</g>
<g >
<title>do_writepages (4 samples, 3.81%)</title><rect x="1088.9" y="485" width="44.9" height="15.0" fill="rgb(243,92,44)" rx="2" ry="2" />
<text x="1091.86" y="495.5" >do_w..</text>
</g>
<g >
<title>call_softirq (1 samples, 0.95%)</title><rect x="302.2" y="501" width="11.2" height="15.0" fill="rgb(211,67,5)" rx="2" ry="2" />
<text x="305.19" y="511.5" ></text>
</g>
<g >
<title>bio_alloc_bioset (1 samples, 0.95%)</title><rect x="1100.1" y="405" width="11.2" height="15.0" fill="rgb(241,212,46)" rx="2" ry="2" />
<text x="1103.10" y="415.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.95%)</title><rect x="1088.9" y="389" width="11.2" height="15.0" fill="rgb(220,165,12)" rx="2" ry="2" />
<text x="1091.86" y="399.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (1 samples, 0.95%)</title><rect x="987.7" y="629" width="11.3" height="15.0" fill="rgb(227,3,7)" rx="2" ry="2" />
<text x="990.71" y="639.5" ></text>
</g>
<g >
<title>__lxstat64 (1 samples, 0.95%)</title><rect x="605.6" y="613" width="11.3" height="15.0" fill="rgb(241,53,13)" rx="2" ry="2" />
<text x="608.62" y="623.5" ></text>
</g>
<g >
<title>SYSC_newlstat (1 samples, 0.95%)</title><rect x="605.6" y="565" width="11.3" height="15.0" fill="rgb(229,41,29)" rx="2" ry="2" />
<text x="608.62" y="575.5" ></text>
</g>
<g >
<title>blk_done_softirq (1 samples, 0.95%)</title><rect x="965.2" y="501" width="11.3" height="15.0" fill="rgb(211,138,45)" rx="2" ry="2" />
<text x="968.24" y="511.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="1088.9" y="181" width="11.2" height="15.0" fill="rgb(215,53,47)" rx="2" ry="2" />
<text x="1091.86" y="191.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="1178.8" y="405" width="11.2" height="15.0" fill="rgb(235,131,54)" rx="2" ry="2" />
<text x="1181.76" y="415.5" ></text>
</g>
<g >
<title>worker_thread (2 samples, 1.90%)</title><rect x="1066.4" y="597" width="22.5" height="15.0" fill="rgb(211,144,30)" rx="2" ry="2" />
<text x="1069.38" y="607.5" >w..</text>
</g>
<g >
<title>__do_softirq (1 samples, 0.95%)</title><rect x="965.2" y="517" width="11.3" height="15.0" fill="rgb(211,143,16)" rx="2" ry="2" />
<text x="968.24" y="527.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (7 samples, 6.67%)</title><rect x="234.8" y="581" width="78.6" height="15.0" fill="rgb(228,212,4)" rx="2" ry="2" />
<text x="237.76" y="591.5" >__strcmp_..</text>
</g>
<g >
<title>scsi_io_completion (1 samples, 0.95%)</title><rect x="21.2" y="469" width="11.3" height="15.0" fill="rgb(218,29,38)" rx="2" ry="2" />
<text x="24.24" y="479.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.95%)</title><rect x="21.2" y="565" width="11.3" height="15.0" fill="rgb(226,128,15)" rx="2" ry="2" />
<text x="24.24" y="575.5" ></text>
</g>
<g >
<title>xfs_buf_delwri_submit_buffers (1 samples, 0.95%)</title><rect x="1178.8" y="565" width="11.2" height="15.0" fill="rgb(214,198,31)" rx="2" ry="2" />
<text x="1181.76" y="575.5" ></text>
</g>
<g >
<title>mmap_region (1 samples, 0.95%)</title><rect x="1145.0" y="533" width="11.3" height="15.0" fill="rgb(231,161,22)" rx="2" ry="2" />
<text x="1148.05" y="543.5" ></text>
</g>
<g >
<title>VariableTableIteratorNext (1 samples, 0.95%)</title><rect x="448.3" y="581" width="11.2" height="15.0" fill="rgb(227,169,2)" rx="2" ry="2" />
<text x="451.29" y="591.5" ></text>
</g>
<g >
<title>ret_from_fork_nospec_end (1 samples, 0.95%)</title><rect x="1178.8" y="629" width="11.2" height="15.0" fill="rgb(241,0,15)" rx="2" ry="2" />
<text x="1181.76" y="639.5" ></text>
</g>
<g >
<title>page_fault (1 samples, 0.95%)</title><rect x="1133.8" y="501" width="11.2" height="15.0" fill="rgb(225,112,29)" rx="2" ry="2" />
<text x="1136.81" y="511.5" ></text>
</g>
<g >
<title>do_cow_fault (1 samples, 0.95%)</title><rect x="1043.9" y="437" width="11.2" height="15.0" fill="rgb(237,45,43)" rx="2" ry="2" />
<text x="1046.90" y="447.5" ></text>
</g>
<g >
<title>do_munmap (1 samples, 0.95%)</title><rect x="1145.0" y="517" width="11.3" height="15.0" fill="rgb(212,190,42)" rx="2" ry="2" />
<text x="1148.05" y="527.5" ></text>
</g>
<g >
<title>vfs_fstatat (1 samples, 0.95%)</title><rect x="605.6" y="549" width="11.3" height="15.0" fill="rgb(242,138,15)" rx="2" ry="2" />
<text x="608.62" y="559.5" ></text>
</g>
<g >
<title>xfs_btree_insrec (1 samples, 0.95%)</title><rect x="1111.3" y="261" width="11.3" height="15.0" fill="rgb(221,190,13)" rx="2" ry="2" />
<text x="1114.33" y="271.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.95%)</title><rect x="1167.5" y="421" width="11.3" height="15.0" fill="rgb(236,207,18)" rx="2" ry="2" />
<text x="1170.52" y="431.5" ></text>
</g>
<g >
<title>xfs_bmap_btalloc (1 samples, 0.95%)</title><rect x="1111.3" y="357" width="11.3" height="15.0" fill="rgb(207,126,13)" rx="2" ry="2" />
<text x="1114.33" y="367.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="448.3" y="341" width="11.2" height="15.0" fill="rgb(210,147,41)" rx="2" ry="2" />
<text x="451.29" y="351.5" ></text>
</g>
<g >
<title>free_pgtables (1 samples, 0.95%)</title><rect x="1145.0" y="485" width="11.3" height="15.0" fill="rgb(221,178,52)" rx="2" ry="2" />
<text x="1148.05" y="495.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="10.0" y="357" width="11.2" height="15.0" fill="rgb(231,148,5)" rx="2" ry="2" />
<text x="13.00" y="367.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="223.5" y="341" width="11.3" height="15.0" fill="rgb(229,114,20)" rx="2" ry="2" />
<text x="226.52" y="351.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 0.95%)</title><rect x="302.2" y="453" width="11.2" height="15.0" fill="rgb(214,40,2)" rx="2" ry="2" />
<text x="305.19" y="463.5" ></text>
</g>
<g >
<title>start_cpu (1 samples, 0.95%)</title><rect x="1167.5" y="629" width="11.3" height="15.0" fill="rgb(218,136,12)" rx="2" ry="2" />
<text x="1170.52" y="639.5" ></text>
</g>
<g >
<title>filename_lookup (1 samples, 0.95%)</title><rect x="807.9" y="485" width="11.2" height="15.0" fill="rgb(254,189,39)" rx="2" ry="2" />
<text x="810.90" y="495.5" ></text>
</g>
<g >
<title>scsi_next_command (1 samples, 0.95%)</title><rect x="302.2" y="389" width="11.2" height="15.0" fill="rgb(254,204,7)" rx="2" ry="2" />
<text x="305.19" y="399.5" ></text>
</g>
<g >
<title>scsi_run_queue (1 samples, 0.95%)</title><rect x="21.2" y="421" width="11.3" height="15.0" fill="rgb(225,197,19)" rx="2" ry="2" />
<text x="24.24" y="431.5" ></text>
</g>
<g >
<title>ret_from_fork_nospec_end (4 samples, 3.81%)</title><rect x="1088.9" y="629" width="44.9" height="15.0" fill="rgb(246,132,51)" rx="2" ry="2" />
<text x="1091.86" y="639.5" >ret_..</text>
</g>
<g >
<title>blk_flush_plug_list (1 samples, 0.95%)</title><rect x="1178.8" y="469" width="11.2" height="15.0" fill="rgb(219,59,28)" rx="2" ry="2" />
<text x="1181.76" y="479.5" ></text>
</g>
<g >
<title>queue_unplugged (1 samples, 0.95%)</title><rect x="1178.8" y="453" width="11.2" height="15.0" fill="rgb(251,147,21)" rx="2" ry="2" />
<text x="1181.76" y="463.5" ></text>
</g>
<g >
<title>blk_done_softirq (1 samples, 0.95%)</title><rect x="1167.5" y="405" width="11.3" height="15.0" fill="rgb(207,129,46)" rx="2" ry="2" />
<text x="1170.52" y="415.5" ></text>
</g>
<g >
<title>scsi_io_completion (1 samples, 0.95%)</title><rect x="1055.1" y="309" width="11.3" height="15.0" fill="rgb(211,143,32)" rx="2" ry="2" />
<text x="1058.14" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="1122.6" y="325" width="11.2" height="15.0" fill="rgb(245,52,24)" rx="2" ry="2" />
<text x="1125.57" y="335.5" ></text>
</g>
<g >
<title>xfs_map_blocks (1 samples, 0.95%)</title><rect x="1111.3" y="421" width="11.3" height="15.0" fill="rgb(229,47,53)" rx="2" ry="2" />
<text x="1114.33" y="431.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="21.2" y="389" width="11.3" height="15.0" fill="rgb(206,127,12)" rx="2" ry="2" />
<text x="24.24" y="399.5" ></text>
</g>
<g >
<title>generic_make_request (1 samples, 0.95%)</title><rect x="1122.6" y="421" width="11.2" height="15.0" fill="rgb(207,165,47)" rx="2" ry="2" />
<text x="1125.57" y="431.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="1088.9" y="197" width="11.2" height="15.0" fill="rgb(227,118,25)" rx="2" ry="2" />
<text x="1091.86" y="207.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (1 samples, 0.95%)</title><rect x="1145.0" y="581" width="11.3" height="15.0" fill="rgb(205,223,51)" rx="2" ry="2" />
<text x="1148.05" y="591.5" ></text>
</g>
<g >
<title>blk_run_queue (1 samples, 0.95%)</title><rect x="1167.5" y="293" width="11.3" height="15.0" fill="rgb(249,218,32)" rx="2" ry="2" />
<text x="1170.52" y="303.5" ></text>
</g>
<g >
<title>search_binary_handler (1 samples, 0.95%)</title><rect x="1133.8" y="565" width="11.2" height="15.0" fill="rgb(239,150,8)" rx="2" ry="2" />
<text x="1136.81" y="575.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="965.2" y="309" width="11.3" height="15.0" fill="rgb(221,34,5)" rx="2" ry="2" />
<text x="968.24" y="319.5" ></text>
</g>
<g >
<title>do_last (1 samples, 0.95%)</title><rect x="594.4" y="501" width="11.2" height="15.0" fill="rgb(213,126,5)" rx="2" ry="2" />
<text x="597.38" y="511.5" ></text>
</g>
<g >
<title>page_fault (1 samples, 0.95%)</title><rect x="369.6" y="581" width="11.3" height="15.0" fill="rgb(227,182,32)" rx="2" ry="2" />
<text x="372.62" y="591.5" ></text>
</g>
<g >
<title>__xfs_filemap_fault (1 samples, 0.95%)</title><rect x="1133.8" y="389" width="11.2" height="15.0" fill="rgb(211,152,26)" rx="2" ry="2" />
<text x="1136.81" y="399.5" ></text>
</g>
<g >
<title>__do_fault.isra.61 (1 samples, 0.95%)</title><rect x="1043.9" y="421" width="11.2" height="15.0" fill="rgb(231,87,44)" rx="2" ry="2" />
<text x="1046.90" y="431.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="1043.9" y="229" width="11.2" height="15.0" fill="rgb(252,106,0)" rx="2" ry="2" />
<text x="1046.90" y="239.5" ></text>
</g>
<g >
<title>rest_init (1 samples, 0.95%)</title><rect x="1167.5" y="565" width="11.3" height="15.0" fill="rgb(243,96,36)" rx="2" ry="2" />
<text x="1170.52" y="575.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.95%)</title><rect x="1167.5" y="485" width="11.3" height="15.0" fill="rgb(252,201,1)" rx="2" ry="2" />
<text x="1170.52" y="495.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="21.2" y="325" width="11.3" height="15.0" fill="rgb(209,108,32)" rx="2" ry="2" />
<text x="24.24" y="335.5" ></text>
</g>
<g >
<title>sys_execve (1 samples, 0.95%)</title><rect x="1133.8" y="597" width="11.2" height="15.0" fill="rgb(217,192,7)" rx="2" ry="2" />
<text x="1136.81" y="607.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="1133.8" y="229" width="11.2" height="15.0" fill="rgb(240,80,38)" rx="2" ry="2" />
<text x="1136.81" y="239.5" ></text>
</g>
<g >
<title>scsi_finish_command (1 samples, 0.95%)</title><rect x="965.2" y="469" width="11.3" height="15.0" fill="rgb(248,196,15)" rx="2" ry="2" />
<text x="968.24" y="479.5" ></text>
</g>
<g >
<title>__do_page_cache_readahead (1 samples, 0.95%)</title><rect x="1133.8" y="341" width="11.2" height="15.0" fill="rgb(249,43,42)" rx="2" ry="2" />
<text x="1136.81" y="351.5" ></text>
</g>
<g >
<title>xfs_alloc_vextent (1 samples, 0.95%)</title><rect x="1111.3" y="341" width="11.3" height="15.0" fill="rgb(209,17,7)" rx="2" ry="2" />
<text x="1114.33" y="351.5" ></text>
</g>
<g >
<title>safe_fopen_create_perms (1 samples, 0.95%)</title><rect x="807.9" y="613" width="11.2" height="15.0" fill="rgb(251,93,8)" rx="2" ry="2" />
<text x="810.90" y="623.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.95%)</title><rect x="650.6" y="613" width="11.2" height="15.0" fill="rgb(233,137,40)" rx="2" ry="2" />
<text x="653.57" y="623.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.95%)</title><rect x="1167.5" y="453" width="11.3" height="15.0" fill="rgb(243,76,40)" rx="2" ry="2" />
<text x="1170.52" y="463.5" ></text>
</g>
<g >
<title>cpu_startup_entry (1 samples, 0.95%)</title><rect x="1167.5" y="549" width="11.3" height="15.0" fill="rgb(207,140,12)" rx="2" ry="2" />
<text x="1170.52" y="559.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="1055.1" y="197" width="11.3" height="15.0" fill="rgb(250,11,16)" rx="2" ry="2" />
<text x="1058.14" y="207.5" ></text>
</g>
<g >
<title>blk_run_queue (1 samples, 0.95%)</title><rect x="21.2" y="405" width="11.3" height="15.0" fill="rgb(236,197,51)" rx="2" ry="2" />
<text x="24.24" y="415.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.95%)</title><rect x="223.5" y="501" width="11.3" height="15.0" fill="rgb(242,208,25)" rx="2" ry="2" />
<text x="226.52" y="511.5" ></text>
</g>
<g >
<title>blk_run_queue (1 samples, 0.95%)</title><rect x="302.2" y="357" width="11.2" height="15.0" fill="rgb(227,109,41)" rx="2" ry="2" />
<text x="305.19" y="367.5" ></text>
</g>
<g >
<title>scsi_end_request (1 samples, 0.95%)</title><rect x="448.3" y="405" width="11.2" height="15.0" fill="rgb(241,53,30)" rx="2" ry="2" />
<text x="451.29" y="415.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="1088.9" y="213" width="11.2" height="15.0" fill="rgb(220,143,49)" rx="2" ry="2" />
<text x="1091.86" y="223.5" ></text>
</g>
<g >
<title>security_compute_av (1 samples, 0.95%)</title><rect x="605.6" y="437" width="11.3" height="15.0" fill="rgb(205,111,48)" rx="2" ry="2" />
<text x="608.62" y="447.5" ></text>
</g>
<g >
<title>scsi_io_completion (1 samples, 0.95%)</title><rect x="302.2" y="421" width="11.2" height="15.0" fill="rgb(244,225,13)" rx="2" ry="2" />
<text x="305.19" y="431.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.95%)</title><rect x="1100.1" y="277" width="11.2" height="15.0" fill="rgb(228,172,39)" rx="2" ry="2" />
<text x="1103.10" y="287.5" ></text>
</g>
<g >
<title>scsi_next_command (1 samples, 0.95%)</title><rect x="1088.9" y="261" width="11.2" height="15.0" fill="rgb(252,179,0)" rx="2" ry="2" />
<text x="1091.86" y="271.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.95%)</title><rect x="10.0" y="597" width="11.2" height="15.0" fill="rgb(246,22,5)" rx="2" ry="2" />
<text x="13.00" y="607.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 0.95%)</title><rect x="448.3" y="453" width="11.2" height="15.0" fill="rgb(220,202,16)" rx="2" ry="2" />
<text x="451.29" y="463.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.95%)</title><rect x="1055.1" y="373" width="11.3" height="15.0" fill="rgb(214,194,24)" rx="2" ry="2" />
<text x="1058.14" y="383.5" ></text>
</g>
<g >
<title>scsi_next_command (1 samples, 0.95%)</title><rect x="10.0" y="437" width="11.2" height="15.0" fill="rgb(229,83,36)" rx="2" ry="2" />
<text x="13.00" y="447.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="1133.8" y="261" width="11.2" height="15.0" fill="rgb(241,66,3)" rx="2" ry="2" />
<text x="1136.81" y="271.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.95%)</title><rect x="448.3" y="501" width="11.2" height="15.0" fill="rgb(207,221,0)" rx="2" ry="2" />
<text x="451.29" y="511.5" ></text>
</g>
<g >
<title>xfs_alloc_ag_vextent (1 samples, 0.95%)</title><rect x="1111.3" y="325" width="11.3" height="15.0" fill="rgb(235,57,11)" rx="2" ry="2" />
<text x="1114.33" y="335.5" ></text>
</g>
<g >
<title>scsi_next_command (1 samples, 0.95%)</title><rect x="965.2" y="421" width="11.3" height="15.0" fill="rgb(229,141,46)" rx="2" ry="2" />
<text x="968.24" y="431.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 0.95%)</title><rect x="223.5" y="453" width="11.3" height="15.0" fill="rgb(242,129,23)" rx="2" ry="2" />
<text x="226.52" y="463.5" ></text>
</g>
<g >
<title>mempool_alloc (1 samples, 0.95%)</title><rect x="1100.1" y="373" width="11.2" height="15.0" fill="rgb(245,77,7)" rx="2" ry="2" />
<text x="1103.10" y="383.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="1100.1" y="53" width="11.2" height="15.0" fill="rgb(229,153,22)" rx="2" ry="2" />
<text x="1103.10" y="63.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 13.33%)</title><rect x="392.1" y="597" width="157.3" height="15.0" fill="rgb(211,109,3)" rx="2" ry="2" />
<text x="395.10" y="607.5" >[unknown]</text>
</g>
<g >
<title>scsi_io_completion (1 samples, 0.95%)</title><rect x="965.2" y="453" width="11.3" height="15.0" fill="rgb(239,20,41)" rx="2" ry="2" />
<text x="968.24" y="463.5" ></text>
</g>
<g >
<title>ExpandPromise (1 samples, 0.95%)</title><rect x="459.5" y="565" width="11.3" height="15.0" fill="rgb(250,51,27)" rx="2" ry="2" />
<text x="462.52" y="575.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="302.2" y="325" width="11.2" height="15.0" fill="rgb(254,93,29)" rx="2" ry="2" />
<text x="305.19" y="335.5" ></text>
</g>
<g >
<title>stub_execve (1 samples, 0.95%)</title><rect x="1133.8" y="613" width="11.2" height="15.0" fill="rgb(253,53,40)" rx="2" ry="2" />
<text x="1136.81" y="623.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.95%)</title><rect x="21.2" y="549" width="11.3" height="15.0" fill="rgb(227,9,49)" rx="2" ry="2" />
<text x="24.24" y="559.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 0.95%)</title><rect x="1100.1" y="213" width="11.2" height="15.0" fill="rgb(208,168,44)" rx="2" ry="2" />
<text x="1103.10" y="223.5" ></text>
</g>
<g >
<title>inode_has_perm.isra.35.constprop.72 (1 samples, 0.95%)</title><rect x="605.6" y="485" width="11.3" height="15.0" fill="rgb(246,177,2)" rx="2" ry="2" />
<text x="608.62" y="495.5" ></text>
</g>
<g >
<title>_nl_find_locale (1 samples, 0.95%)</title><rect x="1156.3" y="613" width="11.2" height="15.0" fill="rgb(250,65,29)" rx="2" ry="2" />
<text x="1159.29" y="623.5" ></text>
</g>
<g >
<title>blk_run_queue (1 samples, 0.95%)</title><rect x="1100.1" y="117" width="11.2" height="15.0" fill="rgb(211,139,45)" rx="2" ry="2" />
<text x="1103.10" y="127.5" ></text>
</g>
<g >
<title>scsi_finish_command (1 samples, 0.95%)</title><rect x="223.5" y="437" width="11.3" height="15.0" fill="rgb(241,214,35)" rx="2" ry="2" />
<text x="226.52" y="447.5" ></text>
</g>
<g >
<title>VariableSetRval (1 samples, 0.95%)</title><rect x="369.6" y="597" width="11.3" height="15.0" fill="rgb(243,39,6)" rx="2" ry="2" />
<text x="372.62" y="607.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 0.95%)</title><rect x="1088.9" y="325" width="11.2" height="15.0" fill="rgb(221,105,8)" rx="2" ry="2" />
<text x="1091.86" y="335.5" ></text>
</g>
<g >
<title>scsi_io_completion (1 samples, 0.95%)</title><rect x="448.3" y="421" width="11.2" height="15.0" fill="rgb(211,71,19)" rx="2" ry="2" />
<text x="451.29" y="431.5" ></text>
</g>
<g >
<title>xfs_bmapi_write (1 samples, 0.95%)</title><rect x="1111.3" y="389" width="11.3" height="15.0" fill="rgb(253,7,52)" rx="2" ry="2" />
<text x="1114.33" y="399.5" ></text>
</g>
<g >
<title>prune_dcache_sb (1 samples, 0.95%)</title><rect x="1055.1" y="533" width="11.3" height="15.0" fill="rgb(246,87,7)" rx="2" ry="2" />
<text x="1058.14" y="543.5" ></text>
</g>
<g >
<title>__strchr_sse42 (1 samples, 0.95%)</title><rect x="616.9" y="613" width="11.2" height="15.0" fill="rgb(220,147,38)" rx="2" ry="2" />
<text x="619.86" y="623.5" ></text>
</g>
<g >
<title>blk_done_softirq (1 samples, 0.95%)</title><rect x="10.0" y="517" width="11.2" height="15.0" fill="rgb(252,93,41)" rx="2" ry="2" />
<text x="13.00" y="527.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="1178.8" y="437" width="11.2" height="15.0" fill="rgb(224,67,49)" rx="2" ry="2" />
<text x="1181.76" y="447.5" ></text>
</g>
<g >
<title>sys_mmap (1 samples, 0.95%)</title><rect x="1145.0" y="597" width="11.3" height="15.0" fill="rgb(217,12,49)" rx="2" ry="2" />
<text x="1148.05" y="607.5" ></text>
</g>
<g >
<title>scsi_run_queue (1 samples, 0.95%)</title><rect x="1167.5" y="309" width="11.3" height="15.0" fill="rgb(228,98,26)" rx="2" ry="2" />
<text x="1170.52" y="319.5" ></text>
</g>
<g >
<title>worker_thread (4 samples, 3.81%)</title><rect x="1088.9" y="597" width="44.9" height="15.0" fill="rgb(248,214,10)" rx="2" ry="2" />
<text x="1091.86" y="607.5" >work..</text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="1167.5" y="245" width="11.3" height="15.0" fill="rgb(222,139,39)" rx="2" ry="2" />
<text x="1170.52" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="10.0" y="325" width="11.2" height="15.0" fill="rgb(233,6,10)" rx="2" ry="2" />
<text x="13.00" y="335.5" ></text>
</g>
<g >
<title>scsi_finish_command (1 samples, 0.95%)</title><rect x="1088.9" y="309" width="11.2" height="15.0" fill="rgb(228,22,33)" rx="2" ry="2" />
<text x="1091.86" y="319.5" ></text>
</g>
<g >
<title>kswapd (1 samples, 0.95%)</title><rect x="1055.1" y="597" width="11.3" height="15.0" fill="rgb(226,214,15)" rx="2" ry="2" />
<text x="1058.14" y="607.5" ></text>
</g>
<g >
<title>seq_read (1 samples, 0.95%)</title><rect x="583.1" y="533" width="11.3" height="15.0" fill="rgb(249,86,35)" rx="2" ry="2" />
<text x="586.14" y="543.5" ></text>
</g>
<g >
<title>scsi_finish_command (1 samples, 0.95%)</title><rect x="1167.5" y="373" width="11.3" height="15.0" fill="rgb(206,229,39)" rx="2" ry="2" />
<text x="1170.52" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="1088.9" y="149" width="11.2" height="15.0" fill="rgb(236,194,7)" rx="2" ry="2" />
<text x="1091.86" y="159.5" ></text>
</g>
<g >
<title>scsi_end_request (1 samples, 0.95%)</title><rect x="1100.1" y="165" width="11.2" height="15.0" fill="rgb(251,61,3)" rx="2" ry="2" />
<text x="1103.10" y="175.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.95%)</title><rect x="223.5" y="517" width="11.3" height="15.0" fill="rgb(228,184,9)" rx="2" ry="2" />
<text x="226.52" y="527.5" ></text>
</g>
<g >
<title>scsi_io_completion (1 samples, 0.95%)</title><rect x="10.0" y="469" width="11.2" height="15.0" fill="rgb(205,44,45)" rx="2" ry="2" />
<text x="13.00" y="479.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="965.2" y="357" width="11.3" height="15.0" fill="rgb(239,85,24)" rx="2" ry="2" />
<text x="968.24" y="367.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (1 samples, 0.95%)</title><rect x="504.5" y="581" width="11.2" height="15.0" fill="rgb(211,104,43)" rx="2" ry="2" />
<text x="507.48" y="591.5" ></text>
</g>
<g >
<title>HashMapIteratorNext (5 samples, 4.76%)</title><rect x="392.1" y="581" width="56.2" height="15.0" fill="rgb(252,170,14)" rx="2" ry="2" />
<text x="395.10" y="591.5" >HashM..</text>
</g>
<g >
<title>vfs_getattr (1 samples, 0.95%)</title><rect x="605.6" y="533" width="11.3" height="15.0" fill="rgb(241,89,21)" rx="2" ry="2" />
<text x="608.62" y="543.5" ></text>
</g>
<g >
<title>xfs_alloc_fixup_trees (1 samples, 0.95%)</title><rect x="1111.3" y="293" width="11.3" height="15.0" fill="rgb(205,61,54)" rx="2" ry="2" />
<text x="1114.33" y="303.5" ></text>
</g>
<g >
<title>xfs_btree_insert (1 samples, 0.95%)</title><rect x="1111.3" y="277" width="11.3" height="15.0" fill="rgb(217,174,35)" rx="2" ry="2" />
<text x="1114.33" y="287.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.95%)</title><rect x="1100.1" y="293" width="11.2" height="15.0" fill="rgb(208,100,30)" rx="2" ry="2" />
<text x="1103.10" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="1178.8" y="373" width="11.2" height="15.0" fill="rgb(249,171,2)" rx="2" ry="2" />
<text x="1181.76" y="383.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="1122.6" y="357" width="11.2" height="15.0" fill="rgb(215,198,43)" rx="2" ry="2" />
<text x="1125.57" y="367.5" ></text>
</g>
<g >
<title>vfs_fstatat (1 samples, 0.95%)</title><rect x="807.9" y="533" width="11.2" height="15.0" fill="rgb(225,18,49)" rx="2" ry="2" />
<text x="810.90" y="543.5" ></text>
</g>
<g >
<title>filemap_fault (1 samples, 0.95%)</title><rect x="1043.9" y="373" width="11.2" height="15.0" fill="rgb(217,179,36)" rx="2" ry="2" />
<text x="1046.90" y="383.5" ></text>
</g>
<g >
<title>scsi_run_queue (1 samples, 0.95%)</title><rect x="1100.1" y="133" width="11.2" height="15.0" fill="rgb(249,64,12)" rx="2" ry="2" />
<text x="1103.10" y="143.5" ></text>
</g>
<g >
<title>xfs_filemap_fault (1 samples, 0.95%)</title><rect x="1043.9" y="405" width="11.2" height="15.0" fill="rgb(240,130,9)" rx="2" ry="2" />
<text x="1046.90" y="415.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.95%)</title><rect x="10.0" y="581" width="11.2" height="15.0" fill="rgb(241,60,45)" rx="2" ry="2" />
<text x="13.00" y="591.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="1133.8" y="277" width="11.2" height="15.0" fill="rgb(237,116,16)" rx="2" ry="2" />
<text x="1136.81" y="287.5" ></text>
</g>
<g >
<title>__do_page_fault (1 samples, 0.95%)</title><rect x="650.6" y="565" width="11.2" height="15.0" fill="rgb(209,190,13)" rx="2" ry="2" />
<text x="653.57" y="575.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.95%)</title><rect x="583.1" y="597" width="11.3" height="15.0" fill="rgb(229,217,48)" rx="2" ry="2" />
<text x="586.14" y="607.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="965.2" y="325" width="11.3" height="15.0" fill="rgb(218,75,48)" rx="2" ry="2" />
<text x="968.24" y="335.5" ></text>
</g>
<g >
<title>__prune_dcache_sb (1 samples, 0.95%)</title><rect x="1055.1" y="517" width="11.3" height="15.0" fill="rgb(253,137,38)" rx="2" ry="2" />
<text x="1058.14" y="527.5" ></text>
</g>
<g >
<title>path_openat (1 samples, 0.95%)</title><rect x="594.4" y="517" width="11.2" height="15.0" fill="rgb(211,137,7)" rx="2" ry="2" />
<text x="597.38" y="527.5" ></text>
</g>
<g >
<title>scsi_run_queue (1 samples, 0.95%)</title><rect x="10.0" y="421" width="11.2" height="15.0" fill="rgb(218,214,54)" rx="2" ry="2" />
<text x="13.00" y="431.5" ></text>
</g>
<g >
<title>kworker/0:2 (2 samples, 1.90%)</title><rect x="1066.4" y="645" width="22.5" height="15.0" fill="rgb(213,227,16)" rx="2" ry="2" />
<text x="1069.38" y="655.5" >k..</text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.95%)</title><rect x="21.2" y="613" width="11.3" height="15.0" fill="rgb(229,213,13)" rx="2" ry="2" />
<text x="24.24" y="623.5" ></text>
</g>
<g >
<title>scsi_io_completion (1 samples, 0.95%)</title><rect x="1167.5" y="357" width="11.3" height="15.0" fill="rgb(249,66,38)" rx="2" ry="2" />
<text x="1170.52" y="367.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="1122.6" y="373" width="11.2" height="15.0" fill="rgb(222,16,54)" rx="2" ry="2" />
<text x="1125.57" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.95%)</title><rect x="223.5" y="485" width="11.3" height="15.0" fill="rgb(247,226,52)" rx="2" ry="2" />
<text x="226.52" y="495.5" ></text>
</g>
<g >
<title>scsi_end_request (1 samples, 0.95%)</title><rect x="302.2" y="405" width="11.2" height="15.0" fill="rgb(217,219,15)" rx="2" ry="2" />
<text x="305.19" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="223.5" y="277" width="11.3" height="15.0" fill="rgb(215,85,40)" rx="2" ry="2" />
<text x="226.52" y="287.5" ></text>
</g>
<g >
<title>VariableTableIteratorNext (12 samples, 11.43%)</title><rect x="99.9" y="581" width="134.9" height="15.0" fill="rgb(226,126,25)" rx="2" ry="2" />
<text x="102.90" y="591.5" >VariableTableIter..</text>
</g>
<g >
<title>xfs_btree_rec_offset (1 samples, 0.95%)</title><rect x="1111.3" y="245" width="11.3" height="15.0" fill="rgb(235,218,28)" rx="2" ry="2" />
<text x="1114.33" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="448.3" y="277" width="11.2" height="15.0" fill="rgb(223,20,8)" rx="2" ry="2" />
<text x="451.29" y="287.5" ></text>
</g>
<g >
<title>seq_printf (1 samples, 0.95%)</title><rect x="583.1" y="501" width="11.3" height="15.0" fill="rgb(207,0,48)" rx="2" ry="2" />
<text x="586.14" y="511.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (3 samples, 2.86%)</title><rect x="549.4" y="597" width="33.7" height="15.0" fill="rgb(219,113,43)" rx="2" ry="2" />
<text x="552.43" y="607.5" >__..</text>
</g>
<g >
<title>blk_finish_plug (1 samples, 0.95%)</title><rect x="1043.9" y="325" width="11.2" height="15.0" fill="rgb(233,171,5)" rx="2" ry="2" />
<text x="1046.90" y="335.5" ></text>
</g>
<g >
<title>blk_queue_bio (1 samples, 0.95%)</title><rect x="1122.6" y="405" width="11.2" height="15.0" fill="rgb(247,193,52)" rx="2" ry="2" />
<text x="1125.57" y="415.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.95%)</title><rect x="1088.9" y="421" width="11.2" height="15.0" fill="rgb(219,183,7)" rx="2" ry="2" />
<text x="1091.86" y="431.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.95%)</title><rect x="10.0" y="549" width="11.2" height="15.0" fill="rgb(211,200,15)" rx="2" ry="2" />
<text x="13.00" y="559.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.95%)</title><rect x="1088.9" y="405" width="11.2" height="15.0" fill="rgb(223,206,12)" rx="2" ry="2" />
<text x="1091.86" y="415.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 0.95%)</title><rect x="965.2" y="485" width="11.3" height="15.0" fill="rgb(236,150,48)" rx="2" ry="2" />
<text x="968.24" y="495.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.95%)</title><rect x="21.2" y="581" width="11.3" height="15.0" fill="rgb(229,185,16)" rx="2" ry="2" />
<text x="24.24" y="591.5" ></text>
</g>
<g >
<title>stub_execve (2 samples, 1.90%)</title><rect x="1032.7" y="613" width="22.4" height="15.0" fill="rgb(244,74,23)" rx="2" ry="2" />
<text x="1035.67" y="623.5" >s..</text>
</g>
<g >
<title>do_IRQ (1 samples, 0.95%)</title><rect x="21.2" y="597" width="11.3" height="15.0" fill="rgb(219,185,20)" rx="2" ry="2" />
<text x="24.24" y="607.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.95%)</title><rect x="1100.1" y="325" width="11.2" height="15.0" fill="rgb(246,48,52)" rx="2" ry="2" />
<text x="1103.10" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.95%)</title><rect x="1088.9" y="357" width="11.2" height="15.0" fill="rgb(210,220,1)" rx="2" ry="2" />
<text x="1091.86" y="367.5" ></text>
</g>
<g >
<title>SpecialScopeFromString (2 samples, 1.90%)</title><rect x="43.7" y="629" width="22.5" height="15.0" fill="rgb(235,3,5)" rx="2" ry="2" />
<text x="46.71" y="639.5" >S..</text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.95%)</title><rect x="448.3" y="565" width="11.2" height="15.0" fill="rgb(238,130,20)" rx="2" ry="2" />
<text x="451.29" y="575.5" ></text>
</g>
<g >
<title>search_binary_handler (2 samples, 1.90%)</title><rect x="1032.7" y="565" width="22.4" height="15.0" fill="rgb(235,22,54)" rx="2" ry="2" />
<text x="1035.67" y="575.5" >s..</text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="1178.8" y="389" width="11.2" height="15.0" fill="rgb(246,18,18)" rx="2" ry="2" />
<text x="1181.76" y="399.5" ></text>
</g>
<g >
<title>__vsnprintf_chk (1 samples, 0.95%)</title><rect x="999.0" y="613" width="11.2" height="15.0" fill="rgb(233,46,38)" rx="2" ry="2" />
<text x="1001.95" y="623.5" ></text>
</g>
<g >
<title>wb_writeback (4 samples, 3.81%)</title><rect x="1088.9" y="549" width="44.9" height="15.0" fill="rgb(248,187,19)" rx="2" ry="2" />
<text x="1091.86" y="559.5" >wb_w..</text>
</g>
<g >
<title>blk_done_softirq (1 samples, 0.95%)</title><rect x="1055.1" y="357" width="11.3" height="15.0" fill="rgb(238,126,42)" rx="2" ry="2" />
<text x="1058.14" y="367.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="1133.8" y="245" width="11.2" height="15.0" fill="rgb(253,183,22)" rx="2" ry="2" />
<text x="1136.81" y="255.5" ></text>
</g>
<g >
<title>write_cache_pages (3 samples, 2.86%)</title><rect x="1088.9" y="453" width="33.7" height="15.0" fill="rgb(244,41,13)" rx="2" ry="2" />
<text x="1091.86" y="463.5" >wr..</text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="448.3" y="325" width="11.2" height="15.0" fill="rgb(212,136,1)" rx="2" ry="2" />
<text x="451.29" y="335.5" ></text>
</g>
<g >
<title>xfs_filemap_fault (1 samples, 0.95%)</title><rect x="1133.8" y="405" width="11.2" height="15.0" fill="rgb(223,119,48)" rx="2" ry="2" />
<text x="1136.81" y="415.5" ></text>
</g>
<g >
<title>xfs_vm_writepages (4 samples, 3.81%)</title><rect x="1088.9" y="469" width="44.9" height="15.0" fill="rgb(219,22,2)" rx="2" ry="2" />
<text x="1091.86" y="479.5" >xfs_..</text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="1167.5" y="277" width="11.3" height="15.0" fill="rgb(206,69,22)" rx="2" ry="2" />
<text x="1170.52" y="287.5" ></text>
</g>
<g >
<title>load_elf_binary (1 samples, 0.95%)</title><rect x="1133.8" y="549" width="11.2" height="15.0" fill="rgb(251,152,12)" rx="2" ry="2" />
<text x="1136.81" y="559.5" ></text>
</g>
<g >
<title>printf (1 samples, 0.95%)</title><rect x="1133.8" y="645" width="11.2" height="15.0" fill="rgb(213,23,48)" rx="2" ry="2" />
<text x="1136.81" y="655.5" ></text>
</g>
<g >
<title>do_sys_open (1 samples, 0.95%)</title><rect x="594.4" y="549" width="11.2" height="15.0" fill="rgb(238,226,21)" rx="2" ry="2" />
<text x="597.38" y="559.5" ></text>
</g>
<g >
<title>xfsaild (1 samples, 0.95%)</title><rect x="1178.8" y="597" width="11.2" height="15.0" fill="rgb(246,59,45)" rx="2" ry="2" />
<text x="1181.76" y="607.5" ></text>
</g>
<g >
<title>page_waitqueue (1 samples, 0.95%)</title><rect x="369.6" y="485" width="11.3" height="15.0" fill="rgb(218,160,20)" rx="2" ry="2" />
<text x="372.62" y="495.5" ></text>
</g>
<g >
<title>scsi_finish_command (1 samples, 0.95%)</title><rect x="10.0" y="485" width="11.2" height="15.0" fill="rgb(226,81,17)" rx="2" ry="2" />
<text x="13.00" y="495.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="1167.5" y="213" width="11.3" height="15.0" fill="rgb(227,162,41)" rx="2" ry="2" />
<text x="1170.52" y="223.5" ></text>
</g>
<g >
<title>queue_unplugged (1 samples, 0.95%)</title><rect x="1133.8" y="293" width="11.2" height="15.0" fill="rgb(241,183,36)" rx="2" ry="2" />
<text x="1136.81" y="303.5" ></text>
</g>
<g >
<title>iput (1 samples, 0.95%)</title><rect x="1055.1" y="469" width="11.3" height="15.0" fill="rgb(237,57,0)" rx="2" ry="2" />
<text x="1058.14" y="479.5" ></text>
</g>
<g >
<title>all (105 samples, 100%)</title><rect x="10.0" y="661" width="1180.0" height="15.0" fill="rgb(243,11,6)" rx="2" ry="2" />
<text x="13.00" y="671.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="1122.6" y="341" width="11.2" height="15.0" fill="rgb(233,215,20)" rx="2" ry="2" />
<text x="1125.57" y="351.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (1 samples, 0.95%)</title><rect x="1100.1" y="341" width="11.2" height="15.0" fill="rgb(211,215,23)" rx="2" ry="2" />
<text x="1103.10" y="351.5" ></text>
</g>
<g >
<title>VarRefHash_untyped (1 samples, 0.95%)</title><rect x="66.2" y="597" width="11.2" height="15.0" fill="rgb(209,162,19)" rx="2" ry="2" />
<text x="69.19" y="607.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="1178.8" y="421" width="11.2" height="15.0" fill="rgb(250,186,21)" rx="2" ry="2" />
<text x="1181.76" y="431.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (3 samples, 2.86%)</title><rect x="515.7" y="581" width="33.7" height="15.0" fill="rgb(226,204,7)" rx="2" ry="2" />
<text x="518.71" y="591.5" >__..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="1043.9" y="213" width="11.2" height="15.0" fill="rgb(246,228,41)" rx="2" ry="2" />
<text x="1046.90" y="223.5" ></text>
</g>
<g >
<title>__execve (1 samples, 0.95%)</title><rect x="1133.8" y="629" width="11.2" height="15.0" fill="rgb(211,216,24)" rx="2" ry="2" />
<text x="1136.81" y="639.5" ></text>
</g>
<g >
<title>scsi_run_queue (1 samples, 0.95%)</title><rect x="965.2" y="405" width="11.3" height="15.0" fill="rgb(205,16,16)" rx="2" ry="2" />
<text x="968.24" y="415.5" ></text>
</g>
<g >
<title>blk_done_softirq (1 samples, 0.95%)</title><rect x="223.5" y="469" width="11.3" height="15.0" fill="rgb(209,40,54)" rx="2" ry="2" />
<text x="226.52" y="479.5" ></text>
</g>
<g >
<title>ArrayMapClear (1 samples, 0.95%)</title><rect x="10.0" y="629" width="11.2" height="15.0" fill="rgb(215,136,20)" rx="2" ry="2" />
<text x="13.00" y="639.5" ></text>
</g>
<g >
<title>blk_done_softirq (1 samples, 0.95%)</title><rect x="448.3" y="469" width="11.2" height="15.0" fill="rgb(252,163,33)" rx="2" ry="2" />
<text x="451.29" y="479.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.95%)</title><rect x="1010.2" y="629" width="11.2" height="15.0" fill="rgb(230,71,2)" rx="2" ry="2" />
<text x="1013.19" y="639.5" ></text>
</g>
<g >
<title>writeback_sb_inodes (4 samples, 3.81%)</title><rect x="1088.9" y="517" width="44.9" height="15.0" fill="rgb(238,4,25)" rx="2" ry="2" />
<text x="1091.86" y="527.5" >writ..</text>
</g>
<g >
<title>context_struct_compute_av (1 samples, 0.95%)</title><rect x="605.6" y="421" width="11.3" height="15.0" fill="rgb(250,73,10)" rx="2" ry="2" />
<text x="608.62" y="431.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="1055.1" y="229" width="11.3" height="15.0" fill="rgb(205,108,42)" rx="2" ry="2" />
<text x="1058.14" y="239.5" ></text>
</g>
<g >
<title>mmap64 (1 samples, 0.95%)</title><rect x="1145.0" y="629" width="11.3" height="15.0" fill="rgb(216,117,41)" rx="2" ry="2" />
<text x="1148.05" y="639.5" ></text>
</g>
<g >
<title>balance_pgdat (1 samples, 0.95%)</title><rect x="1055.1" y="581" width="11.3" height="15.0" fill="rgb(214,218,42)" rx="2" ry="2" />
<text x="1058.14" y="591.5" ></text>
</g>
<g >
<title>[libpromises.so.3.0.6] (2 samples, 1.90%)</title><rect x="324.7" y="613" width="22.4" height="15.0" fill="rgb(231,215,44)" rx="2" ry="2" />
<text x="327.67" y="623.5" >[..</text>
</g>
<g >
<title>__fxstatat64 (1 samples, 0.95%)</title><rect x="807.9" y="597" width="11.2" height="15.0" fill="rgb(246,2,32)" rx="2" ry="2" />
<text x="810.90" y="607.5" ></text>
</g>
<g >
<title>sed (2 samples, 1.90%)</title><rect x="1145.0" y="645" width="22.5" height="15.0" fill="rgb(234,100,14)" rx="2" ry="2" />
<text x="1148.05" y="655.5" >sed</text>
</g>
<g >
<title>do_execve_common.isra.24 (1 samples, 0.95%)</title><rect x="1133.8" y="581" width="11.2" height="15.0" fill="rgb(238,168,39)" rx="2" ry="2" />
<text x="1136.81" y="591.5" ></text>
</g>
<g >
<title>blk_run_queue (1 samples, 0.95%)</title><rect x="223.5" y="357" width="11.3" height="15.0" fill="rgb(239,80,51)" rx="2" ry="2" />
<text x="226.52" y="367.5" ></text>
</g>
<g >
<title>sys_newlstat (1 samples, 0.95%)</title><rect x="605.6" y="581" width="11.3" height="15.0" fill="rgb(207,21,29)" rx="2" ry="2" />
<text x="608.62" y="591.5" ></text>
</g>
<g >
<title>free (1 samples, 0.95%)</title><rect x="1156.3" y="597" width="11.2" height="15.0" fill="rgb(239,154,15)" rx="2" ry="2" />
<text x="1159.29" y="607.5" ></text>
</g>
<g >
<title>__do_page_fault (1 samples, 0.95%)</title><rect x="1043.9" y="469" width="11.2" height="15.0" fill="rgb(215,176,22)" rx="2" ry="2" />
<text x="1046.90" y="479.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 0.95%)</title><rect x="1167.5" y="389" width="11.3" height="15.0" fill="rgb(216,42,19)" rx="2" ry="2" />
<text x="1170.52" y="399.5" ></text>
</g>
<g >
<title>do_page_fault (1 samples, 0.95%)</title><rect x="1133.8" y="485" width="11.2" height="15.0" fill="rgb(233,158,27)" rx="2" ry="2" />
<text x="1136.81" y="495.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.95%)</title><rect x="1055.1" y="453" width="11.3" height="15.0" fill="rgb(249,141,38)" rx="2" ry="2" />
<text x="1058.14" y="463.5" ></text>
</g>
<g >
<title>malloc_consolidate (4 samples, 3.81%)</title><rect x="763.0" y="613" width="44.9" height="15.0" fill="rgb(208,85,14)" rx="2" ry="2" />
<text x="765.95" y="623.5" >mall..</text>
</g>
<g >
<title>scsi_next_command (1 samples, 0.95%)</title><rect x="448.3" y="389" width="11.2" height="15.0" fill="rgb(216,117,44)" rx="2" ry="2" />
<text x="451.29" y="399.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.95%)</title><rect x="1167.5" y="437" width="11.3" height="15.0" fill="rgb(224,51,7)" rx="2" ry="2" />
<text x="1170.52" y="447.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="302.2" y="293" width="11.2" height="15.0" fill="rgb(222,164,50)" rx="2" ry="2" />
<text x="305.19" y="303.5" ></text>
</g>
<g >
<title>ClassTableIteratorNext (1 samples, 0.95%)</title><rect x="347.1" y="597" width="11.3" height="15.0" fill="rgb(234,20,44)" rx="2" ry="2" />
<text x="350.14" y="607.5" ></text>
</g>
<g >
<title>padzero (1 samples, 0.95%)</title><rect x="1043.9" y="533" width="11.2" height="15.0" fill="rgb(238,199,24)" rx="2" ry="2" />
<text x="1046.90" y="543.5" ></text>
</g>
<g >
<title>blk_done_softirq (1 samples, 0.95%)</title><rect x="1100.1" y="229" width="11.2" height="15.0" fill="rgb(212,107,21)" rx="2" ry="2" />
<text x="1103.10" y="239.5" ></text>
</g>
<g >
<title>scsi_end_request (1 samples, 0.95%)</title><rect x="223.5" y="405" width="11.3" height="15.0" fill="rgb(230,27,3)" rx="2" ry="2" />
<text x="226.52" y="415.5" ></text>
</g>
<g >
<title>selinux_inode_getattr (1 samples, 0.95%)</title><rect x="605.6" y="501" width="11.3" height="15.0" fill="rgb(226,23,30)" rx="2" ry="2" />
<text x="608.62" y="511.5" ></text>
</g>
<g >
<title>blk_finish_plug (1 samples, 0.95%)</title><rect x="1133.8" y="325" width="11.2" height="15.0" fill="rgb(224,194,29)" rx="2" ry="2" />
<text x="1136.81" y="335.5" ></text>
</g>
<g >
<title>HashMapIteratorNext (2 samples, 1.90%)</title><rect x="77.4" y="581" width="22.5" height="15.0" fill="rgb(225,77,44)" rx="2" ry="2" />
<text x="80.43" y="591.5" >H..</text>
</g>
<g >
<title>user_path_at (1 samples, 0.95%)</title><rect x="807.9" y="517" width="11.2" height="15.0" fill="rgb(211,32,17)" rx="2" ry="2" />
<text x="810.90" y="527.5" ></text>
</g>
<g >
<title>ParseStringExpression (1 samples, 0.95%)</title><rect x="21.2" y="629" width="11.3" height="15.0" fill="rgb(246,85,22)" rx="2" ry="2" />
<text x="24.24" y="639.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.95%)</title><rect x="965.2" y="581" width="11.3" height="15.0" fill="rgb(244,186,3)" rx="2" ry="2" />
<text x="968.24" y="591.5" ></text>
</g>
<g >
<title>scsi_next_command (1 samples, 0.95%)</title><rect x="1055.1" y="277" width="11.3" height="15.0" fill="rgb(231,6,30)" rx="2" ry="2" />
<text x="1058.14" y="287.5" ></text>
</g>
<g >
<title>vsnprintf (1 samples, 0.95%)</title><rect x="583.1" y="469" width="11.3" height="15.0" fill="rgb(249,216,37)" rx="2" ry="2" />
<text x="586.14" y="479.5" ></text>
</g>
<g >
<title>xfs_buf_delwri_submit_nowait (1 samples, 0.95%)</title><rect x="1178.8" y="581" width="11.2" height="15.0" fill="rgb(224,171,43)" rx="2" ry="2" />
<text x="1181.76" y="591.5" ></text>
</g>
<g >
<title>scsi_run_queue (1 samples, 0.95%)</title><rect x="1055.1" y="261" width="11.3" height="15.0" fill="rgb(216,105,50)" rx="2" ry="2" />
<text x="1058.14" y="271.5" ></text>
</g>
<g >
<title>__strdup (1 samples, 0.95%)</title><rect x="999.0" y="629" width="11.2" height="15.0" fill="rgb(208,167,16)" rx="2" ry="2" />
<text x="1001.95" y="639.5" ></text>
</g>
<g >
<title>__xfs_buf_submit (1 samples, 0.95%)</title><rect x="1178.8" y="549" width="11.2" height="15.0" fill="rgb(241,224,33)" rx="2" ry="2" />
<text x="1181.76" y="559.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="223.5" y="325" width="11.3" height="15.0" fill="rgb(237,210,40)" rx="2" ry="2" />
<text x="226.52" y="335.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="448.3" y="293" width="11.2" height="15.0" fill="rgb(230,225,16)" rx="2" ry="2" />
<text x="451.29" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="302.2" y="277" width="11.2" height="15.0" fill="rgb(224,98,47)" rx="2" ry="2" />
<text x="305.19" y="287.5" ></text>
</g>
<g >
<title>VarRefHash_untyped (1 samples, 0.95%)</title><rect x="358.4" y="597" width="11.2" height="15.0" fill="rgb(215,139,25)" rx="2" ry="2" />
<text x="361.38" y="607.5" ></text>
</g>
<g >
<title>xfs_add_to_ioend (1 samples, 0.95%)</title><rect x="1100.1" y="421" width="11.2" height="15.0" fill="rgb(249,103,50)" rx="2" ry="2" />
<text x="1103.10" y="431.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.95%)</title><rect x="223.5" y="533" width="11.3" height="15.0" fill="rgb(249,139,23)" rx="2" ry="2" />
<text x="226.52" y="543.5" ></text>
</g>
<g >
<title>scsi_end_request (1 samples, 0.95%)</title><rect x="21.2" y="453" width="11.3" height="15.0" fill="rgb(232,176,52)" rx="2" ry="2" />
<text x="24.24" y="463.5" ></text>
</g>
<g >
<title>blk_done_softirq (1 samples, 0.95%)</title><rect x="302.2" y="469" width="11.2" height="15.0" fill="rgb(228,108,8)" rx="2" ry="2" />
<text x="305.19" y="479.5" ></text>
</g>
<g >
<title>submit_bio (1 samples, 0.95%)</title><rect x="1178.8" y="517" width="11.2" height="15.0" fill="rgb(242,214,34)" rx="2" ry="2" />
<text x="1181.76" y="527.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.95%)</title><rect x="223.5" y="549" width="11.3" height="15.0" fill="rgb(209,185,33)" rx="2" ry="2" />
<text x="226.52" y="559.5" ></text>
</g>
<g >
<title>ra_submit (1 samples, 0.95%)</title><rect x="1043.9" y="357" width="11.2" height="15.0" fill="rgb(248,227,21)" rx="2" ry="2" />
<text x="1046.90" y="367.5" ></text>
</g>
<g >
<title>avc_has_perm_flags (1 samples, 0.95%)</title><rect x="605.6" y="469" width="11.3" height="15.0" fill="rgb(221,34,5)" rx="2" ry="2" />
<text x="608.62" y="479.5" ></text>
</g>
<g >
<title>filemap_fault (1 samples, 0.95%)</title><rect x="1133.8" y="373" width="11.2" height="15.0" fill="rgb(231,48,51)" rx="2" ry="2" />
<text x="1136.81" y="383.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.95%)</title><rect x="1055.1" y="421" width="11.3" height="15.0" fill="rgb(220,57,24)" rx="2" ry="2" />
<text x="1058.14" y="431.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="223.5" y="309" width="11.3" height="15.0" fill="rgb(243,108,25)" rx="2" ry="2" />
<text x="226.52" y="319.5" ></text>
</g>
<g >
<title>VariableTableIteratorNext (1 samples, 0.95%)</title><rect x="380.9" y="597" width="11.2" height="15.0" fill="rgb(229,104,6)" rx="2" ry="2" />
<text x="383.86" y="607.5" ></text>
</g>
<g >
<title>blk_done_softirq (1 samples, 0.95%)</title><rect x="1088.9" y="341" width="11.2" height="15.0" fill="rgb(239,127,8)" rx="2" ry="2" />
<text x="1091.86" y="351.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 0.95%)</title><rect x="21.2" y="501" width="11.3" height="15.0" fill="rgb(209,153,20)" rx="2" ry="2" />
<text x="24.24" y="511.5" ></text>
</g>
<g >
<title>sys_newfstatat (1 samples, 0.95%)</title><rect x="807.9" y="565" width="11.2" height="15.0" fill="rgb(221,3,29)" rx="2" ry="2" />
<text x="810.90" y="575.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.95%)</title><rect x="1055.1" y="437" width="11.3" height="15.0" fill="rgb(219,39,31)" rx="2" ry="2" />
<text x="1058.14" y="447.5" ></text>
</g>
<g >
<title>_IO_file_xsgetn (1 samples, 0.95%)</title><rect x="976.5" y="629" width="11.2" height="15.0" fill="rgb(220,54,43)" rx="2" ry="2" />
<text x="979.48" y="639.5" ></text>
</g>
<g >
<title>xfs_alloc_ag_vextent_near (1 samples, 0.95%)</title><rect x="1111.3" y="309" width="11.3" height="15.0" fill="rgb(216,26,13)" rx="2" ry="2" />
<text x="1114.33" y="319.5" ></text>
</g>
<g >
<title>unlink_file_vma (1 samples, 0.95%)</title><rect x="1145.0" y="469" width="11.3" height="15.0" fill="rgb(215,164,9)" rx="2" ry="2" />
<text x="1148.05" y="479.5" ></text>
</g>
<g >
<title>__writeback_single_inode (4 samples, 3.81%)</title><rect x="1088.9" y="501" width="44.9" height="15.0" fill="rgb(209,77,31)" rx="2" ry="2" />
<text x="1091.86" y="511.5" >__wr..</text>
</g>
<g >
<title>swapper (1 samples, 0.95%)</title><rect x="1167.5" y="645" width="11.3" height="15.0" fill="rgb(239,53,0)" rx="2" ry="2" />
<text x="1170.52" y="655.5" ></text>
</g>
<g >
<title>default_idle (1 samples, 0.95%)</title><rect x="1167.5" y="517" width="11.3" height="15.0" fill="rgb(242,153,13)" rx="2" ry="2" />
<text x="1170.52" y="527.5" ></text>
</g>
<g >
<title>unlock_page (1 samples, 0.95%)</title><rect x="369.6" y="501" width="11.3" height="15.0" fill="rgb(230,219,24)" rx="2" ry="2" />
<text x="372.62" y="511.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="1100.1" y="69" width="11.2" height="15.0" fill="rgb(222,59,25)" rx="2" ry="2" />
<text x="1103.10" y="79.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.95%)</title><rect x="448.3" y="549" width="11.2" height="15.0" fill="rgb(232,18,23)" rx="2" ry="2" />
<text x="451.29" y="559.5" ></text>
</g>
<g >
<title>xfs_submit_ioend.isra.12 (1 samples, 0.95%)</title><rect x="1122.6" y="453" width="11.2" height="15.0" fill="rgb(252,161,46)" rx="2" ry="2" />
<text x="1125.57" y="463.5" ></text>
</g>
<g >
<title>scsi_end_request (1 samples, 0.95%)</title><rect x="1088.9" y="277" width="11.2" height="15.0" fill="rgb(241,25,49)" rx="2" ry="2" />
<text x="1091.86" y="287.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.95%)</title><rect x="1088.9" y="437" width="11.2" height="15.0" fill="rgb(246,77,38)" rx="2" ry="2" />
<text x="1091.86" y="447.5" ></text>
</g>
<g >
<title>__d_lookup_rcu (1 samples, 0.95%)</title><rect x="594.4" y="469" width="11.2" height="15.0" fill="rgb(240,77,5)" rx="2" ry="2" />
<text x="597.38" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_read (1 samples, 0.95%)</title><rect x="583.1" y="613" width="11.3" height="15.0" fill="rgb(254,133,36)" rx="2" ry="2" />
<text x="586.14" y="623.5" ></text>
</g>
<g >
<title>do_cow_fault (1 samples, 0.95%)</title><rect x="1133.8" y="437" width="11.2" height="15.0" fill="rgb(239,206,16)" rx="2" ry="2" />
<text x="1136.81" y="447.5" ></text>
</g>
<g >
<title>unmap_region (1 samples, 0.95%)</title><rect x="1145.0" y="501" width="11.3" height="15.0" fill="rgb(205,217,32)" rx="2" ry="2" />
<text x="1148.05" y="511.5" ></text>
</g>
<g >
<title>scsi_finish_command (1 samples, 0.95%)</title><rect x="1055.1" y="325" width="11.3" height="15.0" fill="rgb(244,49,34)" rx="2" ry="2" />
<text x="1058.14" y="335.5" ></text>
</g>
<g >
<title>__do_fault.isra.61 (1 samples, 0.95%)</title><rect x="1133.8" y="421" width="11.2" height="15.0" fill="rgb(232,139,29)" rx="2" ry="2" />
<text x="1136.81" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="1133.8" y="213" width="11.2" height="15.0" fill="rgb(228,84,14)" rx="2" ry="2" />
<text x="1136.81" y="223.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="1043.9" y="277" width="11.2" height="15.0" fill="rgb(214,108,11)" rx="2" ry="2" />
<text x="1046.90" y="287.5" ></text>
</g>
<g >
<title>padzero (1 samples, 0.95%)</title><rect x="1133.8" y="533" width="11.2" height="15.0" fill="rgb(254,102,25)" rx="2" ry="2" />
<text x="1136.81" y="543.5" ></text>
</g>
<g >
<title>blk_run_queue (1 samples, 0.95%)</title><rect x="1088.9" y="229" width="11.2" height="15.0" fill="rgb(235,36,47)" rx="2" ry="2" />
<text x="1091.86" y="239.5" ></text>
</g>
<g >
<title>ArrayMapInsert (1 samples, 0.95%)</title><rect x="313.4" y="597" width="11.3" height="15.0" fill="rgb(212,26,44)" rx="2" ry="2" />
<text x="316.43" y="607.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.95%)</title><rect x="594.4" y="581" width="11.2" height="15.0" fill="rgb(235,196,21)" rx="2" ry="2" />
<text x="597.38" y="591.5" ></text>
</g>
<g >
<title>do_page_fault (1 samples, 0.95%)</title><rect x="1043.9" y="485" width="11.2" height="15.0" fill="rgb(231,169,50)" rx="2" ry="2" />
<text x="1046.90" y="495.5" ></text>
</g>
<g >
<title>__dentry_kill (1 samples, 0.95%)</title><rect x="1055.1" y="485" width="11.3" height="15.0" fill="rgb(239,138,22)" rx="2" ry="2" />
<text x="1058.14" y="495.5" ></text>
</g>
<g >
<title>scsi_next_command (1 samples, 0.95%)</title><rect x="223.5" y="389" width="11.3" height="15.0" fill="rgb(218,43,6)" rx="2" ry="2" />
<text x="226.52" y="399.5" ></text>
</g>
<g >
<title>sys_execve (2 samples, 1.90%)</title><rect x="1032.7" y="597" width="22.4" height="15.0" fill="rgb(239,147,13)" rx="2" ry="2" />
<text x="1035.67" y="607.5" >s..</text>
</g>
<g >
<title>__do_page_fault (1 samples, 0.95%)</title><rect x="1133.8" y="469" width="11.2" height="15.0" fill="rgb(222,229,13)" rx="2" ry="2" />
<text x="1136.81" y="479.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.95%)</title><rect x="965.2" y="565" width="11.3" height="15.0" fill="rgb(233,41,31)" rx="2" ry="2" />
<text x="968.24" y="575.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="1100.1" y="85" width="11.2" height="15.0" fill="rgb(207,223,50)" rx="2" ry="2" />
<text x="1103.10" y="95.5" ></text>
</g>
<g >
<title>sys_read (1 samples, 0.95%)</title><rect x="583.1" y="581" width="11.3" height="15.0" fill="rgb(211,205,1)" rx="2" ry="2" />
<text x="586.14" y="591.5" ></text>
</g>
<g >
<title>avc_compute_av (1 samples, 0.95%)</title><rect x="605.6" y="453" width="11.3" height="15.0" fill="rgb(229,123,7)" rx="2" ry="2" />
<text x="608.62" y="463.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.95%)</title><rect x="965.2" y="549" width="11.3" height="15.0" fill="rgb(212,159,49)" rx="2" ry="2" />
<text x="968.24" y="559.5" ></text>
</g>
<g >
<title>prune_super (1 samples, 0.95%)</title><rect x="1055.1" y="549" width="11.3" height="15.0" fill="rgb(206,3,9)" rx="2" ry="2" />
<text x="1058.14" y="559.5" ></text>
</g>
<g >
<title>blk_queue_bio (1 samples, 0.95%)</title><rect x="1178.8" y="485" width="11.2" height="15.0" fill="rgb(205,81,34)" rx="2" ry="2" />
<text x="1181.76" y="495.5" ></text>
</g>
<g >
<title>date (2 samples, 1.90%)</title><rect x="1032.7" y="645" width="22.4" height="15.0" fill="rgb(245,152,18)" rx="2" ry="2" />
<text x="1035.67" y="655.5" >d..</text>
</g>
<g >
<title>do_wp_page (1 samples, 0.95%)</title><rect x="369.6" y="517" width="11.3" height="15.0" fill="rgb(208,194,50)" rx="2" ry="2" />
<text x="372.62" y="527.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.95%)</title><rect x="807.9" y="581" width="11.2" height="15.0" fill="rgb(224,190,31)" rx="2" ry="2" />
<text x="810.90" y="591.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.95%)</title><rect x="448.3" y="485" width="11.2" height="15.0" fill="rgb(232,203,51)" rx="2" ry="2" />
<text x="451.29" y="495.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="21.2" y="341" width="11.3" height="15.0" fill="rgb(218,40,2)" rx="2" ry="2" />
<text x="24.24" y="351.5" ></text>
</g>
<g >
<title>process_one_work (2 samples, 1.90%)</title><rect x="1066.4" y="581" width="22.5" height="15.0" fill="rgb(215,200,33)" rx="2" ry="2" />
<text x="1069.38" y="591.5" >p..</text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="1100.1" y="101" width="11.2" height="15.0" fill="rgb(239,118,10)" rx="2" ry="2" />
<text x="1103.10" y="111.5" ></text>
</g>
<g >
<title>ret_from_fork_nospec_end (1 samples, 0.95%)</title><rect x="1055.1" y="629" width="11.3" height="15.0" fill="rgb(231,125,45)" rx="2" ry="2" />
<text x="1058.14" y="639.5" ></text>
</g>
<g >
<title>user_path_at_empty (1 samples, 0.95%)</title><rect x="807.9" y="501" width="11.2" height="15.0" fill="rgb(206,0,48)" rx="2" ry="2" />
<text x="810.90" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (1 samples, 0.95%)</title><rect x="369.6" y="533" width="11.3" height="15.0" fill="rgb(223,193,32)" rx="2" ry="2" />
<text x="372.62" y="543.5" ></text>
</g>
<g >
<title>scsi_io_completion (1 samples, 0.95%)</title><rect x="223.5" y="421" width="11.3" height="15.0" fill="rgb(246,159,11)" rx="2" ry="2" />
<text x="226.52" y="431.5" ></text>
</g>
<g >
<title>bvec_alloc (1 samples, 0.95%)</title><rect x="1100.1" y="389" width="11.2" height="15.0" fill="rgb(223,111,30)" rx="2" ry="2" />
<text x="1103.10" y="399.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.95%)</title><rect x="302.2" y="533" width="11.2" height="15.0" fill="rgb(216,87,39)" rx="2" ry="2" />
<text x="305.19" y="543.5" ></text>
</g>
<g >
<title>VarRefDestroy_untyped (1 samples, 0.95%)</title><rect x="313.4" y="613" width="11.3" height="15.0" fill="rgb(211,200,6)" rx="2" ry="2" />
<text x="316.43" y="623.5" ></text>
</g>
<g >
<title>setlocale (1 samples, 0.95%)</title><rect x="1156.3" y="629" width="11.2" height="15.0" fill="rgb(248,102,3)" rx="2" ry="2" />
<text x="1159.29" y="639.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="1122.6" y="389" width="11.2" height="15.0" fill="rgb(243,70,0)" rx="2" ry="2" />
<text x="1125.57" y="399.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.95%)</title><rect x="1088.9" y="373" width="11.2" height="15.0" fill="rgb(247,92,19)" rx="2" ry="2" />
<text x="1091.86" y="383.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.95%)</title><rect x="605.6" y="597" width="11.3" height="15.0" fill="rgb(235,84,24)" rx="2" ry="2" />
<text x="608.62" y="607.5" ></text>
</g>
<g >
<title>_xfs_buf_ioapply (1 samples, 0.95%)</title><rect x="1178.8" y="533" width="11.2" height="15.0" fill="rgb(220,215,11)" rx="2" ry="2" />
<text x="1181.76" y="543.5" ></text>
</g>
<g >
<title>kthread (1 samples, 0.95%)</title><rect x="1178.8" y="613" width="11.2" height="15.0" fill="rgb(213,0,12)" rx="2" ry="2" />
<text x="1181.76" y="623.5" ></text>
</g>
<g >
<title>__do_page_fault (1 samples, 0.95%)</title><rect x="369.6" y="549" width="11.3" height="15.0" fill="rgb(253,176,33)" rx="2" ry="2" />
<text x="372.62" y="559.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="302.2" y="309" width="11.2" height="15.0" fill="rgb(251,138,23)" rx="2" ry="2" />
<text x="305.19" y="319.5" ></text>
</g>
<g >
<title>scsi_end_request (1 samples, 0.95%)</title><rect x="10.0" y="453" width="11.2" height="15.0" fill="rgb(247,123,43)" rx="2" ry="2" />
<text x="13.00" y="463.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.95%)</title><rect x="10.0" y="613" width="11.2" height="15.0" fill="rgb(224,136,9)" rx="2" ry="2" />
<text x="13.00" y="623.5" ></text>
</g>
<g >
<title>__do_page_cache_readahead (1 samples, 0.95%)</title><rect x="1043.9" y="341" width="11.2" height="15.0" fill="rgb(238,142,49)" rx="2" ry="2" />
<text x="1046.90" y="351.5" ></text>
</g>
<g >
<title>handle_mm_fault (1 samples, 0.95%)</title><rect x="1133.8" y="453" width="11.2" height="15.0" fill="rgb(211,207,23)" rx="2" ry="2" />
<text x="1136.81" y="463.5" ></text>
</g>
<g >
<title>xfs_iomap_write_allocate (1 samples, 0.95%)</title><rect x="1111.3" y="405" width="11.3" height="15.0" fill="rgb(229,18,27)" rx="2" ry="2" />
<text x="1114.33" y="415.5" ></text>
</g>
<g >
<title>[unknown] (21 samples, 20.00%)</title><rect x="347.1" y="613" width="236.0" height="15.0" fill="rgb(229,66,41)" rx="2" ry="2" />
<text x="350.14" y="623.5" >[unknown]</text>
</g>
<g >
<title>[libpromises.so.3.0.6] (2 samples, 1.90%)</title><rect x="470.8" y="565" width="22.4" height="15.0" fill="rgb(220,51,40)" rx="2" ry="2" />
<text x="473.76" y="575.5" >[..</text>
</g>
<g >
<title>scsi_run_queue (1 samples, 0.95%)</title><rect x="223.5" y="373" width="11.3" height="15.0" fill="rgb(218,189,47)" rx="2" ry="2" />
<text x="226.52" y="383.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (1 samples, 0.95%)</title><rect x="493.2" y="565" width="11.3" height="15.0" fill="rgb(234,68,0)" rx="2" ry="2" />
<text x="496.24" y="575.5" ></text>
</g>
<g >
<title>do_filp_open (1 samples, 0.95%)</title><rect x="594.4" y="533" width="11.2" height="15.0" fill="rgb(222,83,28)" rx="2" ry="2" />
<text x="597.38" y="543.5" ></text>
</g>
<g >
<title>kthread (1 samples, 0.95%)</title><rect x="1055.1" y="613" width="11.3" height="15.0" fill="rgb(252,113,5)" rx="2" ry="2" />
<text x="1058.14" y="623.5" ></text>
</g>
<g >
<title>scsi_run_queue (1 samples, 0.95%)</title><rect x="302.2" y="373" width="11.2" height="15.0" fill="rgb(212,217,43)" rx="2" ry="2" />
<text x="305.19" y="383.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.95%)</title><rect x="1145.0" y="613" width="11.3" height="15.0" fill="rgb(226,165,31)" rx="2" ry="2" />
<text x="1148.05" y="623.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 3.81%)</title><rect x="459.5" y="581" width="45.0" height="15.0" fill="rgb(216,195,51)" rx="2" ry="2" />
<text x="462.52" y="591.5" >[unk..</text>
</g>
<g >
<title>scsi_run_queue (1 samples, 0.95%)</title><rect x="448.3" y="373" width="11.2" height="15.0" fill="rgb(235,186,35)" rx="2" ry="2" />
<text x="451.29" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="1055.1" y="165" width="11.3" height="15.0" fill="rgb(214,1,32)" rx="2" ry="2" />
<text x="1058.14" y="175.5" ></text>
</g>
<g >
<title>scsi_next_command (1 samples, 0.95%)</title><rect x="1167.5" y="325" width="11.3" height="15.0" fill="rgb(250,219,39)" rx="2" ry="2" />
<text x="1170.52" y="335.5" ></text>
</g>
<g >
<title>mempool_alloc_slab (1 samples, 0.95%)</title><rect x="1100.1" y="357" width="11.2" height="15.0" fill="rgb(233,32,23)" rx="2" ry="2" />
<text x="1103.10" y="367.5" ></text>
</g>
<g >
<title>queue_unplugged (1 samples, 0.95%)</title><rect x="1043.9" y="293" width="11.2" height="15.0" fill="rgb(215,171,23)" rx="2" ry="2" />
<text x="1046.90" y="303.5" ></text>
</g>
<g >
<title>[unknown] (22 samples, 20.95%)</title><rect x="66.2" y="613" width="247.2" height="15.0" fill="rgb(232,78,4)" rx="2" ry="2" />
<text x="69.19" y="623.5" >[unknown]</text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="1043.9" y="261" width="11.2" height="15.0" fill="rgb(234,132,5)" rx="2" ry="2" />
<text x="1046.90" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.95%)</title><rect x="1100.1" y="37" width="11.2" height="15.0" fill="rgb(246,29,42)" rx="2" ry="2" />
<text x="1103.10" y="47.5" ></text>
</g>
<g >
<title>strnlen_user (1 samples, 0.95%)</title><rect x="1032.7" y="517" width="11.2" height="15.0" fill="rgb(228,214,35)" rx="2" ry="2" />
<text x="1035.67" y="527.5" ></text>
</g>
<g >
<title>free@plt (1 samples, 0.95%)</title><rect x="751.7" y="613" width="11.3" height="15.0" fill="rgb(216,187,29)" rx="2" ry="2" />
<text x="754.71" y="623.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.95%)</title><rect x="302.2" y="485" width="11.2" height="15.0" fill="rgb(220,107,25)" rx="2" ry="2" />
<text x="305.19" y="495.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.95%)</title><rect x="10.0" y="565" width="11.2" height="15.0" fill="rgb(245,119,50)" rx="2" ry="2" />
<text x="13.00" y="575.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.95%)</title><rect x="1055.1" y="405" width="11.3" height="15.0" fill="rgb(231,208,21)" rx="2" ry="2" />
<text x="1058.14" y="415.5" ></text>
</g>
<g >
<title>PolicyCheckPartial (1 samples, 0.95%)</title><rect x="32.5" y="629" width="11.2" height="15.0" fill="rgb(224,204,3)" rx="2" ry="2" />
<text x="35.48" y="639.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="965.2" y="341" width="11.3" height="15.0" fill="rgb(237,77,24)" rx="2" ry="2" />
<text x="968.24" y="351.5" ></text>
</g>
<g >
<title>ra_submit (1 samples, 0.95%)</title><rect x="1133.8" y="357" width="11.2" height="15.0" fill="rgb(211,227,3)" rx="2" ry="2" />
<text x="1136.81" y="367.5" ></text>
</g>
<g >
<title>scsi_end_request (1 samples, 0.95%)</title><rect x="1055.1" y="293" width="11.3" height="15.0" fill="rgb(230,193,3)" rx="2" ry="2" />
<text x="1058.14" y="303.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="10.0" y="389" width="11.2" height="15.0" fill="rgb(245,132,6)" rx="2" ry="2" />
<text x="13.00" y="399.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 0.95%)</title><rect x="302.2" y="341" width="11.2" height="15.0" fill="rgb(210,102,2)" rx="2" ry="2" />
<text x="305.19" y="351.5" ></text>
</g>
<g >
<title>bdi_writeback_workfn (4 samples, 3.81%)</title><rect x="1088.9" y="565" width="44.9" height="15.0" fill="rgb(248,196,50)" rx="2" ry="2" />
<text x="1091.86" y="575.5" >bdi_..</text>
</g>
<g >
<title>scsi_request_fn (1 samples, 0.95%)</title><rect x="21.2" y="373" width="11.3" height="15.0" fill="rgb(221,162,53)" rx="2" ry="2" />
<text x="24.24" y="383.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 0.95%)</title><rect x="10.0" y="501" width="11.2" height="15.0" fill="rgb(237,200,22)" rx="2" ry="2" />
<text x="13.00" y="511.5" ></text>
</g>
<g >
<title>page_fault (1 samples, 0.95%)</title><rect x="650.6" y="597" width="11.2" height="15.0" fill="rgb(230,69,1)" rx="2" ry="2" />
<text x="653.57" y="607.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.95%)</title><rect x="302.2" y="565" width="11.2" height="15.0" fill="rgb(224,116,27)" rx="2" ry="2" />
<text x="305.19" y="575.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 0.95%)</title><rect x="223.5" y="293" width="11.3" height="15.0" fill="rgb(236,71,34)" rx="2" ry="2" />
<text x="226.52" y="303.5" ></text>
</g>
<g >
<title>security_inode_getattr (1 samples, 0.95%)</title><rect x="605.6" y="517" width="11.3" height="15.0" fill="rgb(240,122,24)" rx="2" ry="2" />
<text x="608.62" y="527.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 0.95%)</title><rect x="1043.9" y="245" width="11.2" height="15.0" fill="rgb(245,184,33)" rx="2" ry="2" />
<text x="1046.90" y="255.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (2 samples, 1.90%)</title><rect x="628.1" y="613" width="22.5" height="15.0" fill="rgb(253,43,7)" rx="2" ry="2" />
<text x="631.10" y="623.5" >_..</text>
</g>
<g >
<title>blk_run_queue (1 samples, 0.95%)</title><rect x="965.2" y="389" width="11.3" height="15.0" fill="rgb(210,85,4)" rx="2" ry="2" />
<text x="968.24" y="399.5" ></text>
</g>
<g >
<title>[unknown] (21 samples, 20.00%)</title><rect x="77.4" y="597" width="236.0" height="15.0" fill="rgb(207,27,45)" rx="2" ry="2" />
<text x="80.43" y="607.5" >[unknown]</text>
</g>
<g >
<title>x86_64_start_kernel (1 samples, 0.95%)</title><rect x="1167.5" y="613" width="11.3" height="15.0" fill="rgb(253,192,52)" rx="2" ry="2" />
<text x="1170.52" y="623.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.95%)</title><rect x="10.0" y="533" width="11.2" height="15.0" fill="rgb(241,82,28)" rx="2" ry="2" />
<text x="13.00" y="543.5" ></text>
</g>
<g >
<title>kthread (4 samples, 3.81%)</title><rect x="1088.9" y="613" width="44.9" height="15.0" fill="rgb(218,183,8)" rx="2" ry="2" />
<text x="1091.86" y="623.5" >kthr..</text>
</g>
<g >
<title>sys_open (1 samples, 0.95%)</title><rect x="594.4" y="565" width="11.2" height="15.0" fill="rgb(222,8,39)" rx="2" ry="2" />
<text x="597.38" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 7.62%)</title><rect x="661.8" y="613" width="89.9" height="15.0" fill="rgb(229,68,45)" rx="2" ry="2" />
<text x="664.81" y="623.5" >_int_malloc</text>
</g>
<g >
<title>SYSC_newfstatat (1 samples, 0.95%)</title><rect x="807.9" y="549" width="11.2" height="15.0" fill="rgb(210,43,36)" rx="2" ry="2" />
<text x="810.90" y="559.5" ></text>
</g>
<g >
<title>do_execve_common.isra.24 (2 samples, 1.90%)</title><rect x="1032.7" y="581" width="22.4" height="15.0" fill="rgb(221,104,33)" rx="2" ry="2" />
<text x="1035.67" y="591.5" >d..</text>
</g>
<g >
<title>path_lookupat (1 samples, 0.95%)</title><rect x="807.9" y="469" width="11.2" height="15.0" fill="rgb(215,158,10)" rx="2" ry="2" />
<text x="810.90" y="479.5" ></text>
</g>
</g>
</svg>
(1-1/4)