Project

General

Profile

Enhancement #19976 » perf62.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="534" onload="init(evt)" viewBox="0 0 1200 534" 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="534.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="517" > </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="517" > </text>
<g id="frames">
<g >
<title>[cf-promises] (4 samples, 4.94%)</title><rect x="476.2" y="405" width="58.2" height="15.0" fill="rgb(244,197,39)" rx="2" ry="2" />
<text x="479.17" y="415.5" >[cf-pr..</text>
</g>
<g >
<title>xfs_do_writepage (1 samples, 1.23%)</title><rect x="942.3" y="293" width="14.6" height="15.0" fill="rgb(251,101,18)" rx="2" ry="2" />
<text x="945.35" y="303.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 1.23%)</title><rect x="971.5" y="357" width="14.5" height="15.0" fill="rgb(237,14,46)" rx="2" ry="2" />
<text x="974.48" y="367.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 2.47%)</title><rect x="898.6" y="437" width="29.2" height="15.0" fill="rgb(226,11,37)" rx="2" ry="2" />
<text x="901.64" y="447.5" >ma..</text>
</g>
<g >
<title>mutex_lock (1 samples, 1.23%)</title><rect x="447.0" y="309" width="14.6" height="15.0" fill="rgb(215,137,29)" rx="2" ry="2" />
<text x="450.04" y="319.5" ></text>
</g>
<g >
<title>blk_queue_bio (1 samples, 1.23%)</title><rect x="942.3" y="229" width="14.6" height="15.0" fill="rgb(237,174,54)" rx="2" ry="2" />
<text x="945.35" y="239.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (3 samples, 3.70%)</title><rect x="563.6" y="389" width="43.7" height="15.0" fill="rgb(242,0,49)" rx="2" ry="2" />
<text x="566.58" y="399.5" >__st..</text>
</g>
<g >
<title>scsi_finish_command (1 samples, 1.23%)</title><rect x="1160.9" y="197" width="14.5" height="15.0" fill="rgb(227,131,38)" rx="2" ry="2" />
<text x="1163.86" y="207.5" ></text>
</g>
<g >
<title>ret_from_intr (3 samples, 3.70%)</title><rect x="1131.7" y="325" width="43.7" height="15.0" fill="rgb(245,141,22)" rx="2" ry="2" />
<text x="1134.73" y="335.5" >ret_..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 1.23%)</title><rect x="1160.9" y="37" width="14.5" height="15.0" fill="rgb(226,11,28)" rx="2" ry="2" />
<text x="1163.86" y="47.5" ></text>
</g>
<g >
<title>[cf-promises] (7 samples, 8.64%)</title><rect x="330.5" y="437" width="102.0" height="15.0" fill="rgb(242,29,17)" rx="2" ry="2" />
<text x="333.49" y="447.5" >[cf-promises]</text>
</g>
<g >
<title>default_idle (3 samples, 3.70%)</title><rect x="1131.7" y="341" width="43.7" height="15.0" fill="rgb(225,139,45)" rx="2" ry="2" />
<text x="1134.73" y="351.5" >defa..</text>
</g>
<g >
<title>kworker/0:0 (1 samples, 1.23%)</title><rect x="1102.6" y="469" width="14.6" height="15.0" fill="rgb(228,73,24)" rx="2" ry="2" />
<text x="1105.59" y="479.5" ></text>
</g>
<g >
<title>stub_clone (1 samples, 1.23%)</title><rect x="447.0" y="389" width="14.6" height="15.0" fill="rgb(219,196,51)" rx="2" ry="2" />
<text x="450.04" y="399.5" ></text>
</g>
<g >
<title>[unknown] (16 samples, 19.75%)</title><rect x="68.3" y="421" width="233.1" height="15.0" fill="rgb(235,203,45)" rx="2" ry="2" />
<text x="71.27" y="431.5" >[unknown]</text>
</g>
<g >
<title>[VBoxService] (1 samples, 1.23%)</title><rect x="1175.4" y="421" width="14.6" height="15.0" fill="rgb(251,147,8)" rx="2" ry="2" />
<text x="1178.43" y="431.5" ></text>
</g>
<g >
<title>scsi_end_request (1 samples, 1.23%)</title><rect x="1160.9" y="165" width="14.5" height="15.0" fill="rgb(240,174,17)" rx="2" ry="2" />
<text x="1163.86" y="175.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 2.47%)</title><rect x="956.9" y="453" width="29.1" height="15.0" fill="rgb(219,104,22)" rx="2" ry="2" />
<text x="959.91" y="463.5" >__..</text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 1.23%)</title><rect x="1160.9" y="53" width="14.5" height="15.0" fill="rgb(236,7,41)" rx="2" ry="2" />
<text x="1163.86" y="63.5" ></text>
</g>
<g >
<title>[VBoxService] (1 samples, 1.23%)</title><rect x="1175.4" y="437" width="14.6" height="15.0" fill="rgb(235,78,2)" rx="2" ry="2" />
<text x="1178.43" y="447.5" ></text>
</g>
<g >
<title>__do_page_fault (1 samples, 1.23%)</title><rect x="884.1" y="389" width="14.5" height="15.0" fill="rgb(236,166,27)" rx="2" ry="2" />
<text x="887.07" y="399.5" ></text>
</g>
<g >
<title>__vsnprintf_chk (1 samples, 1.23%)</title><rect x="753.0" y="437" width="14.5" height="15.0" fill="rgb(220,44,23)" rx="2" ry="2" />
<text x="755.96" y="447.5" ></text>
</g>
<g >
<title>generic_make_request (1 samples, 1.23%)</title><rect x="942.3" y="245" width="14.6" height="15.0" fill="rgb(234,64,3)" rx="2" ry="2" />
<text x="945.35" y="255.5" ></text>
</g>
<g >
<title>cpu_startup_entry (3 samples, 3.70%)</title><rect x="1131.7" y="373" width="43.7" height="15.0" fill="rgb(236,38,6)" rx="2" ry="2" />
<text x="1134.73" y="383.5" >cpu_..</text>
</g>
<g >
<title>[cf-promises] (1 samples, 1.23%)</title><rect x="461.6" y="421" width="14.6" height="15.0" fill="rgb(243,197,9)" rx="2" ry="2" />
<text x="464.60" y="431.5" ></text>
</g>
<g >
<title>VbglR0GRPerform (1 samples, 1.23%)</title><rect x="1175.4" y="165" width="14.6" height="15.0" fill="rgb(218,193,50)" rx="2" ry="2" />
<text x="1178.43" y="175.5" ></text>
</g>
<g >
<title>page_fault (1 samples, 1.23%)</title><rect x="884.1" y="421" width="14.5" height="15.0" fill="rgb(240,21,53)" rx="2" ry="2" />
<text x="887.07" y="431.5" ></text>
</g>
<g >
<title>swapper (3 samples, 3.70%)</title><rect x="1131.7" y="469" width="43.7" height="15.0" fill="rgb(209,184,52)" rx="2" ry="2" />
<text x="1134.73" y="479.5" >swap..</text>
</g>
<g >
<title>do_softirq (3 samples, 3.70%)</title><rect x="1131.7" y="277" width="43.7" height="15.0" fill="rgb(208,68,7)" rx="2" ry="2" />
<text x="1134.73" y="287.5" >do_s..</text>
</g>
<g >
<title>_dl_map_object (1 samples, 1.23%)</title><rect x="1117.2" y="437" width="14.5" height="15.0" fill="rgb(253,137,33)" rx="2" ry="2" />
<text x="1120.16" y="447.5" ></text>
</g>
<g >
<title>__mem_cgroup_commit_charge (1 samples, 1.23%)</title><rect x="432.5" y="261" width="14.5" height="15.0" fill="rgb(208,49,53)" rx="2" ry="2" />
<text x="435.47" y="271.5" ></text>
</g>
<g >
<title>do_writepages (1 samples, 1.23%)</title><rect x="942.3" y="341" width="14.6" height="15.0" fill="rgb(246,92,5)" rx="2" ry="2" />
<text x="945.35" y="351.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (5 samples, 6.17%)</title><rect x="651.0" y="421" width="72.8" height="15.0" fill="rgb(235,169,18)" rx="2" ry="2" />
<text x="653.99" y="431.5" >__strcmp..</text>
</g>
<g >
<title>do_page_fault (1 samples, 1.23%)</title><rect x="432.5" y="373" width="14.5" height="15.0" fill="rgb(214,109,8)" rx="2" ry="2" />
<text x="435.47" y="383.5" ></text>
</g>
<g >
<title>start_thread (1 samples, 1.23%)</title><rect x="1175.4" y="453" width="14.6" height="15.0" fill="rgb(224,223,33)" rx="2" ry="2" />
<text x="1178.43" y="463.5" ></text>
</g>
<g >
<title>_fini (3 samples, 3.70%)</title><rect x="1015.2" y="453" width="43.7" height="15.0" fill="rgb(222,151,14)" rx="2" ry="2" />
<text x="1018.19" y="463.5" >_fini</text>
</g>
<g >
<title>mem_cgroup_charge_common (1 samples, 1.23%)</title><rect x="432.5" y="277" width="14.5" height="15.0" fill="rgb(211,86,40)" rx="2" ry="2" />
<text x="435.47" y="287.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 1.23%)</title><rect x="1175.4" y="277" width="14.6" height="15.0" fill="rgb(237,215,35)" rx="2" ry="2" />
<text x="1178.43" y="287.5" ></text>
</g>
<g >
<title>do_read_fault.isra.63 (1 samples, 1.23%)</title><rect x="1117.2" y="341" width="14.5" height="15.0" fill="rgb(250,122,4)" rx="2" ry="2" />
<text x="1120.16" y="351.5" ></text>
</g>
<g >
<title>[VBoxService] (1 samples, 1.23%)</title><rect x="1175.4" y="357" width="14.6" height="15.0" fill="rgb(248,10,38)" rx="2" ry="2" />
<text x="1178.43" y="367.5" ></text>
</g>
<g >
<title>sh (1 samples, 1.23%)</title><rect x="1117.2" y="469" width="14.5" height="15.0" fill="rgb(217,95,39)" rx="2" ry="2" />
<text x="1120.16" y="479.5" ></text>
</g>
<g >
<title>[cf-promises] (3 samples, 3.70%)</title><rect x="1015.2" y="437" width="43.7" height="15.0" fill="rgb(233,152,28)" rx="2" ry="2" />
<text x="1018.19" y="447.5" >[cf-..</text>
</g>
<g >
<title>VGDrvCommonIoCtl (1 samples, 1.23%)</title><rect x="1175.4" y="213" width="14.6" height="15.0" fill="rgb(248,151,32)" rx="2" ry="2" />
<text x="1178.43" y="223.5" ></text>
</g>
<g >
<title>__do_page_fault (1 samples, 1.23%)</title><rect x="1117.2" y="373" width="14.5" height="15.0" fill="rgb(224,208,21)" rx="2" ry="2" />
<text x="1120.16" y="383.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 1.23%)</title><rect x="971.5" y="437" width="14.5" height="15.0" fill="rgb(233,44,40)" rx="2" ry="2" />
<text x="974.48" y="447.5" ></text>
</g>
<g >
<title>page_fault (1 samples, 1.23%)</title><rect x="432.5" y="389" width="14.5" height="15.0" fill="rgb(217,167,44)" rx="2" ry="2" />
<text x="435.47" y="399.5" ></text>
</g>
<g >
<title>scsi_run_queue (1 samples, 1.23%)</title><rect x="1160.9" y="133" width="14.5" height="15.0" fill="rgb(214,225,50)" rx="2" ry="2" />
<text x="1163.86" y="143.5" ></text>
</g>
<g >
<title>scsi_next_command (1 samples, 1.23%)</title><rect x="1160.9" y="149" width="14.5" height="15.0" fill="rgb(230,171,18)" rx="2" ry="2" />
<text x="1163.86" y="159.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 1.23%)</title><rect x="1160.9" y="101" width="14.5" height="15.0" fill="rgb(219,168,1)" rx="2" ry="2" />
<text x="1163.86" y="111.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 1.23%)</title><rect x="942.3" y="197" width="14.6" height="15.0" fill="rgb(224,55,36)" rx="2" ry="2" />
<text x="945.35" y="207.5" ></text>
</g>
<g >
<title>worker_thread (1 samples, 1.23%)</title><rect x="1102.6" y="421" width="14.6" height="15.0" fill="rgb(233,38,13)" rx="2" ry="2" />
<text x="1105.59" y="431.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 2.47%)</title><rect x="767.5" y="437" width="29.2" height="15.0" fill="rgb(232,25,17)" rx="2" ry="2" />
<text x="770.53" y="447.5" >_i..</text>
</g>
<g >
<title>cf-promises (75 samples, 92.59%)</title><rect x="10.0" y="469" width="1092.6" height="15.0" fill="rgb(250,44,44)" rx="2" ry="2" />
<text x="13.00" y="479.5" >cf-promises</text>
</g>
<g >
<title>call_softirq (3 samples, 3.70%)</title><rect x="1131.7" y="261" width="43.7" height="15.0" fill="rgb(212,79,12)" rx="2" ry="2" />
<text x="1134.73" y="271.5" >call..</text>
</g>
<g >
<title>__do_page_fault (1 samples, 1.23%)</title><rect x="432.5" y="357" width="14.5" height="15.0" fill="rgb(215,218,10)" rx="2" ry="2" />
<text x="435.47" y="367.5" ></text>
</g>
<g >
<title>scsi_io_completion (1 samples, 1.23%)</title><rect x="1160.9" y="181" width="14.5" height="15.0" fill="rgb(216,104,26)" rx="2" ry="2" />
<text x="1163.86" y="191.5" ></text>
</g>
<g >
<title>arch_cpu_idle (3 samples, 3.70%)</title><rect x="1131.7" y="357" width="43.7" height="15.0" fill="rgb(226,68,7)" rx="2" ry="2" />
<text x="1134.73" y="367.5" >arch..</text>
</g>
<g >
<title>submit_bio (1 samples, 1.23%)</title><rect x="942.3" y="261" width="14.6" height="15.0" fill="rgb(220,78,31)" rx="2" ry="2" />
<text x="945.35" y="271.5" ></text>
</g>
<g >
<title>[unknown] (12 samples, 14.81%)</title><rect x="476.2" y="421" width="174.8" height="15.0" fill="rgb(254,52,22)" rx="2" ry="2" />
<text x="479.17" y="431.5" >[unknown]</text>
</g>
<g >
<title>[unknown] (19 samples, 23.46%)</title><rect x="461.6" y="437" width="276.8" height="15.0" fill="rgb(228,42,37)" rx="2" ry="2" />
<text x="464.60" y="447.5" >[unknown]</text>
</g>
<g >
<title>up_read (1 samples, 1.23%)</title><rect x="1117.2" y="277" width="14.5" height="15.0" fill="rgb(236,48,13)" rx="2" ry="2" />
<text x="1120.16" y="287.5" ></text>
</g>
<g >
<title>all (81 samples, 100%)</title><rect x="10.0" y="485" width="1180.0" height="15.0" fill="rgb(241,96,13)" rx="2" ry="2" />
<text x="13.00" y="495.5" ></text>
</g>
<g >
<title>__fdatasync_nocancel (1 samples, 1.23%)</title><rect x="942.3" y="453" width="14.6" height="15.0" fill="rgb(210,123,54)" rx="2" ry="2" />
<text x="945.35" y="463.5" ></text>
</g>
<g >
<title>strcmp@plt (1 samples, 1.23%)</title><rect x="927.8" y="437" width="14.5" height="15.0" fill="rgb(219,143,35)" rx="2" ry="2" />
<text x="930.78" y="447.5" ></text>
</g>
<g >
<title>page_fault (1 samples, 1.23%)</title><rect x="1117.2" y="405" width="14.5" height="15.0" fill="rgb(239,41,4)" rx="2" ry="2" />
<text x="1120.16" y="415.5" ></text>
</g>
<g >
<title>__strnlen_sse2 (1 samples, 1.23%)</title><rect x="1000.6" y="453" width="14.6" height="15.0" fill="rgb(242,50,10)" rx="2" ry="2" />
<text x="1003.62" y="463.5" ></text>
</g>
<g >
<title>do_vfs_ioctl (1 samples, 1.23%)</title><rect x="1175.4" y="245" width="14.6" height="15.0" fill="rgb(246,124,13)" rx="2" ry="2" />
<text x="1178.43" y="255.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (1 samples, 1.23%)</title><rect x="723.8" y="421" width="14.6" height="15.0" fill="rgb(236,88,41)" rx="2" ry="2" />
<text x="726.83" y="431.5" ></text>
</g>
<g >
<title>x86_64_start_kernel (3 samples, 3.70%)</title><rect x="1131.7" y="437" width="43.7" height="15.0" fill="rgb(226,79,38)" rx="2" ry="2" />
<text x="1134.73" y="447.5" >x86_..</text>
</g>
<g >
<title>[ld-2.17.so] (1 samples, 1.23%)</title><rect x="1117.2" y="453" width="14.5" height="15.0" fill="rgb(216,196,41)" rx="2" ry="2" />
<text x="1120.16" y="463.5" ></text>
</g>
<g >
<title>scsi_softirq_done (1 samples, 1.23%)</title><rect x="1160.9" y="213" width="14.5" height="15.0" fill="rgb(210,135,49)" rx="2" ry="2" />
<text x="1163.86" y="223.5" ></text>
</g>
<g >
<title>__libc_fork (2 samples, 2.47%)</title><rect x="432.5" y="405" width="29.1" height="15.0" fill="rgb(215,187,33)" rx="2" ry="2" />
<text x="435.47" y="415.5" >__..</text>
</g>
<g >
<title>[VBoxService] (1 samples, 1.23%)</title><rect x="1175.4" y="405" width="14.6" height="15.0" fill="rgb(222,186,42)" rx="2" ry="2" />
<text x="1178.43" y="415.5" ></text>
</g>
<g >
<title>[cf-promises] (2 samples, 2.47%)</title><rect x="432.5" y="421" width="29.1" height="15.0" fill="rgb(251,163,1)" rx="2" ry="2" />
<text x="435.47" y="431.5" >[c..</text>
</g>
<g >
<title>[libc-2.17.so] (17 samples, 20.99%)</title><rect x="53.7" y="453" width="247.7" height="15.0" fill="rgb(205,33,4)" rx="2" ry="2" />
<text x="56.70" y="463.5" >[libc-2.17.so]</text>
</g>
<g >
<title>__filemap_fdatawrite_range (1 samples, 1.23%)</title><rect x="942.3" y="357" width="14.6" height="15.0" fill="rgb(247,24,42)" rx="2" ry="2" />
<text x="945.35" y="367.5" ></text>
</g>
<g >
<title>blk_run_queue (1 samples, 1.23%)</title><rect x="1160.9" y="117" width="14.5" height="15.0" fill="rgb(207,96,23)" rx="2" ry="2" />
<text x="1163.86" y="127.5" ></text>
</g>
<g >
<title>[cf-promises] (2 samples, 2.47%)</title><rect x="534.4" y="389" width="29.2" height="15.0" fill="rgb(240,176,51)" rx="2" ry="2" />
<text x="537.44" y="399.5" >[c..</text>
</g>
<g >
<title>sys_fdatasync (1 samples, 1.23%)</title><rect x="942.3" y="421" width="14.6" height="15.0" fill="rgb(230,96,47)" rx="2" ry="2" />
<text x="945.35" y="431.5" ></text>
</g>
<g >
<title>__xfs_filemap_fault (1 samples, 1.23%)</title><rect x="1117.2" y="293" width="14.5" height="15.0" fill="rgb(225,204,6)" rx="2" ry="2" />
<text x="1120.16" y="303.5" ></text>
</g>
<g >
<title>do_IRQ (3 samples, 3.70%)</title><rect x="1131.7" y="309" width="43.7" height="15.0" fill="rgb(228,190,16)" rx="2" ry="2" />
<text x="1134.73" y="319.5" >do_IRQ</text>
</g>
<g >
<title>xfs_vm_writepages (1 samples, 1.23%)</title><rect x="942.3" y="325" width="14.6" height="15.0" fill="rgb(230,31,20)" rx="2" ry="2" />
<text x="945.35" y="335.5" ></text>
</g>
<g >
<title>do_page_fault (1 samples, 1.23%)</title><rect x="1117.2" y="389" width="14.5" height="15.0" fill="rgb(227,140,26)" rx="2" ry="2" />
<text x="1120.16" y="399.5" ></text>
</g>
<g >
<title>mem_cgroup_newpage_charge (1 samples, 1.23%)</title><rect x="432.5" y="293" width="14.5" height="15.0" fill="rgb(245,13,3)" rx="2" ry="2" />
<text x="435.47" y="303.5" ></text>
</g>
<g >
<title>rest_init (3 samples, 3.70%)</title><rect x="1131.7" y="389" width="43.7" height="15.0" fill="rgb(224,137,29)" rx="2" ry="2" />
<text x="1134.73" y="399.5" >rest..</text>
</g>
<g >
<title>handle_mm_fault (1 samples, 1.23%)</title><rect x="432.5" y="341" width="14.5" height="15.0" fill="rgb(214,148,37)" rx="2" ry="2" />
<text x="435.47" y="351.5" ></text>
</g>
<g >
<title>write_cache_pages (1 samples, 1.23%)</title><rect x="942.3" y="309" width="14.6" height="15.0" fill="rgb(221,159,47)" rx="2" ry="2" />
<text x="945.35" y="319.5" ></text>
</g>
<g >
<title>scsi_request_fn (1 samples, 1.23%)</title><rect x="1160.9" y="85" width="14.5" height="15.0" fill="rgb(230,93,36)" rx="2" ry="2" />
<text x="1163.86" y="95.5" ></text>
</g>
<g >
<title>do_fork (1 samples, 1.23%)</title><rect x="447.0" y="357" width="14.6" height="15.0" fill="rgb(216,216,7)" rx="2" ry="2" />
<text x="450.04" y="367.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (5 samples, 6.17%)</title><rect x="228.5" y="405" width="72.9" height="15.0" fill="rgb(219,96,39)" rx="2" ry="2" />
<text x="231.52" y="415.5" >__strcmp..</text>
</g>
<g >
<title>[perf] (2 samples, 2.47%)</title><rect x="432.5" y="437" width="29.1" height="15.0" fill="rgb(227,166,45)" rx="2" ry="2" />
<text x="435.47" y="447.5" >[p..</text>
</g>
<g >
<title>x86_64_start_reservations (3 samples, 3.70%)</title><rect x="1131.7" y="421" width="43.7" height="15.0" fill="rgb(247,15,43)" rx="2" ry="2" />
<text x="1134.73" y="431.5" >x86_..</text>
</g>
<g >
<title>vminfo (1 samples, 1.23%)</title><rect x="1175.4" y="469" width="14.6" height="15.0" fill="rgb(251,42,15)" rx="2" ry="2" />
<text x="1178.43" y="479.5" ></text>
</g>
<g >
<title>vgdrvIoCtl_HGCMCallInner.constprop.14 (1 samples, 1.23%)</title><rect x="1175.4" y="197" width="14.6" height="15.0" fill="rgb(230,13,29)" rx="2" ry="2" />
<text x="1178.43" y="207.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (3 samples, 3.70%)</title><rect x="607.3" y="405" width="43.7" height="15.0" fill="rgb(235,13,21)" rx="2" ry="2" />
<text x="610.28" y="415.5" >__st..</text>
</g>
<g >
<title>__do_softirq (3 samples, 3.70%)</title><rect x="1131.7" y="245" width="43.7" height="15.0" fill="rgb(214,226,42)" rx="2" ry="2" />
<text x="1134.73" y="255.5" >__do..</text>
</g>
<g >
<title>_itoa_word (1 samples, 1.23%)</title><rect x="753.0" y="421" width="14.5" height="15.0" fill="rgb(250,171,32)" rx="2" ry="2" />
<text x="755.96" y="431.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (1 samples, 1.23%)</title><rect x="942.3" y="165" width="14.6" height="15.0" fill="rgb(242,150,47)" rx="2" ry="2" />
<text x="945.35" y="175.5" ></text>
</g>
<g >
<title>kthread (1 samples, 1.23%)</title><rect x="1102.6" y="437" width="14.6" height="15.0" fill="rgb(208,106,2)" rx="2" ry="2" />
<text x="1105.59" y="447.5" ></text>
</g>
<g >
<title>blk_done_softirq (1 samples, 1.23%)</title><rect x="1160.9" y="229" width="14.5" height="15.0" fill="rgb(215,41,18)" rx="2" ry="2" />
<text x="1163.86" y="239.5" ></text>
</g>
<g >
<title>dup_mm (1 samples, 1.23%)</title><rect x="447.0" y="325" width="14.6" height="15.0" fill="rgb(219,188,40)" rx="2" ry="2" />
<text x="450.04" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 2.47%)</title><rect x="1058.9" y="453" width="29.1" height="15.0" fill="rgb(239,101,50)" rx="2" ry="2" />
<text x="1061.89" y="463.5" >_i..</text>
</g>
<g >
<title>[unknown] (5 samples, 6.17%)</title><rect x="534.4" y="405" width="72.9" height="15.0" fill="rgb(240,183,31)" rx="2" ry="2" />
<text x="537.44" y="415.5" >[unknown]</text>
</g>
<g >
<title>start_cpu (3 samples, 3.70%)</title><rect x="1131.7" y="453" width="43.7" height="15.0" fill="rgb(217,146,28)" rx="2" ry="2" />
<text x="1134.73" y="463.5" >star..</text>
</g>
<g >
<title>[VBoxService] (1 samples, 1.23%)</title><rect x="1175.4" y="389" width="14.6" height="15.0" fill="rgb(217,30,15)" rx="2" ry="2" />
<text x="1178.43" y="399.5" ></text>
</g>
<g >
<title>[libpcre.so.1.2.0] (2 samples, 2.47%)</title><rect x="301.4" y="453" width="29.1" height="15.0" fill="rgb(210,99,33)" rx="2" ry="2" />
<text x="304.36" y="463.5" >[l..</text>
</g>
<g >
<title>[cf-promises] (11 samples, 13.58%)</title><rect x="68.3" y="405" width="160.2" height="15.0" fill="rgb(219,211,52)" rx="2" ry="2" />
<text x="71.27" y="415.5" >[cf-promises]</text>
</g>
<g >
<title>[cf-promises] (1 samples, 1.23%)</title><rect x="53.7" y="421" width="14.6" height="15.0" fill="rgb(235,87,30)" rx="2" ry="2" />
<text x="56.70" y="431.5" ></text>
</g>
<g >
<title>__GI___ioctl (1 samples, 1.23%)</title><rect x="1175.4" y="293" width="14.6" height="15.0" fill="rgb(228,27,40)" rx="2" ry="2" />
<text x="1178.43" y="303.5" ></text>
</g>
<g >
<title>[cf-promises] (2 samples, 2.47%)</title><rect x="403.3" y="421" width="29.2" height="15.0" fill="rgb(212,178,48)" rx="2" ry="2" />
<text x="406.33" y="431.5" >[c..</text>
</g>
<g >
<title>handle_mm_fault (1 samples, 1.23%)</title><rect x="1117.2" y="357" width="14.5" height="15.0" fill="rgb(214,163,14)" rx="2" ry="2" />
<text x="1120.16" y="367.5" ></text>
</g>
<g >
<title>vgdrvLinuxIOCtl (1 samples, 1.23%)</title><rect x="1175.4" y="229" width="14.6" height="15.0" fill="rgb(225,203,11)" rx="2" ry="2" />
<text x="1178.43" y="239.5" ></text>
</g>
<g >
<title>[VBoxService] (1 samples, 1.23%)</title><rect x="1175.4" y="373" width="14.6" height="15.0" fill="rgb(231,42,3)" rx="2" ry="2" />
<text x="1178.43" y="383.5" ></text>
</g>
<g >
<title>do_page_fault (1 samples, 1.23%)</title><rect x="884.1" y="405" width="14.5" height="15.0" fill="rgb(244,219,53)" rx="2" ry="2" />
<text x="887.07" y="415.5" ></text>
</g>
<g >
<title>xfs_submit_ioend.isra.12 (1 samples, 1.23%)</title><rect x="942.3" y="277" width="14.6" height="15.0" fill="rgb(209,198,23)" rx="2" ry="2" />
<text x="945.35" y="287.5" ></text>
</g>
<g >
<title>irq_exit (3 samples, 3.70%)</title><rect x="1131.7" y="293" width="43.7" height="15.0" fill="rgb(216,37,2)" rx="2" ry="2" />
<text x="1134.73" y="303.5" >irq_..</text>
</g>
<g >
<title>[VBoxService] (1 samples, 1.23%)</title><rect x="1175.4" y="309" width="14.6" height="15.0" fill="rgb(242,104,0)" rx="2" ry="2" />
<text x="1178.43" y="319.5" ></text>
</g>
<g >
<title>xfs_filemap_fault (1 samples, 1.23%)</title><rect x="1117.2" y="309" width="14.5" height="15.0" fill="rgb(223,49,45)" rx="2" ry="2" />
<text x="1120.16" y="319.5" ></text>
</g>
<g >
<title>[unknown] (42 samples, 51.85%)</title><rect x="330.5" y="453" width="611.8" height="15.0" fill="rgb(222,58,18)" rx="2" ry="2" />
<text x="333.49" y="463.5" >[unknown]</text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 1.23%)</title><rect x="971.5" y="421" width="14.5" height="15.0" fill="rgb(223,68,21)" rx="2" ry="2" />
<text x="974.48" y="431.5" ></text>
</g>
<g >
<title>__do_fault.isra.61 (1 samples, 1.23%)</title><rect x="1117.2" y="325" width="14.5" height="15.0" fill="rgb(226,165,42)" rx="2" ry="2" />
<text x="1120.16" y="335.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 1.23%)</title><rect x="1160.9" y="69" width="14.5" height="15.0" fill="rgb(245,43,15)" rx="2" ry="2" />
<text x="1163.86" y="79.5" ></text>
</g>
<g >
<title>sys_clone (1 samples, 1.23%)</title><rect x="447.0" y="373" width="14.6" height="15.0" fill="rgb(254,116,29)" rx="2" ry="2" />
<text x="450.04" y="383.5" ></text>
</g>
<g >
<title>[unknown] (17 samples, 20.99%)</title><rect x="53.7" y="437" width="247.7" height="15.0" fill="rgb(210,129,11)" rx="2" ry="2" />
<text x="56.70" y="447.5" >[unknown]</text>
</g>
<g >
<title>do_softirq (1 samples, 1.23%)</title><rect x="971.5" y="389" width="14.5" height="15.0" fill="rgb(215,182,32)" rx="2" ry="2" />
<text x="974.48" y="399.5" ></text>
</g>
<g >
<title>copy_process (1 samples, 1.23%)</title><rect x="447.0" y="341" width="14.6" height="15.0" fill="rgb(240,74,15)" rx="2" ry="2" />
<text x="450.04" y="351.5" ></text>
</g>
<g >
<title>malloc (1 samples, 1.23%)</title><rect x="1088.0" y="453" width="14.6" height="15.0" fill="rgb(227,160,3)" rx="2" ry="2" />
<text x="1091.02" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 8.64%)</title><rect x="796.7" y="437" width="101.9" height="15.0" fill="rgb(252,191,43)" rx="2" ry="2" />
<text x="799.67" y="447.5" >_int_malloc</text>
</g>
<g >
<title>__strlen_sse2_pminub (1 samples, 1.23%)</title><rect x="986.0" y="453" width="14.6" height="15.0" fill="rgb(245,49,51)" rx="2" ry="2" />
<text x="989.05" y="463.5" ></text>
</g>
<g >
<title>VbglR0HGCMInternalCall (1 samples, 1.23%)</title><rect x="1175.4" y="181" width="14.6" height="15.0" fill="rgb(229,54,10)" rx="2" ry="2" />
<text x="1178.43" y="191.5" ></text>
</g>
<g >
<title>process_one_work (1 samples, 1.23%)</title><rect x="1102.6" y="405" width="14.6" height="15.0" fill="rgb(225,229,52)" rx="2" ry="2" />
<text x="1105.59" y="415.5" ></text>
</g>
<g >
<title>memcmp (1 samples, 1.23%)</title><rect x="1117.2" y="421" width="14.5" height="15.0" fill="rgb(210,2,25)" rx="2" ry="2" />
<text x="1120.16" y="431.5" ></text>
</g>
<g >
<title>do_wp_page (1 samples, 1.23%)</title><rect x="432.5" y="325" width="14.5" height="15.0" fill="rgb(233,169,1)" rx="2" ry="2" />
<text x="435.47" y="335.5" ></text>
</g>
<g >
<title>__strndup (1 samples, 1.23%)</title><rect x="738.4" y="437" width="14.6" height="15.0" fill="rgb(254,219,52)" rx="2" ry="2" />
<text x="741.40" y="447.5" ></text>
</g>
<g >
<title>wp_page_copy.isra.73 (1 samples, 1.23%)</title><rect x="432.5" y="309" width="14.5" height="15.0" fill="rgb(247,188,21)" rx="2" ry="2" />
<text x="435.47" y="319.5" ></text>
</g>
<g >
<title>[cf-promises] (3 samples, 3.70%)</title><rect x="10.0" y="453" width="43.7" height="15.0" fill="rgb(220,119,36)" rx="2" ry="2" />
<text x="13.00" y="463.5" >[cf-..</text>
</g>
<g >
<title>call_softirq (1 samples, 1.23%)</title><rect x="971.5" y="373" width="14.5" height="15.0" fill="rgb(215,132,39)" rx="2" ry="2" />
<text x="974.48" y="383.5" ></text>
</g>
<g >
<title>ret_from_fork_nospec_end (1 samples, 1.23%)</title><rect x="1102.6" y="453" width="14.6" height="15.0" fill="rgb(246,114,17)" rx="2" ry="2" />
<text x="1105.59" y="463.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 1.23%)</title><rect x="971.5" y="405" width="14.5" height="15.0" fill="rgb(240,192,43)" rx="2" ry="2" />
<text x="974.48" y="415.5" ></text>
</g>
<g >
<title>filemap_write_and_wait_range (1 samples, 1.23%)</title><rect x="942.3" y="373" width="14.6" height="15.0" fill="rgb(242,28,12)" rx="2" ry="2" />
<text x="945.35" y="383.5" ></text>
</g>
<g >
<title>__blk_run_queue (1 samples, 1.23%)</title><rect x="942.3" y="213" width="14.6" height="15.0" fill="rgb(231,98,14)" rx="2" ry="2" />
<text x="945.35" y="223.5" ></text>
</g>
<g >
<title>[VBoxService] (1 samples, 1.23%)</title><rect x="1175.4" y="341" width="14.6" height="15.0" fill="rgb(214,138,54)" rx="2" ry="2" />
<text x="1178.43" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 1.23%)</title><rect x="942.3" y="149" width="14.6" height="15.0" fill="rgb(252,92,29)" rx="2" ry="2" />
<text x="945.35" y="159.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 1.23%)</title><rect x="942.3" y="437" width="14.6" height="15.0" fill="rgb(226,176,24)" rx="2" ry="2" />
<text x="945.35" y="447.5" ></text>
</g>
<g >
<title>e1000_watchdog (1 samples, 1.23%)</title><rect x="1102.6" y="389" width="14.6" height="15.0" fill="rgb(212,74,6)" rx="2" ry="2" />
<text x="1105.59" y="399.5" ></text>
</g>
<g >
<title>do_fsync (1 samples, 1.23%)</title><rect x="942.3" y="405" width="14.6" height="15.0" fill="rgb(231,75,41)" rx="2" ry="2" />
<text x="945.35" y="415.5" ></text>
</g>
<g >
<title>sys_ioctl (1 samples, 1.23%)</title><rect x="1175.4" y="261" width="14.6" height="15.0" fill="rgb(248,132,17)" rx="2" ry="2" />
<text x="1178.43" y="271.5" ></text>
</g>
<g >
<title>start_kernel (3 samples, 3.70%)</title><rect x="1131.7" y="405" width="43.7" height="15.0" fill="rgb(247,75,20)" rx="2" ry="2" />
<text x="1134.73" y="415.5" >star..</text>
</g>
<g >
<title>[VBoxService] (1 samples, 1.23%)</title><rect x="1175.4" y="325" width="14.6" height="15.0" fill="rgb(233,139,11)" rx="2" ry="2" />
<text x="1178.43" y="335.5" ></text>
</g>
<g >
<title>xfs_file_fsync (1 samples, 1.23%)</title><rect x="942.3" y="389" width="14.6" height="15.0" fill="rgb(244,150,45)" rx="2" ry="2" />
<text x="945.35" y="399.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (1 samples, 1.23%)</title><rect x="942.3" y="181" width="14.6" height="15.0" fill="rgb(246,100,51)" rx="2" ry="2" />
<text x="945.35" y="191.5" ></text>
</g>
</g>
</svg>
(2-2/4)