test-zig-cc/results/zigcc-hermetic-j8.svg

491 lines
858 KiB
XML

<?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="790" onload="init(evt)" viewBox="0 0 1200 790" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#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[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
known_font_width = get_monospace_width(frames);
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
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);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// 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);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
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));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + 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
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, 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];
return;
}
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["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg: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 get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
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, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
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 = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
var to_update_text = [];
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
to_update_text.push(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = 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_for_elements(el);
}
// 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_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
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 = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// 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 = term;
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.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
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 + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="790" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="773.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="773.00"> </text><svg id="frames" x="10" width="1180" total_samples="1538847"><g><title>[anon] (1,330 samples, 0.09%)</title><rect x="0.0135%" y="709" width="0.0864%" height="15" fill="rgb(227,0,7)" fg:x="207" fg:w="1330"/><text x="0.2635%" y="719.50"></text></g><g><title>[perf-934749.map] (168 samples, 0.01%)</title><rect x="0.1003%" y="709" width="0.0109%" height="15" fill="rgb(217,0,24)" fg:x="1543" fg:w="168"/><text x="0.3503%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (206 samples, 0.01%)</title><rect x="0.1419%" y="501" width="0.0134%" height="15" fill="rgb(221,193,54)" fg:x="2184" fg:w="206"/><text x="0.3919%" y="511.50"></text></g><g><title>BlockBegin::iterate_preorder (206 samples, 0.01%)</title><rect x="0.1419%" y="485" width="0.0134%" height="15" fill="rgb(248,212,6)" fg:x="2184" fg:w="206"/><text x="0.3919%" y="495.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (379 samples, 0.02%)</title><rect x="0.1389%" y="517" width="0.0246%" height="15" fill="rgb(208,68,35)" fg:x="2137" fg:w="379"/><text x="0.3889%" y="527.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (164 samples, 0.01%)</title><rect x="0.1723%" y="485" width="0.0107%" height="15" fill="rgb(232,128,0)" fg:x="2652" fg:w="164"/><text x="0.4223%" y="495.50"></text></g><g><title>ciBytecodeStream::get_field (169 samples, 0.01%)</title><rect x="0.1959%" y="437" width="0.0110%" height="15" fill="rgb(207,160,47)" fg:x="3014" fg:w="169"/><text x="0.4459%" y="447.50"></text></g><g><title>GraphBuilder::access_field (220 samples, 0.01%)</title><rect x="0.1933%" y="453" width="0.0143%" height="15" fill="rgb(228,23,34)" fg:x="2975" fg:w="220"/><text x="0.4433%" y="463.50"></text></g><g><title>GraphBuilder::access_field (158 samples, 0.01%)</title><rect x="0.2319%" y="373" width="0.0103%" height="15" fill="rgb(218,30,26)" fg:x="3568" fg:w="158"/><text x="0.4819%" y="383.50"></text></g><g><title>GraphBuilder::try_inline_full (170 samples, 0.01%)</title><rect x="0.2677%" y="181" width="0.0110%" height="15" fill="rgb(220,122,19)" fg:x="4120" fg:w="170"/><text x="0.5177%" y="191.50"></text></g><g><title>GraphBuilder::try_inline (186 samples, 0.01%)</title><rect x="0.2675%" y="197" width="0.0121%" height="15" fill="rgb(250,228,42)" fg:x="4117" fg:w="186"/><text x="0.5175%" y="207.50"></text></g><g><title>GraphBuilder::invoke (249 samples, 0.02%)</title><rect x="0.2668%" y="213" width="0.0162%" height="15" fill="rgb(240,193,28)" fg:x="4106" fg:w="249"/><text x="0.5168%" y="223.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (345 samples, 0.02%)</title><rect x="0.2618%" y="245" width="0.0224%" height="15" fill="rgb(216,20,37)" fg:x="4028" fg:w="345"/><text x="0.5118%" y="255.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (340 samples, 0.02%)</title><rect x="0.2621%" y="229" width="0.0221%" height="15" fill="rgb(206,188,39)" fg:x="4033" fg:w="340"/><text x="0.5121%" y="239.50"></text></g><g><title>GraphBuilder::try_inline_full (447 samples, 0.03%)</title><rect x="0.2608%" y="261" width="0.0290%" height="15" fill="rgb(217,207,13)" fg:x="4013" fg:w="447"/><text x="0.5108%" y="271.50"></text></g><g><title>GraphBuilder::try_inline (490 samples, 0.03%)</title><rect x="0.2606%" y="277" width="0.0318%" height="15" fill="rgb(231,73,38)" fg:x="4010" fg:w="490"/><text x="0.5106%" y="287.50"></text></g><g><title>GraphBuilder::invoke (667 samples, 0.04%)</title><rect x="0.2590%" y="293" width="0.0433%" height="15" fill="rgb(225,20,46)" fg:x="3985" fg:w="667"/><text x="0.5090%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (868 samples, 0.06%)</title><rect x="0.2493%" y="325" width="0.0564%" height="15" fill="rgb(210,31,41)" fg:x="3836" fg:w="868"/><text x="0.4993%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (861 samples, 0.06%)</title><rect x="0.2497%" y="309" width="0.0560%" height="15" fill="rgb(221,200,47)" fg:x="3843" fg:w="861"/><text x="0.4997%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (1,059 samples, 0.07%)</title><rect x="0.2471%" y="341" width="0.0688%" height="15" fill="rgb(226,26,5)" fg:x="3803" fg:w="1059"/><text x="0.4971%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (1,099 samples, 0.07%)</title><rect x="0.2467%" y="357" width="0.0714%" height="15" fill="rgb(249,33,26)" fg:x="3796" fg:w="1099"/><text x="0.4967%" y="367.50"></text></g><g><title>ciBytecodeStream::get_method (200 samples, 0.01%)</title><rect x="0.3203%" y="357" width="0.0130%" height="15" fill="rgb(235,183,28)" fg:x="4929" fg:w="200"/><text x="0.5703%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (188 samples, 0.01%)</title><rect x="0.3211%" y="341" width="0.0122%" height="15" fill="rgb(221,5,38)" fg:x="4941" fg:w="188"/><text x="0.5711%" y="351.50"></text></g><g><title>GraphBuilder::invoke (1,401 samples, 0.09%)</title><rect x="0.2445%" y="373" width="0.0910%" height="15" fill="rgb(247,18,42)" fg:x="3763" fg:w="1401"/><text x="0.4945%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,777 samples, 0.12%)</title><rect x="0.2259%" y="405" width="0.1155%" height="15" fill="rgb(241,131,45)" fg:x="3476" fg:w="1777"/><text x="0.4759%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,763 samples, 0.11%)</title><rect x="0.2268%" y="389" width="0.1146%" height="15" fill="rgb(249,31,29)" fg:x="3490" fg:w="1763"/><text x="0.4768%" y="399.50"></text></g><g><title>GraphBuilder::push_scope (194 samples, 0.01%)</title><rect x="0.3424%" y="405" width="0.0126%" height="15" fill="rgb(225,111,53)" fg:x="5269" fg:w="194"/><text x="0.5924%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (2,247 samples, 0.15%)</title><rect x="0.2208%" y="421" width="0.1460%" height="15" fill="rgb(238,160,17)" fg:x="3398" fg:w="2247"/><text x="0.4708%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (2,269 samples, 0.15%)</title><rect x="0.2198%" y="437" width="0.1474%" height="15" fill="rgb(214,148,48)" fg:x="3383" fg:w="2269"/><text x="0.4698%" y="447.50"></text></g><g><title>ciMethod::ciMethod (177 samples, 0.01%)</title><rect x="0.3832%" y="373" width="0.0115%" height="15" fill="rgb(232,36,49)" fg:x="5897" fg:w="177"/><text x="0.6332%" y="383.50"></text></g><g><title>ciObjectFactory::get_metadata (221 samples, 0.01%)</title><rect x="0.3807%" y="405" width="0.0144%" height="15" fill="rgb(209,103,24)" fg:x="5858" fg:w="221"/><text x="0.6307%" y="415.50"></text></g><g><title>ciObjectFactory::create_new_metadata (196 samples, 0.01%)</title><rect x="0.3823%" y="389" width="0.0127%" height="15" fill="rgb(229,88,8)" fg:x="5883" fg:w="196"/><text x="0.6323%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (360 samples, 0.02%)</title><rect x="0.3721%" y="421" width="0.0234%" height="15" fill="rgb(213,181,19)" fg:x="5726" fg:w="360"/><text x="0.6221%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (391 samples, 0.03%)</title><rect x="0.3702%" y="437" width="0.0254%" height="15" fill="rgb(254,191,54)" fg:x="5697" fg:w="391"/><text x="0.6202%" y="447.50"></text></g><g><title>GraphBuilder::invoke (2,916 samples, 0.19%)</title><rect x="0.2127%" y="453" width="0.1895%" height="15" fill="rgb(241,83,37)" fg:x="3273" fg:w="2916"/><text x="0.4627%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,402 samples, 0.22%)</title><rect x="0.1859%" y="469" width="0.2211%" height="15" fill="rgb(233,36,39)" fg:x="2861" fg:w="3402"/><text x="0.4359%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,450 samples, 0.22%)</title><rect x="0.1836%" y="485" width="0.2242%" height="15" fill="rgb(226,3,54)" fg:x="2826" fg:w="3450"/><text x="0.4336%" y="495.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,809 samples, 0.25%)</title><rect x="0.1638%" y="501" width="0.2475%" height="15" fill="rgb(245,192,40)" fg:x="2520" fg:w="3809"/><text x="0.4138%" y="511.50"></text></g><g><title>IR::IR (3,824 samples, 0.25%)</title><rect x="0.1635%" y="517" width="0.2485%" height="15" fill="rgb(238,167,29)" fg:x="2516" fg:w="3824"/><text x="0.4135%" y="527.50"></text></g><g><title>NullCheckEliminator::iterate_one (160 samples, 0.01%)</title><rect x="0.4277%" y="485" width="0.0104%" height="15" fill="rgb(232,182,51)" fg:x="6581" fg:w="160"/><text x="0.6777%" y="495.50"></text></g><g><title>IR::eliminate_null_checks (190 samples, 0.01%)</title><rect x="0.4262%" y="517" width="0.0123%" height="15" fill="rgb(231,60,39)" fg:x="6559" fg:w="190"/><text x="0.6762%" y="527.50"></text></g><g><title>Optimizer::eliminate_null_checks (190 samples, 0.01%)</title><rect x="0.4262%" y="501" width="0.0123%" height="15" fill="rgb(208,69,12)" fg:x="6559" fg:w="190"/><text x="0.6762%" y="511.50"></text></g><g><title>Compilation::build_hir (4,763 samples, 0.31%)</title><rect x="0.1385%" y="533" width="0.3095%" height="15" fill="rgb(235,93,37)" fg:x="2132" fg:w="4763"/><text x="0.3885%" y="543.50"></text></g><g><title>LIR_Assembler::emit_call (178 samples, 0.01%)</title><rect x="0.4549%" y="501" width="0.0116%" height="15" fill="rgb(213,116,39)" fg:x="7000" fg:w="178"/><text x="0.7049%" y="511.50"></text></g><g><title>LIR_Assembler::emit_op1 (176 samples, 0.01%)</title><rect x="0.4687%" y="501" width="0.0114%" height="15" fill="rgb(222,207,29)" fg:x="7213" fg:w="176"/><text x="0.7187%" y="511.50"></text></g><g><title>LIR_Assembler::emit_code (736 samples, 0.05%)</title><rect x="0.4490%" y="517" width="0.0478%" height="15" fill="rgb(206,96,30)" fg:x="6910" fg:w="736"/><text x="0.6990%" y="527.50"></text></g><g><title>CounterOverflowStub::emit_code (179 samples, 0.01%)</title><rect x="0.5019%" y="501" width="0.0116%" height="15" fill="rgb(218,138,4)" fg:x="7723" fg:w="179"/><text x="0.7519%" y="511.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (375 samples, 0.02%)</title><rect x="0.5013%" y="517" width="0.0244%" height="15" fill="rgb(250,191,14)" fg:x="7714" fg:w="375"/><text x="0.7513%" y="527.50"></text></g><g><title>Compilation::emit_code_body (1,211 samples, 0.08%)</title><rect x="0.4481%" y="533" width="0.0787%" height="15" fill="rgb(239,60,40)" fg:x="6895" fg:w="1211"/><text x="0.6981%" y="543.50"></text></g><g><title>LIRGenerator::move_to_phi (251 samples, 0.02%)</title><rect x="0.5396%" y="469" width="0.0163%" height="15" fill="rgb(206,27,48)" fg:x="8304" fg:w="251"/><text x="0.7896%" y="479.50"></text></g><g><title>PhiResolverState::reset (166 samples, 0.01%)</title><rect x="0.5451%" y="453" width="0.0108%" height="15" fill="rgb(225,35,8)" fg:x="8389" fg:w="166"/><text x="0.7951%" y="463.50"></text></g><g><title>LIRGenerator::do_Goto (280 samples, 0.02%)</title><rect x="0.5387%" y="485" width="0.0182%" height="15" fill="rgb(250,213,24)" fg:x="8289" fg:w="280"/><text x="0.7887%" y="495.50"></text></g><g><title>LIRGenerator::block_do (972 samples, 0.06%)</title><rect x="0.5276%" y="501" width="0.0632%" height="15" fill="rgb(247,123,22)" fg:x="8119" fg:w="972"/><text x="0.7776%" y="511.50"></text></g><g><title>BlockList::iterate_forward (981 samples, 0.06%)</title><rect x="0.5271%" y="517" width="0.0637%" height="15" fill="rgb(231,138,38)" fg:x="8111" fg:w="981"/><text x="0.7771%" y="527.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (495 samples, 0.03%)</title><rect x="0.6116%" y="453" width="0.0322%" height="15" fill="rgb(231,145,46)" fg:x="9411" fg:w="495"/><text x="0.8616%" y="463.50"></text></g><g><title>LinearScanWalker::activate_current (746 samples, 0.05%)</title><rect x="0.6095%" y="469" width="0.0485%" height="15" fill="rgb(251,118,11)" fg:x="9380" fg:w="746"/><text x="0.8595%" y="479.50"></text></g><g><title>IntervalWalker::walk_to (940 samples, 0.06%)</title><rect x="0.5971%" y="485" width="0.0611%" height="15" fill="rgb(217,147,25)" fg:x="9188" fg:w="940"/><text x="0.8471%" y="495.50"></text></g><g><title>LinearScan::allocate_registers (1,027 samples, 0.07%)</title><rect x="0.5958%" y="501" width="0.0667%" height="15" fill="rgb(247,81,37)" fg:x="9169" fg:w="1027"/><text x="0.8458%" y="511.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (159 samples, 0.01%)</title><rect x="0.6854%" y="469" width="0.0103%" height="15" fill="rgb(209,12,38)" fg:x="10548" fg:w="159"/><text x="0.9354%" y="479.50"></text></g><g><title>LinearScan::compute_oop_map (179 samples, 0.01%)</title><rect x="0.6967%" y="453" width="0.0116%" height="15" fill="rgb(227,1,9)" fg:x="10721" fg:w="179"/><text x="0.9467%" y="463.50"></text></g><g><title>LinearScan::compute_oop_map (194 samples, 0.01%)</title><rect x="0.6958%" y="469" width="0.0126%" height="15" fill="rgb(248,47,43)" fg:x="10707" fg:w="194"/><text x="0.9458%" y="479.50"></text></g><g><title>LinearScan::assign_reg_num (699 samples, 0.05%)</title><rect x="0.6631%" y="485" width="0.0454%" height="15" fill="rgb(221,10,30)" fg:x="10204" fg:w="699"/><text x="0.9131%" y="495.50"></text></g><g><title>LinearScan::assign_reg_num (734 samples, 0.05%)</title><rect x="0.6626%" y="501" width="0.0477%" height="15" fill="rgb(210,229,1)" fg:x="10196" fg:w="734"/><text x="0.9126%" y="511.50"></text></g><g><title>LinearScan::add_use (208 samples, 0.01%)</title><rect x="0.7490%" y="485" width="0.0135%" height="15" fill="rgb(222,148,37)" fg:x="11526" fg:w="208"/><text x="0.9990%" y="495.50"></text></g><g><title>LinearScan::build_intervals (897 samples, 0.06%)</title><rect x="0.7103%" y="501" width="0.0583%" height="15" fill="rgb(234,67,33)" fg:x="10930" fg:w="897"/><text x="0.9603%" y="511.50"></text></g><g><title>LinearScan::compute_local_live_sets (292 samples, 0.02%)</title><rect x="0.7744%" y="501" width="0.0190%" height="15" fill="rgb(247,98,35)" fg:x="11917" fg:w="292"/><text x="1.0244%" y="511.50"></text></g><g><title>LinearScan::do_linear_scan (3,493 samples, 0.23%)</title><rect x="0.5938%" y="517" width="0.2270%" height="15" fill="rgb(247,138,52)" fg:x="9138" fg:w="3493"/><text x="0.8438%" y="527.50"></text></g><g><title>Compilation::emit_lir (4,531 samples, 0.29%)</title><rect x="0.5268%" y="533" width="0.2944%" height="15" fill="rgb(213,79,30)" fg:x="8106" fg:w="4531"/><text x="0.7768%" y="543.50"></text></g><g><title>Compilation::compile_java_method (10,683 samples, 0.69%)</title><rect x="0.1379%" y="549" width="0.6942%" height="15" fill="rgb(246,177,23)" fg:x="2122" fg:w="10683"/><text x="0.3879%" y="559.50"></text></g><g><title>CodeBuffer::copy_code_to (162 samples, 0.01%)</title><rect x="0.8566%" y="501" width="0.0105%" height="15" fill="rgb(230,62,27)" fg:x="13182" fg:w="162"/><text x="1.1066%" y="511.50"></text></g><g><title>nmethod::nmethod (323 samples, 0.02%)</title><rect x="0.8564%" y="517" width="0.0210%" height="15" fill="rgb(216,154,8)" fg:x="13178" fg:w="323"/><text x="1.1064%" y="527.50"></text></g><g><title>nmethod::new_nmethod (533 samples, 0.03%)</title><rect x="0.8428%" y="533" width="0.0346%" height="15" fill="rgb(244,35,45)" fg:x="12970" fg:w="533"/><text x="1.0928%" y="543.50"></text></g><g><title>ciEnv::register_method (644 samples, 0.04%)</title><rect x="0.8358%" y="549" width="0.0418%" height="15" fill="rgb(251,115,12)" fg:x="12862" fg:w="644"/><text x="1.0858%" y="559.50"></text></g><g><title>Compilation::compile_method (11,390 samples, 0.74%)</title><rect x="0.1376%" y="565" width="0.7402%" height="15" fill="rgb(240,54,50)" fg:x="2117" fg:w="11390"/><text x="0.3876%" y="575.50"></text></g><g><title>Compilation::Compilation (11,408 samples, 0.74%)</title><rect x="0.1371%" y="581" width="0.7413%" height="15" fill="rgb(233,84,52)" fg:x="2110" fg:w="11408"/><text x="0.3871%" y="591.50"></text></g><g><title>Compiler::compile_method (11,421 samples, 0.74%)</title><rect x="0.1363%" y="597" width="0.7422%" height="15" fill="rgb(207,117,47)" fg:x="2098" fg:w="11421"/><text x="0.3863%" y="607.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,922 samples, 0.77%)</title><rect x="0.1221%" y="613" width="0.7747%" height="15" fill="rgb(249,43,39)" fg:x="1879" fg:w="11922"/><text x="0.3721%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (212 samples, 0.01%)</title><rect x="0.9063%" y="357" width="0.0138%" height="15" fill="rgb(209,38,44)" fg:x="13946" fg:w="212"/><text x="1.1563%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (207 samples, 0.01%)</title><rect x="0.9066%" y="341" width="0.0135%" height="15" fill="rgb(236,212,23)" fg:x="13951" fg:w="207"/><text x="1.1566%" y="351.50"></text></g><g><title>native_write_msr (207 samples, 0.01%)</title><rect x="0.9066%" y="325" width="0.0135%" height="15" fill="rgb(242,79,21)" fg:x="13951" fg:w="207"/><text x="1.1566%" y="335.50"></text></g><g><title>finish_task_switch (220 samples, 0.01%)</title><rect x="0.9061%" y="373" width="0.0143%" height="15" fill="rgb(211,96,35)" fg:x="13944" fg:w="220"/><text x="1.1561%" y="383.50"></text></g><g><title>futex_wait_queue_me (259 samples, 0.02%)</title><rect x="0.9044%" y="421" width="0.0168%" height="15" fill="rgb(253,215,40)" fg:x="13917" fg:w="259"/><text x="1.1544%" y="431.50"></text></g><g><title>schedule (250 samples, 0.02%)</title><rect x="0.9050%" y="405" width="0.0162%" height="15" fill="rgb(211,81,21)" fg:x="13926" fg:w="250"/><text x="1.1550%" y="415.50"></text></g><g><title>__schedule (248 samples, 0.02%)</title><rect x="0.9051%" y="389" width="0.0161%" height="15" fill="rgb(208,190,38)" fg:x="13928" fg:w="248"/><text x="1.1551%" y="399.50"></text></g><g><title>do_syscall_64 (268 samples, 0.02%)</title><rect x="0.9041%" y="485" width="0.0174%" height="15" fill="rgb(235,213,38)" fg:x="13913" fg:w="268"/><text x="1.1541%" y="495.50"></text></g><g><title>__x64_sys_futex (268 samples, 0.02%)</title><rect x="0.9041%" y="469" width="0.0174%" height="15" fill="rgb(237,122,38)" fg:x="13913" fg:w="268"/><text x="1.1541%" y="479.50"></text></g><g><title>do_futex (266 samples, 0.02%)</title><rect x="0.9042%" y="453" width="0.0173%" height="15" fill="rgb(244,218,35)" fg:x="13915" fg:w="266"/><text x="1.1542%" y="463.50"></text></g><g><title>futex_wait (265 samples, 0.02%)</title><rect x="0.9043%" y="437" width="0.0172%" height="15" fill="rgb(240,68,47)" fg:x="13916" fg:w="265"/><text x="1.1543%" y="447.50"></text></g><g><title>__pthread_cond_timedwait (284 samples, 0.02%)</title><rect x="0.9034%" y="549" width="0.0185%" height="15" fill="rgb(210,16,53)" fg:x="13902" fg:w="284"/><text x="1.1534%" y="559.50"></text></g><g><title>__pthread_cond_wait_common (284 samples, 0.02%)</title><rect x="0.9034%" y="533" width="0.0185%" height="15" fill="rgb(235,124,12)" fg:x="13902" fg:w="284"/><text x="1.1534%" y="543.50"></text></g><g><title>futex_abstimed_wait_cancelable (282 samples, 0.02%)</title><rect x="0.9035%" y="517" width="0.0183%" height="15" fill="rgb(224,169,11)" fg:x="13904" fg:w="282"/><text x="1.1535%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (273 samples, 0.02%)</title><rect x="0.9041%" y="501" width="0.0177%" height="15" fill="rgb(250,166,2)" fg:x="13913" fg:w="273"/><text x="1.1541%" y="511.50"></text></g><g><title>Monitor::IWait (309 samples, 0.02%)</title><rect x="0.9026%" y="581" width="0.0201%" height="15" fill="rgb(242,216,29)" fg:x="13889" fg:w="309"/><text x="1.1526%" y="591.50"></text></g><g><title>os::PlatformEvent::park (300 samples, 0.02%)</title><rect x="0.9031%" y="565" width="0.0195%" height="15" fill="rgb(230,116,27)" fg:x="13898" fg:w="300"/><text x="1.1531%" y="575.50"></text></g><g><title>Monitor::wait (322 samples, 0.02%)</title><rect x="0.9022%" y="597" width="0.0209%" height="15" fill="rgb(228,99,48)" fg:x="13884" fg:w="322"/><text x="1.1522%" y="607.50"></text></g><g><title>CompileQueue::get (420 samples, 0.03%)</title><rect x="0.9000%" y="613" width="0.0273%" height="15" fill="rgb(253,11,6)" fg:x="13849" fg:w="420"/><text x="1.1500%" y="623.50"></text></g><g><title>Thread::call_run (12,404 samples, 0.81%)</title><rect x="0.1217%" y="661" width="0.8061%" height="15" fill="rgb(247,143,39)" fg:x="1873" fg:w="12404"/><text x="0.3717%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (12,404 samples, 0.81%)</title><rect x="0.1217%" y="645" width="0.8061%" height="15" fill="rgb(236,97,10)" fg:x="1873" fg:w="12404"/><text x="0.3717%" y="655.50"></text></g><g><title>CompileBroker::compiler_thread_loop (12,404 samples, 0.81%)</title><rect x="0.1217%" y="629" width="0.8061%" height="15" fill="rgb(233,208,19)" fg:x="1873" fg:w="12404"/><text x="0.3717%" y="639.50"></text></g><g><title>__GI___clone (12,418 samples, 0.81%)</title><rect x="0.1209%" y="709" width="0.8070%" height="15" fill="rgb(216,164,2)" fg:x="1860" fg:w="12418"/><text x="0.3709%" y="719.50"></text></g><g><title>start_thread (12,406 samples, 0.81%)</title><rect x="0.1216%" y="693" width="0.8062%" height="15" fill="rgb(220,129,5)" fg:x="1872" fg:w="12406"/><text x="0.3716%" y="703.50"></text></g><g><title>thread_native_entry (12,405 samples, 0.81%)</title><rect x="0.1217%" y="677" width="0.8061%" height="15" fill="rgb(242,17,10)" fg:x="1873" fg:w="12405"/><text x="0.3717%" y="687.50"></text></g><g><title>C1_CompilerThre (14,185 samples, 0.92%)</title><rect x="0.0093%" y="725" width="0.9218%" height="15" fill="rgb(242,107,0)" fg:x="143" fg:w="14185"/><text x="0.2593%" y="735.50"></text></g><g><title>_dl_update_slotinfo (177 samples, 0.01%)</title><rect x="1.1557%" y="693" width="0.0115%" height="15" fill="rgb(251,28,31)" fg:x="17784" fg:w="177"/><text x="1.4057%" y="703.50"></text></g><g><title>[anon] (4,016 samples, 0.26%)</title><rect x="0.9581%" y="709" width="0.2610%" height="15" fill="rgb(233,223,10)" fg:x="14744" fg:w="4016"/><text x="1.2081%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (161 samples, 0.01%)</title><rect x="1.2268%" y="549" width="0.0105%" height="15" fill="rgb(215,21,27)" fg:x="18878" fg:w="161"/><text x="1.4768%" y="559.50"></text></g><g><title>ciMethod::get_flow_analysis (158 samples, 0.01%)</title><rect x="1.2270%" y="533" width="0.0103%" height="15" fill="rgb(232,23,21)" fg:x="18881" fg:w="158"/><text x="1.4770%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (158 samples, 0.01%)</title><rect x="1.2270%" y="517" width="0.0103%" height="15" fill="rgb(244,5,23)" fg:x="18881" fg:w="158"/><text x="1.4770%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (158 samples, 0.01%)</title><rect x="1.2270%" y="501" width="0.0103%" height="15" fill="rgb(226,81,46)" fg:x="18881" fg:w="158"/><text x="1.4770%" y="511.50"></text></g><g><title>Compile::call_generator (218 samples, 0.01%)</title><rect x="1.2233%" y="565" width="0.0142%" height="15" fill="rgb(247,70,30)" fg:x="18825" fg:w="218"/><text x="1.4733%" y="575.50"></text></g><g><title>Compile::call_generator (171 samples, 0.01%)</title><rect x="1.2418%" y="469" width="0.0111%" height="15" fill="rgb(212,68,19)" fg:x="19109" fg:w="171"/><text x="1.4918%" y="479.50"></text></g><g><title>Parse::do_call (212 samples, 0.01%)</title><rect x="1.2800%" y="293" width="0.0138%" height="15" fill="rgb(240,187,13)" fg:x="19697" fg:w="212"/><text x="1.5300%" y="303.50"></text></g><g><title>Parse::do_one_block (394 samples, 0.03%)</title><rect x="1.2776%" y="325" width="0.0256%" height="15" fill="rgb(223,113,26)" fg:x="19661" fg:w="394"/><text x="1.5276%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (390 samples, 0.03%)</title><rect x="1.2779%" y="309" width="0.0253%" height="15" fill="rgb(206,192,2)" fg:x="19665" fg:w="390"/><text x="1.5279%" y="319.50"></text></g><g><title>Parse::do_all_blocks (402 samples, 0.03%)</title><rect x="1.2776%" y="341" width="0.0261%" height="15" fill="rgb(241,108,4)" fg:x="19661" fg:w="402"/><text x="1.5276%" y="351.50"></text></g><g><title>ParseGenerator::generate (470 samples, 0.03%)</title><rect x="1.2752%" y="373" width="0.0305%" height="15" fill="rgb(247,173,49)" fg:x="19624" fg:w="470"/><text x="1.5252%" y="383.50"></text></g><g><title>Parse::Parse (470 samples, 0.03%)</title><rect x="1.2752%" y="357" width="0.0305%" height="15" fill="rgb(224,114,35)" fg:x="19624" fg:w="470"/><text x="1.5252%" y="367.50"></text></g><g><title>Parse::do_call (715 samples, 0.05%)</title><rect x="1.2660%" y="389" width="0.0465%" height="15" fill="rgb(245,159,27)" fg:x="19482" fg:w="715"/><text x="1.5160%" y="399.50"></text></g><g><title>Parse::do_one_block (1,013 samples, 0.07%)</title><rect x="1.2617%" y="421" width="0.0658%" height="15" fill="rgb(245,172,44)" fg:x="19415" fg:w="1013"/><text x="1.5117%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (1,003 samples, 0.07%)</title><rect x="1.2623%" y="405" width="0.0652%" height="15" fill="rgb(236,23,11)" fg:x="19425" fg:w="1003"/><text x="1.5123%" y="415.50"></text></g><g><title>Parse::do_all_blocks (1,024 samples, 0.07%)</title><rect x="1.2615%" y="437" width="0.0665%" height="15" fill="rgb(205,117,38)" fg:x="19412" fg:w="1024"/><text x="1.5115%" y="447.50"></text></g><g><title>ParseGenerator::generate (1,113 samples, 0.07%)</title><rect x="1.2580%" y="469" width="0.0723%" height="15" fill="rgb(237,72,25)" fg:x="19358" fg:w="1113"/><text x="1.5080%" y="479.50"></text></g><g><title>Parse::Parse (1,113 samples, 0.07%)</title><rect x="1.2580%" y="453" width="0.0723%" height="15" fill="rgb(244,70,9)" fg:x="19358" fg:w="1113"/><text x="1.5080%" y="463.50"></text></g><g><title>ParseGenerator::generate (155 samples, 0.01%)</title><rect x="1.3316%" y="453" width="0.0101%" height="15" fill="rgb(217,125,39)" fg:x="20492" fg:w="155"/><text x="1.5816%" y="463.50"></text></g><g><title>Parse::Parse (155 samples, 0.01%)</title><rect x="1.3316%" y="437" width="0.0101%" height="15" fill="rgb(235,36,10)" fg:x="20492" fg:w="155"/><text x="1.5816%" y="447.50"></text></g><g><title>PredictedCallGenerator::generate (211 samples, 0.01%)</title><rect x="1.3303%" y="469" width="0.0137%" height="15" fill="rgb(251,123,47)" fg:x="20471" fg:w="211"/><text x="1.5803%" y="479.50"></text></g><g><title>Parse::do_call (1,599 samples, 0.10%)</title><rect x="1.2418%" y="485" width="0.1039%" height="15" fill="rgb(221,13,13)" fg:x="19109" fg:w="1599"/><text x="1.4918%" y="495.50"></text></g><g><title>Parse::do_one_block (1,873 samples, 0.12%)</title><rect x="1.2392%" y="517" width="0.1217%" height="15" fill="rgb(238,131,9)" fg:x="19070" fg:w="1873"/><text x="1.4892%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (1,864 samples, 0.12%)</title><rect x="1.2398%" y="501" width="0.1211%" height="15" fill="rgb(211,50,8)" fg:x="19079" fg:w="1864"/><text x="1.4898%" y="511.50"></text></g><g><title>Parse::do_all_blocks (1,875 samples, 0.12%)</title><rect x="1.2392%" y="533" width="0.1218%" height="15" fill="rgb(245,182,24)" fg:x="19069" fg:w="1875"/><text x="1.4892%" y="543.50"></text></g><g><title>ParseGenerator::generate (1,893 samples, 0.12%)</title><rect x="1.2381%" y="565" width="0.1230%" height="15" fill="rgb(242,14,37)" fg:x="19052" fg:w="1893"/><text x="1.4881%" y="575.50"></text></g><g><title>Parse::Parse (1,893 samples, 0.12%)</title><rect x="1.2381%" y="549" width="0.1230%" height="15" fill="rgb(246,228,12)" fg:x="19052" fg:w="1893"/><text x="1.4881%" y="559.50"></text></g><g><title>Parse::do_one_block (220 samples, 0.01%)</title><rect x="1.3683%" y="405" width="0.0143%" height="15" fill="rgb(213,55,15)" fg:x="21056" fg:w="220"/><text x="1.6183%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (216 samples, 0.01%)</title><rect x="1.3686%" y="389" width="0.0140%" height="15" fill="rgb(209,9,3)" fg:x="21060" fg:w="216"/><text x="1.6186%" y="399.50"></text></g><g><title>Parse::do_all_blocks (224 samples, 0.01%)</title><rect x="1.3682%" y="421" width="0.0146%" height="15" fill="rgb(230,59,30)" fg:x="21055" fg:w="224"/><text x="1.6182%" y="431.50"></text></g><g><title>ParseGenerator::generate (242 samples, 0.02%)</title><rect x="1.3676%" y="453" width="0.0157%" height="15" fill="rgb(209,121,21)" fg:x="21046" fg:w="242"/><text x="1.6176%" y="463.50"></text></g><g><title>Parse::Parse (242 samples, 0.02%)</title><rect x="1.3676%" y="437" width="0.0157%" height="15" fill="rgb(220,109,13)" fg:x="21046" fg:w="242"/><text x="1.6176%" y="447.50"></text></g><g><title>Parse::do_call (370 samples, 0.02%)</title><rect x="1.3628%" y="469" width="0.0240%" height="15" fill="rgb(232,18,1)" fg:x="20971" fg:w="370"/><text x="1.6128%" y="479.50"></text></g><g><title>Parse::do_one_block (455 samples, 0.03%)</title><rect x="1.3616%" y="501" width="0.0296%" height="15" fill="rgb(215,41,42)" fg:x="20953" fg:w="455"/><text x="1.6116%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (450 samples, 0.03%)</title><rect x="1.3619%" y="485" width="0.0292%" height="15" fill="rgb(224,123,36)" fg:x="20958" fg:w="450"/><text x="1.6119%" y="495.50"></text></g><g><title>Parse::do_all_blocks (459 samples, 0.03%)</title><rect x="1.3615%" y="517" width="0.0298%" height="15" fill="rgb(240,125,3)" fg:x="20952" fg:w="459"/><text x="1.6115%" y="527.50"></text></g><g><title>ParseGenerator::generate (463 samples, 0.03%)</title><rect x="1.3614%" y="549" width="0.0301%" height="15" fill="rgb(205,98,50)" fg:x="20950" fg:w="463"/><text x="1.6114%" y="559.50"></text></g><g><title>Parse::Parse (463 samples, 0.03%)</title><rect x="1.3614%" y="533" width="0.0301%" height="15" fill="rgb(205,185,37)" fg:x="20950" fg:w="463"/><text x="1.6114%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (550 samples, 0.04%)</title><rect x="1.3611%" y="565" width="0.0357%" height="15" fill="rgb(238,207,15)" fg:x="20945" fg:w="550"/><text x="1.6111%" y="575.50"></text></g><g><title>Parse::do_call (2,687 samples, 0.17%)</title><rect x="1.2233%" y="581" width="0.1746%" height="15" fill="rgb(213,199,42)" fg:x="18825" fg:w="2687"/><text x="1.4733%" y="591.50"></text></g><g><title>Parse::do_all_blocks (2,703 samples, 0.18%)</title><rect x="1.2233%" y="629" width="0.1757%" height="15" fill="rgb(235,201,11)" fg:x="18824" fg:w="2703"/><text x="1.4733%" y="639.50"></text></g><g><title>Parse::do_one_block (2,703 samples, 0.18%)</title><rect x="1.2233%" y="613" width="0.1757%" height="15" fill="rgb(207,46,11)" fg:x="18824" fg:w="2703"/><text x="1.4733%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (2,703 samples, 0.18%)</title><rect x="1.2233%" y="597" width="0.1757%" height="15" fill="rgb(241,35,35)" fg:x="18824" fg:w="2703"/><text x="1.4733%" y="607.50"></text></g><g><title>C2Compiler::compile_method (2,735 samples, 0.18%)</title><rect x="1.2212%" y="693" width="0.1777%" height="15" fill="rgb(243,32,47)" fg:x="18793" fg:w="2735"/><text x="1.4712%" y="703.50"></text></g><g><title>Compile::Compile (2,735 samples, 0.18%)</title><rect x="1.2212%" y="677" width="0.1777%" height="15" fill="rgb(247,202,23)" fg:x="18793" fg:w="2735"/><text x="1.4712%" y="687.50"></text></g><g><title>ParseGenerator::generate (2,704 samples, 0.18%)</title><rect x="1.2233%" y="661" width="0.1757%" height="15" fill="rgb(219,102,11)" fg:x="18824" fg:w="2704"/><text x="1.4733%" y="671.50"></text></g><g><title>Parse::Parse (2,704 samples, 0.18%)</title><rect x="1.2233%" y="645" width="0.1757%" height="15" fill="rgb(243,110,44)" fg:x="18824" fg:w="2704"/><text x="1.4733%" y="655.50"></text></g><g><title>PhaseCFG::sched_call (202 samples, 0.01%)</title><rect x="1.4100%" y="629" width="0.0131%" height="15" fill="rgb(222,74,54)" fg:x="21698" fg:w="202"/><text x="1.6600%" y="639.50"></text></g><g><title>PhaseCFG::schedule_local (204 samples, 0.01%)</title><rect x="1.4100%" y="645" width="0.0133%" height="15" fill="rgb(216,99,12)" fg:x="21698" fg:w="204"/><text x="1.6600%" y="655.50"></text></g><g><title>PhaseCFG::do_global_code_motion (284 samples, 0.02%)</title><rect x="1.4054%" y="677" width="0.0185%" height="15" fill="rgb(226,22,26)" fg:x="21627" fg:w="284"/><text x="1.6554%" y="687.50"></text></g><g><title>PhaseCFG::global_code_motion (284 samples, 0.02%)</title><rect x="1.4054%" y="661" width="0.0185%" height="15" fill="rgb(217,163,10)" fg:x="21627" fg:w="284"/><text x="1.6554%" y="671.50"></text></g><g><title>Compile::Code_Gen (456 samples, 0.03%)</title><rect x="1.3991%" y="693" width="0.0296%" height="15" fill="rgb(213,25,53)" fg:x="21530" fg:w="456"/><text x="1.6491%" y="703.50"></text></g><g><title>OopFlow::compute_reach (251 samples, 0.02%)</title><rect x="1.4691%" y="629" width="0.0163%" height="15" fill="rgb(252,105,26)" fg:x="22607" fg:w="251"/><text x="1.7191%" y="639.50"></text></g><g><title>Compile::BuildOopMaps (968 samples, 0.06%)</title><rect x="1.4299%" y="645" width="0.0629%" height="15" fill="rgb(220,39,43)" fg:x="22004" fg:w="968"/><text x="1.6799%" y="655.50"></text></g><g><title>Compile::scratch_emit_size (202 samples, 0.01%)</title><rect x="1.5081%" y="613" width="0.0131%" height="15" fill="rgb(229,68,48)" fg:x="23207" fg:w="202"/><text x="1.7581%" y="623.50"></text></g><g><title>Compile::shorten_branches (401 samples, 0.03%)</title><rect x="1.4975%" y="629" width="0.0261%" height="15" fill="rgb(252,8,32)" fg:x="23044" fg:w="401"/><text x="1.7475%" y="639.50"></text></g><g><title>Compile::init_buffer (479 samples, 0.03%)</title><rect x="1.4928%" y="645" width="0.0311%" height="15" fill="rgb(223,20,43)" fg:x="22972" fg:w="479"/><text x="1.7428%" y="655.50"></text></g><g><title>Compile::Output (1,464 samples, 0.10%)</title><rect x="1.4290%" y="661" width="0.0951%" height="15" fill="rgb(229,81,49)" fg:x="21990" fg:w="1464"/><text x="1.6790%" y="671.50"></text></g><g><title>Compile::Process_OopMap_Node (272 samples, 0.02%)</title><rect x="1.5372%" y="645" width="0.0177%" height="15" fill="rgb(236,28,36)" fg:x="23655" fg:w="272"/><text x="1.7872%" y="655.50"></text></g><g><title>Compile::fill_buffer (677 samples, 0.04%)</title><rect x="1.5242%" y="661" width="0.0440%" height="15" fill="rgb(249,185,26)" fg:x="23455" fg:w="677"/><text x="1.7742%" y="671.50"></text></g><g><title>Matcher::find_shared (428 samples, 0.03%)</title><rect x="1.5761%" y="645" width="0.0278%" height="15" fill="rgb(249,174,33)" fg:x="24253" fg:w="428"/><text x="1.8261%" y="655.50"></text></g><g><title>Arena::contains (576 samples, 0.04%)</title><rect x="1.6327%" y="629" width="0.0374%" height="15" fill="rgb(233,201,37)" fg:x="25125" fg:w="576"/><text x="1.8827%" y="639.50"></text></g><g><title>Matcher::match_sfpt (190 samples, 0.01%)</title><rect x="1.6737%" y="629" width="0.0123%" height="15" fill="rgb(221,78,26)" fg:x="25756" fg:w="190"/><text x="1.9237%" y="639.50"></text></g><g><title>Matcher::Label_Root (166 samples, 0.01%)</title><rect x="1.7143%" y="581" width="0.0108%" height="15" fill="rgb(250,127,30)" fg:x="26381" fg:w="166"/><text x="1.9643%" y="591.50"></text></g><g><title>Matcher::Label_Root (337 samples, 0.02%)</title><rect x="1.7082%" y="597" width="0.0219%" height="15" fill="rgb(230,49,44)" fg:x="26286" fg:w="337"/><text x="1.9582%" y="607.50"></text></g><g><title>Matcher::Label_Root (509 samples, 0.03%)</title><rect x="1.7024%" y="613" width="0.0331%" height="15" fill="rgb(229,67,23)" fg:x="26197" fg:w="509"/><text x="1.9524%" y="623.50"></text></g><g><title>Matcher::ReduceInst_Interior (222 samples, 0.01%)</title><rect x="1.7379%" y="597" width="0.0144%" height="15" fill="rgb(249,83,47)" fg:x="26744" fg:w="222"/><text x="1.9879%" y="607.50"></text></g><g><title>Matcher::ReduceInst (423 samples, 0.03%)</title><rect x="1.7355%" y="613" width="0.0275%" height="15" fill="rgb(215,43,3)" fg:x="26706" fg:w="423"/><text x="1.9855%" y="623.50"></text></g><g><title>Matcher::match_tree (1,201 samples, 0.08%)</title><rect x="1.6861%" y="629" width="0.0780%" height="15" fill="rgb(238,154,13)" fg:x="25946" fg:w="1201"/><text x="1.9361%" y="639.50"></text></g><g><title>Matcher::xform (2,615 samples, 0.17%)</title><rect x="1.6043%" y="645" width="0.1699%" height="15" fill="rgb(219,56,2)" fg:x="24688" fg:w="2615"/><text x="1.8543%" y="655.50"></text></g><g><title>Matcher::match (3,166 samples, 0.21%)</title><rect x="1.5690%" y="661" width="0.2057%" height="15" fill="rgb(233,0,4)" fg:x="24144" fg:w="3166"/><text x="1.8190%" y="671.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (190 samples, 0.01%)</title><rect x="1.7748%" y="661" width="0.0123%" height="15" fill="rgb(235,30,7)" fg:x="27311" fg:w="190"/><text x="2.0248%" y="671.50"></text></g><g><title>PhaseCFG::PhaseCFG (178 samples, 0.01%)</title><rect x="1.7871%" y="661" width="0.0116%" height="15" fill="rgb(250,79,13)" fg:x="27501" fg:w="178"/><text x="2.0371%" y="671.50"></text></g><g><title>PhaseCFG::build_cfg (172 samples, 0.01%)</title><rect x="1.7875%" y="645" width="0.0112%" height="15" fill="rgb(211,146,34)" fg:x="27507" fg:w="172"/><text x="2.0375%" y="655.50"></text></g><g><title>Node_Backward_Iterator::next (295 samples, 0.02%)</title><rect x="1.8570%" y="613" width="0.0192%" height="15" fill="rgb(228,22,38)" fg:x="28576" fg:w="295"/><text x="2.1070%" y="623.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (168 samples, 0.01%)</title><rect x="1.8847%" y="613" width="0.0109%" height="15" fill="rgb(235,168,5)" fg:x="29002" fg:w="168"/><text x="2.1347%" y="623.50"></text></g><g><title>PhaseCFG::schedule_late (814 samples, 0.05%)</title><rect x="1.8487%" y="629" width="0.0529%" height="15" fill="rgb(221,155,16)" fg:x="28448" fg:w="814"/><text x="2.0987%" y="639.50"></text></g><g><title>PhaseCFG::schedule_local (683 samples, 0.04%)</title><rect x="1.9016%" y="629" width="0.0444%" height="15" fill="rgb(215,215,53)" fg:x="29262" fg:w="683"/><text x="2.1516%" y="639.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (517 samples, 0.03%)</title><rect x="1.9494%" y="629" width="0.0336%" height="15" fill="rgb(223,4,10)" fg:x="29998" fg:w="517"/><text x="2.1994%" y="639.50"></text></g><g><title>PhaseIFG::init (211 samples, 0.01%)</title><rect x="1.9904%" y="629" width="0.0137%" height="15" fill="rgb(234,103,6)" fg:x="30629" fg:w="211"/><text x="2.2404%" y="639.50"></text></g><g><title>PhaseLive::add_livein (197 samples, 0.01%)</title><rect x="2.0272%" y="613" width="0.0128%" height="15" fill="rgb(227,97,0)" fg:x="31195" fg:w="197"/><text x="2.2772%" y="623.50"></text></g><g><title>PhaseLive::add_liveout (417 samples, 0.03%)</title><rect x="2.0400%" y="613" width="0.0271%" height="15" fill="rgb(234,150,53)" fg:x="31392" fg:w="417"/><text x="2.2900%" y="623.50"></text></g><g><title>PhaseLive::compute (972 samples, 0.06%)</title><rect x="2.0041%" y="629" width="0.0632%" height="15" fill="rgb(228,201,54)" fg:x="30840" fg:w="972"/><text x="2.2541%" y="639.50"></text></g><g><title>PhaseCFG::global_code_motion (3,957 samples, 0.26%)</title><rect x="1.8114%" y="645" width="0.2571%" height="15" fill="rgb(222,22,37)" fg:x="27875" fg:w="3957"/><text x="2.0614%" y="655.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,156 samples, 0.27%)</title><rect x="1.7987%" y="661" width="0.2701%" height="15" fill="rgb(237,53,32)" fg:x="27679" fg:w="4156"/><text x="2.0487%" y="671.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,230 samples, 0.08%)</title><rect x="2.0861%" y="645" width="0.0799%" height="15" fill="rgb(233,25,53)" fg:x="32102" fg:w="1230"/><text x="2.3361%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (274 samples, 0.02%)</title><rect x="2.2096%" y="629" width="0.0178%" height="15" fill="rgb(210,40,34)" fg:x="34003" fg:w="274"/><text x="2.4596%" y="639.50"></text></g><g><title>PhaseChaitin::bias_color (204 samples, 0.01%)</title><rect x="2.2274%" y="629" width="0.0133%" height="15" fill="rgb(241,220,44)" fg:x="34277" fg:w="204"/><text x="2.4774%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (388 samples, 0.03%)</title><rect x="2.2742%" y="613" width="0.0252%" height="15" fill="rgb(235,28,35)" fg:x="34996" fg:w="388"/><text x="2.5242%" y="623.50"></text></g><g><title>PhaseIFG::re_insert (900 samples, 0.06%)</title><rect x="2.2415%" y="629" width="0.0585%" height="15" fill="rgb(210,56,17)" fg:x="34493" fg:w="900"/><text x="2.4915%" y="639.50"></text></g><g><title>RegMask::clear_to_sets (185 samples, 0.01%)</title><rect x="2.3000%" y="629" width="0.0120%" height="15" fill="rgb(224,130,29)" fg:x="35393" fg:w="185"/><text x="2.5500%" y="639.50"></text></g><g><title>PhaseChaitin::Select (2,254 samples, 0.15%)</title><rect x="2.1660%" y="645" width="0.1465%" height="15" fill="rgb(235,212,8)" fg:x="33332" fg:w="2254"/><text x="2.4160%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (344 samples, 0.02%)</title><rect x="2.3330%" y="629" width="0.0224%" height="15" fill="rgb(223,33,50)" fg:x="35901" fg:w="344"/><text x="2.5830%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (410 samples, 0.03%)</title><rect x="2.3892%" y="613" width="0.0266%" height="15" fill="rgb(219,149,13)" fg:x="36766" fg:w="410"/><text x="2.6392%" y="623.50"></text></g><g><title>PhaseChaitin::Simplify (1,595 samples, 0.10%)</title><rect x="2.3125%" y="645" width="0.1036%" height="15" fill="rgb(250,156,29)" fg:x="35586" fg:w="1595"/><text x="2.5625%" y="655.50"></text></g><g><title>PhaseIFG::remove_node (936 samples, 0.06%)</title><rect x="2.3553%" y="629" width="0.0608%" height="15" fill="rgb(216,193,19)" fg:x="36245" fg:w="936"/><text x="2.6053%" y="639.50"></text></g><g><title>MachNode::rematerialize (182 samples, 0.01%)</title><rect x="2.6088%" y="629" width="0.0118%" height="15" fill="rgb(216,135,14)" fg:x="40145" fg:w="182"/><text x="2.8588%" y="639.50"></text></g><g><title>Node::rematerialize (173 samples, 0.01%)</title><rect x="2.6236%" y="629" width="0.0112%" height="15" fill="rgb(241,47,5)" fg:x="40373" fg:w="173"/><text x="2.8736%" y="639.50"></text></g><g><title>PhaseChaitin::split_USE (208 samples, 0.01%)</title><rect x="2.6441%" y="629" width="0.0135%" height="15" fill="rgb(233,42,35)" fg:x="40689" fg:w="208"/><text x="2.8941%" y="639.50"></text></g><g><title>PhaseChaitin::Split (3,826 samples, 0.25%)</title><rect x="2.4162%" y="645" width="0.2486%" height="15" fill="rgb(231,13,6)" fg:x="37181" fg:w="3826"/><text x="2.6662%" y="655.50"></text></g><g><title>IndexSet::IndexSet (314 samples, 0.02%)</title><rect x="2.7268%" y="629" width="0.0204%" height="15" fill="rgb(207,181,40)" fg:x="41962" fg:w="314"/><text x="2.9768%" y="639.50"></text></g><g><title>PhaseChaitin::raise_pressure (154 samples, 0.01%)</title><rect x="2.8016%" y="613" width="0.0100%" height="15" fill="rgb(254,173,49)" fg:x="43113" fg:w="154"/><text x="3.0516%" y="623.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (881 samples, 0.06%)</title><rect x="2.7546%" y="629" width="0.0573%" height="15" fill="rgb(221,1,38)" fg:x="42389" fg:w="881"/><text x="3.0046%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (169 samples, 0.01%)</title><rect x="2.8387%" y="613" width="0.0110%" height="15" fill="rgb(206,124,46)" fg:x="43684" fg:w="169"/><text x="3.0887%" y="623.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (563 samples, 0.04%)</title><rect x="2.8180%" y="629" width="0.0366%" height="15" fill="rgb(249,21,11)" fg:x="43365" fg:w="563"/><text x="3.0680%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (926 samples, 0.06%)</title><rect x="2.9962%" y="613" width="0.0602%" height="15" fill="rgb(222,201,40)" fg:x="46107" fg:w="926"/><text x="3.2462%" y="623.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,113 samples, 0.20%)</title><rect x="2.8546%" y="629" width="0.2023%" height="15" fill="rgb(235,61,29)" fg:x="43928" fg:w="3113"/><text x="3.1046%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (234 samples, 0.02%)</title><rect x="3.1017%" y="613" width="0.0152%" height="15" fill="rgb(219,207,3)" fg:x="47731" fg:w="234"/><text x="3.3517%" y="623.50"></text></g><g><title>RegMask::Size (386 samples, 0.03%)</title><rect x="3.1169%" y="613" width="0.0251%" height="15" fill="rgb(222,56,46)" fg:x="47965" fg:w="386"/><text x="3.3669%" y="623.50"></text></g><g><title>RegMask::smear_to_sets (822 samples, 0.05%)</title><rect x="3.1420%" y="613" width="0.0534%" height="15" fill="rgb(239,76,54)" fg:x="48351" fg:w="822"/><text x="3.3920%" y="623.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,041 samples, 0.13%)</title><rect x="3.0640%" y="629" width="0.1326%" height="15" fill="rgb(231,124,27)" fg:x="47151" fg:w="2041"/><text x="3.3140%" y="639.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (8,276 samples, 0.54%)</title><rect x="2.6651%" y="645" width="0.5378%" height="15" fill="rgb(249,195,6)" fg:x="41012" fg:w="8276"/><text x="2.9151%" y="655.50"></text></g><g><title>PhaseChaitin::interfere_with_live (390 samples, 0.03%)</title><rect x="3.2152%" y="629" width="0.0253%" height="15" fill="rgb(237,174,47)" fg:x="49477" fg:w="390"/><text x="3.4652%" y="639.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (584 samples, 0.04%)</title><rect x="3.2029%" y="645" width="0.0380%" height="15" fill="rgb(206,201,31)" fg:x="49288" fg:w="584"/><text x="3.4529%" y="655.50"></text></g><g><title>RegMask::Size (1,378 samples, 0.09%)</title><rect x="3.4215%" y="629" width="0.0895%" height="15" fill="rgb(231,57,52)" fg:x="52651" fg:w="1378"/><text x="3.6715%" y="639.50"></text></g><g><title>RegMask::clear_to_sets (222 samples, 0.01%)</title><rect x="3.5110%" y="629" width="0.0144%" height="15" fill="rgb(248,177,22)" fg:x="54029" fg:w="222"/><text x="3.7610%" y="639.50"></text></g><g><title>RegMask::is_bound1 (158 samples, 0.01%)</title><rect x="3.5325%" y="629" width="0.0103%" height="15" fill="rgb(215,211,37)" fg:x="54360" fg:w="158"/><text x="3.7825%" y="639.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,531 samples, 0.29%)</title><rect x="3.2678%" y="645" width="0.2944%" height="15" fill="rgb(241,128,51)" fg:x="50287" fg:w="4531"/><text x="3.5178%" y="655.50"></text></g><g><title>PhaseChaitin::merge_multidefs (632 samples, 0.04%)</title><rect x="3.5623%" y="645" width="0.0411%" height="15" fill="rgb(227,165,31)" fg:x="54819" fg:w="632"/><text x="3.8123%" y="655.50"></text></g><g><title>PhaseChaitin::elide_copy (2,401 samples, 0.16%)</title><rect x="3.7476%" y="629" width="0.1560%" height="15" fill="rgb(228,167,24)" fg:x="57670" fg:w="2401"/><text x="3.9976%" y="639.50"></text></g><g><title>find_lowest_bit (426 samples, 0.03%)</title><rect x="3.9128%" y="629" width="0.0277%" height="15" fill="rgb(228,143,12)" fg:x="60212" fg:w="426"/><text x="4.1628%" y="639.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,192 samples, 0.34%)</title><rect x="3.6034%" y="645" width="0.3374%" height="15" fill="rgb(249,149,8)" fg:x="55451" fg:w="5192"/><text x="3.8534%" y="655.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (228 samples, 0.01%)</title><rect x="3.9409%" y="645" width="0.0148%" height="15" fill="rgb(243,35,44)" fg:x="60644" fg:w="228"/><text x="4.1909%" y="655.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (196 samples, 0.01%)</title><rect x="3.9560%" y="629" width="0.0127%" height="15" fill="rgb(246,89,9)" fg:x="60877" fg:w="196"/><text x="4.2060%" y="639.50"></text></g><g><title>IndexSet::lrg_union (363 samples, 0.02%)</title><rect x="3.9860%" y="597" width="0.0236%" height="15" fill="rgb(233,213,13)" fg:x="61338" fg:w="363"/><text x="4.2360%" y="607.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (329 samples, 0.02%)</title><rect x="4.0110%" y="597" width="0.0214%" height="15" fill="rgb(233,141,41)" fg:x="61723" fg:w="329"/><text x="4.2610%" y="607.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (872 samples, 0.06%)</title><rect x="3.9825%" y="613" width="0.0567%" height="15" fill="rgb(239,167,4)" fg:x="61285" fg:w="872"/><text x="4.2325%" y="623.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,088 samples, 0.07%)</title><rect x="3.9688%" y="629" width="0.0707%" height="15" fill="rgb(209,217,16)" fg:x="61073" fg:w="1088"/><text x="4.2188%" y="639.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,290 samples, 0.08%)</title><rect x="3.9557%" y="645" width="0.0838%" height="15" fill="rgb(219,88,35)" fg:x="60872" fg:w="1290"/><text x="4.2057%" y="655.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (987 samples, 0.06%)</title><rect x="4.0396%" y="645" width="0.0641%" height="15" fill="rgb(220,193,23)" fg:x="62163" fg:w="987"/><text x="4.2896%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (523 samples, 0.03%)</title><rect x="4.0697%" y="629" width="0.0340%" height="15" fill="rgb(230,90,52)" fg:x="62627" fg:w="523"/><text x="4.3197%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (414 samples, 0.03%)</title><rect x="4.1369%" y="629" width="0.0269%" height="15" fill="rgb(252,106,19)" fg:x="63661" fg:w="414"/><text x="4.3869%" y="639.50"></text></g><g><title>PhaseIFG::SquareUp (926 samples, 0.06%)</title><rect x="4.1037%" y="645" width="0.0602%" height="15" fill="rgb(206,74,20)" fg:x="63150" fg:w="926"/><text x="4.3537%" y="655.50"></text></g><g><title>IndexSet::initialize (196 samples, 0.01%)</title><rect x="4.1727%" y="629" width="0.0127%" height="15" fill="rgb(230,138,44)" fg:x="64212" fg:w="196"/><text x="4.4227%" y="639.50"></text></g><g><title>PhaseIFG::init (397 samples, 0.03%)</title><rect x="4.1639%" y="645" width="0.0258%" height="15" fill="rgb(235,182,43)" fg:x="64076" fg:w="397"/><text x="4.4139%" y="655.50"></text></g><g><title>IndexSet::alloc_block_containing (216 samples, 0.01%)</title><rect x="4.3401%" y="613" width="0.0140%" height="15" fill="rgb(242,16,51)" fg:x="66787" fg:w="216"/><text x="4.5901%" y="623.50"></text></g><g><title>IndexSetIterator::advance_and_next (322 samples, 0.02%)</title><rect x="4.3566%" y="613" width="0.0209%" height="15" fill="rgb(248,9,4)" fg:x="67042" fg:w="322"/><text x="4.6066%" y="623.50"></text></g><g><title>PhaseLive::add_liveout (1,343 samples, 0.09%)</title><rect x="4.2914%" y="629" width="0.0873%" height="15" fill="rgb(210,31,22)" fg:x="66038" fg:w="1343"/><text x="4.5414%" y="639.50"></text></g><g><title>PhaseLive::compute (2,921 samples, 0.19%)</title><rect x="4.1900%" y="645" width="0.1898%" height="15" fill="rgb(239,54,39)" fg:x="64478" fg:w="2921"/><text x="4.4400%" y="655.50"></text></g><g><title>PhaseChaitin::Register_Allocate (35,615 samples, 2.31%)</title><rect x="2.0771%" y="661" width="2.3144%" height="15" fill="rgb(230,99,41)" fg:x="31964" fg:w="35615"/><text x="2.3271%" y="671.50">P..</text></g><g><title>Compile::Code_Gen (45,650 samples, 2.97%)</title><rect x="1.4287%" y="677" width="2.9665%" height="15" fill="rgb(253,106,12)" fg:x="21986" fg:w="45650"/><text x="1.6787%" y="687.50">Com..</text></g><g><title>Parse::do_one_block (164 samples, 0.01%)</title><rect x="4.4134%" y="53" width="0.0107%" height="15" fill="rgb(213,46,41)" fg:x="67915" fg:w="164"/><text x="4.6634%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (164 samples, 0.01%)</title><rect x="4.4134%" y="37" width="0.0107%" height="15" fill="rgb(215,133,35)" fg:x="67915" fg:w="164"/><text x="4.6634%" y="47.50"></text></g><g><title>Parse::do_all_blocks (167 samples, 0.01%)</title><rect x="4.4134%" y="69" width="0.0109%" height="15" fill="rgb(213,28,5)" fg:x="67915" fg:w="167"/><text x="4.6634%" y="79.50"></text></g><g><title>ParseGenerator::generate (189 samples, 0.01%)</title><rect x="4.4126%" y="101" width="0.0123%" height="15" fill="rgb(215,77,49)" fg:x="67903" fg:w="189"/><text x="4.6626%" y="111.50"></text></g><g><title>Parse::Parse (189 samples, 0.01%)</title><rect x="4.4126%" y="85" width="0.0123%" height="15" fill="rgb(248,100,22)" fg:x="67903" fg:w="189"/><text x="4.6626%" y="95.50"></text></g><g><title>Parse::do_call (230 samples, 0.01%)</title><rect x="4.4108%" y="117" width="0.0149%" height="15" fill="rgb(208,67,9)" fg:x="67875" fg:w="230"/><text x="4.6608%" y="127.50"></text></g><g><title>Parse::do_one_block (324 samples, 0.02%)</title><rect x="4.4088%" y="149" width="0.0211%" height="15" fill="rgb(219,133,21)" fg:x="67844" fg:w="324"/><text x="4.6588%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (319 samples, 0.02%)</title><rect x="4.4091%" y="133" width="0.0207%" height="15" fill="rgb(246,46,29)" fg:x="67849" fg:w="319"/><text x="4.6591%" y="143.50"></text></g><g><title>Parse::do_all_blocks (329 samples, 0.02%)</title><rect x="4.4088%" y="165" width="0.0214%" height="15" fill="rgb(246,185,52)" fg:x="67844" fg:w="329"/><text x="4.6588%" y="175.50"></text></g><g><title>ParseGenerator::generate (353 samples, 0.02%)</title><rect x="4.4078%" y="197" width="0.0229%" height="15" fill="rgb(252,136,11)" fg:x="67830" fg:w="353"/><text x="4.6578%" y="207.50"></text></g><g><title>Parse::Parse (352 samples, 0.02%)</title><rect x="4.4079%" y="181" width="0.0229%" height="15" fill="rgb(219,138,53)" fg:x="67831" fg:w="352"/><text x="4.6579%" y="191.50"></text></g><g><title>Parse::do_call (486 samples, 0.03%)</title><rect x="4.4026%" y="213" width="0.0316%" height="15" fill="rgb(211,51,23)" fg:x="67749" fg:w="486"/><text x="4.6526%" y="223.50"></text></g><g><title>Parse::do_one_block (568 samples, 0.04%)</title><rect x="4.4021%" y="245" width="0.0369%" height="15" fill="rgb(247,221,28)" fg:x="67741" fg:w="568"/><text x="4.6521%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (568 samples, 0.04%)</title><rect x="4.4021%" y="229" width="0.0369%" height="15" fill="rgb(251,222,45)" fg:x="67741" fg:w="568"/><text x="4.6521%" y="239.50"></text></g><g><title>Parse::do_all_blocks (569 samples, 0.04%)</title><rect x="4.4021%" y="261" width="0.0370%" height="15" fill="rgb(217,162,53)" fg:x="67741" fg:w="569"/><text x="4.6521%" y="271.50"></text></g><g><title>ParseGenerator::generate (577 samples, 0.04%)</title><rect x="4.4016%" y="293" width="0.0375%" height="15" fill="rgb(229,93,14)" fg:x="67734" fg:w="577"/><text x="4.6516%" y="303.50"></text></g><g><title>Parse::Parse (577 samples, 0.04%)</title><rect x="4.4016%" y="277" width="0.0375%" height="15" fill="rgb(209,67,49)" fg:x="67734" fg:w="577"/><text x="4.6516%" y="287.50"></text></g><g><title>Parse::do_call (685 samples, 0.04%)</title><rect x="4.3989%" y="309" width="0.0445%" height="15" fill="rgb(213,87,29)" fg:x="67693" fg:w="685"/><text x="4.6489%" y="319.50"></text></g><g><title>ParseGenerator::generate (705 samples, 0.05%)</title><rect x="4.3987%" y="389" width="0.0458%" height="15" fill="rgb(205,151,52)" fg:x="67690" fg:w="705"/><text x="4.6487%" y="399.50"></text></g><g><title>Parse::Parse (705 samples, 0.05%)</title><rect x="4.3987%" y="373" width="0.0458%" height="15" fill="rgb(253,215,39)" fg:x="67690" fg:w="705"/><text x="4.6487%" y="383.50"></text></g><g><title>Parse::do_all_blocks (704 samples, 0.05%)</title><rect x="4.3988%" y="357" width="0.0457%" height="15" fill="rgb(221,220,41)" fg:x="67691" fg:w="704"/><text x="4.6488%" y="367.50"></text></g><g><title>Parse::do_one_block (704 samples, 0.05%)</title><rect x="4.3988%" y="341" width="0.0457%" height="15" fill="rgb(218,133,21)" fg:x="67691" fg:w="704"/><text x="4.6488%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (704 samples, 0.05%)</title><rect x="4.3988%" y="325" width="0.0457%" height="15" fill="rgb(221,193,43)" fg:x="67691" fg:w="704"/><text x="4.6488%" y="335.50"></text></g><g><title>Parse::do_call (864 samples, 0.06%)</title><rect x="4.3964%" y="405" width="0.0561%" height="15" fill="rgb(240,128,52)" fg:x="67654" fg:w="864"/><text x="4.6464%" y="415.50"></text></g><g><title>ParseGenerator::generate (865 samples, 0.06%)</title><rect x="4.3964%" y="485" width="0.0562%" height="15" fill="rgb(253,114,12)" fg:x="67654" fg:w="865"/><text x="4.6464%" y="495.50"></text></g><g><title>Parse::Parse (865 samples, 0.06%)</title><rect x="4.3964%" y="469" width="0.0562%" height="15" fill="rgb(215,223,47)" fg:x="67654" fg:w="865"/><text x="4.6464%" y="479.50"></text></g><g><title>Parse::do_all_blocks (865 samples, 0.06%)</title><rect x="4.3964%" y="453" width="0.0562%" height="15" fill="rgb(248,225,23)" fg:x="67654" fg:w="865"/><text x="4.6464%" y="463.50"></text></g><g><title>Parse::do_one_block (865 samples, 0.06%)</title><rect x="4.3964%" y="437" width="0.0562%" height="15" fill="rgb(250,108,0)" fg:x="67654" fg:w="865"/><text x="4.6464%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (865 samples, 0.06%)</title><rect x="4.3964%" y="421" width="0.0562%" height="15" fill="rgb(228,208,7)" fg:x="67654" fg:w="865"/><text x="4.6464%" y="431.50"></text></g><g><title>ParseGenerator::generate (165 samples, 0.01%)</title><rect x="4.4526%" y="469" width="0.0107%" height="15" fill="rgb(244,45,10)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="479.50"></text></g><g><title>Parse::Parse (165 samples, 0.01%)</title><rect x="4.4526%" y="453" width="0.0107%" height="15" fill="rgb(207,125,25)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="463.50"></text></g><g><title>Parse::do_all_blocks (165 samples, 0.01%)</title><rect x="4.4526%" y="437" width="0.0107%" height="15" fill="rgb(210,195,18)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="447.50"></text></g><g><title>Parse::do_one_block (165 samples, 0.01%)</title><rect x="4.4526%" y="421" width="0.0107%" height="15" fill="rgb(249,80,12)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (165 samples, 0.01%)</title><rect x="4.4526%" y="405" width="0.0107%" height="15" fill="rgb(221,65,9)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="415.50"></text></g><g><title>Parse::do_call (165 samples, 0.01%)</title><rect x="4.4526%" y="389" width="0.0107%" height="15" fill="rgb(235,49,36)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="399.50"></text></g><g><title>ParseGenerator::generate (1,062 samples, 0.07%)</title><rect x="4.3961%" y="581" width="0.0690%" height="15" fill="rgb(225,32,20)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="591.50"></text></g><g><title>Parse::Parse (1,062 samples, 0.07%)</title><rect x="4.3961%" y="565" width="0.0690%" height="15" fill="rgb(215,141,46)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,062 samples, 0.07%)</title><rect x="4.3961%" y="549" width="0.0690%" height="15" fill="rgb(250,160,47)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="559.50"></text></g><g><title>Parse::do_one_block (1,062 samples, 0.07%)</title><rect x="4.3961%" y="533" width="0.0690%" height="15" fill="rgb(216,222,40)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,062 samples, 0.07%)</title><rect x="4.3961%" y="517" width="0.0690%" height="15" fill="rgb(234,217,39)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="527.50"></text></g><g><title>Parse::do_call (1,062 samples, 0.07%)</title><rect x="4.3961%" y="501" width="0.0690%" height="15" fill="rgb(207,178,40)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (193 samples, 0.01%)</title><rect x="4.4526%" y="485" width="0.0125%" height="15" fill="rgb(221,136,13)" fg:x="68519" fg:w="193"/><text x="4.7026%" y="495.50"></text></g><g><title>Parse::do_call (177 samples, 0.01%)</title><rect x="4.4661%" y="293" width="0.0115%" height="15" fill="rgb(249,199,10)" fg:x="68726" fg:w="177"/><text x="4.7161%" y="303.50"></text></g><g><title>ParseGenerator::generate (182 samples, 0.01%)</title><rect x="4.4660%" y="373" width="0.0118%" height="15" fill="rgb(249,222,13)" fg:x="68725" fg:w="182"/><text x="4.7160%" y="383.50"></text></g><g><title>Parse::Parse (182 samples, 0.01%)</title><rect x="4.4660%" y="357" width="0.0118%" height="15" fill="rgb(244,185,38)" fg:x="68725" fg:w="182"/><text x="4.7160%" y="367.50"></text></g><g><title>Parse::do_all_blocks (182 samples, 0.01%)</title><rect x="4.4660%" y="341" width="0.0118%" height="15" fill="rgb(236,202,9)" fg:x="68725" fg:w="182"/><text x="4.7160%" y="351.50"></text></g><g><title>Parse::do_one_block (182 samples, 0.01%)</title><rect x="4.4660%" y="325" width="0.0118%" height="15" fill="rgb(250,229,37)" fg:x="68725" fg:w="182"/><text x="4.7160%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (182 samples, 0.01%)</title><rect x="4.4660%" y="309" width="0.0118%" height="15" fill="rgb(206,174,23)" fg:x="68725" fg:w="182"/><text x="4.7160%" y="319.50"></text></g><g><title>Parse::do_call (212 samples, 0.01%)</title><rect x="4.4654%" y="389" width="0.0138%" height="15" fill="rgb(211,33,43)" fg:x="68715" fg:w="212"/><text x="4.7154%" y="399.50"></text></g><g><title>ParseGenerator::generate (213 samples, 0.01%)</title><rect x="4.4654%" y="469" width="0.0138%" height="15" fill="rgb(245,58,50)" fg:x="68715" fg:w="213"/><text x="4.7154%" y="479.50"></text></g><g><title>Parse::Parse (213 samples, 0.01%)</title><rect x="4.4654%" y="453" width="0.0138%" height="15" fill="rgb(244,68,36)" fg:x="68715" fg:w="213"/><text x="4.7154%" y="463.50"></text></g><g><title>Parse::do_all_blocks (213 samples, 0.01%)</title><rect x="4.4654%" y="437" width="0.0138%" height="15" fill="rgb(232,229,15)" fg:x="68715" fg:w="213"/><text x="4.7154%" y="447.50"></text></g><g><title>Parse::do_one_block (213 samples, 0.01%)</title><rect x="4.4654%" y="421" width="0.0138%" height="15" fill="rgb(254,30,23)" fg:x="68715" fg:w="213"/><text x="4.7154%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (213 samples, 0.01%)</title><rect x="4.4654%" y="405" width="0.0138%" height="15" fill="rgb(235,160,14)" fg:x="68715" fg:w="213"/><text x="4.7154%" y="415.50"></text></g><g><title>ParseGenerator::generate (254 samples, 0.02%)</title><rect x="4.4652%" y="565" width="0.0165%" height="15" fill="rgb(212,155,44)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="575.50"></text></g><g><title>Parse::Parse (254 samples, 0.02%)</title><rect x="4.4652%" y="549" width="0.0165%" height="15" fill="rgb(226,2,50)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="559.50"></text></g><g><title>Parse::do_all_blocks (254 samples, 0.02%)</title><rect x="4.4652%" y="533" width="0.0165%" height="15" fill="rgb(234,177,6)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="543.50"></text></g><g><title>Parse::do_one_block (254 samples, 0.02%)</title><rect x="4.4652%" y="517" width="0.0165%" height="15" fill="rgb(217,24,9)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (254 samples, 0.02%)</title><rect x="4.4652%" y="501" width="0.0165%" height="15" fill="rgb(220,13,46)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="511.50"></text></g><g><title>Parse::do_call (254 samples, 0.02%)</title><rect x="4.4652%" y="485" width="0.0165%" height="15" fill="rgb(239,221,27)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="495.50"></text></g><g><title>Parse::do_call (1,383 samples, 0.09%)</title><rect x="4.3957%" y="597" width="0.0899%" height="15" fill="rgb(222,198,25)" fg:x="67643" fg:w="1383"/><text x="4.6457%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (314 samples, 0.02%)</title><rect x="4.4652%" y="581" width="0.0204%" height="15" fill="rgb(211,99,13)" fg:x="68712" fg:w="314"/><text x="4.7152%" y="591.50"></text></g><g><title>Compile::Compile (47,041 samples, 3.06%)</title><rect x="1.4287%" y="693" width="3.0569%" height="15" fill="rgb(232,111,31)" fg:x="21986" fg:w="47041"/><text x="1.6787%" y="703.50">Com..</text></g><g><title>ParseGenerator::generate (1,384 samples, 0.09%)</title><rect x="4.3957%" y="677" width="0.0899%" height="15" fill="rgb(245,82,37)" fg:x="67643" fg:w="1384"/><text x="4.6457%" y="687.50"></text></g><g><title>Parse::Parse (1,384 samples, 0.09%)</title><rect x="4.3957%" y="661" width="0.0899%" height="15" fill="rgb(227,149,46)" fg:x="67643" fg:w="1384"/><text x="4.6457%" y="671.50"></text></g><g><title>Parse::do_all_blocks (1,384 samples, 0.09%)</title><rect x="4.3957%" y="645" width="0.0899%" height="15" fill="rgb(218,36,50)" fg:x="67643" fg:w="1384"/><text x="4.6457%" y="655.50"></text></g><g><title>Parse::do_one_block (1,384 samples, 0.09%)</title><rect x="4.3957%" y="629" width="0.0899%" height="15" fill="rgb(226,80,48)" fg:x="67643" fg:w="1384"/><text x="4.6457%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (1,384 samples, 0.09%)</title><rect x="4.3957%" y="613" width="0.0899%" height="15" fill="rgb(238,224,15)" fg:x="67643" fg:w="1384"/><text x="4.6457%" y="623.50"></text></g><g><title>Compile::final_graph_reshaping (347 samples, 0.02%)</title><rect x="4.4858%" y="677" width="0.0225%" height="15" fill="rgb(241,136,10)" fg:x="69029" fg:w="347"/><text x="4.7358%" y="687.50"></text></g><g><title>Compile::final_graph_reshaping_walk (337 samples, 0.02%)</title><rect x="4.4864%" y="661" width="0.0219%" height="15" fill="rgb(208,32,45)" fg:x="69039" fg:w="337"/><text x="4.7364%" y="671.50"></text></g><g><title>Compile::remove_speculative_types (279 samples, 0.02%)</title><rect x="4.5111%" y="677" width="0.0181%" height="15" fill="rgb(207,135,9)" fg:x="69419" fg:w="279"/><text x="4.7611%" y="687.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (173 samples, 0.01%)</title><rect x="4.5494%" y="645" width="0.0112%" height="15" fill="rgb(206,86,44)" fg:x="70008" fg:w="173"/><text x="4.7994%" y="655.50"></text></g><g><title>ConnectionGraph::compute_escape (646 samples, 0.04%)</title><rect x="4.5294%" y="661" width="0.0420%" height="15" fill="rgb(245,177,15)" fg:x="69701" fg:w="646"/><text x="4.7794%" y="671.50"></text></g><g><title>ConnectionGraph::do_analysis (651 samples, 0.04%)</title><rect x="4.5292%" y="677" width="0.0423%" height="15" fill="rgb(206,64,50)" fg:x="69698" fg:w="651"/><text x="4.7792%" y="687.50"></text></g><g><title>PhaseCCP::analyze (879 samples, 0.06%)</title><rect x="4.5716%" y="677" width="0.0571%" height="15" fill="rgb(234,36,40)" fg:x="70350" fg:w="879"/><text x="4.8216%" y="687.50"></text></g><g><title>PhaseCCP::do_transform (249 samples, 0.02%)</title><rect x="4.6287%" y="677" width="0.0162%" height="15" fill="rgb(213,64,8)" fg:x="71229" fg:w="249"/><text x="4.8787%" y="687.50"></text></g><g><title>PhaseCCP::transform (249 samples, 0.02%)</title><rect x="4.6287%" y="661" width="0.0162%" height="15" fill="rgb(210,75,36)" fg:x="71229" fg:w="249"/><text x="4.8787%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (184 samples, 0.01%)</title><rect x="4.6557%" y="629" width="0.0120%" height="15" fill="rgb(229,88,21)" fg:x="71644" fg:w="184"/><text x="4.9057%" y="639.50"></text></g><g><title>IdealLoopTree::iteration_split (242 samples, 0.02%)</title><rect x="4.6555%" y="645" width="0.0157%" height="15" fill="rgb(252,204,47)" fg:x="71641" fg:w="242"/><text x="4.9055%" y="655.50"></text></g><g><title>IdealLoopTree::iteration_split (281 samples, 0.02%)</title><rect x="4.6546%" y="661" width="0.0183%" height="15" fill="rgb(208,77,27)" fg:x="71627" fg:w="281"/><text x="4.9046%" y="671.50"></text></g><g><title>IdealLoopTree::loop_predication (303 samples, 0.02%)</title><rect x="4.6728%" y="661" width="0.0197%" height="15" fill="rgb(221,76,26)" fg:x="71908" fg:w="303"/><text x="4.9228%" y="671.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (217 samples, 0.01%)</title><rect x="4.6784%" y="645" width="0.0141%" height="15" fill="rgb(225,139,18)" fg:x="71994" fg:w="217"/><text x="4.9284%" y="655.50"></text></g><g><title>NTarjan::DFS (392 samples, 0.03%)</title><rect x="4.7502%" y="645" width="0.0255%" height="15" fill="rgb(230,137,11)" fg:x="73099" fg:w="392"/><text x="5.0002%" y="655.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,300 samples, 0.08%)</title><rect x="4.6957%" y="661" width="0.0845%" height="15" fill="rgb(212,28,1)" fg:x="72259" fg:w="1300"/><text x="4.9457%" y="671.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (454 samples, 0.03%)</title><rect x="4.8684%" y="629" width="0.0295%" height="15" fill="rgb(248,164,17)" fg:x="74917" fg:w="454"/><text x="5.1184%" y="639.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (207 samples, 0.01%)</title><rect x="4.8844%" y="613" width="0.0135%" height="15" fill="rgb(222,171,42)" fg:x="75164" fg:w="207"/><text x="5.1344%" y="623.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (499 samples, 0.03%)</title><rect x="4.8655%" y="645" width="0.0324%" height="15" fill="rgb(243,84,45)" fg:x="74873" fg:w="499"/><text x="5.1155%" y="655.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,916 samples, 0.12%)</title><rect x="4.7801%" y="661" width="0.1245%" height="15" fill="rgb(252,49,23)" fg:x="73559" fg:w="1916"/><text x="5.0301%" y="671.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (286 samples, 0.02%)</title><rect x="5.0999%" y="597" width="0.0186%" height="15" fill="rgb(215,19,7)" fg:x="78479" fg:w="286"/><text x="5.3499%" y="607.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (423 samples, 0.03%)</title><rect x="5.0935%" y="613" width="0.0275%" height="15" fill="rgb(238,81,41)" fg:x="78381" fg:w="423"/><text x="5.3435%" y="623.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (154 samples, 0.01%)</title><rect x="5.1211%" y="613" width="0.0100%" height="15" fill="rgb(210,199,37)" fg:x="78806" fg:w="154"/><text x="5.3711%" y="623.50"></text></g><g><title>PhaseIdealLoop::dom_depth (674 samples, 0.04%)</title><rect x="5.2906%" y="597" width="0.0438%" height="15" fill="rgb(244,192,49)" fg:x="81414" fg:w="674"/><text x="5.5406%" y="607.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,094 samples, 0.20%)</title><rect x="5.1334%" y="613" width="0.2011%" height="15" fill="rgb(226,211,11)" fg:x="78995" fg:w="3094"/><text x="5.3834%" y="623.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,297 samples, 0.28%)</title><rect x="5.0566%" y="629" width="0.2792%" height="15" fill="rgb(236,162,54)" fg:x="77814" fg:w="4297"/><text x="5.3066%" y="639.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,320 samples, 0.35%)</title><rect x="4.9979%" y="645" width="0.3457%" height="15" fill="rgb(220,229,9)" fg:x="76910" fg:w="5320"/><text x="5.2479%" y="655.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (6,786 samples, 0.44%)</title><rect x="4.9046%" y="661" width="0.4410%" height="15" fill="rgb(250,87,22)" fg:x="75475" fg:w="6786"/><text x="5.1546%" y="671.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (256 samples, 0.02%)</title><rect x="5.3946%" y="645" width="0.0166%" height="15" fill="rgb(239,43,17)" fg:x="83014" fg:w="256"/><text x="5.6446%" y="655.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,023 samples, 0.07%)</title><rect x="5.3461%" y="661" width="0.0665%" height="15" fill="rgb(231,177,25)" fg:x="82268" fg:w="1023"/><text x="5.5961%" y="671.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (276 samples, 0.02%)</title><rect x="5.4617%" y="645" width="0.0179%" height="15" fill="rgb(219,179,1)" fg:x="84047" fg:w="276"/><text x="5.7117%" y="655.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (201 samples, 0.01%)</title><rect x="5.5051%" y="629" width="0.0131%" height="15" fill="rgb(238,219,53)" fg:x="84715" fg:w="201"/><text x="5.7551%" y="639.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (211 samples, 0.01%)</title><rect x="5.5182%" y="629" width="0.0137%" height="15" fill="rgb(232,167,36)" fg:x="84916" fg:w="211"/><text x="5.7682%" y="639.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (847 samples, 0.06%)</title><rect x="5.4796%" y="645" width="0.0550%" height="15" fill="rgb(244,19,51)" fg:x="84323" fg:w="847"/><text x="5.7296%" y="655.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,839 samples, 0.12%)</title><rect x="5.4159%" y="661" width="0.1195%" height="15" fill="rgb(224,6,22)" fg:x="83343" fg:w="1839"/><text x="5.6659%" y="671.50"></text></g><g><title>NodeHash::hash_find_insert (177 samples, 0.01%)</title><rect x="5.5797%" y="629" width="0.0115%" height="15" fill="rgb(224,145,5)" fg:x="85863" fg:w="177"/><text x="5.8297%" y="639.50"></text></g><g><title>RegionNode::Ideal (285 samples, 0.02%)</title><rect x="5.6115%" y="629" width="0.0185%" height="15" fill="rgb(234,130,49)" fg:x="86352" fg:w="285"/><text x="5.8615%" y="639.50"></text></g><g><title>PhaseIterGVN::transform_old (1,556 samples, 0.10%)</title><rect x="5.5391%" y="645" width="0.1011%" height="15" fill="rgb(254,6,2)" fg:x="85239" fg:w="1556"/><text x="5.7891%" y="655.50"></text></g><g><title>PhaseIterGVN::optimize (1,625 samples, 0.11%)</title><rect x="5.5355%" y="661" width="0.1056%" height="15" fill="rgb(208,96,46)" fg:x="85183" fg:w="1625"/><text x="5.7855%" y="671.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (15,450 samples, 1.00%)</title><rect x="4.6467%" y="677" width="1.0040%" height="15" fill="rgb(239,3,39)" fg:x="71506" fg:w="15450"/><text x="4.8967%" y="687.50"></text></g><g><title>IfNode::Ideal (362 samples, 0.02%)</title><rect x="5.6871%" y="645" width="0.0235%" height="15" fill="rgb(233,210,1)" fg:x="87515" fg:w="362"/><text x="5.9371%" y="655.50"></text></g><g><title>LoadNode::Ideal (208 samples, 0.01%)</title><rect x="5.7132%" y="645" width="0.0135%" height="15" fill="rgb(244,137,37)" fg:x="87917" fg:w="208"/><text x="5.9632%" y="655.50"></text></g><g><title>NodeHash::hash_find_insert (212 samples, 0.01%)</title><rect x="5.7393%" y="645" width="0.0138%" height="15" fill="rgb(240,136,2)" fg:x="88319" fg:w="212"/><text x="5.9893%" y="655.50"></text></g><g><title>PhaseIterGVN::subsume_node (234 samples, 0.02%)</title><rect x="5.7582%" y="645" width="0.0152%" height="15" fill="rgb(239,18,37)" fg:x="88610" fg:w="234"/><text x="6.0082%" y="655.50"></text></g><g><title>RegionNode::Ideal (374 samples, 0.02%)</title><rect x="5.7894%" y="645" width="0.0243%" height="15" fill="rgb(218,185,22)" fg:x="89090" fg:w="374"/><text x="6.0394%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (172 samples, 0.01%)</title><rect x="5.8153%" y="469" width="0.0112%" height="15" fill="rgb(225,218,4)" fg:x="89488" fg:w="172"/><text x="6.0653%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (183 samples, 0.01%)</title><rect x="5.8153%" y="485" width="0.0119%" height="15" fill="rgb(230,182,32)" fg:x="89488" fg:w="183"/><text x="6.0653%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (203 samples, 0.01%)</title><rect x="5.8153%" y="501" width="0.0132%" height="15" fill="rgb(242,56,43)" fg:x="89488" fg:w="203"/><text x="6.0653%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (220 samples, 0.01%)</title><rect x="5.8152%" y="517" width="0.0143%" height="15" fill="rgb(233,99,24)" fg:x="89487" fg:w="220"/><text x="6.0652%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (237 samples, 0.02%)</title><rect x="5.8152%" y="533" width="0.0154%" height="15" fill="rgb(234,209,42)" fg:x="89487" fg:w="237"/><text x="6.0652%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (253 samples, 0.02%)</title><rect x="5.8151%" y="549" width="0.0164%" height="15" fill="rgb(227,7,12)" fg:x="89486" fg:w="253"/><text x="6.0651%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (264 samples, 0.02%)</title><rect x="5.8151%" y="565" width="0.0172%" height="15" fill="rgb(245,203,43)" fg:x="89486" fg:w="264"/><text x="6.0651%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (290 samples, 0.02%)</title><rect x="5.8151%" y="581" width="0.0188%" height="15" fill="rgb(238,205,33)" fg:x="89486" fg:w="290"/><text x="6.0651%" y="591.50"></text></g><g><title>InitializeNode::can_capture_store (328 samples, 0.02%)</title><rect x="5.8151%" y="629" width="0.0213%" height="15" fill="rgb(231,56,7)" fg:x="89485" fg:w="328"/><text x="6.0651%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (327 samples, 0.02%)</title><rect x="5.8151%" y="613" width="0.0212%" height="15" fill="rgb(244,186,29)" fg:x="89486" fg:w="327"/><text x="6.0651%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (327 samples, 0.02%)</title><rect x="5.8151%" y="597" width="0.0212%" height="15" fill="rgb(234,111,31)" fg:x="89486" fg:w="327"/><text x="6.0651%" y="607.50"></text></g><g><title>StoreNode::Ideal (361 samples, 0.02%)</title><rect x="5.8149%" y="645" width="0.0235%" height="15" fill="rgb(241,149,10)" fg:x="89483" fg:w="361"/><text x="6.0649%" y="655.50"></text></g><g><title>PhaseIterGVN::transform_old (2,725 samples, 0.18%)</title><rect x="5.6648%" y="661" width="0.1771%" height="15" fill="rgb(249,206,44)" fg:x="87173" fg:w="2725"/><text x="5.9148%" y="671.50"></text></g><g><title>PhaseIterGVN::optimize (2,831 samples, 0.18%)</title><rect x="5.6598%" y="677" width="0.1840%" height="15" fill="rgb(251,153,30)" fg:x="87095" fg:w="2831"/><text x="5.9098%" y="687.50"></text></g><g><title>PhaseIterGVN::transform_old (288 samples, 0.02%)</title><rect x="5.8470%" y="645" width="0.0187%" height="15" fill="rgb(239,152,38)" fg:x="89977" fg:w="288"/><text x="6.0970%" y="655.50"></text></g><g><title>PhaseIterGVN::optimize (298 samples, 0.02%)</title><rect x="5.8465%" y="661" width="0.0194%" height="15" fill="rgb(249,139,47)" fg:x="89968" fg:w="298"/><text x="6.0965%" y="671.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (470 samples, 0.03%)</title><rect x="5.8459%" y="677" width="0.0305%" height="15" fill="rgb(244,64,35)" fg:x="89959" fg:w="470"/><text x="6.0959%" y="687.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (171 samples, 0.01%)</title><rect x="5.8764%" y="677" width="0.0111%" height="15" fill="rgb(216,46,15)" fg:x="90429" fg:w="171"/><text x="6.1264%" y="687.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (161 samples, 0.01%)</title><rect x="5.8771%" y="661" width="0.0105%" height="15" fill="rgb(250,74,19)" fg:x="90439" fg:w="161"/><text x="6.1271%" y="671.50"></text></g><g><title>Compile::Optimize (21,582 samples, 1.40%)</title><rect x="4.4856%" y="693" width="1.4025%" height="15" fill="rgb(249,42,33)" fg:x="69027" fg:w="21582"/><text x="4.7356%" y="703.50"></text></g><g><title>Parse::do_one_block (208 samples, 0.01%)</title><rect x="5.8898%" y="581" width="0.0135%" height="15" fill="rgb(242,149,17)" fg:x="90635" fg:w="208"/><text x="6.1398%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (184 samples, 0.01%)</title><rect x="5.8914%" y="565" width="0.0120%" height="15" fill="rgb(244,29,21)" fg:x="90659" fg:w="184"/><text x="6.1414%" y="575.50"></text></g><g><title>Parse::do_all_blocks (214 samples, 0.01%)</title><rect x="5.8897%" y="597" width="0.0139%" height="15" fill="rgb(220,130,37)" fg:x="90633" fg:w="214"/><text x="6.1397%" y="607.50"></text></g><g><title>ParseGenerator::generate (226 samples, 0.01%)</title><rect x="5.8897%" y="629" width="0.0147%" height="15" fill="rgb(211,67,2)" fg:x="90633" fg:w="226"/><text x="6.1397%" y="639.50"></text></g><g><title>Parse::Parse (226 samples, 0.01%)</title><rect x="5.8897%" y="613" width="0.0147%" height="15" fill="rgb(235,68,52)" fg:x="90633" fg:w="226"/><text x="6.1397%" y="623.50"></text></g><g><title>CompileBroker::compiler_thread_loop (269 samples, 0.02%)</title><rect x="5.8884%" y="693" width="0.0175%" height="15" fill="rgb(246,142,3)" fg:x="90614" fg:w="269"/><text x="6.1384%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (269 samples, 0.02%)</title><rect x="5.8884%" y="677" width="0.0175%" height="15" fill="rgb(241,25,7)" fg:x="90614" fg:w="269"/><text x="6.1384%" y="687.50"></text></g><g><title>C2Compiler::compile_method (269 samples, 0.02%)</title><rect x="5.8884%" y="661" width="0.0175%" height="15" fill="rgb(242,119,39)" fg:x="90614" fg:w="269"/><text x="6.1384%" y="671.50"></text></g><g><title>Compile::Compile (269 samples, 0.02%)</title><rect x="5.8884%" y="645" width="0.0175%" height="15" fill="rgb(241,98,45)" fg:x="90614" fg:w="269"/><text x="6.1384%" y="655.50"></text></g><g><title>Parse::do_all_blocks (161 samples, 0.01%)</title><rect x="5.9293%" y="517" width="0.0105%" height="15" fill="rgb(254,28,30)" fg:x="91243" fg:w="161"/><text x="6.1793%" y="527.50"></text></g><g><title>ParseGenerator::generate (248 samples, 0.02%)</title><rect x="5.9261%" y="549" width="0.0161%" height="15" fill="rgb(241,142,54)" fg:x="91193" fg:w="248"/><text x="6.1761%" y="559.50"></text></g><g><title>Parse::Parse (248 samples, 0.02%)</title><rect x="5.9261%" y="533" width="0.0161%" height="15" fill="rgb(222,85,15)" fg:x="91193" fg:w="248"/><text x="6.1761%" y="543.50"></text></g><g><title>Parse::do_call (536 samples, 0.03%)</title><rect x="5.9153%" y="565" width="0.0348%" height="15" fill="rgb(210,85,47)" fg:x="91028" fg:w="536"/><text x="6.1653%" y="575.50"></text></g><g><title>Parse::do_one_block (776 samples, 0.05%)</title><rect x="5.9127%" y="597" width="0.0504%" height="15" fill="rgb(224,206,25)" fg:x="90987" fg:w="776"/><text x="6.1627%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (772 samples, 0.05%)</title><rect x="5.9129%" y="581" width="0.0502%" height="15" fill="rgb(243,201,19)" fg:x="90991" fg:w="772"/><text x="6.1629%" y="591.50"></text></g><g><title>Parse::do_all_blocks (777 samples, 0.05%)</title><rect x="5.9127%" y="613" width="0.0505%" height="15" fill="rgb(236,59,4)" fg:x="90987" fg:w="777"/><text x="6.1627%" y="623.50"></text></g><g><title>ParseGenerator::generate (792 samples, 0.05%)</title><rect x="5.9127%" y="645" width="0.0515%" height="15" fill="rgb(254,179,45)" fg:x="90987" fg:w="792"/><text x="6.1627%" y="655.50"></text></g><g><title>Parse::Parse (792 samples, 0.05%)</title><rect x="5.9127%" y="629" width="0.0515%" height="15" fill="rgb(226,14,10)" fg:x="90987" fg:w="792"/><text x="6.1627%" y="639.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (925 samples, 0.06%)</title><rect x="5.9059%" y="693" width="0.0601%" height="15" fill="rgb(244,27,41)" fg:x="90883" fg:w="925"/><text x="6.1559%" y="703.50"></text></g><g><title>C2Compiler::compile_method (925 samples, 0.06%)</title><rect x="5.9059%" y="677" width="0.0601%" height="15" fill="rgb(235,35,32)" fg:x="90883" fg:w="925"/><text x="6.1559%" y="687.50"></text></g><g><title>Compile::Compile (925 samples, 0.06%)</title><rect x="5.9059%" y="661" width="0.0601%" height="15" fill="rgb(218,68,31)" fg:x="90883" fg:w="925"/><text x="6.1559%" y="671.50"></text></g><g><title>ParseGenerator::generate (204 samples, 0.01%)</title><rect x="5.9983%" y="597" width="0.0133%" height="15" fill="rgb(207,120,37)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="607.50"></text></g><g><title>Parse::Parse (204 samples, 0.01%)</title><rect x="5.9983%" y="581" width="0.0133%" height="15" fill="rgb(227,98,0)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="591.50"></text></g><g><title>Parse::do_all_blocks (204 samples, 0.01%)</title><rect x="5.9983%" y="565" width="0.0133%" height="15" fill="rgb(207,7,3)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="575.50"></text></g><g><title>Parse::do_one_block (204 samples, 0.01%)</title><rect x="5.9983%" y="549" width="0.0133%" height="15" fill="rgb(206,98,19)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (204 samples, 0.01%)</title><rect x="5.9983%" y="533" width="0.0133%" height="15" fill="rgb(217,5,26)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="543.50"></text></g><g><title>Parse::do_call (204 samples, 0.01%)</title><rect x="5.9983%" y="517" width="0.0133%" height="15" fill="rgb(235,190,38)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="527.50"></text></g><g><title>ParseGenerator::generate (244 samples, 0.02%)</title><rect x="5.9983%" y="693" width="0.0159%" height="15" fill="rgb(247,86,24)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="703.50"></text></g><g><title>Parse::Parse (244 samples, 0.02%)</title><rect x="5.9983%" y="677" width="0.0159%" height="15" fill="rgb(205,101,16)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="687.50"></text></g><g><title>Parse::do_all_blocks (244 samples, 0.02%)</title><rect x="5.9983%" y="661" width="0.0159%" height="15" fill="rgb(246,168,33)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="671.50"></text></g><g><title>Parse::do_one_block (244 samples, 0.02%)</title><rect x="5.9983%" y="645" width="0.0159%" height="15" fill="rgb(231,114,1)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (244 samples, 0.02%)</title><rect x="5.9983%" y="629" width="0.0159%" height="15" fill="rgb(207,184,53)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="639.50"></text></g><g><title>Parse::do_call (244 samples, 0.02%)</title><rect x="5.9983%" y="613" width="0.0159%" height="15" fill="rgb(224,95,51)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="623.50"></text></g><g><title>[unknown] (74,105 samples, 4.82%)</title><rect x="1.2208%" y="709" width="4.8156%" height="15" fill="rgb(212,188,45)" fg:x="18787" fg:w="74105"/><text x="1.4708%" y="719.50">[unkno..</text></g><g><title>Compile::identify_useful_nodes (201 samples, 0.01%)</title><rect x="6.0565%" y="549" width="0.0131%" height="15" fill="rgb(223,154,38)" fg:x="93201" fg:w="201"/><text x="6.3065%" y="559.50"></text></g><g><title>Compile::remove_useless_nodes (223 samples, 0.01%)</title><rect x="6.0696%" y="549" width="0.0145%" height="15" fill="rgb(251,22,52)" fg:x="93402" fg:w="223"/><text x="6.3196%" y="559.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (535 samples, 0.03%)</title><rect x="6.0533%" y="565" width="0.0348%" height="15" fill="rgb(229,209,22)" fg:x="93151" fg:w="535"/><text x="6.3033%" y="575.50"></text></g><g><title>C2Compiler::compile_method (800 samples, 0.05%)</title><rect x="6.0400%" y="597" width="0.0520%" height="15" fill="rgb(234,138,34)" fg:x="92946" fg:w="800"/><text x="6.2900%" y="607.50"></text></g><g><title>Compile::Compile (792 samples, 0.05%)</title><rect x="6.0405%" y="581" width="0.0515%" height="15" fill="rgb(212,95,11)" fg:x="92954" fg:w="792"/><text x="6.2905%" y="591.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,022 samples, 0.07%)</title><rect x="6.0397%" y="613" width="0.0664%" height="15" fill="rgb(240,179,47)" fg:x="92942" fg:w="1022"/><text x="6.2897%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (206 samples, 0.01%)</title><rect x="6.1139%" y="357" width="0.0134%" height="15" fill="rgb(240,163,11)" fg:x="94083" fg:w="206"/><text x="6.3639%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (205 samples, 0.01%)</title><rect x="6.1139%" y="341" width="0.0133%" height="15" fill="rgb(236,37,12)" fg:x="94084" fg:w="205"/><text x="6.3639%" y="351.50"></text></g><g><title>native_write_msr (204 samples, 0.01%)</title><rect x="6.1140%" y="325" width="0.0133%" height="15" fill="rgb(232,164,16)" fg:x="94085" fg:w="204"/><text x="6.3640%" y="335.50"></text></g><g><title>finish_task_switch (217 samples, 0.01%)</title><rect x="6.1133%" y="373" width="0.0141%" height="15" fill="rgb(244,205,15)" fg:x="94075" fg:w="217"/><text x="6.3633%" y="383.50"></text></g><g><title>futex_wait_queue_me (252 samples, 0.02%)</title><rect x="6.1117%" y="421" width="0.0164%" height="15" fill="rgb(223,117,47)" fg:x="94050" fg:w="252"/><text x="6.3617%" y="431.50"></text></g><g><title>schedule (244 samples, 0.02%)</title><rect x="6.1122%" y="405" width="0.0159%" height="15" fill="rgb(244,107,35)" fg:x="94058" fg:w="244"/><text x="6.3622%" y="415.50"></text></g><g><title>__schedule (242 samples, 0.02%)</title><rect x="6.1124%" y="389" width="0.0157%" height="15" fill="rgb(205,140,8)" fg:x="94060" fg:w="242"/><text x="6.3624%" y="399.50"></text></g><g><title>do_futex (271 samples, 0.02%)</title><rect x="6.1114%" y="453" width="0.0176%" height="15" fill="rgb(228,84,46)" fg:x="94045" fg:w="271"/><text x="6.3614%" y="463.50"></text></g><g><title>futex_wait (268 samples, 0.02%)</title><rect x="6.1116%" y="437" width="0.0174%" height="15" fill="rgb(254,188,9)" fg:x="94048" fg:w="268"/><text x="6.3616%" y="447.50"></text></g><g><title>do_syscall_64 (274 samples, 0.02%)</title><rect x="6.1113%" y="485" width="0.0178%" height="15" fill="rgb(206,112,54)" fg:x="94043" fg:w="274"/><text x="6.3613%" y="495.50"></text></g><g><title>__x64_sys_futex (274 samples, 0.02%)</title><rect x="6.1113%" y="469" width="0.0178%" height="15" fill="rgb(216,84,49)" fg:x="94043" fg:w="274"/><text x="6.3613%" y="479.50"></text></g><g><title>__pthread_cond_timedwait (288 samples, 0.02%)</title><rect x="6.1105%" y="549" width="0.0187%" height="15" fill="rgb(214,194,35)" fg:x="94031" fg:w="288"/><text x="6.3605%" y="559.50"></text></g><g><title>__pthread_cond_wait_common (288 samples, 0.02%)</title><rect x="6.1105%" y="533" width="0.0187%" height="15" fill="rgb(249,28,3)" fg:x="94031" fg:w="288"/><text x="6.3605%" y="543.50"></text></g><g><title>futex_abstimed_wait_cancelable (286 samples, 0.02%)</title><rect x="6.1106%" y="517" width="0.0186%" height="15" fill="rgb(222,56,52)" fg:x="94033" fg:w="286"/><text x="6.3606%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (280 samples, 0.02%)</title><rect x="6.1110%" y="501" width="0.0182%" height="15" fill="rgb(245,217,50)" fg:x="94039" fg:w="280"/><text x="6.3610%" y="511.50"></text></g><g><title>os::PlatformEvent::park (302 samples, 0.02%)</title><rect x="6.1102%" y="565" width="0.0196%" height="15" fill="rgb(213,201,24)" fg:x="94027" fg:w="302"/><text x="6.3602%" y="575.50"></text></g><g><title>Monitor::IWait (331 samples, 0.02%)</title><rect x="6.1084%" y="581" width="0.0215%" height="15" fill="rgb(248,116,28)" fg:x="93999" fg:w="331"/><text x="6.3584%" y="591.50"></text></g><g><title>Monitor::wait (344 samples, 0.02%)</title><rect x="6.1081%" y="597" width="0.0224%" height="15" fill="rgb(219,72,43)" fg:x="93994" fg:w="344"/><text x="6.3581%" y="607.50"></text></g><g><title>CompileQueue::get (401 samples, 0.03%)</title><rect x="6.1068%" y="613" width="0.0261%" height="15" fill="rgb(209,138,14)" fg:x="93975" fg:w="401"/><text x="6.3568%" y="623.50"></text></g><g><title>Thread::call_run (1,447 samples, 0.09%)</title><rect x="6.0391%" y="661" width="0.0940%" height="15" fill="rgb(222,18,33)" fg:x="92932" fg:w="1447"/><text x="6.2891%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (1,444 samples, 0.09%)</title><rect x="6.0393%" y="645" width="0.0938%" height="15" fill="rgb(213,199,7)" fg:x="92935" fg:w="1444"/><text x="6.2893%" y="655.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,444 samples, 0.09%)</title><rect x="6.0393%" y="629" width="0.0938%" height="15" fill="rgb(250,110,10)" fg:x="92935" fg:w="1444"/><text x="6.2893%" y="639.50"></text></g><g><title>__GI___clone (1,483 samples, 0.10%)</title><rect x="6.0369%" y="709" width="0.0964%" height="15" fill="rgb(248,123,6)" fg:x="92898" fg:w="1483"/><text x="6.2869%" y="719.50"></text></g><g><title>start_thread (1,463 samples, 0.10%)</title><rect x="6.0382%" y="693" width="0.0951%" height="15" fill="rgb(206,91,31)" fg:x="92918" fg:w="1463"/><text x="6.2882%" y="703.50"></text></g><g><title>thread_native_entry (1,463 samples, 0.10%)</title><rect x="6.0382%" y="677" width="0.0951%" height="15" fill="rgb(211,154,13)" fg:x="92918" fg:w="1463"/><text x="6.2882%" y="687.50"></text></g><g><title>C2_CompilerThre (80,189 samples, 5.21%)</title><rect x="0.9311%" y="725" width="5.2110%" height="15" fill="rgb(225,148,7)" fg:x="14328" fg:w="80189"/><text x="1.1811%" y="735.50">C2_Com..</text></g><g><title>[perf-934749.map] (183 samples, 0.01%)</title><rect x="6.1424%" y="709" width="0.0119%" height="15" fill="rgb(220,160,43)" fg:x="94522" fg:w="183"/><text x="6.3924%" y="719.50"></text></g><g><title>Command-Accumul (330 samples, 0.02%)</title><rect x="6.1421%" y="725" width="0.0214%" height="15" fill="rgb(213,52,39)" fg:x="94517" fg:w="330"/><text x="6.3921%" y="735.50"></text></g><g><title>futex_wait_queue_me (265 samples, 0.02%)</title><rect x="6.2082%" y="533" width="0.0172%" height="15" fill="rgb(243,137,7)" fg:x="95534" fg:w="265"/><text x="6.4582%" y="543.50"></text></g><g><title>schedule (245 samples, 0.02%)</title><rect x="6.2095%" y="517" width="0.0159%" height="15" fill="rgb(230,79,13)" fg:x="95554" fg:w="245"/><text x="6.4595%" y="527.50"></text></g><g><title>__schedule (243 samples, 0.02%)</title><rect x="6.2096%" y="501" width="0.0158%" height="15" fill="rgb(247,105,23)" fg:x="95556" fg:w="243"/><text x="6.4596%" y="511.50"></text></g><g><title>do_futex (289 samples, 0.02%)</title><rect x="6.2076%" y="565" width="0.0188%" height="15" fill="rgb(223,179,41)" fg:x="95526" fg:w="289"/><text x="6.4576%" y="575.50"></text></g><g><title>futex_wait (287 samples, 0.02%)</title><rect x="6.2078%" y="549" width="0.0187%" height="15" fill="rgb(218,9,34)" fg:x="95528" fg:w="287"/><text x="6.4578%" y="559.50"></text></g><g><title>__x64_sys_futex (298 samples, 0.02%)</title><rect x="6.2074%" y="581" width="0.0194%" height="15" fill="rgb(222,106,8)" fg:x="95523" fg:w="298"/><text x="6.4574%" y="591.50"></text></g><g><title>do_syscall_64 (299 samples, 0.02%)</title><rect x="6.2074%" y="597" width="0.0194%" height="15" fill="rgb(211,220,0)" fg:x="95523" fg:w="299"/><text x="6.4574%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (335 samples, 0.02%)</title><rect x="6.2058%" y="661" width="0.0218%" height="15" fill="rgb(229,52,16)" fg:x="95498" fg:w="335"/><text x="6.4558%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (335 samples, 0.02%)</title><rect x="6.2058%" y="645" width="0.0218%" height="15" fill="rgb(212,155,18)" fg:x="95498" fg:w="335"/><text x="6.4558%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (321 samples, 0.02%)</title><rect x="6.2067%" y="629" width="0.0209%" height="15" fill="rgb(242,21,14)" fg:x="95512" fg:w="321"/><text x="6.4567%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (311 samples, 0.02%)</title><rect x="6.2074%" y="613" width="0.0202%" height="15" fill="rgb(222,19,48)" fg:x="95522" fg:w="311"/><text x="6.4574%" y="623.50"></text></g><g><title>futex_wait_queue_me (157 samples, 0.01%)</title><rect x="6.2280%" y="533" width="0.0102%" height="15" fill="rgb(232,45,27)" fg:x="95839" fg:w="157"/><text x="6.4780%" y="543.50"></text></g><g><title>schedule (156 samples, 0.01%)</title><rect x="6.2280%" y="517" width="0.0101%" height="15" fill="rgb(249,103,42)" fg:x="95840" fg:w="156"/><text x="6.4780%" y="527.50"></text></g><g><title>__schedule (156 samples, 0.01%)</title><rect x="6.2280%" y="501" width="0.0101%" height="15" fill="rgb(246,81,33)" fg:x="95840" fg:w="156"/><text x="6.4780%" y="511.50"></text></g><g><title>do_syscall_64 (164 samples, 0.01%)</title><rect x="6.2278%" y="597" width="0.0107%" height="15" fill="rgb(252,33,42)" fg:x="95836" fg:w="164"/><text x="6.4778%" y="607.50"></text></g><g><title>__x64_sys_futex (164 samples, 0.01%)</title><rect x="6.2278%" y="581" width="0.0107%" height="15" fill="rgb(209,212,41)" fg:x="95836" fg:w="164"/><text x="6.4778%" y="591.50"></text></g><g><title>do_futex (163 samples, 0.01%)</title><rect x="6.2278%" y="565" width="0.0106%" height="15" fill="rgb(207,154,6)" fg:x="95837" fg:w="163"/><text x="6.4778%" y="575.50"></text></g><g><title>futex_wait (162 samples, 0.01%)</title><rect x="6.2279%" y="549" width="0.0105%" height="15" fill="rgb(223,64,47)" fg:x="95838" fg:w="162"/><text x="6.4779%" y="559.50"></text></g><g><title>__pthread_cond_wait (170 samples, 0.01%)</title><rect x="6.2276%" y="661" width="0.0110%" height="15" fill="rgb(211,161,38)" fg:x="95833" fg:w="170"/><text x="6.4776%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (170 samples, 0.01%)</title><rect x="6.2276%" y="645" width="0.0110%" height="15" fill="rgb(219,138,40)" fg:x="95833" fg:w="170"/><text x="6.4776%" y="655.50"></text></g><g><title>futex_wait_cancelable (169 samples, 0.01%)</title><rect x="6.2276%" y="629" width="0.0110%" height="15" fill="rgb(241,228,46)" fg:x="95834" fg:w="169"/><text x="6.4776%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (168 samples, 0.01%)</title><rect x="6.2277%" y="613" width="0.0109%" height="15" fill="rgb(223,209,38)" fg:x="95835" fg:w="168"/><text x="6.4777%" y="623.50"></text></g><g><title>Unsafe_Park (582 samples, 0.04%)</title><rect x="6.2034%" y="693" width="0.0378%" height="15" fill="rgb(236,164,45)" fg:x="95461" fg:w="582"/><text x="6.4534%" y="703.50"></text></g><g><title>Parker::park (572 samples, 0.04%)</title><rect x="6.2041%" y="677" width="0.0372%" height="15" fill="rgb(231,15,5)" fg:x="95471" fg:w="572"/><text x="6.4541%" y="687.50"></text></g><g><title>[perf-934749.map] (1,128 samples, 0.07%)</title><rect x="6.1684%" y="709" width="0.0733%" height="15" fill="rgb(252,35,15)" fg:x="94923" fg:w="1128"/><text x="6.4184%" y="719.50"></text></g><g><title>ForkJoinPool.co (1,175 samples, 0.08%)</title><rect x="6.1672%" y="725" width="0.0764%" height="15" fill="rgb(248,181,18)" fg:x="94904" fg:w="1175"/><text x="6.4172%" y="735.50"></text></g><g><title>G1_Refine#0 (164 samples, 0.01%)</title><rect x="6.2517%" y="725" width="0.0107%" height="15" fill="rgb(233,39,42)" fg:x="96204" fg:w="164"/><text x="6.5017%" y="735.50"></text></g><g><title>__GI___clone (157 samples, 0.01%)</title><rect x="6.2521%" y="709" width="0.0102%" height="15" fill="rgb(238,110,33)" fg:x="96211" fg:w="157"/><text x="6.5021%" y="719.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (189 samples, 0.01%)</title><rect x="6.2810%" y="629" width="0.0123%" height="15" fill="rgb(233,195,10)" fg:x="96655" fg:w="189"/><text x="6.5310%" y="639.50"></text></g><g><title>G1_Young_RemSet (213 samples, 0.01%)</title><rect x="6.2806%" y="725" width="0.0138%" height="15" fill="rgb(254,105,3)" fg:x="96649" fg:w="213"/><text x="6.5306%" y="735.50"></text></g><g><title>__GI___clone (207 samples, 0.01%)</title><rect x="6.2810%" y="709" width="0.0135%" height="15" fill="rgb(221,225,9)" fg:x="96655" fg:w="207"/><text x="6.5310%" y="719.50"></text></g><g><title>start_thread (207 samples, 0.01%)</title><rect x="6.2810%" y="693" width="0.0135%" height="15" fill="rgb(224,227,45)" fg:x="96655" fg:w="207"/><text x="6.5310%" y="703.50"></text></g><g><title>thread_native_entry (207 samples, 0.01%)</title><rect x="6.2810%" y="677" width="0.0135%" height="15" fill="rgb(229,198,43)" fg:x="96655" fg:w="207"/><text x="6.5310%" y="687.50"></text></g><g><title>Thread::call_run (207 samples, 0.01%)</title><rect x="6.2810%" y="661" width="0.0135%" height="15" fill="rgb(206,209,35)" fg:x="96655" fg:w="207"/><text x="6.5310%" y="671.50"></text></g><g><title>ConcurrentGCThread::run (207 samples, 0.01%)</title><rect x="6.2810%" y="645" width="0.0135%" height="15" fill="rgb(245,195,53)" fg:x="96655" fg:w="207"/><text x="6.5310%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (274 samples, 0.02%)</title><rect x="6.3078%" y="581" width="0.0178%" height="15" fill="rgb(240,92,26)" fg:x="97067" fg:w="274"/><text x="6.5578%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (442 samples, 0.03%)</title><rect x="6.2976%" y="597" width="0.0287%" height="15" fill="rgb(207,40,23)" fg:x="96911" fg:w="442"/><text x="6.5476%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (551 samples, 0.04%)</title><rect x="6.2969%" y="613" width="0.0358%" height="15" fill="rgb(223,111,35)" fg:x="96899" fg:w="551"/><text x="6.5469%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (233 samples, 0.02%)</title><rect x="6.3347%" y="517" width="0.0151%" height="15" fill="rgb(229,147,28)" fg:x="97482" fg:w="233"/><text x="6.5847%" y="527.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (181 samples, 0.01%)</title><rect x="6.3381%" y="501" width="0.0118%" height="15" fill="rgb(211,29,28)" fg:x="97534" fg:w="181"/><text x="6.5881%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (316 samples, 0.02%)</title><rect x="6.3327%" y="533" width="0.0205%" height="15" fill="rgb(228,72,33)" fg:x="97450" fg:w="316"/><text x="6.5827%" y="543.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (363 samples, 0.02%)</title><rect x="6.3327%" y="581" width="0.0236%" height="15" fill="rgb(205,214,31)" fg:x="97450" fg:w="363"/><text x="6.5827%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (363 samples, 0.02%)</title><rect x="6.3327%" y="565" width="0.0236%" height="15" fill="rgb(224,111,15)" fg:x="97450" fg:w="363"/><text x="6.5827%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (363 samples, 0.02%)</title><rect x="6.3327%" y="549" width="0.0236%" height="15" fill="rgb(253,21,26)" fg:x="97450" fg:w="363"/><text x="6.5827%" y="559.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (364 samples, 0.02%)</title><rect x="6.3327%" y="613" width="0.0237%" height="15" fill="rgb(245,139,43)" fg:x="97450" fg:w="364"/><text x="6.5827%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (364 samples, 0.02%)</title><rect x="6.3327%" y="597" width="0.0237%" height="15" fill="rgb(252,170,7)" fg:x="97450" fg:w="364"/><text x="6.5827%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (264 samples, 0.02%)</title><rect x="6.3624%" y="597" width="0.0172%" height="15" fill="rgb(231,118,14)" fg:x="97907" fg:w="264"/><text x="6.6124%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (219 samples, 0.01%)</title><rect x="6.3653%" y="581" width="0.0142%" height="15" fill="rgb(238,83,0)" fg:x="97952" fg:w="219"/><text x="6.6153%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (219 samples, 0.01%)</title><rect x="6.3653%" y="565" width="0.0142%" height="15" fill="rgb(221,39,39)" fg:x="97952" fg:w="219"/><text x="6.6153%" y="575.50"></text></g><g><title>JavaThread::oops_do (219 samples, 0.01%)</title><rect x="6.3653%" y="549" width="0.0142%" height="15" fill="rgb(222,119,46)" fg:x="97952" fg:w="219"/><text x="6.6153%" y="559.50"></text></g><g><title>G1ParTask::work (1,309 samples, 0.09%)</title><rect x="6.2969%" y="629" width="0.0851%" height="15" fill="rgb(222,165,49)" fg:x="96899" fg:w="1309"/><text x="6.5469%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (302 samples, 0.02%)</title><rect x="6.3623%" y="613" width="0.0196%" height="15" fill="rgb(219,113,52)" fg:x="97906" fg:w="302"/><text x="6.6123%" y="623.50"></text></g><g><title>__GI___clone (1,578 samples, 0.10%)</title><rect x="6.2964%" y="709" width="0.1025%" height="15" fill="rgb(214,7,15)" fg:x="96892" fg:w="1578"/><text x="6.5464%" y="719.50"></text></g><g><title>start_thread (1,578 samples, 0.10%)</title><rect x="6.2964%" y="693" width="0.1025%" height="15" fill="rgb(235,32,4)" fg:x="96892" fg:w="1578"/><text x="6.5464%" y="703.50"></text></g><g><title>thread_native_entry (1,578 samples, 0.10%)</title><rect x="6.2964%" y="677" width="0.1025%" height="15" fill="rgb(238,90,54)" fg:x="96892" fg:w="1578"/><text x="6.5464%" y="687.50"></text></g><g><title>Thread::call_run (1,578 samples, 0.10%)</title><rect x="6.2964%" y="661" width="0.1025%" height="15" fill="rgb(213,208,19)" fg:x="96892" fg:w="1578"/><text x="6.5464%" y="671.50"></text></g><g><title>GangWorker::loop (1,578 samples, 0.10%)</title><rect x="6.2964%" y="645" width="0.1025%" height="15" fill="rgb(233,156,4)" fg:x="96892" fg:w="1578"/><text x="6.5464%" y="655.50"></text></g><g><title>GC_Thread#0 (1,609 samples, 0.10%)</title><rect x="6.2945%" y="725" width="0.1046%" height="15" fill="rgb(207,194,5)" fg:x="96862" fg:w="1609"/><text x="6.5445%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (307 samples, 0.02%)</title><rect x="6.4133%" y="581" width="0.0200%" height="15" fill="rgb(206,111,30)" fg:x="98691" fg:w="307"/><text x="6.6633%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (500 samples, 0.03%)</title><rect x="6.4021%" y="597" width="0.0325%" height="15" fill="rgb(243,70,54)" fg:x="98519" fg:w="500"/><text x="6.6521%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (593 samples, 0.04%)</title><rect x="6.4014%" y="613" width="0.0385%" height="15" fill="rgb(242,28,8)" fg:x="98508" fg:w="593"/><text x="6.6514%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (191 samples, 0.01%)</title><rect x="6.4401%" y="533" width="0.0124%" height="15" fill="rgb(219,106,18)" fg:x="99103" fg:w="191"/><text x="6.6901%" y="543.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (233 samples, 0.02%)</title><rect x="6.4400%" y="613" width="0.0151%" height="15" fill="rgb(244,222,10)" fg:x="99102" fg:w="233"/><text x="6.6900%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (233 samples, 0.02%)</title><rect x="6.4400%" y="597" width="0.0151%" height="15" fill="rgb(236,179,52)" fg:x="99102" fg:w="233"/><text x="6.6900%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (233 samples, 0.02%)</title><rect x="6.4400%" y="581" width="0.0151%" height="15" fill="rgb(213,23,39)" fg:x="99102" fg:w="233"/><text x="6.6900%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (233 samples, 0.02%)</title><rect x="6.4400%" y="565" width="0.0151%" height="15" fill="rgb(238,48,10)" fg:x="99102" fg:w="233"/><text x="6.6900%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (233 samples, 0.02%)</title><rect x="6.4400%" y="549" width="0.0151%" height="15" fill="rgb(251,196,23)" fg:x="99102" fg:w="233"/><text x="6.6900%" y="559.50"></text></g><g><title>frame::oops_interpreted_do (166 samples, 0.01%)</title><rect x="6.4723%" y="533" width="0.0108%" height="15" fill="rgb(250,152,24)" fg:x="99599" fg:w="166"/><text x="6.7223%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (329 samples, 0.02%)</title><rect x="6.4619%" y="597" width="0.0214%" height="15" fill="rgb(209,150,17)" fg:x="99438" fg:w="329"/><text x="6.7119%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (265 samples, 0.02%)</title><rect x="6.4660%" y="581" width="0.0172%" height="15" fill="rgb(234,202,34)" fg:x="99502" fg:w="265"/><text x="6.7160%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (265 samples, 0.02%)</title><rect x="6.4660%" y="565" width="0.0172%" height="15" fill="rgb(253,148,53)" fg:x="99502" fg:w="265"/><text x="6.7160%" y="575.50"></text></g><g><title>JavaThread::oops_do (265 samples, 0.02%)</title><rect x="6.4660%" y="549" width="0.0172%" height="15" fill="rgb(218,129,16)" fg:x="99502" fg:w="265"/><text x="6.7160%" y="559.50"></text></g><g><title>G1ParTask::work (1,273 samples, 0.08%)</title><rect x="6.4014%" y="629" width="0.0827%" height="15" fill="rgb(216,85,19)" fg:x="98508" fg:w="1273"/><text x="6.6514%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (343 samples, 0.02%)</title><rect x="6.4619%" y="613" width="0.0223%" height="15" fill="rgb(235,228,7)" fg:x="99438" fg:w="343"/><text x="6.7119%" y="623.50"></text></g><g><title>futex_wait_queue_me (169 samples, 0.01%)</title><rect x="6.4928%" y="469" width="0.0110%" height="15" fill="rgb(245,175,0)" fg:x="99914" fg:w="169"/><text x="6.7428%" y="479.50"></text></g><g><title>schedule (164 samples, 0.01%)</title><rect x="6.4931%" y="453" width="0.0107%" height="15" fill="rgb(208,168,36)" fg:x="99919" fg:w="164"/><text x="6.7431%" y="463.50"></text></g><g><title>__schedule (164 samples, 0.01%)</title><rect x="6.4931%" y="437" width="0.0107%" height="15" fill="rgb(246,171,24)" fg:x="99919" fg:w="164"/><text x="6.7431%" y="447.50"></text></g><g><title>do_syscall_64 (170 samples, 0.01%)</title><rect x="6.4928%" y="533" width="0.0110%" height="15" fill="rgb(215,142,24)" fg:x="99914" fg:w="170"/><text x="6.7428%" y="543.50"></text></g><g><title>__x64_sys_futex (170 samples, 0.01%)</title><rect x="6.4928%" y="517" width="0.0110%" height="15" fill="rgb(250,187,7)" fg:x="99914" fg:w="170"/><text x="6.7428%" y="527.50"></text></g><g><title>do_futex (170 samples, 0.01%)</title><rect x="6.4928%" y="501" width="0.0110%" height="15" fill="rgb(228,66,33)" fg:x="99914" fg:w="170"/><text x="6.7428%" y="511.50"></text></g><g><title>futex_wait (170 samples, 0.01%)</title><rect x="6.4928%" y="485" width="0.0110%" height="15" fill="rgb(234,215,21)" fg:x="99914" fg:w="170"/><text x="6.7428%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (173 samples, 0.01%)</title><rect x="6.4928%" y="549" width="0.0112%" height="15" fill="rgb(222,191,20)" fg:x="99914" fg:w="173"/><text x="6.7428%" y="559.50"></text></g><g><title>PosixSemaphore::wait (176 samples, 0.01%)</title><rect x="6.4927%" y="613" width="0.0114%" height="15" fill="rgb(245,79,54)" fg:x="99912" fg:w="176"/><text x="6.7427%" y="623.50"></text></g><g><title>__new_sem_wait_slow (176 samples, 0.01%)</title><rect x="6.4927%" y="597" width="0.0114%" height="15" fill="rgb(240,10,37)" fg:x="99912" fg:w="176"/><text x="6.7427%" y="607.50"></text></g><g><title>do_futex_wait (174 samples, 0.01%)</title><rect x="6.4928%" y="581" width="0.0113%" height="15" fill="rgb(214,192,32)" fg:x="99914" fg:w="174"/><text x="6.7428%" y="591.50"></text></g><g><title>futex_abstimed_wait_cancelable (174 samples, 0.01%)</title><rect x="6.4928%" y="565" width="0.0113%" height="15" fill="rgb(209,36,54)" fg:x="99914" fg:w="174"/><text x="6.7428%" y="575.50"></text></g><g><title>__GI___clone (1,589 samples, 0.10%)</title><rect x="6.4009%" y="709" width="0.1033%" height="15" fill="rgb(220,10,11)" fg:x="98500" fg:w="1589"/><text x="6.6509%" y="719.50"></text></g><g><title>start_thread (1,589 samples, 0.10%)</title><rect x="6.4009%" y="693" width="0.1033%" height="15" fill="rgb(221,106,17)" fg:x="98500" fg:w="1589"/><text x="6.6509%" y="703.50"></text></g><g><title>thread_native_entry (1,589 samples, 0.10%)</title><rect x="6.4009%" y="677" width="0.1033%" height="15" fill="rgb(251,142,44)" fg:x="98500" fg:w="1589"/><text x="6.6509%" y="687.50"></text></g><g><title>Thread::call_run (1,589 samples, 0.10%)</title><rect x="6.4009%" y="661" width="0.1033%" height="15" fill="rgb(238,13,15)" fg:x="98500" fg:w="1589"/><text x="6.6509%" y="671.50"></text></g><g><title>GangWorker::loop (1,589 samples, 0.10%)</title><rect x="6.4009%" y="645" width="0.1033%" height="15" fill="rgb(208,107,27)" fg:x="98500" fg:w="1589"/><text x="6.6509%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (177 samples, 0.01%)</title><rect x="6.4927%" y="629" width="0.0115%" height="15" fill="rgb(205,136,37)" fg:x="99912" fg:w="177"/><text x="6.7427%" y="639.50"></text></g><g><title>GC_Thread#1 (1,620 samples, 0.11%)</title><rect x="6.3990%" y="725" width="0.1053%" height="15" fill="rgb(250,205,27)" fg:x="98471" fg:w="1620"/><text x="6.6490%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (355 samples, 0.02%)</title><rect x="6.5168%" y="581" width="0.0231%" height="15" fill="rgb(210,80,43)" fg:x="100284" fg:w="355"/><text x="6.7668%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (549 samples, 0.04%)</title><rect x="6.5062%" y="597" width="0.0357%" height="15" fill="rgb(247,160,36)" fg:x="100121" fg:w="549"/><text x="6.7562%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (650 samples, 0.04%)</title><rect x="6.5057%" y="613" width="0.0422%" height="15" fill="rgb(234,13,49)" fg:x="100113" fg:w="650"/><text x="6.7557%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (158 samples, 0.01%)</title><rect x="6.5480%" y="533" width="0.0103%" height="15" fill="rgb(234,122,0)" fg:x="100764" fg:w="158"/><text x="6.7980%" y="543.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (185 samples, 0.01%)</title><rect x="6.5480%" y="549" width="0.0120%" height="15" fill="rgb(207,146,38)" fg:x="100763" fg:w="185"/><text x="6.7980%" y="559.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (186 samples, 0.01%)</title><rect x="6.5480%" y="581" width="0.0121%" height="15" fill="rgb(207,177,25)" fg:x="100763" fg:w="186"/><text x="6.7980%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (186 samples, 0.01%)</title><rect x="6.5480%" y="565" width="0.0121%" height="15" fill="rgb(211,178,42)" fg:x="100763" fg:w="186"/><text x="6.7980%" y="575.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (187 samples, 0.01%)</title><rect x="6.5480%" y="613" width="0.0122%" height="15" fill="rgb(230,69,54)" fg:x="100763" fg:w="187"/><text x="6.7980%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (187 samples, 0.01%)</title><rect x="6.5480%" y="597" width="0.0122%" height="15" fill="rgb(214,135,41)" fg:x="100763" fg:w="187"/><text x="6.7980%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (210 samples, 0.01%)</title><rect x="6.5674%" y="597" width="0.0136%" height="15" fill="rgb(237,67,25)" fg:x="101063" fg:w="210"/><text x="6.8174%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (208 samples, 0.01%)</title><rect x="6.5676%" y="581" width="0.0135%" height="15" fill="rgb(222,189,50)" fg:x="101065" fg:w="208"/><text x="6.8176%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (208 samples, 0.01%)</title><rect x="6.5676%" y="565" width="0.0135%" height="15" fill="rgb(245,148,34)" fg:x="101065" fg:w="208"/><text x="6.8176%" y="575.50"></text></g><g><title>JavaThread::oops_do (206 samples, 0.01%)</title><rect x="6.5677%" y="549" width="0.0134%" height="15" fill="rgb(222,29,6)" fg:x="101067" fg:w="206"/><text x="6.8177%" y="559.50"></text></g><g><title>G1ParTask::work (1,180 samples, 0.08%)</title><rect x="6.5057%" y="629" width="0.0767%" height="15" fill="rgb(221,189,43)" fg:x="100113" fg:w="1180"/><text x="6.7557%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (230 samples, 0.01%)</title><rect x="6.5674%" y="613" width="0.0149%" height="15" fill="rgb(207,36,27)" fg:x="101063" fg:w="230"/><text x="6.8174%" y="623.50"></text></g><g><title>__GI___clone (1,429 samples, 0.09%)</title><rect x="6.5056%" y="709" width="0.0929%" height="15" fill="rgb(217,90,24)" fg:x="100111" fg:w="1429"/><text x="6.7556%" y="719.50"></text></g><g><title>start_thread (1,429 samples, 0.09%)</title><rect x="6.5056%" y="693" width="0.0929%" height="15" fill="rgb(224,66,35)" fg:x="100111" fg:w="1429"/><text x="6.7556%" y="703.50"></text></g><g><title>thread_native_entry (1,429 samples, 0.09%)</title><rect x="6.5056%" y="677" width="0.0929%" height="15" fill="rgb(221,13,50)" fg:x="100111" fg:w="1429"/><text x="6.7556%" y="687.50"></text></g><g><title>Thread::call_run (1,429 samples, 0.09%)</title><rect x="6.5056%" y="661" width="0.0929%" height="15" fill="rgb(236,68,49)" fg:x="100111" fg:w="1429"/><text x="6.7556%" y="671.50"></text></g><g><title>GangWorker::loop (1,429 samples, 0.09%)</title><rect x="6.5056%" y="645" width="0.0929%" height="15" fill="rgb(229,146,28)" fg:x="100111" fg:w="1429"/><text x="6.7556%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (155 samples, 0.01%)</title><rect x="6.5884%" y="629" width="0.0101%" height="15" fill="rgb(225,31,38)" fg:x="101385" fg:w="155"/><text x="6.8384%" y="639.50"></text></g><g><title>PosixSemaphore::wait (154 samples, 0.01%)</title><rect x="6.5884%" y="613" width="0.0100%" height="15" fill="rgb(250,208,3)" fg:x="101386" fg:w="154"/><text x="6.8384%" y="623.50"></text></g><g><title>GC_Thread#2 (1,451 samples, 0.09%)</title><rect x="6.5043%" y="725" width="0.0943%" height="15" fill="rgb(246,54,23)" fg:x="100091" fg:w="1451"/><text x="6.7543%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (314 samples, 0.02%)</title><rect x="6.6112%" y="581" width="0.0204%" height="15" fill="rgb(243,76,11)" fg:x="101737" fg:w="314"/><text x="6.8612%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (486 samples, 0.03%)</title><rect x="6.6010%" y="597" width="0.0316%" height="15" fill="rgb(245,21,50)" fg:x="101579" fg:w="486"/><text x="6.8510%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (583 samples, 0.04%)</title><rect x="6.6005%" y="613" width="0.0379%" height="15" fill="rgb(228,9,43)" fg:x="101571" fg:w="583"/><text x="6.8505%" y="623.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (169 samples, 0.01%)</title><rect x="6.6385%" y="613" width="0.0110%" height="15" fill="rgb(208,100,47)" fg:x="102156" fg:w="169"/><text x="6.8885%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (169 samples, 0.01%)</title><rect x="6.6385%" y="597" width="0.0110%" height="15" fill="rgb(232,26,8)" fg:x="102156" fg:w="169"/><text x="6.8885%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (169 samples, 0.01%)</title><rect x="6.6385%" y="581" width="0.0110%" height="15" fill="rgb(216,166,38)" fg:x="102156" fg:w="169"/><text x="6.8885%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (169 samples, 0.01%)</title><rect x="6.6385%" y="565" width="0.0110%" height="15" fill="rgb(251,202,51)" fg:x="102156" fg:w="169"/><text x="6.8885%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (169 samples, 0.01%)</title><rect x="6.6385%" y="549" width="0.0110%" height="15" fill="rgb(254,216,34)" fg:x="102156" fg:w="169"/><text x="6.8885%" y="559.50"></text></g><g><title>InterpreterOopMap::iterate_oop (177 samples, 0.01%)</title><rect x="6.6615%" y="517" width="0.0115%" height="15" fill="rgb(251,32,27)" fg:x="102510" fg:w="177"/><text x="6.9115%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (173 samples, 0.01%)</title><rect x="6.6617%" y="501" width="0.0112%" height="15" fill="rgb(208,127,28)" fg:x="102514" fg:w="173"/><text x="6.9117%" y="511.50"></text></g><g><title>G1RootProcessor::process_java_roots (252 samples, 0.02%)</title><rect x="6.6568%" y="597" width="0.0164%" height="15" fill="rgb(224,137,22)" fg:x="102438" fg:w="252"/><text x="6.9068%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (223 samples, 0.01%)</title><rect x="6.6587%" y="581" width="0.0145%" height="15" fill="rgb(254,70,32)" fg:x="102467" fg:w="223"/><text x="6.9087%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (223 samples, 0.01%)</title><rect x="6.6587%" y="565" width="0.0145%" height="15" fill="rgb(229,75,37)" fg:x="102467" fg:w="223"/><text x="6.9087%" y="575.50"></text></g><g><title>JavaThread::oops_do (215 samples, 0.01%)</title><rect x="6.6592%" y="549" width="0.0140%" height="15" fill="rgb(252,64,23)" fg:x="102475" fg:w="215"/><text x="6.9092%" y="559.50"></text></g><g><title>frame::oops_interpreted_do (181 samples, 0.01%)</title><rect x="6.6614%" y="533" width="0.0118%" height="15" fill="rgb(232,162,48)" fg:x="102509" fg:w="181"/><text x="6.9114%" y="543.50"></text></g><g><title>G1ParTask::work (1,134 samples, 0.07%)</title><rect x="6.6005%" y="629" width="0.0737%" height="15" fill="rgb(246,160,12)" fg:x="101571" fg:w="1134"/><text x="6.8505%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (278 samples, 0.02%)</title><rect x="6.6561%" y="613" width="0.0181%" height="15" fill="rgb(247,166,0)" fg:x="102427" fg:w="278"/><text x="6.9061%" y="623.50"></text></g><g><title>__GI___clone (1,402 samples, 0.09%)</title><rect x="6.6001%" y="709" width="0.0911%" height="15" fill="rgb(249,219,21)" fg:x="101565" fg:w="1402"/><text x="6.8501%" y="719.50"></text></g><g><title>start_thread (1,402 samples, 0.09%)</title><rect x="6.6001%" y="693" width="0.0911%" height="15" fill="rgb(205,209,3)" fg:x="101565" fg:w="1402"/><text x="6.8501%" y="703.50"></text></g><g><title>thread_native_entry (1,402 samples, 0.09%)</title><rect x="6.6001%" y="677" width="0.0911%" height="15" fill="rgb(243,44,1)" fg:x="101565" fg:w="1402"/><text x="6.8501%" y="687.50"></text></g><g><title>Thread::call_run (1,402 samples, 0.09%)</title><rect x="6.6001%" y="661" width="0.0911%" height="15" fill="rgb(206,159,16)" fg:x="101565" fg:w="1402"/><text x="6.8501%" y="671.50"></text></g><g><title>GangWorker::loop (1,402 samples, 0.09%)</title><rect x="6.6001%" y="645" width="0.0911%" height="15" fill="rgb(244,77,30)" fg:x="101565" fg:w="1402"/><text x="6.8501%" y="655.50"></text></g><g><title>GC_Thread#3 (1,427 samples, 0.09%)</title><rect x="6.5986%" y="725" width="0.0927%" height="15" fill="rgb(218,69,12)" fg:x="101542" fg:w="1427"/><text x="6.8486%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (248 samples, 0.02%)</title><rect x="6.7022%" y="581" width="0.0161%" height="15" fill="rgb(212,87,7)" fg:x="103137" fg:w="248"/><text x="6.9522%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (403 samples, 0.03%)</title><rect x="6.6933%" y="597" width="0.0262%" height="15" fill="rgb(245,114,25)" fg:x="103000" fg:w="403"/><text x="6.9433%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (489 samples, 0.03%)</title><rect x="6.6928%" y="613" width="0.0318%" height="15" fill="rgb(210,61,42)" fg:x="102992" fg:w="489"/><text x="6.9428%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (165 samples, 0.01%)</title><rect x="6.7246%" y="533" width="0.0107%" height="15" fill="rgb(211,52,33)" fg:x="103482" fg:w="165"/><text x="6.9746%" y="543.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (186 samples, 0.01%)</title><rect x="6.7246%" y="549" width="0.0121%" height="15" fill="rgb(234,58,33)" fg:x="103482" fg:w="186"/><text x="6.9746%" y="559.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (187 samples, 0.01%)</title><rect x="6.7246%" y="613" width="0.0122%" height="15" fill="rgb(220,115,36)" fg:x="103482" fg:w="187"/><text x="6.9746%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (187 samples, 0.01%)</title><rect x="6.7246%" y="597" width="0.0122%" height="15" fill="rgb(243,153,54)" fg:x="103482" fg:w="187"/><text x="6.9746%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (187 samples, 0.01%)</title><rect x="6.7246%" y="581" width="0.0122%" height="15" fill="rgb(251,47,18)" fg:x="103482" fg:w="187"/><text x="6.9746%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (187 samples, 0.01%)</title><rect x="6.7246%" y="565" width="0.0122%" height="15" fill="rgb(242,102,42)" fg:x="103482" fg:w="187"/><text x="6.9746%" y="575.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (185 samples, 0.01%)</title><rect x="6.7527%" y="485" width="0.0120%" height="15" fill="rgb(234,31,38)" fg:x="103914" fg:w="185"/><text x="7.0027%" y="495.50"></text></g><g><title>InterpreterOopMap::iterate_oop (253 samples, 0.02%)</title><rect x="6.7493%" y="517" width="0.0164%" height="15" fill="rgb(221,117,51)" fg:x="103862" fg:w="253"/><text x="6.9993%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (247 samples, 0.02%)</title><rect x="6.7497%" y="501" width="0.0161%" height="15" fill="rgb(212,20,18)" fg:x="103868" fg:w="247"/><text x="6.9997%" y="511.50"></text></g><g><title>frame::oops_interpreted_do (258 samples, 0.02%)</title><rect x="6.7492%" y="533" width="0.0168%" height="15" fill="rgb(245,133,36)" fg:x="103860" fg:w="258"/><text x="6.9992%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (348 samples, 0.02%)</title><rect x="6.7434%" y="597" width="0.0226%" height="15" fill="rgb(212,6,19)" fg:x="103771" fg:w="348"/><text x="6.9934%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (298 samples, 0.02%)</title><rect x="6.7467%" y="581" width="0.0194%" height="15" fill="rgb(218,1,36)" fg:x="103821" fg:w="298"/><text x="6.9967%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (298 samples, 0.02%)</title><rect x="6.7467%" y="565" width="0.0194%" height="15" fill="rgb(246,84,54)" fg:x="103821" fg:w="298"/><text x="6.9967%" y="575.50"></text></g><g><title>JavaThread::oops_do (298 samples, 0.02%)</title><rect x="6.7467%" y="549" width="0.0194%" height="15" fill="rgb(242,110,6)" fg:x="103821" fg:w="298"/><text x="6.9967%" y="559.50"></text></g><g><title>G1ParTask::work (1,157 samples, 0.08%)</title><rect x="6.6928%" y="629" width="0.0752%" height="15" fill="rgb(214,47,5)" fg:x="102992" fg:w="1157"/><text x="6.9428%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (379 samples, 0.02%)</title><rect x="6.7434%" y="613" width="0.0246%" height="15" fill="rgb(218,159,25)" fg:x="103770" fg:w="379"/><text x="6.9934%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (156 samples, 0.01%)</title><rect x="6.7766%" y="405" width="0.0101%" height="15" fill="rgb(215,211,28)" fg:x="104282" fg:w="156"/><text x="7.0266%" y="415.50"></text></g><g><title>finish_task_switch (163 samples, 0.01%)</title><rect x="6.7764%" y="421" width="0.0106%" height="15" fill="rgb(238,59,32)" fg:x="104279" fg:w="163"/><text x="7.0264%" y="431.50"></text></g><g><title>futex_wait_queue_me (176 samples, 0.01%)</title><rect x="6.7760%" y="469" width="0.0114%" height="15" fill="rgb(226,82,3)" fg:x="104273" fg:w="176"/><text x="7.0260%" y="479.50"></text></g><g><title>schedule (175 samples, 0.01%)</title><rect x="6.7761%" y="453" width="0.0114%" height="15" fill="rgb(240,164,32)" fg:x="104274" fg:w="175"/><text x="7.0261%" y="463.50"></text></g><g><title>__schedule (175 samples, 0.01%)</title><rect x="6.7761%" y="437" width="0.0114%" height="15" fill="rgb(232,46,7)" fg:x="104274" fg:w="175"/><text x="7.0261%" y="447.50"></text></g><g><title>__x64_sys_futex (183 samples, 0.01%)</title><rect x="6.7758%" y="517" width="0.0119%" height="15" fill="rgb(229,129,53)" fg:x="104269" fg:w="183"/><text x="7.0258%" y="527.50"></text></g><g><title>do_futex (182 samples, 0.01%)</title><rect x="6.7759%" y="501" width="0.0118%" height="15" fill="rgb(234,188,29)" fg:x="104270" fg:w="182"/><text x="7.0259%" y="511.50"></text></g><g><title>futex_wait (180 samples, 0.01%)</title><rect x="6.7760%" y="485" width="0.0117%" height="15" fill="rgb(246,141,4)" fg:x="104272" fg:w="180"/><text x="7.0260%" y="495.50"></text></g><g><title>do_syscall_64 (185 samples, 0.01%)</title><rect x="6.7757%" y="533" width="0.0120%" height="15" fill="rgb(229,23,39)" fg:x="104268" fg:w="185"/><text x="7.0257%" y="543.50"></text></g><g><title>__GI___clone (1,470 samples, 0.10%)</title><rect x="6.6925%" y="709" width="0.0955%" height="15" fill="rgb(206,12,3)" fg:x="102988" fg:w="1470"/><text x="6.9425%" y="719.50"></text></g><g><title>start_thread (1,470 samples, 0.10%)</title><rect x="6.6925%" y="693" width="0.0955%" height="15" fill="rgb(252,226,20)" fg:x="102988" fg:w="1470"/><text x="6.9425%" y="703.50"></text></g><g><title>thread_native_entry (1,470 samples, 0.10%)</title><rect x="6.6925%" y="677" width="0.0955%" height="15" fill="rgb(216,123,35)" fg:x="102988" fg:w="1470"/><text x="6.9425%" y="687.50"></text></g><g><title>Thread::call_run (1,470 samples, 0.10%)</title><rect x="6.6925%" y="661" width="0.0955%" height="15" fill="rgb(212,68,40)" fg:x="102988" fg:w="1470"/><text x="6.9425%" y="671.50"></text></g><g><title>GangWorker::loop (1,470 samples, 0.10%)</title><rect x="6.6925%" y="645" width="0.0955%" height="15" fill="rgb(254,125,32)" fg:x="102988" fg:w="1470"/><text x="6.9425%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (191 samples, 0.01%)</title><rect x="6.7757%" y="629" width="0.0124%" height="15" fill="rgb(253,97,22)" fg:x="104267" fg:w="191"/><text x="7.0257%" y="639.50"></text></g><g><title>PosixSemaphore::wait (191 samples, 0.01%)</title><rect x="6.7757%" y="613" width="0.0124%" height="15" fill="rgb(241,101,14)" fg:x="104267" fg:w="191"/><text x="7.0257%" y="623.50"></text></g><g><title>__new_sem_wait_slow (191 samples, 0.01%)</title><rect x="6.7757%" y="597" width="0.0124%" height="15" fill="rgb(238,103,29)" fg:x="104267" fg:w="191"/><text x="7.0257%" y="607.50"></text></g><g><title>do_futex_wait (191 samples, 0.01%)</title><rect x="6.7757%" y="581" width="0.0124%" height="15" fill="rgb(233,195,47)" fg:x="104267" fg:w="191"/><text x="7.0257%" y="591.50"></text></g><g><title>futex_abstimed_wait_cancelable (191 samples, 0.01%)</title><rect x="6.7757%" y="565" width="0.0124%" height="15" fill="rgb(246,218,30)" fg:x="104267" fg:w="191"/><text x="7.0257%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (190 samples, 0.01%)</title><rect x="6.7757%" y="549" width="0.0123%" height="15" fill="rgb(219,145,47)" fg:x="104268" fg:w="190"/><text x="7.0257%" y="559.50"></text></g><g><title>GC_Thread#4 (1,553 samples, 0.10%)</title><rect x="6.6913%" y="725" width="0.1009%" height="15" fill="rgb(243,12,26)" fg:x="102969" fg:w="1553"/><text x="6.9413%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (295 samples, 0.02%)</title><rect x="6.8054%" y="581" width="0.0192%" height="15" fill="rgb(214,87,16)" fg:x="104724" fg:w="295"/><text x="7.0554%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (473 samples, 0.03%)</title><rect x="6.7944%" y="597" width="0.0307%" height="15" fill="rgb(208,99,42)" fg:x="104556" fg:w="473"/><text x="7.0444%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (565 samples, 0.04%)</title><rect x="6.7940%" y="613" width="0.0367%" height="15" fill="rgb(253,99,2)" fg:x="104550" fg:w="565"/><text x="7.0440%" y="623.50"></text></g><g><title>InterpreterOopMap::iterate_oop (176 samples, 0.01%)</title><rect x="6.8557%" y="517" width="0.0114%" height="15" fill="rgb(220,168,23)" fg:x="105498" fg:w="176"/><text x="7.1057%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (175 samples, 0.01%)</title><rect x="6.8557%" y="501" width="0.0114%" height="15" fill="rgb(242,38,24)" fg:x="105499" fg:w="175"/><text x="7.1057%" y="511.50"></text></g><g><title>frame::oops_interpreted_do (188 samples, 0.01%)</title><rect x="6.8555%" y="533" width="0.0122%" height="15" fill="rgb(225,182,9)" fg:x="105495" fg:w="188"/><text x="7.1055%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (313 samples, 0.02%)</title><rect x="6.8476%" y="597" width="0.0203%" height="15" fill="rgb(243,178,37)" fg:x="105374" fg:w="313"/><text x="7.0976%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (313 samples, 0.02%)</title><rect x="6.8476%" y="581" width="0.0203%" height="15" fill="rgb(232,139,19)" fg:x="105374" fg:w="313"/><text x="7.0976%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (313 samples, 0.02%)</title><rect x="6.8476%" y="565" width="0.0203%" height="15" fill="rgb(225,201,24)" fg:x="105374" fg:w="313"/><text x="7.0976%" y="575.50"></text></g><g><title>JavaThread::oops_do (313 samples, 0.02%)</title><rect x="6.8476%" y="549" width="0.0203%" height="15" fill="rgb(221,47,46)" fg:x="105374" fg:w="313"/><text x="7.0976%" y="559.50"></text></g><g><title>G1ParTask::work (1,156 samples, 0.08%)</title><rect x="6.7940%" y="629" width="0.0751%" height="15" fill="rgb(249,23,13)" fg:x="104550" fg:w="1156"/><text x="7.0440%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (338 samples, 0.02%)</title><rect x="6.8472%" y="613" width="0.0220%" height="15" fill="rgb(219,9,5)" fg:x="105368" fg:w="338"/><text x="7.0972%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (178 samples, 0.01%)</title><rect x="6.8776%" y="405" width="0.0116%" height="15" fill="rgb(254,171,16)" fg:x="105836" fg:w="178"/><text x="7.1276%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (176 samples, 0.01%)</title><rect x="6.8777%" y="389" width="0.0114%" height="15" fill="rgb(230,171,20)" fg:x="105838" fg:w="176"/><text x="7.1277%" y="399.50"></text></g><g><title>native_write_msr (175 samples, 0.01%)</title><rect x="6.8778%" y="373" width="0.0114%" height="15" fill="rgb(210,71,41)" fg:x="105839" fg:w="175"/><text x="7.1278%" y="383.50"></text></g><g><title>finish_task_switch (185 samples, 0.01%)</title><rect x="6.8774%" y="421" width="0.0120%" height="15" fill="rgb(206,173,20)" fg:x="105832" fg:w="185"/><text x="7.1274%" y="431.50"></text></g><g><title>do_syscall_64 (208 samples, 0.01%)</title><rect x="6.8764%" y="533" width="0.0135%" height="15" fill="rgb(233,88,34)" fg:x="105818" fg:w="208"/><text x="7.1264%" y="543.50"></text></g><g><title>__x64_sys_futex (207 samples, 0.01%)</title><rect x="6.8765%" y="517" width="0.0135%" height="15" fill="rgb(223,209,46)" fg:x="105819" fg:w="207"/><text x="7.1265%" y="527.50"></text></g><g><title>do_futex (206 samples, 0.01%)</title><rect x="6.8766%" y="501" width="0.0134%" height="15" fill="rgb(250,43,18)" fg:x="105820" fg:w="206"/><text x="7.1266%" y="511.50"></text></g><g><title>futex_wait (204 samples, 0.01%)</title><rect x="6.8767%" y="485" width="0.0133%" height="15" fill="rgb(208,13,10)" fg:x="105822" fg:w="204"/><text x="7.1267%" y="495.50"></text></g><g><title>futex_wait_queue_me (201 samples, 0.01%)</title><rect x="6.8769%" y="469" width="0.0131%" height="15" fill="rgb(212,200,36)" fg:x="105825" fg:w="201"/><text x="7.1269%" y="479.50"></text></g><g><title>schedule (200 samples, 0.01%)</title><rect x="6.8770%" y="453" width="0.0130%" height="15" fill="rgb(225,90,30)" fg:x="105826" fg:w="200"/><text x="7.1270%" y="463.50"></text></g><g><title>__schedule (200 samples, 0.01%)</title><rect x="6.8770%" y="437" width="0.0130%" height="15" fill="rgb(236,182,39)" fg:x="105826" fg:w="200"/><text x="7.1270%" y="447.50"></text></g><g><title>__GI___clone (1,487 samples, 0.10%)</title><rect x="6.7936%" y="709" width="0.0966%" height="15" fill="rgb(212,144,35)" fg:x="104543" fg:w="1487"/><text x="7.0436%" y="719.50"></text></g><g><title>start_thread (1,487 samples, 0.10%)</title><rect x="6.7936%" y="693" width="0.0966%" height="15" fill="rgb(228,63,44)" fg:x="104543" fg:w="1487"/><text x="7.0436%" y="703.50"></text></g><g><title>thread_native_entry (1,487 samples, 0.10%)</title><rect x="6.7936%" y="677" width="0.0966%" height="15" fill="rgb(228,109,6)" fg:x="104543" fg:w="1487"/><text x="7.0436%" y="687.50"></text></g><g><title>Thread::call_run (1,487 samples, 0.10%)</title><rect x="6.7936%" y="661" width="0.0966%" height="15" fill="rgb(238,117,24)" fg:x="104543" fg:w="1487"/><text x="7.0436%" y="671.50"></text></g><g><title>GangWorker::loop (1,487 samples, 0.10%)</title><rect x="6.7936%" y="645" width="0.0966%" height="15" fill="rgb(242,26,26)" fg:x="104543" fg:w="1487"/><text x="7.0436%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (216 samples, 0.01%)</title><rect x="6.8762%" y="629" width="0.0140%" height="15" fill="rgb(221,92,48)" fg:x="105814" fg:w="216"/><text x="7.1262%" y="639.50"></text></g><g><title>PosixSemaphore::wait (215 samples, 0.01%)</title><rect x="6.8763%" y="613" width="0.0140%" height="15" fill="rgb(209,209,32)" fg:x="105815" fg:w="215"/><text x="7.1263%" y="623.50"></text></g><g><title>__new_sem_wait_slow (214 samples, 0.01%)</title><rect x="6.8763%" y="597" width="0.0139%" height="15" fill="rgb(221,70,22)" fg:x="105816" fg:w="214"/><text x="7.1263%" y="607.50"></text></g><g><title>do_futex_wait (214 samples, 0.01%)</title><rect x="6.8763%" y="581" width="0.0139%" height="15" fill="rgb(248,145,5)" fg:x="105816" fg:w="214"/><text x="7.1263%" y="591.50"></text></g><g><title>futex_abstimed_wait_cancelable (214 samples, 0.01%)</title><rect x="6.8763%" y="565" width="0.0139%" height="15" fill="rgb(226,116,26)" fg:x="105816" fg:w="214"/><text x="7.1263%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (212 samples, 0.01%)</title><rect x="6.8764%" y="549" width="0.0138%" height="15" fill="rgb(244,5,17)" fg:x="105818" fg:w="212"/><text x="7.1264%" y="559.50"></text></g><g><title>GC_Thread#5 (1,509 samples, 0.10%)</title><rect x="6.7922%" y="725" width="0.0981%" height="15" fill="rgb(252,159,33)" fg:x="104522" fg:w="1509"/><text x="7.0422%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (361 samples, 0.02%)</title><rect x="6.9059%" y="581" width="0.0235%" height="15" fill="rgb(206,71,0)" fg:x="106271" fg:w="361"/><text x="7.1559%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (559 samples, 0.04%)</title><rect x="6.8940%" y="597" width="0.0363%" height="15" fill="rgb(233,118,54)" fg:x="106088" fg:w="559"/><text x="7.1440%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (669 samples, 0.04%)</title><rect x="6.8928%" y="613" width="0.0435%" height="15" fill="rgb(234,83,48)" fg:x="106069" fg:w="669"/><text x="7.1428%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (194 samples, 0.01%)</title><rect x="6.9362%" y="581" width="0.0126%" height="15" fill="rgb(228,3,54)" fg:x="106738" fg:w="194"/><text x="7.1862%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (194 samples, 0.01%)</title><rect x="6.9362%" y="565" width="0.0126%" height="15" fill="rgb(226,155,13)" fg:x="106738" fg:w="194"/><text x="7.1862%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (193 samples, 0.01%)</title><rect x="6.9363%" y="549" width="0.0125%" height="15" fill="rgb(241,28,37)" fg:x="106739" fg:w="193"/><text x="7.1863%" y="559.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (195 samples, 0.01%)</title><rect x="6.9362%" y="613" width="0.0127%" height="15" fill="rgb(233,93,10)" fg:x="106738" fg:w="195"/><text x="7.1862%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (195 samples, 0.01%)</title><rect x="6.9362%" y="597" width="0.0127%" height="15" fill="rgb(225,113,19)" fg:x="106738" fg:w="195"/><text x="7.1862%" y="607.50"></text></g><g><title>G1ParTask::work (1,177 samples, 0.08%)</title><rect x="6.8927%" y="629" width="0.0765%" height="15" fill="rgb(241,2,18)" fg:x="106068" fg:w="1177"/><text x="7.1427%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (169 samples, 0.01%)</title><rect x="6.9582%" y="613" width="0.0110%" height="15" fill="rgb(228,207,21)" fg:x="107076" fg:w="169"/><text x="7.2082%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (158 samples, 0.01%)</title><rect x="6.9782%" y="405" width="0.0103%" height="15" fill="rgb(213,211,35)" fg:x="107384" fg:w="158"/><text x="7.2282%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (155 samples, 0.01%)</title><rect x="6.9784%" y="389" width="0.0101%" height="15" fill="rgb(209,83,10)" fg:x="107387" fg:w="155"/><text x="7.2284%" y="399.50"></text></g><g><title>native_write_msr (155 samples, 0.01%)</title><rect x="6.9784%" y="373" width="0.0101%" height="15" fill="rgb(209,164,1)" fg:x="107387" fg:w="155"/><text x="7.2284%" y="383.50"></text></g><g><title>finish_task_switch (162 samples, 0.01%)</title><rect x="6.9781%" y="421" width="0.0105%" height="15" fill="rgb(213,184,43)" fg:x="107382" fg:w="162"/><text x="7.2281%" y="431.50"></text></g><g><title>futex_wait_queue_me (172 samples, 0.01%)</title><rect x="6.9778%" y="469" width="0.0112%" height="15" fill="rgb(231,61,34)" fg:x="107378" fg:w="172"/><text x="7.2278%" y="479.50"></text></g><g><title>schedule (171 samples, 0.01%)</title><rect x="6.9779%" y="453" width="0.0111%" height="15" fill="rgb(235,75,3)" fg:x="107379" fg:w="171"/><text x="7.2279%" y="463.50"></text></g><g><title>__schedule (171 samples, 0.01%)</title><rect x="6.9779%" y="437" width="0.0111%" height="15" fill="rgb(220,106,47)" fg:x="107379" fg:w="171"/><text x="7.2279%" y="447.50"></text></g><g><title>do_syscall_64 (179 samples, 0.01%)</title><rect x="6.9776%" y="533" width="0.0116%" height="15" fill="rgb(210,196,33)" fg:x="107375" fg:w="179"/><text x="7.2276%" y="543.50"></text></g><g><title>__x64_sys_futex (177 samples, 0.01%)</title><rect x="6.9778%" y="517" width="0.0115%" height="15" fill="rgb(229,154,42)" fg:x="107377" fg:w="177"/><text x="7.2278%" y="527.50"></text></g><g><title>do_futex (177 samples, 0.01%)</title><rect x="6.9778%" y="501" width="0.0115%" height="15" fill="rgb(228,114,26)" fg:x="107377" fg:w="177"/><text x="7.2278%" y="511.50"></text></g><g><title>futex_wait (176 samples, 0.01%)</title><rect x="6.9778%" y="485" width="0.0114%" height="15" fill="rgb(208,144,1)" fg:x="107378" fg:w="176"/><text x="7.2278%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (186 samples, 0.01%)</title><rect x="6.9776%" y="549" width="0.0121%" height="15" fill="rgb(239,112,37)" fg:x="107374" fg:w="186"/><text x="7.2276%" y="559.50"></text></g><g><title>__GI___clone (1,500 samples, 0.10%)</title><rect x="6.8922%" y="709" width="0.0975%" height="15" fill="rgb(210,96,50)" fg:x="106061" fg:w="1500"/><text x="7.1422%" y="719.50"></text></g><g><title>start_thread (1,500 samples, 0.10%)</title><rect x="6.8922%" y="693" width="0.0975%" height="15" fill="rgb(222,178,2)" fg:x="106061" fg:w="1500"/><text x="7.1422%" y="703.50"></text></g><g><title>thread_native_entry (1,500 samples, 0.10%)</title><rect x="6.8922%" y="677" width="0.0975%" height="15" fill="rgb(226,74,18)" fg:x="106061" fg:w="1500"/><text x="7.1422%" y="687.50"></text></g><g><title>Thread::call_run (1,500 samples, 0.10%)</title><rect x="6.8922%" y="661" width="0.0975%" height="15" fill="rgb(225,67,54)" fg:x="106061" fg:w="1500"/><text x="7.1422%" y="671.50"></text></g><g><title>GangWorker::loop (1,500 samples, 0.10%)</title><rect x="6.8922%" y="645" width="0.0975%" height="15" fill="rgb(251,92,32)" fg:x="106061" fg:w="1500"/><text x="7.1422%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (196 samples, 0.01%)</title><rect x="6.9770%" y="629" width="0.0127%" height="15" fill="rgb(228,149,22)" fg:x="107365" fg:w="196"/><text x="7.2270%" y="639.50"></text></g><g><title>PosixSemaphore::wait (193 samples, 0.01%)</title><rect x="6.9772%" y="613" width="0.0125%" height="15" fill="rgb(243,54,13)" fg:x="107368" fg:w="193"/><text x="7.2272%" y="623.50"></text></g><g><title>__new_sem_wait_slow (192 samples, 0.01%)</title><rect x="6.9772%" y="597" width="0.0125%" height="15" fill="rgb(243,180,28)" fg:x="107369" fg:w="192"/><text x="7.2272%" y="607.50"></text></g><g><title>do_futex_wait (189 samples, 0.01%)</title><rect x="6.9774%" y="581" width="0.0123%" height="15" fill="rgb(208,167,24)" fg:x="107372" fg:w="189"/><text x="7.2274%" y="591.50"></text></g><g><title>futex_abstimed_wait_cancelable (189 samples, 0.01%)</title><rect x="6.9774%" y="565" width="0.0123%" height="15" fill="rgb(245,73,45)" fg:x="107372" fg:w="189"/><text x="7.2274%" y="575.50"></text></g><g><title>GC_Thread#6 (1,534 samples, 0.10%)</title><rect x="6.8903%" y="725" width="0.0997%" height="15" fill="rgb(237,203,48)" fg:x="106031" fg:w="1534"/><text x="7.1403%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (332 samples, 0.02%)</title><rect x="7.0041%" y="581" width="0.0216%" height="15" fill="rgb(211,197,16)" fg:x="107783" fg:w="332"/><text x="7.2541%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (515 samples, 0.03%)</title><rect x="6.9934%" y="597" width="0.0335%" height="15" fill="rgb(243,99,51)" fg:x="107617" fg:w="515"/><text x="7.2434%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (622 samples, 0.04%)</title><rect x="6.9931%" y="613" width="0.0404%" height="15" fill="rgb(215,123,29)" fg:x="107613" fg:w="622"/><text x="7.2431%" y="623.50"></text></g><g><title>InterpreterOopMap::iterate_oop (182 samples, 0.01%)</title><rect x="7.0548%" y="517" width="0.0118%" height="15" fill="rgb(239,186,37)" fg:x="108562" fg:w="182"/><text x="7.3048%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (178 samples, 0.01%)</title><rect x="7.0550%" y="501" width="0.0116%" height="15" fill="rgb(252,136,39)" fg:x="108566" fg:w="178"/><text x="7.3050%" y="511.50"></text></g><g><title>G1RootProcessor::process_java_roots (270 samples, 0.02%)</title><rect x="7.0492%" y="597" width="0.0175%" height="15" fill="rgb(223,213,32)" fg:x="108477" fg:w="270"/><text x="7.2992%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (222 samples, 0.01%)</title><rect x="7.0524%" y="581" width="0.0144%" height="15" fill="rgb(233,115,5)" fg:x="108525" fg:w="222"/><text x="7.3024%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (222 samples, 0.01%)</title><rect x="7.0524%" y="565" width="0.0144%" height="15" fill="rgb(207,226,44)" fg:x="108525" fg:w="222"/><text x="7.3024%" y="575.50"></text></g><g><title>JavaThread::oops_do (221 samples, 0.01%)</title><rect x="7.0524%" y="549" width="0.0144%" height="15" fill="rgb(208,126,0)" fg:x="108526" fg:w="221"/><text x="7.3024%" y="559.50"></text></g><g><title>frame::oops_interpreted_do (187 samples, 0.01%)</title><rect x="7.0546%" y="533" width="0.0122%" height="15" fill="rgb(244,66,21)" fg:x="108560" fg:w="187"/><text x="7.3046%" y="543.50"></text></g><g><title>G1ParTask::work (1,160 samples, 0.08%)</title><rect x="6.9931%" y="629" width="0.0754%" height="15" fill="rgb(222,97,12)" fg:x="107613" fg:w="1160"/><text x="7.2431%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (298 samples, 0.02%)</title><rect x="7.0491%" y="613" width="0.0194%" height="15" fill="rgb(219,213,19)" fg:x="108475" fg:w="298"/><text x="7.2991%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (174 samples, 0.01%)</title><rect x="7.0775%" y="405" width="0.0113%" height="15" fill="rgb(252,169,30)" fg:x="108912" fg:w="174"/><text x="7.3275%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (168 samples, 0.01%)</title><rect x="7.0779%" y="389" width="0.0109%" height="15" fill="rgb(206,32,51)" fg:x="108918" fg:w="168"/><text x="7.3279%" y="399.50"></text></g><g><title>native_write_msr (168 samples, 0.01%)</title><rect x="7.0779%" y="373" width="0.0109%" height="15" fill="rgb(250,172,42)" fg:x="108918" fg:w="168"/><text x="7.3279%" y="383.50"></text></g><g><title>finish_task_switch (186 samples, 0.01%)</title><rect x="7.0774%" y="421" width="0.0121%" height="15" fill="rgb(209,34,43)" fg:x="108911" fg:w="186"/><text x="7.3274%" y="431.50"></text></g><g><title>futex_wait_queue_me (200 samples, 0.01%)</title><rect x="7.0769%" y="469" width="0.0130%" height="15" fill="rgb(223,11,35)" fg:x="108903" fg:w="200"/><text x="7.3269%" y="479.50"></text></g><g><title>schedule (200 samples, 0.01%)</title><rect x="7.0769%" y="453" width="0.0130%" height="15" fill="rgb(251,219,26)" fg:x="108903" fg:w="200"/><text x="7.3269%" y="463.50"></text></g><g><title>__schedule (200 samples, 0.01%)</title><rect x="7.0769%" y="437" width="0.0130%" height="15" fill="rgb(231,119,3)" fg:x="108903" fg:w="200"/><text x="7.3269%" y="447.50"></text></g><g><title>do_syscall_64 (204 samples, 0.01%)</title><rect x="7.0767%" y="533" width="0.0133%" height="15" fill="rgb(216,97,11)" fg:x="108900" fg:w="204"/><text x="7.3267%" y="543.50"></text></g><g><title>__x64_sys_futex (204 samples, 0.01%)</title><rect x="7.0767%" y="517" width="0.0133%" height="15" fill="rgb(223,59,9)" fg:x="108900" fg:w="204"/><text x="7.3267%" y="527.50"></text></g><g><title>do_futex (204 samples, 0.01%)</title><rect x="7.0767%" y="501" width="0.0133%" height="15" fill="rgb(233,93,31)" fg:x="108900" fg:w="204"/><text x="7.3267%" y="511.50"></text></g><g><title>futex_wait (202 samples, 0.01%)</title><rect x="7.0769%" y="485" width="0.0131%" height="15" fill="rgb(239,81,33)" fg:x="108902" fg:w="202"/><text x="7.3269%" y="495.50"></text></g><g><title>__GI___clone (1,505 samples, 0.10%)</title><rect x="6.9924%" y="709" width="0.0978%" height="15" fill="rgb(213,120,34)" fg:x="107603" fg:w="1505"/><text x="7.2424%" y="719.50"></text></g><g><title>start_thread (1,505 samples, 0.10%)</title><rect x="6.9924%" y="693" width="0.0978%" height="15" fill="rgb(243,49,53)" fg:x="107603" fg:w="1505"/><text x="7.2424%" y="703.50"></text></g><g><title>thread_native_entry (1,505 samples, 0.10%)</title><rect x="6.9924%" y="677" width="0.0978%" height="15" fill="rgb(247,216,33)" fg:x="107603" fg:w="1505"/><text x="7.2424%" y="687.50"></text></g><g><title>Thread::call_run (1,505 samples, 0.10%)</title><rect x="6.9924%" y="661" width="0.0978%" height="15" fill="rgb(226,26,14)" fg:x="107603" fg:w="1505"/><text x="7.2424%" y="671.50"></text></g><g><title>GangWorker::loop (1,505 samples, 0.10%)</title><rect x="6.9924%" y="645" width="0.0978%" height="15" fill="rgb(215,49,53)" fg:x="107603" fg:w="1505"/><text x="7.2424%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (211 samples, 0.01%)</title><rect x="7.0765%" y="629" width="0.0137%" height="15" fill="rgb(245,162,40)" fg:x="108897" fg:w="211"/><text x="7.3265%" y="639.50"></text></g><g><title>PosixSemaphore::wait (211 samples, 0.01%)</title><rect x="7.0765%" y="613" width="0.0137%" height="15" fill="rgb(229,68,17)" fg:x="108897" fg:w="211"/><text x="7.3265%" y="623.50"></text></g><g><title>__new_sem_wait_slow (211 samples, 0.01%)</title><rect x="7.0765%" y="597" width="0.0137%" height="15" fill="rgb(213,182,10)" fg:x="108897" fg:w="211"/><text x="7.3265%" y="607.50"></text></g><g><title>do_futex_wait (211 samples, 0.01%)</title><rect x="7.0765%" y="581" width="0.0137%" height="15" fill="rgb(245,125,30)" fg:x="108897" fg:w="211"/><text x="7.3265%" y="591.50"></text></g><g><title>futex_abstimed_wait_cancelable (211 samples, 0.01%)</title><rect x="7.0765%" y="565" width="0.0137%" height="15" fill="rgb(232,202,2)" fg:x="108897" fg:w="211"/><text x="7.3265%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (208 samples, 0.01%)</title><rect x="7.0767%" y="549" width="0.0135%" height="15" fill="rgb(237,140,51)" fg:x="108900" fg:w="208"/><text x="7.3267%" y="559.50"></text></g><g><title>GC_Thread#7 (1,545 samples, 0.10%)</title><rect x="6.9900%" y="725" width="0.1004%" height="15" fill="rgb(236,157,25)" fg:x="107565" fg:w="1545"/><text x="7.2400%" y="735.50"></text></g><g><title>Service_Thread (182 samples, 0.01%)</title><rect x="7.0921%" y="725" width="0.0118%" height="15" fill="rgb(219,209,0)" fg:x="109136" fg:w="182"/><text x="7.3421%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (443 samples, 0.03%)</title><rect x="7.1145%" y="373" width="0.0288%" height="15" fill="rgb(240,116,54)" fg:x="109481" fg:w="443"/><text x="7.3645%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (440 samples, 0.03%)</title><rect x="7.1147%" y="357" width="0.0286%" height="15" fill="rgb(216,10,36)" fg:x="109484" fg:w="440"/><text x="7.3647%" y="367.50"></text></g><g><title>native_write_msr (434 samples, 0.03%)</title><rect x="7.1151%" y="341" width="0.0282%" height="15" fill="rgb(222,72,44)" fg:x="109490" fg:w="434"/><text x="7.3651%" y="351.50"></text></g><g><title>finish_task_switch (473 samples, 0.03%)</title><rect x="7.1136%" y="389" width="0.0307%" height="15" fill="rgb(232,159,9)" fg:x="109467" fg:w="473"/><text x="7.3636%" y="399.50"></text></g><g><title>futex_wait_queue_me (555 samples, 0.04%)</title><rect x="7.1095%" y="437" width="0.0361%" height="15" fill="rgb(210,39,32)" fg:x="109405" fg:w="555"/><text x="7.3595%" y="447.50"></text></g><g><title>schedule (533 samples, 0.03%)</title><rect x="7.1110%" y="421" width="0.0346%" height="15" fill="rgb(216,194,45)" fg:x="109427" fg:w="533"/><text x="7.3610%" y="431.50"></text></g><g><title>__schedule (531 samples, 0.03%)</title><rect x="7.1111%" y="405" width="0.0345%" height="15" fill="rgb(218,18,35)" fg:x="109429" fg:w="531"/><text x="7.3611%" y="415.50"></text></g><g><title>do_futex (589 samples, 0.04%)</title><rect x="7.1090%" y="469" width="0.0383%" height="15" fill="rgb(207,83,51)" fg:x="109397" fg:w="589"/><text x="7.3590%" y="479.50"></text></g><g><title>futex_wait (586 samples, 0.04%)</title><rect x="7.1092%" y="453" width="0.0381%" height="15" fill="rgb(225,63,43)" fg:x="109400" fg:w="586"/><text x="7.3592%" y="463.50"></text></g><g><title>do_syscall_64 (597 samples, 0.04%)</title><rect x="7.1088%" y="501" width="0.0388%" height="15" fill="rgb(207,57,36)" fg:x="109393" fg:w="597"/><text x="7.3588%" y="511.50"></text></g><g><title>__x64_sys_futex (597 samples, 0.04%)</title><rect x="7.1088%" y="485" width="0.0388%" height="15" fill="rgb(216,99,33)" fg:x="109393" fg:w="597"/><text x="7.3588%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (610 samples, 0.04%)</title><rect x="7.1088%" y="517" width="0.0396%" height="15" fill="rgb(225,42,16)" fg:x="109393" fg:w="610"/><text x="7.3588%" y="527.50"></text></g><g><title>__pthread_cond_timedwait (643 samples, 0.04%)</title><rect x="7.1069%" y="565" width="0.0418%" height="15" fill="rgb(220,201,45)" fg:x="109365" fg:w="643"/><text x="7.3569%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (642 samples, 0.04%)</title><rect x="7.1070%" y="549" width="0.0417%" height="15" fill="rgb(225,33,4)" fg:x="109366" fg:w="642"/><text x="7.3570%" y="559.50"></text></g><g><title>futex_abstimed_wait_cancelable (633 samples, 0.04%)</title><rect x="7.1076%" y="533" width="0.0411%" height="15" fill="rgb(224,33,50)" fg:x="109375" fg:w="633"/><text x="7.3576%" y="543.50"></text></g><g><title>Monitor::wait (700 samples, 0.05%)</title><rect x="7.1056%" y="613" width="0.0455%" height="15" fill="rgb(246,198,51)" fg:x="109344" fg:w="700"/><text x="7.3556%" y="623.50"></text></g><g><title>Monitor::IWait (699 samples, 0.05%)</title><rect x="7.1056%" y="597" width="0.0454%" height="15" fill="rgb(205,22,4)" fg:x="109345" fg:w="699"/><text x="7.3556%" y="607.50"></text></g><g><title>os::PlatformEvent::park (688 samples, 0.04%)</title><rect x="7.1064%" y="581" width="0.0447%" height="15" fill="rgb(206,3,8)" fg:x="109356" fg:w="688"/><text x="7.3564%" y="591.50"></text></g><g><title>NMethodSweeper::possibly_sweep (170 samples, 0.01%)</title><rect x="7.1511%" y="613" width="0.0110%" height="15" fill="rgb(251,23,15)" fg:x="110044" fg:w="170"/><text x="7.4011%" y="623.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (156 samples, 0.01%)</title><rect x="7.1520%" y="597" width="0.0101%" height="15" fill="rgb(252,88,28)" fg:x="110058" fg:w="156"/><text x="7.4020%" y="607.50"></text></g><g><title>__GI___clone (926 samples, 0.06%)</title><rect x="7.1047%" y="709" width="0.0602%" height="15" fill="rgb(212,127,14)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="719.50"></text></g><g><title>start_thread (926 samples, 0.06%)</title><rect x="7.1047%" y="693" width="0.0602%" height="15" fill="rgb(247,145,37)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="703.50"></text></g><g><title>thread_native_entry (926 samples, 0.06%)</title><rect x="7.1047%" y="677" width="0.0602%" height="15" fill="rgb(209,117,53)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="687.50"></text></g><g><title>Thread::call_run (926 samples, 0.06%)</title><rect x="7.1047%" y="661" width="0.0602%" height="15" fill="rgb(212,90,42)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (926 samples, 0.06%)</title><rect x="7.1047%" y="645" width="0.0602%" height="15" fill="rgb(218,164,37)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="655.50"></text></g><g><title>NMethodSweeper::sweeper_loop (926 samples, 0.06%)</title><rect x="7.1047%" y="629" width="0.0602%" height="15" fill="rgb(246,65,34)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="639.50"></text></g><g><title>Sweeper_thread (945 samples, 0.06%)</title><rect x="7.1039%" y="725" width="0.0614%" height="15" fill="rgb(231,100,33)" fg:x="109318" fg:w="945"/><text x="7.3539%" y="735.50"></text></g><g><title>[perf-934749.map] (704 samples, 0.05%)</title><rect x="7.1670%" y="709" width="0.0457%" height="15" fill="rgb(228,126,14)" fg:x="110289" fg:w="704"/><text x="7.4170%" y="719.50"></text></g><g><title>Thread-0 (766 samples, 0.05%)</title><rect x="7.1653%" y="725" width="0.0498%" height="15" fill="rgb(215,173,21)" fg:x="110263" fg:w="766"/><text x="7.4153%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (191 samples, 0.01%)</title><rect x="7.2204%" y="373" width="0.0124%" height="15" fill="rgb(210,6,40)" fg:x="111111" fg:w="191"/><text x="7.4704%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (189 samples, 0.01%)</title><rect x="7.2205%" y="357" width="0.0123%" height="15" fill="rgb(212,48,18)" fg:x="111113" fg:w="189"/><text x="7.4705%" y="367.50"></text></g><g><title>native_write_msr (189 samples, 0.01%)</title><rect x="7.2205%" y="341" width="0.0123%" height="15" fill="rgb(230,214,11)" fg:x="111113" fg:w="189"/><text x="7.4705%" y="351.50"></text></g><g><title>finish_task_switch (202 samples, 0.01%)</title><rect x="7.2202%" y="389" width="0.0131%" height="15" fill="rgb(254,105,39)" fg:x="111108" fg:w="202"/><text x="7.4702%" y="399.50"></text></g><g><title>futex_wait_queue_me (226 samples, 0.01%)</title><rect x="7.2190%" y="437" width="0.0147%" height="15" fill="rgb(245,158,5)" fg:x="111089" fg:w="226"/><text x="7.4690%" y="447.50"></text></g><g><title>schedule (217 samples, 0.01%)</title><rect x="7.2196%" y="421" width="0.0141%" height="15" fill="rgb(249,208,11)" fg:x="111098" fg:w="217"/><text x="7.4696%" y="431.50"></text></g><g><title>__schedule (215 samples, 0.01%)</title><rect x="7.2197%" y="405" width="0.0140%" height="15" fill="rgb(210,39,28)" fg:x="111100" fg:w="215"/><text x="7.4697%" y="415.50"></text></g><g><title>do_futex (236 samples, 0.02%)</title><rect x="7.2185%" y="469" width="0.0153%" height="15" fill="rgb(211,56,53)" fg:x="111081" fg:w="236"/><text x="7.4685%" y="479.50"></text></g><g><title>futex_wait (234 samples, 0.02%)</title><rect x="7.2186%" y="453" width="0.0152%" height="15" fill="rgb(226,201,30)" fg:x="111083" fg:w="234"/><text x="7.4686%" y="463.50"></text></g><g><title>do_syscall_64 (239 samples, 0.02%)</title><rect x="7.2183%" y="501" width="0.0155%" height="15" fill="rgb(239,101,34)" fg:x="111079" fg:w="239"/><text x="7.4683%" y="511.50"></text></g><g><title>__x64_sys_futex (239 samples, 0.02%)</title><rect x="7.2183%" y="485" width="0.0155%" height="15" fill="rgb(226,209,5)" fg:x="111079" fg:w="239"/><text x="7.4683%" y="495.50"></text></g><g><title>__pthread_cond_timedwait (251 samples, 0.02%)</title><rect x="7.2178%" y="565" width="0.0163%" height="15" fill="rgb(250,105,47)" fg:x="111071" fg:w="251"/><text x="7.4678%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (251 samples, 0.02%)</title><rect x="7.2178%" y="549" width="0.0163%" height="15" fill="rgb(230,72,3)" fg:x="111071" fg:w="251"/><text x="7.4678%" y="559.50"></text></g><g><title>futex_abstimed_wait_cancelable (244 samples, 0.02%)</title><rect x="7.2183%" y="533" width="0.0159%" height="15" fill="rgb(232,218,39)" fg:x="111078" fg:w="244"/><text x="7.4683%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (243 samples, 0.02%)</title><rect x="7.2183%" y="517" width="0.0158%" height="15" fill="rgb(248,166,6)" fg:x="111079" fg:w="243"/><text x="7.4683%" y="527.50"></text></g><g><title>Monitor::wait (273 samples, 0.02%)</title><rect x="7.2173%" y="613" width="0.0177%" height="15" fill="rgb(247,89,20)" fg:x="111063" fg:w="273"/><text x="7.4673%" y="623.50"></text></g><g><title>Monitor::IWait (273 samples, 0.02%)</title><rect x="7.2173%" y="597" width="0.0177%" height="15" fill="rgb(248,130,54)" fg:x="111063" fg:w="273"/><text x="7.4673%" y="607.50"></text></g><g><title>os::PlatformEvent::park (267 samples, 0.02%)</title><rect x="7.2177%" y="581" width="0.0174%" height="15" fill="rgb(234,196,4)" fg:x="111069" fg:w="267"/><text x="7.4677%" y="591.50"></text></g><g><title>__GI___clone (298 samples, 0.02%)</title><rect x="7.2158%" y="709" width="0.0194%" height="15" fill="rgb(250,143,31)" fg:x="111040" fg:w="298"/><text x="7.4658%" y="719.50"></text></g><g><title>start_thread (298 samples, 0.02%)</title><rect x="7.2158%" y="693" width="0.0194%" height="15" fill="rgb(211,110,34)" fg:x="111040" fg:w="298"/><text x="7.4658%" y="703.50"></text></g><g><title>thread_native_entry (298 samples, 0.02%)</title><rect x="7.2158%" y="677" width="0.0194%" height="15" fill="rgb(215,124,48)" fg:x="111040" fg:w="298"/><text x="7.4658%" y="687.50"></text></g><g><title>Thread::call_run (298 samples, 0.02%)</title><rect x="7.2158%" y="661" width="0.0194%" height="15" fill="rgb(216,46,13)" fg:x="111040" fg:w="298"/><text x="7.4658%" y="671.50"></text></g><g><title>WatcherThread::run (298 samples, 0.02%)</title><rect x="7.2158%" y="645" width="0.0194%" height="15" fill="rgb(205,184,25)" fg:x="111040" fg:w="298"/><text x="7.4658%" y="655.50"></text></g><g><title>WatcherThread::sleep (278 samples, 0.02%)</title><rect x="7.2171%" y="629" width="0.0181%" height="15" fill="rgb(228,1,10)" fg:x="111060" fg:w="278"/><text x="7.4671%" y="639.50"></text></g><g><title>VM_Periodic_Tas (311 samples, 0.02%)</title><rect x="7.2151%" y="725" width="0.0202%" height="15" fill="rgb(213,116,27)" fg:x="111029" fg:w="311"/><text x="7.4651%" y="735.50"></text></g><g><title>WorkGang::run_task (212 samples, 0.01%)</title><rect x="7.2784%" y="581" width="0.0138%" height="15" fill="rgb(241,95,50)" fg:x="112003" fg:w="212"/><text x="7.5284%" y="591.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (211 samples, 0.01%)</title><rect x="7.2784%" y="565" width="0.0137%" height="15" fill="rgb(238,48,32)" fg:x="112004" fg:w="211"/><text x="7.5284%" y="575.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (218 samples, 0.01%)</title><rect x="7.2782%" y="597" width="0.0142%" height="15" fill="rgb(235,113,49)" fg:x="112000" fg:w="218"/><text x="7.5282%" y="607.50"></text></g><g><title>SafepointSynchronize::begin (625 samples, 0.04%)</title><rect x="7.2560%" y="613" width="0.0406%" height="15" fill="rgb(205,127,43)" fg:x="111659" fg:w="625"/><text x="7.5060%" y="623.50"></text></g><g><title>VM_Operation::evaluate (166 samples, 0.01%)</title><rect x="7.3002%" y="597" width="0.0108%" height="15" fill="rgb(250,162,2)" fg:x="112339" fg:w="166"/><text x="7.5502%" y="607.50"></text></g><g><title>VMThread::evaluate_operation (170 samples, 0.01%)</title><rect x="7.3000%" y="613" width="0.0110%" height="15" fill="rgb(220,13,41)" fg:x="112336" fg:w="170"/><text x="7.5500%" y="623.50"></text></g><g><title>Thread::call_run (987 samples, 0.06%)</title><rect x="7.2471%" y="661" width="0.0641%" height="15" fill="rgb(249,221,25)" fg:x="111522" fg:w="987"/><text x="7.4971%" y="671.50"></text></g><g><title>VMThread::run (986 samples, 0.06%)</title><rect x="7.2472%" y="645" width="0.0641%" height="15" fill="rgb(215,208,19)" fg:x="111523" fg:w="986"/><text x="7.4972%" y="655.50"></text></g><g><title>VMThread::loop (986 samples, 0.06%)</title><rect x="7.2472%" y="629" width="0.0641%" height="15" fill="rgb(236,175,2)" fg:x="111523" fg:w="986"/><text x="7.4972%" y="639.50"></text></g><g><title>__GI___clone (1,041 samples, 0.07%)</title><rect x="7.2440%" y="709" width="0.0676%" height="15" fill="rgb(241,52,2)" fg:x="111474" fg:w="1041"/><text x="7.4940%" y="719.50"></text></g><g><title>start_thread (997 samples, 0.06%)</title><rect x="7.2469%" y="693" width="0.0648%" height="15" fill="rgb(248,140,14)" fg:x="111518" fg:w="997"/><text x="7.4969%" y="703.50"></text></g><g><title>thread_native_entry (997 samples, 0.06%)</title><rect x="7.2469%" y="677" width="0.0648%" height="15" fill="rgb(253,22,42)" fg:x="111518" fg:w="997"/><text x="7.4969%" y="687.50"></text></g><g><title>VM_Thread (1,191 samples, 0.08%)</title><rect x="7.2353%" y="725" width="0.0774%" height="15" fill="rgb(234,61,47)" fg:x="111340" fg:w="1191"/><text x="7.4853%" y="735.50"></text></g><g><title>futex_wait (155 samples, 0.01%)</title><rect x="7.3348%" y="629" width="0.0101%" height="15" fill="rgb(208,226,15)" fg:x="112872" fg:w="155"/><text x="7.5848%" y="639.50"></text></g><g><title>__x64_sys_futex (179 samples, 0.01%)</title><rect x="7.3347%" y="661" width="0.0116%" height="15" fill="rgb(217,221,4)" fg:x="112870" fg:w="179"/><text x="7.5847%" y="671.50"></text></g><g><title>do_futex (178 samples, 0.01%)</title><rect x="7.3348%" y="645" width="0.0116%" height="15" fill="rgb(212,174,34)" fg:x="112871" fg:w="178"/><text x="7.5848%" y="655.50"></text></g><g><title>do_syscall_64 (348 samples, 0.02%)</title><rect x="7.3287%" y="677" width="0.0226%" height="15" fill="rgb(253,83,4)" fg:x="112778" fg:w="348"/><text x="7.5787%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (356 samples, 0.02%)</title><rect x="7.3287%" y="693" width="0.0231%" height="15" fill="rgb(250,195,49)" fg:x="112778" fg:w="356"/><text x="7.5787%" y="703.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (639 samples, 0.04%)</title><rect x="7.3143%" y="709" width="0.0415%" height="15" fill="rgb(241,192,25)" fg:x="112556" fg:w="639"/><text x="7.5643%" y="719.50"></text></g><g><title>bazel (706 samples, 0.05%)</title><rect x="7.3140%" y="725" width="0.0459%" height="15" fill="rgb(208,124,10)" fg:x="112551" fg:w="706"/><text x="7.5640%" y="735.50"></text></g><g><title>_dl_relocate_object (162 samples, 0.01%)</title><rect x="7.3701%" y="629" width="0.0105%" height="15" fill="rgb(222,33,0)" fg:x="113414" fg:w="162"/><text x="7.6201%" y="639.50"></text></g><g><title>[ld-2.31.so] (224 samples, 0.01%)</title><rect x="7.3662%" y="645" width="0.0146%" height="15" fill="rgb(234,209,28)" fg:x="113355" fg:w="224"/><text x="7.6162%" y="655.50"></text></g><g><title>_dl_start_final (227 samples, 0.01%)</title><rect x="7.3662%" y="677" width="0.0148%" height="15" fill="rgb(224,11,23)" fg:x="113355" fg:w="227"/><text x="7.6162%" y="687.50"></text></g><g><title>_dl_sysdep_start (227 samples, 0.01%)</title><rect x="7.3662%" y="661" width="0.0148%" height="15" fill="rgb(232,99,1)" fg:x="113355" fg:w="227"/><text x="7.6162%" y="671.50"></text></g><g><title>_dl_start (231 samples, 0.02%)</title><rect x="7.3662%" y="693" width="0.0150%" height="15" fill="rgb(237,95,45)" fg:x="113355" fg:w="231"/><text x="7.6162%" y="703.50"></text></g><g><title>_start (272 samples, 0.02%)</title><rect x="7.3636%" y="709" width="0.0177%" height="15" fill="rgb(208,109,11)" fg:x="113315" fg:w="272"/><text x="7.6136%" y="719.50"></text></g><g><title>build-runfiles (391 samples, 0.03%)</title><rect x="7.3599%" y="725" width="0.0254%" height="15" fill="rgb(216,190,48)" fg:x="113258" fg:w="391"/><text x="7.6099%" y="735.50"></text></g><g><title>begin_new_exec (161 samples, 0.01%)</title><rect x="7.4492%" y="277" width="0.0105%" height="15" fill="rgb(251,171,36)" fg:x="114632" fg:w="161"/><text x="7.6992%" y="287.50"></text></g><g><title>load_elf_binary (266 samples, 0.02%)</title><rect x="7.4483%" y="293" width="0.0173%" height="15" fill="rgb(230,62,22)" fg:x="114618" fg:w="266"/><text x="7.6983%" y="303.50"></text></g><g><title>__perf_event_task_sched_in (1,042 samples, 0.07%)</title><rect x="7.4720%" y="213" width="0.0677%" height="15" fill="rgb(225,114,35)" fg:x="114982" fg:w="1042"/><text x="7.7220%" y="223.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,032 samples, 0.07%)</title><rect x="7.4726%" y="197" width="0.0671%" height="15" fill="rgb(215,118,42)" fg:x="114992" fg:w="1032"/><text x="7.7226%" y="207.50"></text></g><g><title>native_write_msr (1,027 samples, 0.07%)</title><rect x="7.4729%" y="181" width="0.0667%" height="15" fill="rgb(243,119,21)" fg:x="114997" fg:w="1027"/><text x="7.7229%" y="191.50"></text></g><g><title>finish_task_switch (1,090 samples, 0.07%)</title><rect x="7.4704%" y="229" width="0.0708%" height="15" fill="rgb(252,177,53)" fg:x="114958" fg:w="1090"/><text x="7.7204%" y="239.50"></text></g><g><title>_cond_resched (1,102 samples, 0.07%)</title><rect x="7.4699%" y="261" width="0.0716%" height="15" fill="rgb(237,209,29)" fg:x="114951" fg:w="1102"/><text x="7.7199%" y="271.50"></text></g><g><title>__schedule (1,101 samples, 0.07%)</title><rect x="7.4700%" y="245" width="0.0715%" height="15" fill="rgb(212,65,23)" fg:x="114952" fg:w="1101"/><text x="7.7200%" y="255.50"></text></g><g><title>sched_exec (1,143 samples, 0.07%)</title><rect x="7.4679%" y="293" width="0.0743%" height="15" fill="rgb(230,222,46)" fg:x="114919" fg:w="1143"/><text x="7.7179%" y="303.50"></text></g><g><title>stop_one_cpu (1,126 samples, 0.07%)</title><rect x="7.4690%" y="277" width="0.0732%" height="15" fill="rgb(215,135,32)" fg:x="114936" fg:w="1126"/><text x="7.7190%" y="287.50"></text></g><g><title>apparmor_bprm_creds_for_exec (188 samples, 0.01%)</title><rect x="7.5485%" y="277" width="0.0122%" height="15" fill="rgb(246,101,22)" fg:x="116160" fg:w="188"/><text x="7.7985%" y="287.50"></text></g><g><title>profile_transition (163 samples, 0.01%)</title><rect x="7.5501%" y="261" width="0.0106%" height="15" fill="rgb(206,107,13)" fg:x="116185" fg:w="163"/><text x="7.8001%" y="271.50"></text></g><g><title>security_bprm_creds_for_exec (193 samples, 0.01%)</title><rect x="7.5484%" y="293" width="0.0125%" height="15" fill="rgb(250,100,44)" fg:x="116158" fg:w="193"/><text x="7.7984%" y="303.50"></text></g><g><title>bprm_execve (1,814 samples, 0.12%)</title><rect x="7.4435%" y="309" width="0.1179%" height="15" fill="rgb(231,147,38)" fg:x="114544" fg:w="1814"/><text x="7.6935%" y="319.50"></text></g><g><title>do_execveat_common (1,970 samples, 0.13%)</title><rect x="7.4397%" y="325" width="0.1280%" height="15" fill="rgb(229,8,40)" fg:x="114486" fg:w="1970"/><text x="7.6897%" y="335.50"></text></g><g><title>__GI_execve (1,982 samples, 0.13%)</title><rect x="7.4395%" y="389" width="0.1288%" height="15" fill="rgb(221,135,30)" fg:x="114482" fg:w="1982"/><text x="7.6895%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,980 samples, 0.13%)</title><rect x="7.4396%" y="373" width="0.1287%" height="15" fill="rgb(249,193,18)" fg:x="114484" fg:w="1980"/><text x="7.6896%" y="383.50"></text></g><g><title>do_syscall_64 (1,980 samples, 0.13%)</title><rect x="7.4396%" y="357" width="0.1287%" height="15" fill="rgb(209,133,39)" fg:x="114484" fg:w="1980"/><text x="7.6896%" y="367.50"></text></g><g><title>__x64_sys_execve (1,980 samples, 0.13%)</title><rect x="7.4396%" y="341" width="0.1287%" height="15" fill="rgb(232,100,14)" fg:x="114484" fg:w="1980"/><text x="7.6896%" y="351.50"></text></g><g><title>__strcspn_sse42 (155 samples, 0.01%)</title><rect x="7.5684%" y="389" width="0.0101%" height="15" fill="rgb(224,185,1)" fg:x="116466" fg:w="155"/><text x="7.8184%" y="399.50"></text></g><g><title>[dash] (2,428 samples, 0.16%)</title><rect x="7.4218%" y="405" width="0.1578%" height="15" fill="rgb(223,139,8)" fg:x="114210" fg:w="2428"/><text x="7.6718%" y="415.50"></text></g><g><title>__free_pages_ok (230 samples, 0.01%)</title><rect x="7.6173%" y="261" width="0.0149%" height="15" fill="rgb(232,213,38)" fg:x="117218" fg:w="230"/><text x="7.8673%" y="271.50"></text></g><g><title>__mmdrop (398 samples, 0.03%)</title><rect x="7.6139%" y="277" width="0.0259%" height="15" fill="rgb(207,94,22)" fg:x="117166" fg:w="398"/><text x="7.8639%" y="287.50"></text></g><g><title>__perf_event_task_sched_in (10,880 samples, 0.71%)</title><rect x="7.6397%" y="277" width="0.7070%" height="15" fill="rgb(219,183,54)" fg:x="117564" fg:w="10880"/><text x="7.8897%" y="287.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (10,797 samples, 0.70%)</title><rect x="7.6451%" y="261" width="0.7016%" height="15" fill="rgb(216,185,54)" fg:x="117647" fg:w="10797"/><text x="7.8951%" y="271.50"></text></g><g><title>native_write_msr (10,773 samples, 0.70%)</title><rect x="7.6467%" y="245" width="0.7001%" height="15" fill="rgb(254,217,39)" fg:x="117671" fg:w="10773"/><text x="7.8967%" y="255.50"></text></g><g><title>asm_sysvec_irq_work (202 samples, 0.01%)</title><rect x="8.3489%" y="277" width="0.0131%" height="15" fill="rgb(240,178,23)" fg:x="128477" fg:w="202"/><text x="8.5989%" y="287.50"></text></g><g><title>finish_task_switch (11,841 samples, 0.77%)</title><rect x="7.6059%" y="293" width="0.7695%" height="15" fill="rgb(218,11,47)" fg:x="117043" fg:w="11841"/><text x="7.8559%" y="303.50"></text></g><g><title>schedule (11,987 samples, 0.78%)</title><rect x="7.6010%" y="325" width="0.7790%" height="15" fill="rgb(218,51,51)" fg:x="116967" fg:w="11987"/><text x="7.8510%" y="335.50"></text></g><g><title>__schedule (11,977 samples, 0.78%)</title><rect x="7.6016%" y="309" width="0.7783%" height="15" fill="rgb(238,126,27)" fg:x="116977" fg:w="11977"/><text x="7.8516%" y="319.50"></text></g><g><title>release_task (590 samples, 0.04%)</title><rect x="8.3908%" y="309" width="0.0383%" height="15" fill="rgb(249,202,22)" fg:x="129121" fg:w="590"/><text x="8.6408%" y="319.50"></text></g><g><title>do_wait (12,868 samples, 0.84%)</title><rect x="7.5944%" y="341" width="0.8362%" height="15" fill="rgb(254,195,49)" fg:x="116866" fg:w="12868"/><text x="7.8444%" y="351.50"></text></g><g><title>wait_consider_task (780 samples, 0.05%)</title><rect x="8.3799%" y="325" width="0.0507%" height="15" fill="rgb(208,123,14)" fg:x="128954" fg:w="780"/><text x="8.6299%" y="335.50"></text></g><g><title>kernel_wait4 (12,889 samples, 0.84%)</title><rect x="7.5931%" y="357" width="0.8376%" height="15" fill="rgb(224,200,8)" fg:x="116846" fg:w="12889"/><text x="7.8431%" y="367.50"></text></g><g><title>do_syscall_64 (12,927 samples, 0.84%)</title><rect x="7.5907%" y="373" width="0.8400%" height="15" fill="rgb(217,61,36)" fg:x="116809" fg:w="12927"/><text x="7.8407%" y="383.50"></text></g><g><title>copy_fpstate_to_sigframe (182 samples, 0.01%)</title><rect x="8.4345%" y="309" width="0.0118%" height="15" fill="rgb(206,35,45)" fg:x="129794" fg:w="182"/><text x="8.6845%" y="319.50"></text></g><g><title>get_sigframe.constprop.0.isra.0 (209 samples, 0.01%)</title><rect x="8.4337%" y="325" width="0.0136%" height="15" fill="rgb(217,65,33)" fg:x="129782" fg:w="209"/><text x="8.6837%" y="335.50"></text></g><g><title>arch_do_signal (339 samples, 0.02%)</title><rect x="8.4315%" y="341" width="0.0220%" height="15" fill="rgb(222,158,48)" fg:x="129748" fg:w="339"/><text x="8.6815%" y="351.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (13,280 samples, 0.86%)</title><rect x="7.5907%" y="389" width="0.8630%" height="15" fill="rgb(254,2,54)" fg:x="116809" fg:w="13280"/><text x="7.8407%" y="399.50"></text></g><g><title>syscall_exit_to_user_mode (353 samples, 0.02%)</title><rect x="8.4307%" y="373" width="0.0229%" height="15" fill="rgb(250,143,38)" fg:x="129736" fg:w="353"/><text x="8.6807%" y="383.50"></text></g><g><title>exit_to_user_mode_prepare (353 samples, 0.02%)</title><rect x="8.4307%" y="357" width="0.0229%" height="15" fill="rgb(248,25,0)" fg:x="129736" fg:w="353"/><text x="8.6807%" y="367.50"></text></g><g><title>__GI___wait4 (13,475 samples, 0.88%)</title><rect x="7.5850%" y="405" width="0.8757%" height="15" fill="rgb(206,152,27)" fg:x="116721" fg:w="13475"/><text x="7.8350%" y="415.50"></text></g><g><title>[dash] (16,368 samples, 1.06%)</title><rect x="7.4172%" y="421" width="1.0637%" height="15" fill="rgb(240,77,30)" fg:x="114140" fg:w="16368"/><text x="7.6672%" y="431.50"></text></g><g><title>[dash] (16,667 samples, 1.08%)</title><rect x="7.4130%" y="437" width="1.0831%" height="15" fill="rgb(231,5,3)" fg:x="114074" fg:w="16667"/><text x="7.6630%" y="447.50"></text></g><g><title>__GI___xstat (163 samples, 0.01%)</title><rect x="8.4964%" y="437" width="0.0106%" height="15" fill="rgb(207,226,32)" fg:x="130746" fg:w="163"/><text x="8.7464%" y="447.50"></text></g><g><title>__run_fork_handlers (171 samples, 0.01%)</title><rect x="8.5146%" y="421" width="0.0111%" height="15" fill="rgb(222,207,47)" fg:x="131027" fg:w="171"/><text x="8.7646%" y="431.50"></text></g><g><title>filemap_map_pages (215 samples, 0.01%)</title><rect x="8.5338%" y="341" width="0.0140%" height="15" fill="rgb(229,115,45)" fg:x="131322" fg:w="215"/><text x="8.7838%" y="351.50"></text></g><g><title>handle_mm_fault (318 samples, 0.02%)</title><rect x="8.5315%" y="357" width="0.0207%" height="15" fill="rgb(224,191,6)" fg:x="131286" fg:w="318"/><text x="8.7815%" y="367.50"></text></g><g><title>exc_page_fault (347 samples, 0.02%)</title><rect x="8.5297%" y="389" width="0.0225%" height="15" fill="rgb(230,227,24)" fg:x="131259" fg:w="347"/><text x="8.7797%" y="399.50"></text></g><g><title>do_user_addr_fault (346 samples, 0.02%)</title><rect x="8.5298%" y="373" width="0.0225%" height="15" fill="rgb(228,80,19)" fg:x="131260" fg:w="346"/><text x="8.7798%" y="383.50"></text></g><g><title>asm_exc_page_fault (371 samples, 0.02%)</title><rect x="8.5294%" y="405" width="0.0241%" height="15" fill="rgb(247,229,0)" fg:x="131255" fg:w="371"/><text x="8.7794%" y="415.50"></text></g><g><title>anon_vma_fork (214 samples, 0.01%)</title><rect x="8.5782%" y="309" width="0.0139%" height="15" fill="rgb(237,194,15)" fg:x="132006" fg:w="214"/><text x="8.8282%" y="319.50"></text></g><g><title>copy_page_range (168 samples, 0.01%)</title><rect x="8.5921%" y="309" width="0.0109%" height="15" fill="rgb(219,203,20)" fg:x="132220" fg:w="168"/><text x="8.8421%" y="319.50"></text></g><g><title>dup_mm (705 samples, 0.05%)</title><rect x="8.5725%" y="325" width="0.0458%" height="15" fill="rgb(234,128,8)" fg:x="131918" fg:w="705"/><text x="8.8225%" y="335.50"></text></g><g><title>inherit_task_group.isra.0 (259 samples, 0.02%)</title><rect x="8.6246%" y="309" width="0.0168%" height="15" fill="rgb(248,202,8)" fg:x="132720" fg:w="259"/><text x="8.8746%" y="319.50"></text></g><g><title>inherit_event.constprop.0 (250 samples, 0.02%)</title><rect x="8.6252%" y="293" width="0.0162%" height="15" fill="rgb(206,104,37)" fg:x="132729" fg:w="250"/><text x="8.8752%" y="303.50"></text></g><g><title>perf_event_alloc (204 samples, 0.01%)</title><rect x="8.6282%" y="277" width="0.0133%" height="15" fill="rgb(223,8,27)" fg:x="132775" fg:w="204"/><text x="8.8782%" y="287.50"></text></g><g><title>perf_event_init_task (278 samples, 0.02%)</title><rect x="8.6241%" y="325" width="0.0181%" height="15" fill="rgb(216,217,28)" fg:x="132712" fg:w="278"/><text x="8.8741%" y="335.50"></text></g><g><title>copy_process (1,388 samples, 0.09%)</title><rect x="8.5538%" y="341" width="0.0902%" height="15" fill="rgb(249,199,1)" fg:x="131630" fg:w="1388"/><text x="8.8038%" y="351.50"></text></g><g><title>do_syscall_64 (1,453 samples, 0.09%)</title><rect x="8.5537%" y="389" width="0.0944%" height="15" fill="rgb(240,85,17)" fg:x="131628" fg:w="1453"/><text x="8.8037%" y="399.50"></text></g><g><title>__do_sys_clone (1,453 samples, 0.09%)</title><rect x="8.5537%" y="373" width="0.0944%" height="15" fill="rgb(206,108,45)" fg:x="131628" fg:w="1453"/><text x="8.8037%" y="383.50"></text></g><g><title>kernel_clone (1,452 samples, 0.09%)</title><rect x="8.5537%" y="357" width="0.0944%" height="15" fill="rgb(245,210,41)" fg:x="131629" fg:w="1452"/><text x="8.8037%" y="367.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,457 samples, 0.09%)</title><rect x="8.5535%" y="405" width="0.0947%" height="15" fill="rgb(206,13,37)" fg:x="131626" fg:w="1457"/><text x="8.8035%" y="415.50"></text></g><g><title>handle_mm_fault (364 samples, 0.02%)</title><rect x="8.6853%" y="309" width="0.0237%" height="15" fill="rgb(250,61,18)" fg:x="133653" fg:w="364"/><text x="8.9353%" y="319.50"></text></g><g><title>do_user_addr_fault (571 samples, 0.04%)</title><rect x="8.6725%" y="325" width="0.0371%" height="15" fill="rgb(235,172,48)" fg:x="133456" fg:w="571"/><text x="8.9225%" y="335.50"></text></g><g><title>exc_page_fault (586 samples, 0.04%)</title><rect x="8.6716%" y="341" width="0.0381%" height="15" fill="rgb(249,201,17)" fg:x="133443" fg:w="586"/><text x="8.9216%" y="351.50"></text></g><g><title>asm_exc_page_fault (828 samples, 0.05%)</title><rect x="8.6561%" y="357" width="0.0538%" height="15" fill="rgb(219,208,6)" fg:x="133204" fg:w="828"/><text x="8.9061%" y="367.50"></text></g><g><title>__put_user_nocheck_4 (857 samples, 0.06%)</title><rect x="8.6545%" y="373" width="0.0557%" height="15" fill="rgb(248,31,23)" fg:x="133179" fg:w="857"/><text x="8.9045%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (10,505 samples, 0.68%)</title><rect x="8.7276%" y="357" width="0.6827%" height="15" fill="rgb(245,15,42)" fg:x="134304" fg:w="10505"/><text x="8.9776%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (10,375 samples, 0.67%)</title><rect x="8.7360%" y="341" width="0.6742%" height="15" fill="rgb(222,217,39)" fg:x="134434" fg:w="10375"/><text x="8.9860%" y="351.50"></text></g><g><title>native_write_msr (10,317 samples, 0.67%)</title><rect x="8.7398%" y="325" width="0.6704%" height="15" fill="rgb(210,219,27)" fg:x="134492" fg:w="10317"/><text x="8.9898%" y="335.50"></text></g><g><title>asm_sysvec_irq_work (203 samples, 0.01%)</title><rect x="9.4120%" y="357" width="0.0132%" height="15" fill="rgb(252,166,36)" fg:x="144836" fg:w="203"/><text x="9.6620%" y="367.50"></text></g><g><title>schedule_tail (11,943 samples, 0.78%)</title><rect x="8.6529%" y="389" width="0.7761%" height="15" fill="rgb(245,132,34)" fg:x="133155" fg:w="11943"/><text x="8.9029%" y="399.50"></text></g><g><title>finish_task_switch (11,014 samples, 0.72%)</title><rect x="8.7133%" y="373" width="0.7157%" height="15" fill="rgb(236,54,3)" fg:x="134084" fg:w="11014"/><text x="8.9633%" y="383.50"></text></g><g><title>arch_fork (13,936 samples, 0.91%)</title><rect x="8.5257%" y="421" width="0.9056%" height="15" fill="rgb(241,173,43)" fg:x="131198" fg:w="13936"/><text x="8.7757%" y="431.50"></text></g><g><title>ret_from_fork (12,003 samples, 0.78%)</title><rect x="8.6513%" y="405" width="0.7800%" height="15" fill="rgb(215,190,9)" fg:x="133131" fg:w="12003"/><text x="8.9013%" y="415.50"></text></g><g><title>handle_mm_fault (225 samples, 0.01%)</title><rect x="9.4341%" y="373" width="0.0146%" height="15" fill="rgb(242,101,16)" fg:x="145177" fg:w="225"/><text x="9.6841%" y="383.50"></text></g><g><title>wp_page_copy (162 samples, 0.01%)</title><rect x="9.4382%" y="357" width="0.0105%" height="15" fill="rgb(223,190,21)" fg:x="145240" fg:w="162"/><text x="9.6882%" y="367.50"></text></g><g><title>exc_page_fault (274 samples, 0.02%)</title><rect x="9.4313%" y="405" width="0.0178%" height="15" fill="rgb(215,228,25)" fg:x="145134" fg:w="274"/><text x="9.6813%" y="415.50"></text></g><g><title>do_user_addr_fault (272 samples, 0.02%)</title><rect x="9.4315%" y="389" width="0.0177%" height="15" fill="rgb(225,36,22)" fg:x="145136" fg:w="272"/><text x="9.6815%" y="399.50"></text></g><g><title>asm_exc_page_fault (290 samples, 0.02%)</title><rect x="9.4313%" y="421" width="0.0188%" height="15" fill="rgb(251,106,46)" fg:x="145134" fg:w="290"/><text x="9.6813%" y="431.50"></text></g><g><title>__libc_fork (14,526 samples, 0.94%)</title><rect x="8.5081%" y="437" width="0.9440%" height="15" fill="rgb(208,90,1)" fg:x="130927" fg:w="14526"/><text x="8.7581%" y="447.50"></text></g><g><title>exc_page_fault (179 samples, 0.01%)</title><rect x="9.4526%" y="421" width="0.0116%" height="15" fill="rgb(243,10,4)" fg:x="145461" fg:w="179"/><text x="9.7026%" y="431.50"></text></g><g><title>do_user_addr_fault (178 samples, 0.01%)</title><rect x="9.4527%" y="405" width="0.0116%" height="15" fill="rgb(212,137,27)" fg:x="145462" fg:w="178"/><text x="9.7027%" y="415.50"></text></g><g><title>asm_exc_page_fault (189 samples, 0.01%)</title><rect x="9.4525%" y="437" width="0.0123%" height="15" fill="rgb(231,220,49)" fg:x="145460" fg:w="189"/><text x="9.7025%" y="447.50"></text></g><g><title>[dash] (31,621 samples, 2.05%)</title><rect x="7.4113%" y="453" width="2.0549%" height="15" fill="rgb(237,96,20)" fg:x="114048" fg:w="31621"/><text x="7.6613%" y="463.50">[..</text></g><g><title>[dash] (31,859 samples, 2.07%)</title><rect x="7.4096%" y="469" width="2.0703%" height="15" fill="rgb(239,229,30)" fg:x="114022" fg:w="31859"/><text x="7.6596%" y="479.50">[..</text></g><g><title>[dash] (32,009 samples, 2.08%)</title><rect x="7.4081%" y="485" width="2.0801%" height="15" fill="rgb(219,65,33)" fg:x="113999" fg:w="32009"/><text x="7.6581%" y="495.50">[..</text></g><g><title>[dash] (32,214 samples, 2.09%)</title><rect x="7.4061%" y="501" width="2.0934%" height="15" fill="rgb(243,134,7)" fg:x="113968" fg:w="32214"/><text x="7.6561%" y="511.50">[..</text></g><g><title>__perf_event_task_sched_in (427 samples, 0.03%)</title><rect x="9.5055%" y="373" width="0.0277%" height="15" fill="rgb(216,177,54)" fg:x="146275" fg:w="427"/><text x="9.7555%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (421 samples, 0.03%)</title><rect x="9.5059%" y="357" width="0.0274%" height="15" fill="rgb(211,160,20)" fg:x="146281" fg:w="421"/><text x="9.7559%" y="367.50"></text></g><g><title>native_write_msr (421 samples, 0.03%)</title><rect x="9.5059%" y="341" width="0.0274%" height="15" fill="rgb(239,85,39)" fg:x="146281" fg:w="421"/><text x="9.7559%" y="351.50"></text></g><g><title>finish_task_switch (472 samples, 0.03%)</title><rect x="9.5046%" y="389" width="0.0307%" height="15" fill="rgb(232,125,22)" fg:x="146261" fg:w="472"/><text x="9.7546%" y="399.50"></text></g><g><title>schedule (479 samples, 0.03%)</title><rect x="9.5044%" y="421" width="0.0311%" height="15" fill="rgb(244,57,34)" fg:x="146258" fg:w="479"/><text x="9.7544%" y="431.50"></text></g><g><title>__schedule (477 samples, 0.03%)</title><rect x="9.5045%" y="405" width="0.0310%" height="15" fill="rgb(214,203,32)" fg:x="146260" fg:w="477"/><text x="9.7545%" y="415.50"></text></g><g><title>do_syscall_64 (613 samples, 0.04%)</title><rect x="9.5029%" y="469" width="0.0398%" height="15" fill="rgb(207,58,43)" fg:x="146235" fg:w="613"/><text x="9.7529%" y="479.50"></text></g><g><title>kernel_wait4 (608 samples, 0.04%)</title><rect x="9.5032%" y="453" width="0.0395%" height="15" fill="rgb(215,193,15)" fg:x="146240" fg:w="608"/><text x="9.7532%" y="463.50"></text></g><g><title>do_wait (605 samples, 0.04%)</title><rect x="9.5034%" y="437" width="0.0393%" height="15" fill="rgb(232,15,44)" fg:x="146243" fg:w="605"/><text x="9.7534%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (632 samples, 0.04%)</title><rect x="9.5029%" y="485" width="0.0411%" height="15" fill="rgb(212,3,48)" fg:x="146235" fg:w="632"/><text x="9.7529%" y="495.50"></text></g><g><title>__GI___wait4 (695 samples, 0.05%)</title><rect x="9.4997%" y="501" width="0.0452%" height="15" fill="rgb(218,128,7)" fg:x="146186" fg:w="695"/><text x="9.7497%" y="511.50"></text></g><g><title>[dash] (33,126 samples, 2.15%)</title><rect x="7.4035%" y="517" width="2.1527%" height="15" fill="rgb(226,216,39)" fg:x="113928" fg:w="33126"/><text x="7.6535%" y="527.50">[..</text></g><g><title>exc_page_fault (167 samples, 0.01%)</title><rect x="9.5670%" y="469" width="0.0109%" height="15" fill="rgb(243,47,51)" fg:x="147221" fg:w="167"/><text x="9.8170%" y="479.50"></text></g><g><title>do_user_addr_fault (166 samples, 0.01%)</title><rect x="9.5670%" y="453" width="0.0108%" height="15" fill="rgb(241,183,40)" fg:x="147222" fg:w="166"/><text x="9.8170%" y="463.50"></text></g><g><title>asm_exc_page_fault (179 samples, 0.01%)</title><rect x="9.5668%" y="485" width="0.0116%" height="15" fill="rgb(231,217,32)" fg:x="147219" fg:w="179"/><text x="9.8168%" y="495.50"></text></g><g><title>dup_mm (427 samples, 0.03%)</title><rect x="9.5896%" y="405" width="0.0277%" height="15" fill="rgb(229,61,38)" fg:x="147569" fg:w="427"/><text x="9.8396%" y="415.50"></text></g><g><title>inherit_task_group.isra.0 (217 samples, 0.01%)</title><rect x="9.6227%" y="389" width="0.0141%" height="15" fill="rgb(225,210,5)" fg:x="148078" fg:w="217"/><text x="9.8727%" y="399.50"></text></g><g><title>inherit_event.constprop.0 (210 samples, 0.01%)</title><rect x="9.6231%" y="373" width="0.0136%" height="15" fill="rgb(231,79,45)" fg:x="148085" fg:w="210"/><text x="9.8731%" y="383.50"></text></g><g><title>perf_event_alloc (176 samples, 0.01%)</title><rect x="9.6253%" y="357" width="0.0114%" height="15" fill="rgb(224,100,7)" fg:x="148119" fg:w="176"/><text x="9.8753%" y="367.50"></text></g><g><title>perf_event_init_task (233 samples, 0.02%)</title><rect x="9.6221%" y="405" width="0.0151%" height="15" fill="rgb(241,198,18)" fg:x="148070" fg:w="233"/><text x="9.8721%" y="415.50"></text></g><g><title>copy_process (927 samples, 0.06%)</title><rect x="9.5787%" y="421" width="0.0602%" height="15" fill="rgb(252,97,53)" fg:x="147402" fg:w="927"/><text x="9.8287%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (981 samples, 0.06%)</title><rect x="9.5785%" y="485" width="0.0637%" height="15" fill="rgb(220,88,7)" fg:x="147398" fg:w="981"/><text x="9.8285%" y="495.50"></text></g><g><title>do_syscall_64 (981 samples, 0.06%)</title><rect x="9.5785%" y="469" width="0.0637%" height="15" fill="rgb(213,176,14)" fg:x="147398" fg:w="981"/><text x="9.8285%" y="479.50"></text></g><g><title>__do_sys_clone (981 samples, 0.06%)</title><rect x="9.5785%" y="453" width="0.0637%" height="15" fill="rgb(246,73,7)" fg:x="147398" fg:w="981"/><text x="9.8285%" y="463.50"></text></g><g><title>kernel_clone (979 samples, 0.06%)</title><rect x="9.5786%" y="437" width="0.0636%" height="15" fill="rgb(245,64,36)" fg:x="147400" fg:w="979"/><text x="9.8286%" y="447.50"></text></g><g><title>do_user_addr_fault (430 samples, 0.03%)</title><rect x="9.6547%" y="405" width="0.0279%" height="15" fill="rgb(245,80,10)" fg:x="148571" fg:w="430"/><text x="9.9047%" y="415.50"></text></g><g><title>handle_mm_fault (329 samples, 0.02%)</title><rect x="9.6613%" y="389" width="0.0214%" height="15" fill="rgb(232,107,50)" fg:x="148672" fg:w="329"/><text x="9.9113%" y="399.50"></text></g><g><title>wp_page_copy (219 samples, 0.01%)</title><rect x="9.6684%" y="373" width="0.0142%" height="15" fill="rgb(253,3,0)" fg:x="148782" fg:w="219"/><text x="9.9184%" y="383.50"></text></g><g><title>exc_page_fault (435 samples, 0.03%)</title><rect x="9.6544%" y="421" width="0.0283%" height="15" fill="rgb(212,99,53)" fg:x="148567" fg:w="435"/><text x="9.9044%" y="431.50"></text></g><g><title>asm_exc_page_fault (558 samples, 0.04%)</title><rect x="9.6466%" y="437" width="0.0363%" height="15" fill="rgb(249,111,54)" fg:x="148446" fg:w="558"/><text x="9.8966%" y="447.50"></text></g><g><title>__put_user_nocheck_4 (570 samples, 0.04%)</title><rect x="9.6459%" y="453" width="0.0370%" height="15" fill="rgb(249,55,30)" fg:x="148435" fg:w="570"/><text x="9.8959%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (6,090 samples, 0.40%)</title><rect x="9.6977%" y="437" width="0.3958%" height="15" fill="rgb(237,47,42)" fg:x="149232" fg:w="6090"/><text x="9.9477%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,013 samples, 0.39%)</title><rect x="9.7027%" y="421" width="0.3907%" height="15" fill="rgb(211,20,18)" fg:x="149309" fg:w="6013"/><text x="9.9527%" y="431.50"></text></g><g><title>native_write_msr (5,980 samples, 0.39%)</title><rect x="9.7048%" y="405" width="0.3886%" height="15" fill="rgb(231,203,46)" fg:x="149342" fg:w="5980"/><text x="9.9548%" y="415.50"></text></g><g><title>schedule_tail (7,065 samples, 0.46%)</title><rect x="9.6452%" y="469" width="0.4591%" height="15" fill="rgb(237,142,3)" fg:x="148425" fg:w="7065"/><text x="9.8952%" y="479.50"></text></g><g><title>finish_task_switch (6,454 samples, 0.42%)</title><rect x="9.6849%" y="453" width="0.4194%" height="15" fill="rgb(241,107,1)" fg:x="149036" fg:w="6454"/><text x="9.9349%" y="463.50"></text></g><g><title>arch_fork (8,316 samples, 0.54%)</title><rect x="9.5652%" y="501" width="0.5404%" height="15" fill="rgb(229,83,13)" fg:x="147194" fg:w="8316"/><text x="9.8152%" y="511.50"></text></g><g><title>ret_from_fork (7,101 samples, 0.46%)</title><rect x="9.6442%" y="485" width="0.4614%" height="15" fill="rgb(241,91,40)" fg:x="148409" fg:w="7101"/><text x="9.8942%" y="495.50"></text></g><g><title>__libc_fork (8,616 samples, 0.56%)</title><rect x="9.5562%" y="517" width="0.5599%" height="15" fill="rgb(225,3,45)" fg:x="147056" fg:w="8616"/><text x="9.8062%" y="527.50"></text></g><g><title>[dash] (41,850 samples, 2.72%)</title><rect x="7.4013%" y="533" width="2.7196%" height="15" fill="rgb(244,223,14)" fg:x="113895" fg:w="41850"/><text x="7.6513%" y="543.50">[d..</text></g><g><title>[dash] (42,083 samples, 2.73%)</title><rect x="7.3990%" y="549" width="2.7347%" height="15" fill="rgb(224,124,37)" fg:x="113860" fg:w="42083"/><text x="7.6490%" y="559.50">[d..</text></g><g><title>entry_SYSCALL_64_after_hwframe (178 samples, 0.01%)</title><rect x="10.1343%" y="533" width="0.0116%" height="15" fill="rgb(251,171,30)" fg:x="155951" fg:w="178"/><text x="10.3843%" y="543.50"></text></g><g><title>syscall_exit_to_user_mode (159 samples, 0.01%)</title><rect x="10.1355%" y="517" width="0.0103%" height="15" fill="rgb(236,46,54)" fg:x="155970" fg:w="159"/><text x="10.3855%" y="527.50"></text></g><g><title>exit_to_user_mode_prepare (159 samples, 0.01%)</title><rect x="10.1355%" y="501" width="0.0103%" height="15" fill="rgb(245,213,5)" fg:x="155970" fg:w="159"/><text x="10.3855%" y="511.50"></text></g><g><title>__GI___close (190 samples, 0.01%)</title><rect x="10.1340%" y="549" width="0.0123%" height="15" fill="rgb(230,144,27)" fg:x="155947" fg:w="190"/><text x="10.3840%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (7,092 samples, 0.46%)</title><rect x="10.1908%" y="389" width="0.4609%" height="15" fill="rgb(220,86,6)" fg:x="156821" fg:w="7092"/><text x="10.4408%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (7,035 samples, 0.46%)</title><rect x="10.1945%" y="373" width="0.4572%" height="15" fill="rgb(240,20,13)" fg:x="156878" fg:w="7035"/><text x="10.4445%" y="383.50"></text></g><g><title>native_write_msr (7,010 samples, 0.46%)</title><rect x="10.1961%" y="357" width="0.4555%" height="15" fill="rgb(217,89,34)" fg:x="156903" fg:w="7010"/><text x="10.4461%" y="367.50"></text></g><g><title>finish_task_switch (7,744 samples, 0.50%)</title><rect x="10.1750%" y="405" width="0.5032%" height="15" fill="rgb(229,13,5)" fg:x="156578" fg:w="7744"/><text x="10.4250%" y="415.50"></text></g><g><title>schedule (7,905 samples, 0.51%)</title><rect x="10.1693%" y="437" width="0.5137%" height="15" fill="rgb(244,67,35)" fg:x="156490" fg:w="7905"/><text x="10.4193%" y="447.50"></text></g><g><title>__schedule (7,894 samples, 0.51%)</title><rect x="10.1700%" y="421" width="0.5130%" height="15" fill="rgb(221,40,2)" fg:x="156501" fg:w="7894"/><text x="10.4200%" y="431.50"></text></g><g><title>new_sync_read (8,174 samples, 0.53%)</title><rect x="10.1533%" y="469" width="0.5312%" height="15" fill="rgb(237,157,21)" fg:x="156243" fg:w="8174"/><text x="10.4033%" y="479.50"></text></g><g><title>pipe_read (8,160 samples, 0.53%)</title><rect x="10.1542%" y="453" width="0.5303%" height="15" fill="rgb(222,94,11)" fg:x="156257" fg:w="8160"/><text x="10.4042%" y="463.50"></text></g><g><title>do_syscall_64 (8,266 samples, 0.54%)</title><rect x="10.1484%" y="517" width="0.5372%" height="15" fill="rgb(249,113,6)" fg:x="156169" fg:w="8266"/><text x="10.3984%" y="527.50"></text></g><g><title>ksys_read (8,242 samples, 0.54%)</title><rect x="10.1500%" y="501" width="0.5356%" height="15" fill="rgb(238,137,36)" fg:x="156193" fg:w="8242"/><text x="10.4000%" y="511.50"></text></g><g><title>vfs_read (8,223 samples, 0.53%)</title><rect x="10.1512%" y="485" width="0.5344%" height="15" fill="rgb(210,102,26)" fg:x="156212" fg:w="8223"/><text x="10.4012%" y="495.50"></text></g><g><title>arch_do_signal (181 samples, 0.01%)</title><rect x="10.6864%" y="485" width="0.0118%" height="15" fill="rgb(218,30,30)" fg:x="164447" fg:w="181"/><text x="10.9364%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (8,487 samples, 0.55%)</title><rect x="10.1483%" y="533" width="0.5515%" height="15" fill="rgb(214,67,26)" fg:x="156167" fg:w="8487"/><text x="10.3983%" y="543.50"></text></g><g><title>syscall_exit_to_user_mode (219 samples, 0.01%)</title><rect x="10.6856%" y="517" width="0.0142%" height="15" fill="rgb(251,9,53)" fg:x="164435" fg:w="219"/><text x="10.9356%" y="527.50"></text></g><g><title>exit_to_user_mode_prepare (216 samples, 0.01%)</title><rect x="10.6858%" y="501" width="0.0140%" height="15" fill="rgb(228,204,25)" fg:x="164438" fg:w="216"/><text x="10.9358%" y="511.50"></text></g><g><title>__GI___libc_read (8,647 samples, 0.56%)</title><rect x="10.1466%" y="549" width="0.5619%" height="15" fill="rgb(207,153,8)" fg:x="156141" fg:w="8647"/><text x="10.3966%" y="559.50"></text></g><g><title>bprm_execve (155 samples, 0.01%)</title><rect x="10.7102%" y="469" width="0.0101%" height="15" fill="rgb(242,9,16)" fg:x="164813" fg:w="155"/><text x="10.9602%" y="479.50"></text></g><g><title>do_execveat_common (165 samples, 0.01%)</title><rect x="10.7101%" y="485" width="0.0107%" height="15" fill="rgb(217,211,10)" fg:x="164812" fg:w="165"/><text x="10.9601%" y="495.50"></text></g><g><title>__GI_execve (166 samples, 0.01%)</title><rect x="10.7101%" y="549" width="0.0108%" height="15" fill="rgb(219,228,52)" fg:x="164812" fg:w="166"/><text x="10.9601%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (166 samples, 0.01%)</title><rect x="10.7101%" y="533" width="0.0108%" height="15" fill="rgb(231,92,29)" fg:x="164812" fg:w="166"/><text x="10.9601%" y="543.50"></text></g><g><title>do_syscall_64 (166 samples, 0.01%)</title><rect x="10.7101%" y="517" width="0.0108%" height="15" fill="rgb(232,8,23)" fg:x="164812" fg:w="166"/><text x="10.9601%" y="527.50"></text></g><g><title>__x64_sys_execve (166 samples, 0.01%)</title><rect x="10.7101%" y="501" width="0.0108%" height="15" fill="rgb(216,211,34)" fg:x="164812" fg:w="166"/><text x="10.9601%" y="511.50"></text></g><g><title>[dash] (51,195 samples, 3.33%)</title><rect x="7.3954%" y="565" width="3.3268%" height="15" fill="rgb(236,151,0)" fg:x="113804" fg:w="51195"/><text x="7.6454%" y="575.50">[da..</text></g><g><title>[dash] (51,251 samples, 3.33%)</title><rect x="7.3937%" y="581" width="3.3305%" height="15" fill="rgb(209,168,3)" fg:x="113777" fg:w="51251"/><text x="7.6437%" y="591.50">[da..</text></g><g><title>[dash] (51,283 samples, 3.33%)</title><rect x="7.3923%" y="597" width="3.3326%" height="15" fill="rgb(208,129,28)" fg:x="113756" fg:w="51283"/><text x="7.6423%" y="607.50">[da..</text></g><g><title>[dash] (51,302 samples, 3.33%)</title><rect x="7.3917%" y="613" width="3.3338%" height="15" fill="rgb(229,78,22)" fg:x="113747" fg:w="51302"/><text x="7.6417%" y="623.50">[da..</text></g><g><title>[dash] (51,341 samples, 3.34%)</title><rect x="7.3916%" y="629" width="3.3363%" height="15" fill="rgb(228,187,13)" fg:x="113745" fg:w="51341"/><text x="7.6416%" y="639.50">[da..</text></g><g><title>[dash] (51,351 samples, 3.34%)</title><rect x="7.3912%" y="645" width="3.3370%" height="15" fill="rgb(240,119,24)" fg:x="113740" fg:w="51351"/><text x="7.6412%" y="655.50">[da..</text></g><g><title>[dash] (51,432 samples, 3.34%)</title><rect x="7.3912%" y="661" width="3.3422%" height="15" fill="rgb(209,194,42)" fg:x="113739" fg:w="51432"/><text x="7.6412%" y="671.50">[da..</text></g><g><title>[dash] (51,465 samples, 3.34%)</title><rect x="7.3909%" y="677" width="3.3444%" height="15" fill="rgb(247,200,46)" fg:x="113735" fg:w="51465"/><text x="7.6409%" y="687.50">[da..</text></g><g><title>__libc_start_main (51,468 samples, 3.34%)</title><rect x="7.3909%" y="693" width="3.3446%" height="15" fill="rgb(218,76,16)" fg:x="113735" fg:w="51468"/><text x="7.6409%" y="703.50">__l..</text></g><g><title>[dash] (51,496 samples, 3.35%)</title><rect x="7.3894%" y="709" width="3.3464%" height="15" fill="rgb(225,21,48)" fg:x="113711" fg:w="51496"/><text x="7.6394%" y="719.50">[da..</text></g><g><title>asm_exc_page_fault (597 samples, 0.04%)</title><rect x="10.7534%" y="709" width="0.0388%" height="15" fill="rgb(239,223,50)" fg:x="165479" fg:w="597"/><text x="11.0034%" y="719.50"></text></g><g><title>unmap_page_range (175 samples, 0.01%)</title><rect x="10.8132%" y="549" width="0.0114%" height="15" fill="rgb(244,45,21)" fg:x="166398" fg:w="175"/><text x="11.0632%" y="559.50"></text></g><g><title>exit_mmap (473 samples, 0.03%)</title><rect x="10.7943%" y="581" width="0.0307%" height="15" fill="rgb(232,33,43)" fg:x="166107" fg:w="473"/><text x="11.0443%" y="591.50"></text></g><g><title>unmap_vmas (187 samples, 0.01%)</title><rect x="10.8128%" y="565" width="0.0122%" height="15" fill="rgb(209,8,3)" fg:x="166393" fg:w="187"/><text x="11.0628%" y="575.50"></text></g><g><title>mmput (476 samples, 0.03%)</title><rect x="10.7941%" y="597" width="0.0309%" height="15" fill="rgb(214,25,53)" fg:x="166105" fg:w="476"/><text x="11.0441%" y="607.50"></text></g><g><title>begin_new_exec (512 samples, 0.03%)</title><rect x="10.7927%" y="613" width="0.0333%" height="15" fill="rgb(254,186,54)" fg:x="166083" fg:w="512"/><text x="11.0427%" y="623.50"></text></g><g><title>__x64_sys_execve (539 samples, 0.04%)</title><rect x="10.7926%" y="677" width="0.0350%" height="15" fill="rgb(208,174,49)" fg:x="166082" fg:w="539"/><text x="11.0426%" y="687.50"></text></g><g><title>do_execveat_common (539 samples, 0.04%)</title><rect x="10.7926%" y="661" width="0.0350%" height="15" fill="rgb(233,191,51)" fg:x="166082" fg:w="539"/><text x="11.0426%" y="671.50"></text></g><g><title>bprm_execve (539 samples, 0.04%)</title><rect x="10.7926%" y="645" width="0.0350%" height="15" fill="rgb(222,134,10)" fg:x="166082" fg:w="539"/><text x="11.0426%" y="655.50"></text></g><g><title>load_elf_binary (539 samples, 0.04%)</title><rect x="10.7926%" y="629" width="0.0350%" height="15" fill="rgb(230,226,20)" fg:x="166082" fg:w="539"/><text x="11.0426%" y="639.50"></text></g><g><title>unlink_anon_vmas (252 samples, 0.02%)</title><rect x="10.8333%" y="581" width="0.0164%" height="15" fill="rgb(251,111,25)" fg:x="166708" fg:w="252"/><text x="11.0833%" y="591.50"></text></g><g><title>free_pgtables (354 samples, 0.02%)</title><rect x="10.8315%" y="597" width="0.0230%" height="15" fill="rgb(224,40,46)" fg:x="166680" fg:w="354"/><text x="11.0815%" y="607.50"></text></g><g><title>tlb_finish_mmu (231 samples, 0.02%)</title><rect x="10.8663%" y="597" width="0.0150%" height="15" fill="rgb(236,108,47)" fg:x="167215" fg:w="231"/><text x="11.1163%" y="607.50"></text></g><g><title>release_pages (173 samples, 0.01%)</title><rect x="10.8700%" y="581" width="0.0112%" height="15" fill="rgb(234,93,0)" fg:x="167273" fg:w="173"/><text x="11.1200%" y="591.50"></text></g><g><title>unmap_page_range (579 samples, 0.04%)</title><rect x="10.8817%" y="581" width="0.0376%" height="15" fill="rgb(224,213,32)" fg:x="167453" fg:w="579"/><text x="11.1317%" y="591.50"></text></g><g><title>exit_mmap (1,387 samples, 0.09%)</title><rect x="10.8304%" y="613" width="0.0901%" height="15" fill="rgb(251,11,48)" fg:x="166664" fg:w="1387"/><text x="11.0804%" y="623.50"></text></g><g><title>unmap_vmas (605 samples, 0.04%)</title><rect x="10.8813%" y="597" width="0.0393%" height="15" fill="rgb(236,173,5)" fg:x="167446" fg:w="605"/><text x="11.1313%" y="607.50"></text></g><g><title>mmput (1,394 samples, 0.09%)</title><rect x="10.8302%" y="629" width="0.0906%" height="15" fill="rgb(230,95,12)" fg:x="166660" fg:w="1394"/><text x="11.0802%" y="639.50"></text></g><g><title>__x64_sys_exit_group (1,548 samples, 0.10%)</title><rect x="10.8277%" y="677" width="0.1006%" height="15" fill="rgb(232,209,1)" fg:x="166621" fg:w="1548"/><text x="11.0777%" y="687.50"></text></g><g><title>do_group_exit (1,548 samples, 0.10%)</title><rect x="10.8277%" y="661" width="0.1006%" height="15" fill="rgb(232,6,1)" fg:x="166621" fg:w="1548"/><text x="11.0777%" y="671.50"></text></g><g><title>do_exit (1,548 samples, 0.10%)</title><rect x="10.8277%" y="645" width="0.1006%" height="15" fill="rgb(210,224,50)" fg:x="166621" fg:w="1548"/><text x="11.0777%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,093 samples, 0.14%)</title><rect x="10.7924%" y="709" width="0.1360%" height="15" fill="rgb(228,127,35)" fg:x="166078" fg:w="2093"/><text x="11.0424%" y="719.50"></text></g><g><title>do_syscall_64 (2,089 samples, 0.14%)</title><rect x="10.7926%" y="693" width="0.1358%" height="15" fill="rgb(245,102,45)" fg:x="166082" fg:w="2089"/><text x="11.0426%" y="703.50"></text></g><g><title>c++ (54,539 samples, 3.54%)</title><rect x="7.3853%" y="725" width="3.5441%" height="15" fill="rgb(214,1,49)" fg:x="113649" fg:w="54539"/><text x="7.6353%" y="735.50">c++</text></g><g><title>[perf-934749.map] (650 samples, 0.04%)</title><rect x="10.9304%" y="709" width="0.0422%" height="15" fill="rgb(226,163,40)" fg:x="168202" fg:w="650"/><text x="11.1804%" y="719.50"></text></g><g><title>find-action-loo (683 samples, 0.04%)</title><rect x="10.9303%" y="725" width="0.0444%" height="15" fill="rgb(239,212,28)" fg:x="168201" fg:w="683"/><text x="11.1803%" y="735.50"></text></g><g><title>[perf-934749.map] (361 samples, 0.02%)</title><rect x="10.9843%" y="709" width="0.0235%" height="15" fill="rgb(220,20,13)" fg:x="169031" fg:w="361"/><text x="11.2343%" y="719.50"></text></g><g><title>__GI___clone (217 samples, 0.01%)</title><rect x="11.0079%" y="709" width="0.0141%" height="15" fill="rgb(210,164,35)" fg:x="169394" fg:w="217"/><text x="11.2579%" y="719.50"></text></g><g><title>globbing_pool-1 (618 samples, 0.04%)</title><rect x="10.9820%" y="725" width="0.0402%" height="15" fill="rgb(248,109,41)" fg:x="168996" fg:w="618"/><text x="11.2320%" y="735.50"></text></g><g><title>[perf-934749.map] (293 samples, 0.02%)</title><rect x="11.0238%" y="709" width="0.0190%" height="15" fill="rgb(238,23,50)" fg:x="169640" fg:w="293"/><text x="11.2738%" y="719.50"></text></g><g><title>globbing_pool-2 (523 samples, 0.03%)</title><rect x="11.0221%" y="725" width="0.0340%" height="15" fill="rgb(211,48,49)" fg:x="169614" fg:w="523"/><text x="11.2721%" y="735.50"></text></g><g><title>__GI___clone (201 samples, 0.01%)</title><rect x="11.0431%" y="709" width="0.0131%" height="15" fill="rgb(223,36,21)" fg:x="169936" fg:w="201"/><text x="11.2931%" y="719.50"></text></g><g><title>[perf-934749.map] (160 samples, 0.01%)</title><rect x="11.0572%" y="709" width="0.0104%" height="15" fill="rgb(207,123,46)" fg:x="170154" fg:w="160"/><text x="11.3072%" y="719.50"></text></g><g><title>globbing_pool-3 (205 samples, 0.01%)</title><rect x="11.0561%" y="725" width="0.0133%" height="15" fill="rgb(240,218,32)" fg:x="170137" fg:w="205"/><text x="11.3061%" y="735.50"></text></g><g><title>[perf-934749.map] (279 samples, 0.02%)</title><rect x="11.0715%" y="709" width="0.0181%" height="15" fill="rgb(252,5,43)" fg:x="170373" fg:w="279"/><text x="11.3215%" y="719.50"></text></g><g><title>globbing_pool-4 (371 samples, 0.02%)</title><rect x="11.0695%" y="725" width="0.0241%" height="15" fill="rgb(252,84,19)" fg:x="170342" fg:w="371"/><text x="11.3195%" y="735.50"></text></g><g><title>[perf-934749.map] (212 samples, 0.01%)</title><rect x="11.0955%" y="709" width="0.0138%" height="15" fill="rgb(243,152,39)" fg:x="170742" fg:w="212"/><text x="11.3455%" y="719.50"></text></g><g><title>globbing_pool-5 (341 samples, 0.02%)</title><rect x="11.0936%" y="725" width="0.0222%" height="15" fill="rgb(234,160,15)" fg:x="170713" fg:w="341"/><text x="11.3436%" y="735.50"></text></g><g><title>[perf-934749.map] (275 samples, 0.02%)</title><rect x="11.1174%" y="709" width="0.0179%" height="15" fill="rgb(237,34,20)" fg:x="171080" fg:w="275"/><text x="11.3674%" y="719.50"></text></g><g><title>globbing_pool-6 (367 samples, 0.02%)</title><rect x="11.1157%" y="725" width="0.0238%" height="15" fill="rgb(229,97,13)" fg:x="171054" fg:w="367"/><text x="11.3657%" y="735.50"></text></g><g><title>globbing_pool-7 (175 samples, 0.01%)</title><rect x="11.1396%" y="725" width="0.0114%" height="15" fill="rgb(234,71,50)" fg:x="171421" fg:w="175"/><text x="11.3896%" y="735.50"></text></g><g><title>[perf-934749.map] (176 samples, 0.01%)</title><rect x="11.1618%" y="709" width="0.0114%" height="15" fill="rgb(253,155,4)" fg:x="171763" fg:w="176"/><text x="11.4118%" y="719.50"></text></g><g><title>globbing_pool-9 (218 samples, 0.01%)</title><rect x="11.1602%" y="725" width="0.0142%" height="15" fill="rgb(222,185,37)" fg:x="171739" fg:w="218"/><text x="11.4102%" y="735.50"></text></g><g><title>[anon] (213 samples, 0.01%)</title><rect x="11.1754%" y="709" width="0.0138%" height="15" fill="rgb(251,177,13)" fg:x="171973" fg:w="213"/><text x="11.4254%" y="719.50"></text></g><g><title>InstanceKlass::link_class_impl (160 samples, 0.01%)</title><rect x="11.3222%" y="661" width="0.0104%" height="15" fill="rgb(250,179,40)" fg:x="174232" fg:w="160"/><text x="11.5722%" y="671.50"></text></g><g><title>InstanceKlass::initialize_impl (162 samples, 0.01%)</title><rect x="11.3222%" y="677" width="0.0105%" height="15" fill="rgb(242,44,2)" fg:x="174231" fg:w="162"/><text x="11.5722%" y="687.50"></text></g><g><title>InterpreterRuntime::_new (307 samples, 0.02%)</title><rect x="11.3128%" y="693" width="0.0200%" height="15" fill="rgb(216,177,13)" fg:x="174087" fg:w="307"/><text x="11.5628%" y="703.50"></text></g><g><title>LinkResolver::resolve_invoke (267 samples, 0.02%)</title><rect x="11.3527%" y="661" width="0.0174%" height="15" fill="rgb(216,106,43)" fg:x="174700" fg:w="267"/><text x="11.6027%" y="671.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (302 samples, 0.02%)</title><rect x="11.3508%" y="677" width="0.0196%" height="15" fill="rgb(216,183,2)" fg:x="174672" fg:w="302"/><text x="11.6008%" y="687.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (461 samples, 0.03%)</title><rect x="11.3436%" y="693" width="0.0300%" height="15" fill="rgb(249,75,3)" fg:x="174560" fg:w="461"/><text x="11.5936%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (439 samples, 0.03%)</title><rect x="11.3996%" y="549" width="0.0285%" height="15" fill="rgb(219,67,39)" fg:x="175423" fg:w="439"/><text x="11.6496%" y="559.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (517 samples, 0.03%)</title><rect x="11.3947%" y="565" width="0.0336%" height="15" fill="rgb(253,228,2)" fg:x="175347" fg:w="517"/><text x="11.6447%" y="575.50"></text></g><g><title>ClassFileParser::parse_constant_pool (534 samples, 0.03%)</title><rect x="11.3938%" y="581" width="0.0347%" height="15" fill="rgb(235,138,27)" fg:x="175333" fg:w="534"/><text x="11.6438%" y="591.50"></text></g><g><title>ClassFileParser::ClassFileParser (712 samples, 0.05%)</title><rect x="11.3929%" y="613" width="0.0463%" height="15" fill="rgb(236,97,51)" fg:x="175320" fg:w="712"/><text x="11.6429%" y="623.50"></text></g><g><title>ClassFileParser::parse_stream (711 samples, 0.05%)</title><rect x="11.3930%" y="597" width="0.0462%" height="15" fill="rgb(240,80,30)" fg:x="175321" fg:w="711"/><text x="11.6430%" y="607.50"></text></g><g><title>ClassFileParser::fill_instance_klass (162 samples, 0.01%)</title><rect x="11.4392%" y="597" width="0.0105%" height="15" fill="rgb(230,178,19)" fg:x="176032" fg:w="162"/><text x="11.6892%" y="607.50"></text></g><g><title>ClassFileParser::create_instance_klass (171 samples, 0.01%)</title><rect x="11.4392%" y="613" width="0.0111%" height="15" fill="rgb(210,190,27)" fg:x="176032" fg:w="171"/><text x="11.6892%" y="623.50"></text></g><g><title>KlassFactory::create_from_stream (939 samples, 0.06%)</title><rect x="11.3929%" y="629" width="0.0610%" height="15" fill="rgb(222,107,31)" fg:x="175320" fg:w="939"/><text x="11.6429%" y="639.50"></text></g><g><title>SystemDictionary::resolve_from_stream (966 samples, 0.06%)</title><rect x="11.3929%" y="645" width="0.0628%" height="15" fill="rgb(216,127,34)" fg:x="175320" fg:w="966"/><text x="11.6429%" y="655.50"></text></g><g><title>JVM_DefineClassWithSource (977 samples, 0.06%)</title><rect x="11.3923%" y="677" width="0.0635%" height="15" fill="rgb(234,116,52)" fg:x="175310" fg:w="977"/><text x="11.6423%" y="687.50"></text></g><g><title>jvm_define_class_common (977 samples, 0.06%)</title><rect x="11.3923%" y="661" width="0.0635%" height="15" fill="rgb(222,124,15)" fg:x="175310" fg:w="977"/><text x="11.6423%" y="671.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,018 samples, 0.07%)</title><rect x="11.3921%" y="693" width="0.0662%" height="15" fill="rgb(231,179,28)" fg:x="175307" fg:w="1018"/><text x="11.6421%" y="703.50"></text></g><g><title>[perf-934749.map] (4,462 samples, 0.29%)</title><rect x="11.1901%" y="709" width="0.2900%" height="15" fill="rgb(226,93,45)" fg:x="172198" fg:w="4462"/><text x="11.4401%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (391 samples, 0.03%)</title><rect x="11.4911%" y="645" width="0.0254%" height="15" fill="rgb(215,8,51)" fg:x="176830" fg:w="391"/><text x="11.7411%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (389 samples, 0.03%)</title><rect x="11.4912%" y="629" width="0.0253%" height="15" fill="rgb(223,106,5)" fg:x="176832" fg:w="389"/><text x="11.7412%" y="639.50"></text></g><g><title>native_write_msr (388 samples, 0.03%)</title><rect x="11.4913%" y="613" width="0.0252%" height="15" fill="rgb(250,191,5)" fg:x="176833" fg:w="388"/><text x="11.7413%" y="623.50"></text></g><g><title>schedule_tail (418 samples, 0.03%)</title><rect x="11.4904%" y="677" width="0.0272%" height="15" fill="rgb(242,132,44)" fg:x="176819" fg:w="418"/><text x="11.7404%" y="687.50"></text></g><g><title>finish_task_switch (416 samples, 0.03%)</title><rect x="11.4905%" y="661" width="0.0270%" height="15" fill="rgb(251,152,29)" fg:x="176821" fg:w="416"/><text x="11.7405%" y="671.50"></text></g><g><title>ret_from_fork (429 samples, 0.03%)</title><rect x="11.4900%" y="693" width="0.0279%" height="15" fill="rgb(218,179,5)" fg:x="176814" fg:w="429"/><text x="11.7400%" y="703.50"></text></g><g><title>__GI___clone (633 samples, 0.04%)</title><rect x="11.4887%" y="709" width="0.0411%" height="15" fill="rgb(227,67,19)" fg:x="176793" fg:w="633"/><text x="11.7387%" y="719.50"></text></g><g><title>start_thread (183 samples, 0.01%)</title><rect x="11.5179%" y="693" width="0.0119%" height="15" fill="rgb(233,119,31)" fg:x="177243" fg:w="183"/><text x="11.7679%" y="703.50"></text></g><g><title>java (5,513 samples, 0.36%)</title><rect x="11.1744%" y="725" width="0.3583%" height="15" fill="rgb(241,120,22)" fg:x="171957" fg:w="5513"/><text x="11.4244%" y="735.50"></text></g><g><title>execute_command_internal (246 samples, 0.02%)</title><rect x="11.5456%" y="693" width="0.0160%" height="15" fill="rgb(224,102,30)" fg:x="177669" fg:w="246"/><text x="11.7956%" y="703.50"></text></g><g><title>[unknown] (390 samples, 0.03%)</title><rect x="11.5384%" y="709" width="0.0253%" height="15" fill="rgb(210,164,37)" fg:x="177558" fg:w="390"/><text x="11.7884%" y="719.50"></text></g><g><title>execute_command (176 samples, 0.01%)</title><rect x="11.5667%" y="597" width="0.0114%" height="15" fill="rgb(226,191,16)" fg:x="177994" fg:w="176"/><text x="11.8167%" y="607.50"></text></g><g><title>execute_command_internal (176 samples, 0.01%)</title><rect x="11.5667%" y="581" width="0.0114%" height="15" fill="rgb(214,40,45)" fg:x="177994" fg:w="176"/><text x="11.8167%" y="591.50"></text></g><g><title>[bash] (202 samples, 0.01%)</title><rect x="11.5664%" y="613" width="0.0131%" height="15" fill="rgb(244,29,26)" fg:x="177989" fg:w="202"/><text x="11.8164%" y="623.50"></text></g><g><title>expand_word_leave_quoted (349 samples, 0.02%)</title><rect x="11.5898%" y="581" width="0.0227%" height="15" fill="rgb(216,16,5)" fg:x="178350" fg:w="349"/><text x="11.8398%" y="591.50"></text></g><g><title>[bash] (349 samples, 0.02%)</title><rect x="11.5898%" y="565" width="0.0227%" height="15" fill="rgb(249,76,35)" fg:x="178350" fg:w="349"/><text x="11.8398%" y="575.50"></text></g><g><title>command_substitute (349 samples, 0.02%)</title><rect x="11.5898%" y="549" width="0.0227%" height="15" fill="rgb(207,11,44)" fg:x="178350" fg:w="349"/><text x="11.8398%" y="559.50"></text></g><g><title>execute_command (374 samples, 0.02%)</title><rect x="11.5885%" y="613" width="0.0243%" height="15" fill="rgb(228,190,49)" fg:x="178329" fg:w="374"/><text x="11.8385%" y="623.50"></text></g><g><title>execute_command_internal (373 samples, 0.02%)</title><rect x="11.5885%" y="597" width="0.0242%" height="15" fill="rgb(214,173,12)" fg:x="178330" fg:w="373"/><text x="11.8385%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (158 samples, 0.01%)</title><rect x="11.6271%" y="341" width="0.0103%" height="15" fill="rgb(218,26,35)" fg:x="178923" fg:w="158"/><text x="11.8771%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (154 samples, 0.01%)</title><rect x="11.6273%" y="325" width="0.0100%" height="15" fill="rgb(220,200,19)" fg:x="178927" fg:w="154"/><text x="11.8773%" y="335.50"></text></g><g><title>arch_fork (198 samples, 0.01%)</title><rect x="11.6249%" y="405" width="0.0129%" height="15" fill="rgb(239,95,49)" fg:x="178890" fg:w="198"/><text x="11.8749%" y="415.50"></text></g><g><title>ret_from_fork (186 samples, 0.01%)</title><rect x="11.6257%" y="389" width="0.0121%" height="15" fill="rgb(235,85,53)" fg:x="178902" fg:w="186"/><text x="11.8757%" y="399.50"></text></g><g><title>schedule_tail (186 samples, 0.01%)</title><rect x="11.6257%" y="373" width="0.0121%" height="15" fill="rgb(233,133,31)" fg:x="178902" fg:w="186"/><text x="11.8757%" y="383.50"></text></g><g><title>finish_task_switch (170 samples, 0.01%)</title><rect x="11.6268%" y="357" width="0.0110%" height="15" fill="rgb(218,25,20)" fg:x="178918" fg:w="170"/><text x="11.8768%" y="367.50"></text></g><g><title>__libc_fork (203 samples, 0.01%)</title><rect x="11.6247%" y="421" width="0.0132%" height="15" fill="rgb(252,210,38)" fg:x="178887" fg:w="203"/><text x="11.8747%" y="431.50"></text></g><g><title>make_child (211 samples, 0.01%)</title><rect x="11.6246%" y="437" width="0.0137%" height="15" fill="rgb(242,134,21)" fg:x="178885" fg:w="211"/><text x="11.8746%" y="447.50"></text></g><g><title>parse_and_execute (295 samples, 0.02%)</title><rect x="11.6217%" y="517" width="0.0192%" height="15" fill="rgb(213,28,48)" fg:x="178840" fg:w="295"/><text x="11.8717%" y="527.50"></text></g><g><title>execute_command_internal (293 samples, 0.02%)</title><rect x="11.6218%" y="501" width="0.0190%" height="15" fill="rgb(250,196,2)" fg:x="178842" fg:w="293"/><text x="11.8718%" y="511.50"></text></g><g><title>[bash] (293 samples, 0.02%)</title><rect x="11.6218%" y="485" width="0.0190%" height="15" fill="rgb(227,5,17)" fg:x="178842" fg:w="293"/><text x="11.8718%" y="495.50"></text></g><g><title>[bash] (293 samples, 0.02%)</title><rect x="11.6218%" y="469" width="0.0190%" height="15" fill="rgb(221,226,24)" fg:x="178842" fg:w="293"/><text x="11.8718%" y="479.50"></text></g><g><title>execute_command_internal (292 samples, 0.02%)</title><rect x="11.6219%" y="453" width="0.0190%" height="15" fill="rgb(211,5,48)" fg:x="178843" fg:w="292"/><text x="11.8719%" y="463.50"></text></g><g><title>command_substitute (439 samples, 0.03%)</title><rect x="11.6133%" y="533" width="0.0285%" height="15" fill="rgb(219,150,6)" fg:x="178711" fg:w="439"/><text x="11.8633%" y="543.50"></text></g><g><title>[bash] (448 samples, 0.03%)</title><rect x="11.6129%" y="565" width="0.0291%" height="15" fill="rgb(251,46,16)" fg:x="178705" fg:w="448"/><text x="11.8629%" y="575.50"></text></g><g><title>[bash] (447 samples, 0.03%)</title><rect x="11.6130%" y="549" width="0.0290%" height="15" fill="rgb(220,204,40)" fg:x="178706" fg:w="447"/><text x="11.8630%" y="559.50"></text></g><g><title>[bash] (454 samples, 0.03%)</title><rect x="11.6128%" y="581" width="0.0295%" height="15" fill="rgb(211,85,2)" fg:x="178703" fg:w="454"/><text x="11.8628%" y="591.50"></text></g><g><title>[bash] (455 samples, 0.03%)</title><rect x="11.6128%" y="597" width="0.0296%" height="15" fill="rgb(229,17,7)" fg:x="178703" fg:w="455"/><text x="11.8628%" y="607.50"></text></g><g><title>expand_words (456 samples, 0.03%)</title><rect x="11.6128%" y="613" width="0.0296%" height="15" fill="rgb(239,72,28)" fg:x="178703" fg:w="456"/><text x="11.8628%" y="623.50"></text></g><g><title>execute_command (1,178 samples, 0.08%)</title><rect x="11.5661%" y="645" width="0.0766%" height="15" fill="rgb(230,47,54)" fg:x="177985" fg:w="1178"/><text x="11.8161%" y="655.50"></text></g><g><title>execute_command_internal (1,175 samples, 0.08%)</title><rect x="11.5663%" y="629" width="0.0764%" height="15" fill="rgb(214,50,8)" fg:x="177988" fg:w="1175"/><text x="11.8163%" y="639.50"></text></g><g><title>[bash] (199 samples, 0.01%)</title><rect x="11.6504%" y="581" width="0.0129%" height="15" fill="rgb(216,198,43)" fg:x="179282" fg:w="199"/><text x="11.9004%" y="591.50"></text></g><g><title>[bash] (343 samples, 0.02%)</title><rect x="11.6453%" y="597" width="0.0223%" height="15" fill="rgb(234,20,35)" fg:x="179203" fg:w="343"/><text x="11.8953%" y="607.50"></text></g><g><title>reader_loop (1,622 samples, 0.11%)</title><rect x="11.5642%" y="661" width="0.1054%" height="15" fill="rgb(254,45,19)" fg:x="177955" fg:w="1622"/><text x="11.8142%" y="671.50"></text></g><g><title>read_command (414 samples, 0.03%)</title><rect x="11.6427%" y="645" width="0.0269%" height="15" fill="rgb(219,14,44)" fg:x="179163" fg:w="414"/><text x="11.8927%" y="655.50"></text></g><g><title>parse_command (414 samples, 0.03%)</title><rect x="11.6427%" y="629" width="0.0269%" height="15" fill="rgb(217,220,26)" fg:x="179163" fg:w="414"/><text x="11.8927%" y="639.50"></text></g><g><title>yyparse (413 samples, 0.03%)</title><rect x="11.6427%" y="613" width="0.0268%" height="15" fill="rgb(213,158,28)" fg:x="179164" fg:w="413"/><text x="11.8927%" y="623.50"></text></g><g><title>__libc_start_main (1,632 samples, 0.11%)</title><rect x="11.5638%" y="693" width="0.1061%" height="15" fill="rgb(252,51,52)" fg:x="177949" fg:w="1632"/><text x="11.8138%" y="703.50"></text></g><g><title>main (1,632 samples, 0.11%)</title><rect x="11.5638%" y="677" width="0.1061%" height="15" fill="rgb(246,89,16)" fg:x="177949" fg:w="1632"/><text x="11.8138%" y="687.50"></text></g><g><title>_start (1,646 samples, 0.11%)</title><rect x="11.5638%" y="709" width="0.1070%" height="15" fill="rgb(216,158,49)" fg:x="177949" fg:w="1646"/><text x="11.8138%" y="719.50"></text></g><g><title>libtool (2,224 samples, 0.14%)</title><rect x="11.5327%" y="725" width="0.1445%" height="15" fill="rgb(236,107,19)" fg:x="177470" fg:w="2224"/><text x="11.7827%" y="735.50"></text></g><g><title>CreateTarget (167 samples, 0.01%)</title><rect x="11.6926%" y="677" width="0.0109%" height="15" fill="rgb(228,185,30)" fg:x="179931" fg:w="167"/><text x="11.9426%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (247 samples, 0.02%)</title><rect x="11.7186%" y="549" width="0.0161%" height="15" fill="rgb(246,134,8)" fg:x="180332" fg:w="247"/><text x="11.9686%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (246 samples, 0.02%)</title><rect x="11.7187%" y="533" width="0.0160%" height="15" fill="rgb(214,143,50)" fg:x="180333" fg:w="246"/><text x="11.9687%" y="543.50"></text></g><g><title>native_write_msr (246 samples, 0.02%)</title><rect x="11.7187%" y="517" width="0.0160%" height="15" fill="rgb(228,75,8)" fg:x="180333" fg:w="246"/><text x="11.9687%" y="527.50"></text></g><g><title>finish_task_switch (266 samples, 0.02%)</title><rect x="11.7182%" y="565" width="0.0173%" height="15" fill="rgb(207,175,4)" fg:x="180325" fg:w="266"/><text x="11.9682%" y="575.50"></text></g><g><title>schedule (271 samples, 0.02%)</title><rect x="11.7179%" y="597" width="0.0176%" height="15" fill="rgb(205,108,24)" fg:x="180321" fg:w="271"/><text x="11.9679%" y="607.50"></text></g><g><title>__schedule (270 samples, 0.02%)</title><rect x="11.7180%" y="581" width="0.0175%" height="15" fill="rgb(244,120,49)" fg:x="180322" fg:w="270"/><text x="11.9680%" y="591.50"></text></g><g><title>__GI___wait4 (316 samples, 0.02%)</title><rect x="11.7175%" y="677" width="0.0205%" height="15" fill="rgb(223,47,38)" fg:x="180315" fg:w="316"/><text x="11.9675%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (316 samples, 0.02%)</title><rect x="11.7175%" y="661" width="0.0205%" height="15" fill="rgb(229,179,11)" fg:x="180315" fg:w="316"/><text x="11.9675%" y="671.50"></text></g><g><title>do_syscall_64 (316 samples, 0.02%)</title><rect x="11.7175%" y="645" width="0.0205%" height="15" fill="rgb(231,122,1)" fg:x="180315" fg:w="316"/><text x="11.9675%" y="655.50"></text></g><g><title>kernel_wait4 (315 samples, 0.02%)</title><rect x="11.7176%" y="629" width="0.0205%" height="15" fill="rgb(245,119,9)" fg:x="180316" fg:w="315"/><text x="11.9676%" y="639.50"></text></g><g><title>do_wait (315 samples, 0.02%)</title><rect x="11.7176%" y="613" width="0.0205%" height="15" fill="rgb(241,163,25)" fg:x="180316" fg:w="315"/><text x="11.9676%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (293 samples, 0.02%)</title><rect x="11.7565%" y="597" width="0.0190%" height="15" fill="rgb(217,214,3)" fg:x="180914" fg:w="293"/><text x="12.0065%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (291 samples, 0.02%)</title><rect x="11.7566%" y="581" width="0.0189%" height="15" fill="rgb(240,86,28)" fg:x="180916" fg:w="291"/><text x="12.0066%" y="591.50"></text></g><g><title>native_write_msr (289 samples, 0.02%)</title><rect x="11.7567%" y="565" width="0.0188%" height="15" fill="rgb(215,47,9)" fg:x="180918" fg:w="289"/><text x="12.0067%" y="575.50"></text></g><g><title>arch_fork (445 samples, 0.03%)</title><rect x="11.7470%" y="661" width="0.0289%" height="15" fill="rgb(252,25,45)" fg:x="180769" fg:w="445"/><text x="11.9970%" y="671.50"></text></g><g><title>ret_from_fork (345 samples, 0.02%)</title><rect x="11.7535%" y="645" width="0.0224%" height="15" fill="rgb(251,164,9)" fg:x="180869" fg:w="345"/><text x="12.0035%" y="655.50"></text></g><g><title>schedule_tail (344 samples, 0.02%)</title><rect x="11.7536%" y="629" width="0.0224%" height="15" fill="rgb(233,194,0)" fg:x="180870" fg:w="344"/><text x="12.0036%" y="639.50"></text></g><g><title>finish_task_switch (304 samples, 0.02%)</title><rect x="11.7562%" y="613" width="0.0198%" height="15" fill="rgb(249,111,24)" fg:x="180910" fg:w="304"/><text x="12.0062%" y="623.50"></text></g><g><title>__libc_fork (466 samples, 0.03%)</title><rect x="11.7463%" y="677" width="0.0303%" height="15" fill="rgb(250,223,3)" fg:x="180758" fg:w="466"/><text x="11.9963%" y="687.50"></text></g><g><title>Pid1Main (1,701 samples, 0.11%)</title><rect x="11.6891%" y="693" width="0.1105%" height="15" fill="rgb(236,178,37)" fg:x="179877" fg:w="1701"/><text x="11.9391%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (349 samples, 0.02%)</title><rect x="11.8028%" y="645" width="0.0227%" height="15" fill="rgb(241,158,50)" fg:x="181627" fg:w="349"/><text x="12.0528%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (346 samples, 0.02%)</title><rect x="11.8030%" y="629" width="0.0225%" height="15" fill="rgb(213,121,41)" fg:x="181630" fg:w="346"/><text x="12.0530%" y="639.50"></text></g><g><title>native_write_msr (344 samples, 0.02%)</title><rect x="11.8031%" y="613" width="0.0224%" height="15" fill="rgb(240,92,3)" fg:x="181632" fg:w="344"/><text x="12.0531%" y="623.50"></text></g><g><title>schedule_tail (364 samples, 0.02%)</title><rect x="11.8025%" y="677" width="0.0237%" height="15" fill="rgb(205,123,3)" fg:x="181622" fg:w="364"/><text x="12.0525%" y="687.50"></text></g><g><title>finish_task_switch (364 samples, 0.02%)</title><rect x="11.8025%" y="661" width="0.0237%" height="15" fill="rgb(205,97,47)" fg:x="181622" fg:w="364"/><text x="12.0525%" y="671.50"></text></g><g><title>__GI___clone (2,117 samples, 0.14%)</title><rect x="11.6889%" y="709" width="0.1376%" height="15" fill="rgb(247,152,14)" fg:x="179874" fg:w="2117"/><text x="11.9389%" y="719.50"></text></g><g><title>ret_from_fork (380 samples, 0.02%)</title><rect x="11.8018%" y="693" width="0.0247%" height="15" fill="rgb(248,195,53)" fg:x="181611" fg:w="380"/><text x="12.0518%" y="703.50"></text></g><g><title>[libc-2.31.so] (168 samples, 0.01%)</title><rect x="11.8378%" y="661" width="0.0109%" height="15" fill="rgb(226,201,16)" fg:x="182165" fg:w="168"/><text x="12.0878%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (300 samples, 0.02%)</title><rect x="11.8500%" y="517" width="0.0195%" height="15" fill="rgb(205,98,0)" fg:x="182354" fg:w="300"/><text x="12.1000%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (294 samples, 0.02%)</title><rect x="11.8504%" y="501" width="0.0191%" height="15" fill="rgb(214,191,48)" fg:x="182360" fg:w="294"/><text x="12.1004%" y="511.50"></text></g><g><title>native_write_msr (292 samples, 0.02%)</title><rect x="11.8506%" y="485" width="0.0190%" height="15" fill="rgb(237,112,39)" fg:x="182362" fg:w="292"/><text x="12.1006%" y="495.50"></text></g><g><title>finish_task_switch (325 samples, 0.02%)</title><rect x="11.8496%" y="533" width="0.0211%" height="15" fill="rgb(247,203,27)" fg:x="182347" fg:w="325"/><text x="12.0996%" y="543.50"></text></g><g><title>schedule (331 samples, 0.02%)</title><rect x="11.8495%" y="565" width="0.0215%" height="15" fill="rgb(235,124,28)" fg:x="182345" fg:w="331"/><text x="12.0995%" y="575.50"></text></g><g><title>__schedule (331 samples, 0.02%)</title><rect x="11.8495%" y="549" width="0.0215%" height="15" fill="rgb(208,207,46)" fg:x="182345" fg:w="331"/><text x="12.0995%" y="559.50"></text></g><g><title>do_syscall_64 (379 samples, 0.02%)</title><rect x="11.8492%" y="629" width="0.0246%" height="15" fill="rgb(234,176,4)" fg:x="182341" fg:w="379"/><text x="12.0992%" y="639.50"></text></g><g><title>__do_sys_wait4 (379 samples, 0.02%)</title><rect x="11.8492%" y="613" width="0.0246%" height="15" fill="rgb(230,133,28)" fg:x="182341" fg:w="379"/><text x="12.0992%" y="623.50"></text></g><g><title>kernel_wait4 (379 samples, 0.02%)</title><rect x="11.8492%" y="597" width="0.0246%" height="15" fill="rgb(211,137,40)" fg:x="182341" fg:w="379"/><text x="12.0992%" y="607.50"></text></g><g><title>do_wait (379 samples, 0.02%)</title><rect x="11.8492%" y="581" width="0.0246%" height="15" fill="rgb(254,35,13)" fg:x="182341" fg:w="379"/><text x="12.0992%" y="591.50"></text></g><g><title>__GI___wait4 (382 samples, 0.02%)</title><rect x="11.8491%" y="661" width="0.0248%" height="15" fill="rgb(225,49,51)" fg:x="182339" fg:w="382"/><text x="12.0991%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (380 samples, 0.02%)</title><rect x="11.8492%" y="645" width="0.0247%" height="15" fill="rgb(251,10,15)" fg:x="182341" fg:w="380"/><text x="12.0992%" y="655.50"></text></g><g><title>__libc_start_main (847 samples, 0.06%)</title><rect x="11.8311%" y="693" width="0.0550%" height="15" fill="rgb(228,207,15)" fg:x="182062" fg:w="847"/><text x="12.0811%" y="703.50"></text></g><g><title>main (767 samples, 0.05%)</title><rect x="11.8363%" y="677" width="0.0498%" height="15" fill="rgb(241,99,19)" fg:x="182142" fg:w="767"/><text x="12.0863%" y="687.50"></text></g><g><title>_dl_catch_exception (157 samples, 0.01%)</title><rect x="11.8873%" y="613" width="0.0102%" height="15" fill="rgb(207,104,49)" fg:x="182928" fg:w="157"/><text x="12.1373%" y="623.50"></text></g><g><title>openaux (157 samples, 0.01%)</title><rect x="11.8873%" y="597" width="0.0102%" height="15" fill="rgb(234,99,18)" fg:x="182928" fg:w="157"/><text x="12.1373%" y="607.50"></text></g><g><title>_dl_map_object (157 samples, 0.01%)</title><rect x="11.8873%" y="581" width="0.0102%" height="15" fill="rgb(213,191,49)" fg:x="182928" fg:w="157"/><text x="12.1373%" y="591.50"></text></g><g><title>_dl_map_object_deps (165 samples, 0.01%)</title><rect x="11.8871%" y="629" width="0.0107%" height="15" fill="rgb(210,226,19)" fg:x="182925" fg:w="165"/><text x="12.1371%" y="639.50"></text></g><g><title>_dl_lookup_symbol_x (305 samples, 0.02%)</title><rect x="11.9059%" y="581" width="0.0198%" height="15" fill="rgb(229,97,18)" fg:x="183213" fg:w="305"/><text x="12.1559%" y="591.50"></text></g><g><title>do_lookup_x (194 samples, 0.01%)</title><rect x="11.9131%" y="565" width="0.0126%" height="15" fill="rgb(211,167,15)" fg:x="183324" fg:w="194"/><text x="12.1631%" y="575.50"></text></g><g><title>elf_machine_rela (361 samples, 0.02%)</title><rect x="11.9024%" y="597" width="0.0235%" height="15" fill="rgb(210,169,34)" fg:x="183159" fg:w="361"/><text x="12.1524%" y="607.50"></text></g><g><title>elf_dynamic_do_Rela (414 samples, 0.03%)</title><rect x="11.8999%" y="613" width="0.0269%" height="15" fill="rgb(241,121,31)" fg:x="183121" fg:w="414"/><text x="12.1499%" y="623.50"></text></g><g><title>_dl_relocate_object (440 samples, 0.03%)</title><rect x="11.8984%" y="629" width="0.0286%" height="15" fill="rgb(232,40,11)" fg:x="183098" fg:w="440"/><text x="12.1484%" y="639.50"></text></g><g><title>[ld-2.31.so] (644 samples, 0.04%)</title><rect x="11.8862%" y="645" width="0.0418%" height="15" fill="rgb(205,86,26)" fg:x="182910" fg:w="644"/><text x="12.1362%" y="655.50"></text></g><g><title>_dl_start_final (651 samples, 0.04%)</title><rect x="11.8862%" y="677" width="0.0423%" height="15" fill="rgb(231,126,28)" fg:x="182910" fg:w="651"/><text x="12.1362%" y="687.50"></text></g><g><title>_dl_sysdep_start (651 samples, 0.04%)</title><rect x="11.8862%" y="661" width="0.0423%" height="15" fill="rgb(219,221,18)" fg:x="182910" fg:w="651"/><text x="12.1362%" y="671.50"></text></g><g><title>_dl_start (655 samples, 0.04%)</title><rect x="11.8862%" y="693" width="0.0426%" height="15" fill="rgb(211,40,0)" fg:x="182910" fg:w="655"/><text x="12.1362%" y="703.50"></text></g><g><title>_start (1,507 samples, 0.10%)</title><rect x="11.8309%" y="709" width="0.0979%" height="15" fill="rgb(239,85,43)" fg:x="182060" fg:w="1507"/><text x="12.0809%" y="719.50"></text></g><g><title>__x64_sys_exit (334 samples, 0.02%)</title><rect x="11.9453%" y="677" width="0.0217%" height="15" fill="rgb(231,55,21)" fg:x="183820" fg:w="334"/><text x="12.1953%" y="687.50"></text></g><g><title>do_exit (334 samples, 0.02%)</title><rect x="11.9453%" y="661" width="0.0217%" height="15" fill="rgb(225,184,43)" fg:x="183820" fg:w="334"/><text x="12.1953%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (534 samples, 0.03%)</title><rect x="11.9386%" y="709" width="0.0347%" height="15" fill="rgb(251,158,41)" fg:x="183717" fg:w="534"/><text x="12.1886%" y="719.50"></text></g><g><title>do_syscall_64 (533 samples, 0.03%)</title><rect x="11.9387%" y="693" width="0.0346%" height="15" fill="rgb(234,159,37)" fg:x="183718" fg:w="533"/><text x="12.1887%" y="703.50"></text></g><g><title>linux-sandbox (4,561 samples, 0.30%)</title><rect x="11.6772%" y="725" width="0.2964%" height="15" fill="rgb(216,204,22)" fg:x="179694" fg:w="4561"/><text x="11.9272%" y="735.50"></text></g><g><title>__libc_start_main (212 samples, 0.01%)</title><rect x="11.9744%" y="693" width="0.0138%" height="15" fill="rgb(214,17,3)" fg:x="184268" fg:w="212"/><text x="12.2244%" y="703.50"></text></g><g><title>main (210 samples, 0.01%)</title><rect x="11.9745%" y="677" width="0.0136%" height="15" fill="rgb(212,111,17)" fg:x="184270" fg:w="210"/><text x="12.2245%" y="687.50"></text></g><g><title>_start (260 samples, 0.02%)</title><rect x="11.9744%" y="709" width="0.0169%" height="15" fill="rgb(221,157,24)" fg:x="184268" fg:w="260"/><text x="12.2244%" y="719.50"></text></g><g><title>process-wrapper (292 samples, 0.02%)</title><rect x="11.9740%" y="725" width="0.0190%" height="15" fill="rgb(252,16,13)" fg:x="184261" fg:w="292"/><text x="12.2240%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (252 samples, 0.02%)</title><rect x="12.0070%" y="549" width="0.0164%" height="15" fill="rgb(221,62,2)" fg:x="184770" fg:w="252"/><text x="12.2570%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (249 samples, 0.02%)</title><rect x="12.0072%" y="533" width="0.0162%" height="15" fill="rgb(247,87,22)" fg:x="184773" fg:w="249"/><text x="12.2572%" y="543.50"></text></g><g><title>native_write_msr (246 samples, 0.02%)</title><rect x="12.0074%" y="517" width="0.0160%" height="15" fill="rgb(215,73,9)" fg:x="184776" fg:w="246"/><text x="12.2574%" y="527.50"></text></g><g><title>finish_task_switch (276 samples, 0.02%)</title><rect x="12.0068%" y="565" width="0.0179%" height="15" fill="rgb(207,175,33)" fg:x="184766" fg:w="276"/><text x="12.2568%" y="575.50"></text></g><g><title>schedule (279 samples, 0.02%)</title><rect x="12.0068%" y="597" width="0.0181%" height="15" fill="rgb(243,129,54)" fg:x="184766" fg:w="279"/><text x="12.2568%" y="607.50"></text></g><g><title>__schedule (279 samples, 0.02%)</title><rect x="12.0068%" y="581" width="0.0181%" height="15" fill="rgb(227,119,45)" fg:x="184766" fg:w="279"/><text x="12.2568%" y="591.50"></text></g><g><title>do_wait (403 samples, 0.03%)</title><rect x="12.0016%" y="613" width="0.0262%" height="15" fill="rgb(205,109,36)" fg:x="184687" fg:w="403"/><text x="12.2516%" y="623.50"></text></g><g><title>do_syscall_64 (404 samples, 0.03%)</title><rect x="12.0016%" y="645" width="0.0263%" height="15" fill="rgb(205,6,39)" fg:x="184687" fg:w="404"/><text x="12.2516%" y="655.50"></text></g><g><title>kernel_wait4 (404 samples, 0.03%)</title><rect x="12.0016%" y="629" width="0.0263%" height="15" fill="rgb(221,32,16)" fg:x="184687" fg:w="404"/><text x="12.2516%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (405 samples, 0.03%)</title><rect x="12.0016%" y="661" width="0.0263%" height="15" fill="rgb(228,144,50)" fg:x="184687" fg:w="405"/><text x="12.2516%" y="671.50"></text></g><g><title>__GI___wait4 (407 samples, 0.03%)</title><rect x="12.0016%" y="677" width="0.0264%" height="15" fill="rgb(229,201,53)" fg:x="184686" fg:w="407"/><text x="12.2516%" y="687.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (408 samples, 0.03%)</title><rect x="12.0016%" y="693" width="0.0265%" height="15" fill="rgb(249,153,27)" fg:x="184686" fg:w="408"/><text x="12.2516%" y="703.50"></text></g><g><title>[perf-934749.map] (665 samples, 0.04%)</title><rect x="11.9932%" y="709" width="0.0432%" height="15" fill="rgb(227,106,25)" fg:x="184557" fg:w="665"/><text x="12.2432%" y="719.50"></text></g><g><title>process_reaper (671 samples, 0.04%)</title><rect x="11.9929%" y="725" width="0.0436%" height="15" fill="rgb(230,65,29)" fg:x="184553" fg:w="671"/><text x="12.2429%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (440 samples, 0.03%)</title><rect x="12.0706%" y="469" width="0.0286%" height="15" fill="rgb(221,57,46)" fg:x="185748" fg:w="440"/><text x="12.3206%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (436 samples, 0.03%)</title><rect x="12.0709%" y="453" width="0.0283%" height="15" fill="rgb(229,161,17)" fg:x="185752" fg:w="436"/><text x="12.3209%" y="463.50"></text></g><g><title>native_write_msr (435 samples, 0.03%)</title><rect x="12.0709%" y="437" width="0.0283%" height="15" fill="rgb(222,213,11)" fg:x="185753" fg:w="435"/><text x="12.3209%" y="447.50"></text></g><g><title>finish_task_switch (472 samples, 0.03%)</title><rect x="12.0698%" y="485" width="0.0307%" height="15" fill="rgb(235,35,13)" fg:x="185735" fg:w="472"/><text x="12.3198%" y="495.50"></text></g><g><title>futex_wait_queue_me (516 samples, 0.03%)</title><rect x="12.0679%" y="533" width="0.0335%" height="15" fill="rgb(233,158,34)" fg:x="185706" fg:w="516"/><text x="12.3179%" y="543.50"></text></g><g><title>schedule (512 samples, 0.03%)</title><rect x="12.0681%" y="517" width="0.0333%" height="15" fill="rgb(215,151,48)" fg:x="185710" fg:w="512"/><text x="12.3181%" y="527.50"></text></g><g><title>__schedule (510 samples, 0.03%)</title><rect x="12.0683%" y="501" width="0.0331%" height="15" fill="rgb(229,84,14)" fg:x="185712" fg:w="510"/><text x="12.3183%" y="511.50"></text></g><g><title>do_syscall_64 (536 samples, 0.03%)</title><rect x="12.0670%" y="597" width="0.0348%" height="15" fill="rgb(229,68,14)" fg:x="185692" fg:w="536"/><text x="12.3170%" y="607.50"></text></g><g><title>__x64_sys_futex (534 samples, 0.03%)</title><rect x="12.0671%" y="581" width="0.0347%" height="15" fill="rgb(243,106,26)" fg:x="185694" fg:w="534"/><text x="12.3171%" y="591.50"></text></g><g><title>do_futex (532 samples, 0.03%)</title><rect x="12.0672%" y="565" width="0.0346%" height="15" fill="rgb(206,45,38)" fg:x="185696" fg:w="532"/><text x="12.3172%" y="575.50"></text></g><g><title>futex_wait (526 samples, 0.03%)</title><rect x="12.0676%" y="549" width="0.0342%" height="15" fill="rgb(226,6,15)" fg:x="185702" fg:w="526"/><text x="12.3176%" y="559.50"></text></g><g><title>__pthread_cond_wait (551 samples, 0.04%)</title><rect x="12.0664%" y="661" width="0.0358%" height="15" fill="rgb(232,22,54)" fg:x="185684" fg:w="551"/><text x="12.3164%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (551 samples, 0.04%)</title><rect x="12.0664%" y="645" width="0.0358%" height="15" fill="rgb(229,222,32)" fg:x="185684" fg:w="551"/><text x="12.3164%" y="655.50"></text></g><g><title>futex_wait_cancelable (544 samples, 0.04%)</title><rect x="12.0669%" y="629" width="0.0354%" height="15" fill="rgb(228,62,29)" fg:x="185691" fg:w="544"/><text x="12.3169%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (543 samples, 0.04%)</title><rect x="12.0670%" y="613" width="0.0353%" height="15" fill="rgb(251,103,34)" fg:x="185692" fg:w="543"/><text x="12.3170%" y="623.50"></text></g><g><title>Unsafe_Park (591 samples, 0.04%)</title><rect x="12.0649%" y="693" width="0.0384%" height="15" fill="rgb(233,12,30)" fg:x="185660" fg:w="591"/><text x="12.3149%" y="703.50"></text></g><g><title>Parker::park (585 samples, 0.04%)</title><rect x="12.0653%" y="677" width="0.0380%" height="15" fill="rgb(238,52,0)" fg:x="185666" fg:w="585"/><text x="12.3153%" y="687.50"></text></g><g><title>[perf-934749.map] (1,014 samples, 0.07%)</title><rect x="12.0378%" y="709" width="0.0659%" height="15" fill="rgb(223,98,5)" fg:x="185244" fg:w="1014"/><text x="12.2878%" y="719.50"></text></g><g><title>profile-writer- (1,050 samples, 0.07%)</title><rect x="12.0365%" y="725" width="0.0682%" height="15" fill="rgb(228,75,37)" fg:x="185224" fg:w="1050"/><text x="12.2865%" y="735.50"></text></g><g><title>[unknown] (305 samples, 0.02%)</title><rect x="12.1074%" y="709" width="0.0198%" height="15" fill="rgb(205,115,49)" fg:x="186314" fg:w="305"/><text x="12.3574%" y="719.50"></text></g><g><title>_start (159 samples, 0.01%)</title><rect x="12.1272%" y="709" width="0.0103%" height="15" fill="rgb(250,154,43)" fg:x="186619" fg:w="159"/><text x="12.3772%" y="719.50"></text></g><g><title>python3 (513 samples, 0.03%)</title><rect x="12.1050%" y="725" width="0.0333%" height="15" fill="rgb(226,43,29)" fg:x="186277" fg:w="513"/><text x="12.3550%" y="735.50"></text></g><g><title>[sed] (220 samples, 0.01%)</title><rect x="12.1599%" y="597" width="0.0143%" height="15" fill="rgb(249,228,39)" fg:x="187122" fg:w="220"/><text x="12.4099%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (567 samples, 0.04%)</title><rect x="12.1792%" y="405" width="0.0368%" height="15" fill="rgb(216,79,43)" fg:x="187420" fg:w="567"/><text x="12.4292%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (563 samples, 0.04%)</title><rect x="12.1795%" y="389" width="0.0366%" height="15" fill="rgb(228,95,12)" fg:x="187424" fg:w="563"/><text x="12.4295%" y="399.50"></text></g><g><title>native_write_msr (559 samples, 0.04%)</title><rect x="12.1798%" y="373" width="0.0363%" height="15" fill="rgb(249,221,15)" fg:x="187428" fg:w="559"/><text x="12.4298%" y="383.50"></text></g><g><title>finish_task_switch (610 samples, 0.04%)</title><rect x="12.1781%" y="421" width="0.0396%" height="15" fill="rgb(233,34,13)" fg:x="187403" fg:w="610"/><text x="12.4281%" y="431.50"></text></g><g><title>schedule (616 samples, 0.04%)</title><rect x="12.1779%" y="453" width="0.0400%" height="15" fill="rgb(214,103,39)" fg:x="187399" fg:w="616"/><text x="12.4279%" y="463.50"></text></g><g><title>__schedule (616 samples, 0.04%)</title><rect x="12.1779%" y="437" width="0.0400%" height="15" fill="rgb(251,126,39)" fg:x="187399" fg:w="616"/><text x="12.4279%" y="447.50"></text></g><g><title>new_sync_read (654 samples, 0.04%)</title><rect x="12.1757%" y="485" width="0.0425%" height="15" fill="rgb(214,216,36)" fg:x="187366" fg:w="654"/><text x="12.4257%" y="495.50"></text></g><g><title>pipe_read (653 samples, 0.04%)</title><rect x="12.1758%" y="469" width="0.0424%" height="15" fill="rgb(220,221,8)" fg:x="187367" fg:w="653"/><text x="12.4258%" y="479.50"></text></g><g><title>do_syscall_64 (660 samples, 0.04%)</title><rect x="12.1754%" y="533" width="0.0429%" height="15" fill="rgb(240,216,3)" fg:x="187361" fg:w="660"/><text x="12.4254%" y="543.50"></text></g><g><title>ksys_read (659 samples, 0.04%)</title><rect x="12.1755%" y="517" width="0.0428%" height="15" fill="rgb(232,218,17)" fg:x="187362" fg:w="659"/><text x="12.4255%" y="527.50"></text></g><g><title>vfs_read (658 samples, 0.04%)</title><rect x="12.1755%" y="501" width="0.0428%" height="15" fill="rgb(229,163,45)" fg:x="187363" fg:w="658"/><text x="12.4255%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (662 samples, 0.04%)</title><rect x="12.1754%" y="549" width="0.0430%" height="15" fill="rgb(231,110,42)" fg:x="187361" fg:w="662"/><text x="12.4254%" y="559.50"></text></g><g><title>_IO_new_file_underflow (679 samples, 0.04%)</title><rect x="12.1744%" y="581" width="0.0441%" height="15" fill="rgb(208,170,48)" fg:x="187345" fg:w="679"/><text x="12.4244%" y="591.50"></text></g><g><title>__GI___libc_read (664 samples, 0.04%)</title><rect x="12.1753%" y="565" width="0.0431%" height="15" fill="rgb(239,116,25)" fg:x="187360" fg:w="664"/><text x="12.4253%" y="575.50"></text></g><g><title>_IO_getdelim (684 samples, 0.04%)</title><rect x="12.1742%" y="597" width="0.0444%" height="15" fill="rgb(219,200,50)" fg:x="187342" fg:w="684"/><text x="12.4242%" y="607.50"></text></g><g><title>[sed] (1,010 samples, 0.07%)</title><rect x="12.1595%" y="613" width="0.0656%" height="15" fill="rgb(245,200,0)" fg:x="187116" fg:w="1010"/><text x="12.4095%" y="623.50"></text></g><g><title>[sed] (1,068 samples, 0.07%)</title><rect x="12.1570%" y="629" width="0.0694%" height="15" fill="rgb(245,119,33)" fg:x="187077" fg:w="1068"/><text x="12.4070%" y="639.50"></text></g><g><title>[sed] (1,268 samples, 0.08%)</title><rect x="12.1554%" y="645" width="0.0824%" height="15" fill="rgb(231,125,12)" fg:x="187053" fg:w="1268"/><text x="12.4054%" y="655.50"></text></g><g><title>[sed] (1,322 samples, 0.09%)</title><rect x="12.1544%" y="661" width="0.0859%" height="15" fill="rgb(216,96,41)" fg:x="187038" fg:w="1322"/><text x="12.4044%" y="671.50"></text></g><g><title>[sed] (1,452 samples, 0.09%)</title><rect x="12.1544%" y="677" width="0.0944%" height="15" fill="rgb(248,43,45)" fg:x="187038" fg:w="1452"/><text x="12.4044%" y="687.50"></text></g><g><title>__libc_start_main (1,580 samples, 0.10%)</title><rect x="12.1542%" y="693" width="0.1027%" height="15" fill="rgb(217,222,7)" fg:x="187035" fg:w="1580"/><text x="12.4042%" y="703.50"></text></g><g><title>[sed] (1,628 samples, 0.11%)</title><rect x="12.1537%" y="709" width="0.1058%" height="15" fill="rgb(233,28,6)" fg:x="187027" fg:w="1628"/><text x="12.4037%" y="719.50"></text></g><g><title>_IO_getdelim (158 samples, 0.01%)</title><rect x="12.2772%" y="613" width="0.0103%" height="15" fill="rgb(231,218,15)" fg:x="188927" fg:w="158"/><text x="12.5272%" y="623.50"></text></g><g><title>determine_info (289 samples, 0.02%)</title><rect x="12.3007%" y="533" width="0.0188%" height="15" fill="rgb(226,171,48)" fg:x="189289" fg:w="289"/><text x="12.5507%" y="543.50"></text></g><g><title>__GI__dl_addr (318 samples, 0.02%)</title><rect x="12.2989%" y="549" width="0.0207%" height="15" fill="rgb(235,201,9)" fg:x="189261" fg:w="318"/><text x="12.5489%" y="559.50"></text></g><g><title>__fopen_internal (454 samples, 0.03%)</title><rect x="12.2909%" y="613" width="0.0295%" height="15" fill="rgb(217,80,15)" fg:x="189138" fg:w="454"/><text x="12.5409%" y="623.50"></text></g><g><title>malloc_hook_ini (337 samples, 0.02%)</title><rect x="12.2985%" y="597" width="0.0219%" height="15" fill="rgb(219,152,8)" fg:x="189255" fg:w="337"/><text x="12.5485%" y="607.50"></text></g><g><title>ptmalloc_init (336 samples, 0.02%)</title><rect x="12.2986%" y="581" width="0.0218%" height="15" fill="rgb(243,107,38)" fg:x="189256" fg:w="336"/><text x="12.5486%" y="591.50"></text></g><g><title>ptmalloc_init (336 samples, 0.02%)</title><rect x="12.2986%" y="565" width="0.0218%" height="15" fill="rgb(231,17,5)" fg:x="189256" fg:w="336"/><text x="12.5486%" y="575.50"></text></g><g><title>[libselinux.so.1] (803 samples, 0.05%)</title><rect x="12.2689%" y="645" width="0.0522%" height="15" fill="rgb(209,25,54)" fg:x="188799" fg:w="803"/><text x="12.5189%" y="655.50"></text></g><g><title>selinuxfs_exists (678 samples, 0.04%)</title><rect x="12.2770%" y="629" width="0.0441%" height="15" fill="rgb(219,0,2)" fg:x="188924" fg:w="678"/><text x="12.5270%" y="639.50"></text></g><g><title>_dl_start_user (907 samples, 0.06%)</title><rect x="12.2685%" y="709" width="0.0589%" height="15" fill="rgb(246,9,5)" fg:x="188794" fg:w="907"/><text x="12.5185%" y="719.50"></text></g><g><title>_dl_init (906 samples, 0.06%)</title><rect x="12.2686%" y="693" width="0.0589%" height="15" fill="rgb(226,159,4)" fg:x="188795" fg:w="906"/><text x="12.5186%" y="703.50"></text></g><g><title>call_init (906 samples, 0.06%)</title><rect x="12.2686%" y="677" width="0.0589%" height="15" fill="rgb(219,175,34)" fg:x="188795" fg:w="906"/><text x="12.5186%" y="687.50"></text></g><g><title>call_init (903 samples, 0.06%)</title><rect x="12.2688%" y="661" width="0.0587%" height="15" fill="rgb(236,10,46)" fg:x="188798" fg:w="903"/><text x="12.5188%" y="671.50"></text></g><g><title>__vma_adjust (231 samples, 0.02%)</title><rect x="12.3693%" y="373" width="0.0150%" height="15" fill="rgb(240,211,16)" fg:x="190344" fg:w="231"/><text x="12.6193%" y="383.50"></text></g><g><title>__split_vma (317 samples, 0.02%)</title><rect x="12.3687%" y="389" width="0.0206%" height="15" fill="rgb(205,3,43)" fg:x="190336" fg:w="317"/><text x="12.6187%" y="399.50"></text></g><g><title>__do_munmap (518 samples, 0.03%)</title><rect x="12.3676%" y="405" width="0.0337%" height="15" fill="rgb(245,7,22)" fg:x="190319" fg:w="518"/><text x="12.6176%" y="415.50"></text></g><g><title>perf_event_mmap (209 samples, 0.01%)</title><rect x="12.4021%" y="405" width="0.0136%" height="15" fill="rgb(239,132,32)" fg:x="190850" fg:w="209"/><text x="12.6521%" y="415.50"></text></g><g><title>mmap_region (958 samples, 0.06%)</title><rect x="12.3659%" y="421" width="0.0623%" height="15" fill="rgb(228,202,34)" fg:x="190292" fg:w="958"/><text x="12.6159%" y="431.50"></text></g><g><title>do_mmap (985 samples, 0.06%)</title><rect x="12.3642%" y="437" width="0.0640%" height="15" fill="rgb(254,200,22)" fg:x="190266" fg:w="985"/><text x="12.6142%" y="447.50"></text></g><g><title>ksys_mmap_pgoff (1,025 samples, 0.07%)</title><rect x="12.3633%" y="469" width="0.0666%" height="15" fill="rgb(219,10,39)" fg:x="190252" fg:w="1025"/><text x="12.6133%" y="479.50"></text></g><g><title>vm_mmap_pgoff (1,014 samples, 0.07%)</title><rect x="12.3640%" y="453" width="0.0659%" height="15" fill="rgb(226,210,39)" fg:x="190263" fg:w="1014"/><text x="12.6140%" y="463.50"></text></g><g><title>do_syscall_64 (1,109 samples, 0.07%)</title><rect x="12.3630%" y="485" width="0.0721%" height="15" fill="rgb(208,219,16)" fg:x="190248" fg:w="1109"/><text x="12.6130%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,127 samples, 0.07%)</title><rect x="12.3628%" y="501" width="0.0732%" height="15" fill="rgb(216,158,51)" fg:x="190245" fg:w="1127"/><text x="12.6128%" y="511.50"></text></g><g><title>__mmap64 (1,146 samples, 0.07%)</title><rect x="12.3619%" y="533" width="0.0745%" height="15" fill="rgb(233,14,44)" fg:x="190230" fg:w="1146"/><text x="12.6119%" y="543.50"></text></g><g><title>__mmap64 (1,146 samples, 0.07%)</title><rect x="12.3619%" y="517" width="0.0745%" height="15" fill="rgb(237,97,39)" fg:x="190230" fg:w="1146"/><text x="12.6119%" y="527.50"></text></g><g><title>_dl_map_segments (1,282 samples, 0.08%)</title><rect x="12.3532%" y="549" width="0.0833%" height="15" fill="rgb(218,198,43)" fg:x="190097" fg:w="1282"/><text x="12.6032%" y="559.50"></text></g><g><title>elf_get_dynamic_info (184 samples, 0.01%)</title><rect x="12.4470%" y="549" width="0.0120%" height="15" fill="rgb(231,104,20)" fg:x="191541" fg:w="184"/><text x="12.6970%" y="559.50"></text></g><g><title>_dl_map_object_from_fd (1,703 samples, 0.11%)</title><rect x="12.3484%" y="565" width="0.1107%" height="15" fill="rgb(254,36,13)" fg:x="190023" fg:w="1703"/><text x="12.5984%" y="575.50"></text></g><g><title>do_filp_open (190 samples, 0.01%)</title><rect x="12.4680%" y="453" width="0.0123%" height="15" fill="rgb(248,14,50)" fg:x="191863" fg:w="190"/><text x="12.7180%" y="463.50"></text></g><g><title>path_openat (184 samples, 0.01%)</title><rect x="12.4684%" y="437" width="0.0120%" height="15" fill="rgb(217,107,29)" fg:x="191869" fg:w="184"/><text x="12.7184%" y="447.50"></text></g><g><title>do_syscall_64 (239 samples, 0.02%)</title><rect x="12.4670%" y="501" width="0.0155%" height="15" fill="rgb(251,169,33)" fg:x="191848" fg:w="239"/><text x="12.7170%" y="511.50"></text></g><g><title>__x64_sys_openat (238 samples, 0.02%)</title><rect x="12.4671%" y="485" width="0.0155%" height="15" fill="rgb(217,108,32)" fg:x="191849" fg:w="238"/><text x="12.7171%" y="495.50"></text></g><g><title>do_sys_openat2 (238 samples, 0.02%)</title><rect x="12.4671%" y="469" width="0.0155%" height="15" fill="rgb(219,66,42)" fg:x="191849" fg:w="238"/><text x="12.7171%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (250 samples, 0.02%)</title><rect x="12.4670%" y="517" width="0.0162%" height="15" fill="rgb(206,180,7)" fg:x="191848" fg:w="250"/><text x="12.7170%" y="527.50"></text></g><g><title>__GI___open64_nocancel (262 samples, 0.02%)</title><rect x="12.4663%" y="533" width="0.0170%" height="15" fill="rgb(208,226,31)" fg:x="191838" fg:w="262"/><text x="12.7163%" y="543.50"></text></g><g><title>open_path (395 samples, 0.03%)</title><rect x="12.4609%" y="565" width="0.0257%" height="15" fill="rgb(218,26,49)" fg:x="191754" fg:w="395"/><text x="12.7109%" y="575.50"></text></g><g><title>open_verify (326 samples, 0.02%)</title><rect x="12.4654%" y="549" width="0.0212%" height="15" fill="rgb(233,197,48)" fg:x="191823" fg:w="326"/><text x="12.7154%" y="559.50"></text></g><g><title>_dl_catch_exception (2,206 samples, 0.14%)</title><rect x="12.3452%" y="613" width="0.1434%" height="15" fill="rgb(252,181,51)" fg:x="189973" fg:w="2206"/><text x="12.5952%" y="623.50"></text></g><g><title>openaux (2,203 samples, 0.14%)</title><rect x="12.3453%" y="597" width="0.1432%" height="15" fill="rgb(253,90,19)" fg:x="189976" fg:w="2203"/><text x="12.5953%" y="607.50"></text></g><g><title>_dl_map_object (2,202 samples, 0.14%)</title><rect x="12.3454%" y="581" width="0.1431%" height="15" fill="rgb(215,171,30)" fg:x="189977" fg:w="2202"/><text x="12.5954%" y="591.50"></text></g><g><title>_dl_map_object_deps (2,280 samples, 0.15%)</title><rect x="12.3437%" y="629" width="0.1482%" height="15" fill="rgb(214,222,9)" fg:x="189951" fg:w="2280"/><text x="12.5937%" y="639.50"></text></g><g><title>mprotect_fixup (244 samples, 0.02%)</title><rect x="12.4991%" y="517" width="0.0159%" height="15" fill="rgb(223,3,22)" fg:x="192342" fg:w="244"/><text x="12.7491%" y="527.50"></text></g><g><title>do_syscall_64 (269 samples, 0.02%)</title><rect x="12.4978%" y="565" width="0.0175%" height="15" fill="rgb(225,196,46)" fg:x="192322" fg:w="269"/><text x="12.7478%" y="575.50"></text></g><g><title>__x64_sys_mprotect (269 samples, 0.02%)</title><rect x="12.4978%" y="549" width="0.0175%" height="15" fill="rgb(209,110,37)" fg:x="192322" fg:w="269"/><text x="12.7478%" y="559.50"></text></g><g><title>do_mprotect_pkey (268 samples, 0.02%)</title><rect x="12.4979%" y="533" width="0.0174%" height="15" fill="rgb(249,89,12)" fg:x="192323" fg:w="268"/><text x="12.7479%" y="543.50"></text></g><g><title>_dl_protect_relro (276 samples, 0.02%)</title><rect x="12.4974%" y="613" width="0.0179%" height="15" fill="rgb(226,27,33)" fg:x="192316" fg:w="276"/><text x="12.7474%" y="623.50"></text></g><g><title>__mprotect (275 samples, 0.02%)</title><rect x="12.4975%" y="597" width="0.0179%" height="15" fill="rgb(213,82,22)" fg:x="192317" fg:w="275"/><text x="12.7475%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (271 samples, 0.02%)</title><rect x="12.4977%" y="581" width="0.0176%" height="15" fill="rgb(248,140,0)" fg:x="192321" fg:w="271"/><text x="12.7477%" y="591.50"></text></g><g><title>check_match (240 samples, 0.02%)</title><rect x="12.5653%" y="549" width="0.0156%" height="15" fill="rgb(228,106,3)" fg:x="193361" fg:w="240"/><text x="12.8153%" y="559.50"></text></g><g><title>_dl_lookup_symbol_x (752 samples, 0.05%)</title><rect x="12.5324%" y="581" width="0.0489%" height="15" fill="rgb(209,23,37)" fg:x="192855" fg:w="752"/><text x="12.7824%" y="591.50"></text></g><g><title>do_lookup_x (595 samples, 0.04%)</title><rect x="12.5426%" y="565" width="0.0387%" height="15" fill="rgb(241,93,50)" fg:x="193012" fg:w="595"/><text x="12.7926%" y="575.50"></text></g><g><title>elf_machine_rela (901 samples, 0.06%)</title><rect x="12.5235%" y="597" width="0.0586%" height="15" fill="rgb(253,46,43)" fg:x="192717" fg:w="901"/><text x="12.7735%" y="607.50"></text></g><g><title>elf_dynamic_do_Rela (1,113 samples, 0.07%)</title><rect x="12.5153%" y="613" width="0.0723%" height="15" fill="rgb(226,206,43)" fg:x="192592" fg:w="1113"/><text x="12.7653%" y="623.50"></text></g><g><title>_dl_relocate_object (1,430 samples, 0.09%)</title><rect x="12.4967%" y="629" width="0.0929%" height="15" fill="rgb(217,54,7)" fg:x="192305" fg:w="1430"/><text x="12.7467%" y="639.50"></text></g><g><title>[ld-2.31.so] (3,986 samples, 0.26%)</title><rect x="12.3360%" y="645" width="0.2590%" height="15" fill="rgb(223,5,52)" fg:x="189832" fg:w="3986"/><text x="12.5860%" y="655.50"></text></g><g><title>_dl_start_final (4,080 samples, 0.27%)</title><rect x="12.3351%" y="677" width="0.2651%" height="15" fill="rgb(206,52,46)" fg:x="189819" fg:w="4080"/><text x="12.5851%" y="687.50"></text></g><g><title>_dl_sysdep_start (4,077 samples, 0.26%)</title><rect x="12.3353%" y="661" width="0.2649%" height="15" fill="rgb(253,136,11)" fg:x="189822" fg:w="4077"/><text x="12.5853%" y="671.50"></text></g><g><title>_dl_start (4,148 samples, 0.27%)</title><rect x="12.3350%" y="693" width="0.2696%" height="15" fill="rgb(208,106,33)" fg:x="189817" fg:w="4148"/><text x="12.5850%" y="703.50"></text></g><g><title>_start (4,193 samples, 0.27%)</title><rect x="12.3348%" y="709" width="0.2725%" height="15" fill="rgb(206,54,4)" fg:x="189813" fg:w="4193"/><text x="12.5848%" y="719.50"></text></g><g><title>asm_exc_page_fault (255 samples, 0.02%)</title><rect x="12.6072%" y="709" width="0.0166%" height="15" fill="rgb(213,3,15)" fg:x="194006" fg:w="255"/><text x="12.8572%" y="719.50"></text></g><g><title>__x64_sys_execve (476 samples, 0.03%)</title><rect x="12.6241%" y="677" width="0.0309%" height="15" fill="rgb(252,211,39)" fg:x="194265" fg:w="476"/><text x="12.8741%" y="687.50"></text></g><g><title>do_execveat_common (476 samples, 0.03%)</title><rect x="12.6241%" y="661" width="0.0309%" height="15" fill="rgb(223,6,36)" fg:x="194265" fg:w="476"/><text x="12.8741%" y="671.50"></text></g><g><title>bprm_execve (476 samples, 0.03%)</title><rect x="12.6241%" y="645" width="0.0309%" height="15" fill="rgb(252,169,45)" fg:x="194265" fg:w="476"/><text x="12.8741%" y="655.50"></text></g><g><title>load_elf_binary (476 samples, 0.03%)</title><rect x="12.6241%" y="629" width="0.0309%" height="15" fill="rgb(212,48,26)" fg:x="194265" fg:w="476"/><text x="12.8741%" y="639.50"></text></g><g><title>unmap_page_range (331 samples, 0.02%)</title><rect x="12.6773%" y="581" width="0.0215%" height="15" fill="rgb(251,102,48)" fg:x="195084" fg:w="331"/><text x="12.9273%" y="591.50"></text></g><g><title>exit_mmap (666 samples, 0.04%)</title><rect x="12.6556%" y="613" width="0.0433%" height="15" fill="rgb(243,208,16)" fg:x="194751" fg:w="666"/><text x="12.9056%" y="623.50"></text></g><g><title>unmap_vmas (339 samples, 0.02%)</title><rect x="12.6769%" y="597" width="0.0220%" height="15" fill="rgb(219,96,24)" fg:x="195078" fg:w="339"/><text x="12.9269%" y="607.50"></text></g><g><title>mmput (671 samples, 0.04%)</title><rect x="12.6555%" y="629" width="0.0436%" height="15" fill="rgb(219,33,29)" fg:x="194749" fg:w="671"/><text x="12.9055%" y="639.50"></text></g><g><title>do_syscall_64 (1,228 samples, 0.08%)</title><rect x="12.6241%" y="693" width="0.0798%" height="15" fill="rgb(223,176,5)" fg:x="194265" fg:w="1228"/><text x="12.8741%" y="703.50"></text></g><g><title>__x64_sys_exit_group (752 samples, 0.05%)</title><rect x="12.6550%" y="677" width="0.0489%" height="15" fill="rgb(228,140,14)" fg:x="194741" fg:w="752"/><text x="12.9050%" y="687.50"></text></g><g><title>do_group_exit (752 samples, 0.05%)</title><rect x="12.6550%" y="661" width="0.0489%" height="15" fill="rgb(217,179,31)" fg:x="194741" fg:w="752"/><text x="12.9050%" y="671.50"></text></g><g><title>do_exit (752 samples, 0.05%)</title><rect x="12.6550%" y="645" width="0.0489%" height="15" fill="rgb(230,9,30)" fg:x="194741" fg:w="752"/><text x="12.9050%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,234 samples, 0.08%)</title><rect x="12.6239%" y="709" width="0.0802%" height="15" fill="rgb(230,136,20)" fg:x="194262" fg:w="1234"/><text x="12.8739%" y="719.50"></text></g><g><title>sed (8,724 samples, 0.57%)</title><rect x="12.1383%" y="725" width="0.5669%" height="15" fill="rgb(215,210,22)" fg:x="186790" fg:w="8724"/><text x="12.3883%" y="735.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (261 samples, 0.02%)</title><rect x="12.7258%" y="693" width="0.0170%" height="15" fill="rgb(218,43,5)" fg:x="195831" fg:w="261"/><text x="12.9758%" y="703.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;5292148ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)0, 5292148ul&gt;::oop_access_barrier (327 samples, 0.02%)</title><rect x="12.7429%" y="693" width="0.0212%" height="15" fill="rgb(216,11,5)" fg:x="196093" fg:w="327"/><text x="12.9929%" y="703.50"></text></g><g><title>CollectedHeap::obj_allocate (496 samples, 0.03%)</title><rect x="12.7801%" y="693" width="0.0322%" height="15" fill="rgb(209,82,29)" fg:x="196666" fg:w="496"/><text x="13.0301%" y="703.50"></text></g><g><title>HandleMark::pop_and_restore (285 samples, 0.02%)</title><rect x="12.8176%" y="693" width="0.0185%" height="15" fill="rgb(244,115,12)" fg:x="197243" fg:w="285"/><text x="13.0676%" y="703.50"></text></g><g><title>InstanceKlass::initialize (172 samples, 0.01%)</title><rect x="12.8488%" y="693" width="0.0112%" height="15" fill="rgb(222,82,18)" fg:x="197724" fg:w="172"/><text x="13.0988%" y="703.50"></text></g><g><title>JNIHandleBlock::allocate_block (435 samples, 0.03%)</title><rect x="12.8613%" y="693" width="0.0283%" height="15" fill="rgb(249,227,8)" fg:x="197915" fg:w="435"/><text x="13.1113%" y="703.50"></text></g><g><title>JNIHandles::make_local (186 samples, 0.01%)</title><rect x="12.8980%" y="693" width="0.0121%" height="15" fill="rgb(253,141,45)" fg:x="198480" fg:w="186"/><text x="13.1480%" y="703.50"></text></g><g><title>JavaCalls::call_helper (202 samples, 0.01%)</title><rect x="12.9270%" y="693" width="0.0131%" height="15" fill="rgb(234,184,4)" fg:x="198926" fg:w="202"/><text x="13.1770%" y="703.50"></text></g><g><title>JavaThread::can_call_java (442 samples, 0.03%)</title><rect x="12.9401%" y="693" width="0.0287%" height="15" fill="rgb(218,194,23)" fg:x="199128" fg:w="442"/><text x="13.1901%" y="703.50"></text></g><g><title>JavaThread::is_Java_thread (298 samples, 0.02%)</title><rect x="12.9706%" y="693" width="0.0194%" height="15" fill="rgb(235,66,41)" fg:x="199597" fg:w="298"/><text x="13.2206%" y="703.50"></text></g><g><title>MemAllocator::allocate (234 samples, 0.02%)</title><rect x="12.9985%" y="693" width="0.0152%" height="15" fill="rgb(245,217,1)" fg:x="200027" fg:w="234"/><text x="13.2485%" y="703.50"></text></g><g><title>ThreadHeapSampler::enabled (215 samples, 0.01%)</title><rect x="13.0222%" y="693" width="0.0140%" height="15" fill="rgb(229,91,1)" fg:x="200392" fg:w="215"/><text x="13.2722%" y="703.50"></text></g><g><title>ThreadShadow::clear_pending_exception (504 samples, 0.03%)</title><rect x="13.0364%" y="693" width="0.0328%" height="15" fill="rgb(207,101,30)" fg:x="200610" fg:w="504"/><text x="13.2864%" y="703.50"></text></g><g><title>ThreadStateTransition::transition_from_native (288 samples, 0.02%)</title><rect x="13.0770%" y="693" width="0.0187%" height="15" fill="rgb(223,82,49)" fg:x="201235" fg:w="288"/><text x="13.3270%" y="703.50"></text></g><g><title>__GI___xstat (197 samples, 0.01%)</title><rect x="13.1146%" y="693" width="0.0128%" height="15" fill="rgb(218,167,17)" fg:x="201814" fg:w="197"/><text x="13.3646%" y="703.50"></text></g><g><title>__GI_unlinkat (264 samples, 0.02%)</title><rect x="13.1274%" y="693" width="0.0172%" height="15" fill="rgb(208,103,14)" fg:x="202011" fg:w="264"/><text x="13.3774%" y="703.50"></text></g><g><title>_int_free (173 samples, 0.01%)</title><rect x="13.1491%" y="693" width="0.0112%" height="15" fill="rgb(238,20,8)" fg:x="202345" fg:w="173"/><text x="13.3991%" y="703.50"></text></g><g><title>alloc_object (324 samples, 0.02%)</title><rect x="13.1617%" y="693" width="0.0211%" height="15" fill="rgb(218,80,54)" fg:x="202538" fg:w="324"/><text x="13.4117%" y="703.50"></text></g><g><title>check_bounds (399 samples, 0.03%)</title><rect x="13.1827%" y="693" width="0.0259%" height="15" fill="rgb(240,144,17)" fg:x="202862" fg:w="399"/><text x="13.4327%" y="703.50"></text></g><g><title>jni_GetObjectField (237 samples, 0.02%)</title><rect x="13.2195%" y="693" width="0.0154%" height="15" fill="rgb(245,27,50)" fg:x="203428" fg:w="237"/><text x="13.4695%" y="703.50"></text></g><g><title>jni_NewObjectV (463 samples, 0.03%)</title><rect x="13.2418%" y="693" width="0.0301%" height="15" fill="rgb(251,51,7)" fg:x="203771" fg:w="463"/><text x="13.4918%" y="703.50"></text></g><g><title>oopDesc::metadata_field (184 samples, 0.01%)</title><rect x="13.2838%" y="693" width="0.0120%" height="15" fill="rgb(245,217,29)" fg:x="204417" fg:w="184"/><text x="13.5338%" y="703.50"></text></g><g><title>os::current_stack_pointer (170 samples, 0.01%)</title><rect x="13.2976%" y="693" width="0.0110%" height="15" fill="rgb(221,176,29)" fg:x="204629" fg:w="170"/><text x="13.5476%" y="703.50"></text></g><g><title>[anon] (9,423 samples, 0.61%)</title><rect x="12.7163%" y="709" width="0.6123%" height="15" fill="rgb(212,180,24)" fg:x="195685" fg:w="9423"/><text x="12.9663%" y="719.50"></text></g><g><title>[libc-2.31.so] (217 samples, 0.01%)</title><rect x="13.9953%" y="693" width="0.0141%" height="15" fill="rgb(254,24,2)" fg:x="215367" fg:w="217"/><text x="14.2453%" y="703.50"></text></g><g><title>__x64_sys_close (401 samples, 0.03%)</title><rect x="14.0152%" y="645" width="0.0261%" height="15" fill="rgb(230,100,2)" fg:x="215673" fg:w="401"/><text x="14.2652%" y="655.50"></text></g><g><title>filp_close (284 samples, 0.02%)</title><rect x="14.0228%" y="629" width="0.0185%" height="15" fill="rgb(219,142,25)" fg:x="215790" fg:w="284"/><text x="14.2728%" y="639.50"></text></g><g><title>do_syscall_64 (433 samples, 0.03%)</title><rect x="14.0137%" y="661" width="0.0281%" height="15" fill="rgb(240,73,43)" fg:x="215650" fg:w="433"/><text x="14.2637%" y="671.50"></text></g><g><title>btrfs_release_file (404 samples, 0.03%)</title><rect x="14.0560%" y="597" width="0.0263%" height="15" fill="rgb(214,114,15)" fg:x="216300" fg:w="404"/><text x="14.3060%" y="607.50"></text></g><g><title>kfree (335 samples, 0.02%)</title><rect x="14.0605%" y="581" width="0.0218%" height="15" fill="rgb(207,130,4)" fg:x="216369" fg:w="335"/><text x="14.3105%" y="591.50"></text></g><g><title>__fput (806 samples, 0.05%)</title><rect x="14.0495%" y="613" width="0.0524%" height="15" fill="rgb(221,25,40)" fg:x="216200" fg:w="806"/><text x="14.2995%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,463 samples, 0.10%)</title><rect x="14.0131%" y="677" width="0.0951%" height="15" fill="rgb(241,184,7)" fg:x="215640" fg:w="1463"/><text x="14.2631%" y="687.50"></text></g><g><title>syscall_exit_to_user_mode (1,020 samples, 0.07%)</title><rect x="14.0419%" y="661" width="0.0663%" height="15" fill="rgb(235,159,4)" fg:x="216083" fg:w="1020"/><text x="14.2919%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (1,016 samples, 0.07%)</title><rect x="14.0421%" y="645" width="0.0660%" height="15" fill="rgb(214,87,48)" fg:x="216087" fg:w="1016"/><text x="14.2921%" y="655.50"></text></g><g><title>task_work_run (930 samples, 0.06%)</title><rect x="14.0477%" y="629" width="0.0604%" height="15" fill="rgb(246,198,24)" fg:x="216173" fg:w="930"/><text x="14.2977%" y="639.50"></text></g><g><title>__GI___close_nocancel (1,530 samples, 0.10%)</title><rect x="14.0094%" y="693" width="0.0994%" height="15" fill="rgb(209,66,40)" fg:x="215584" fg:w="1530"/><text x="14.2594%" y="703.50"></text></g><g><title>__GI___libc_free (1,200 samples, 0.08%)</title><rect x="14.1090%" y="693" width="0.0780%" height="15" fill="rgb(233,147,39)" fg:x="217116" fg:w="1200"/><text x="14.3590%" y="703.50"></text></g><g><title>entry_SYSCALL_64 (308 samples, 0.02%)</title><rect x="14.2197%" y="677" width="0.0200%" height="15" fill="rgb(231,145,52)" fg:x="218819" fg:w="308"/><text x="14.4697%" y="687.50"></text></g><g><title>__schedule (218 samples, 0.01%)</title><rect x="14.3320%" y="581" width="0.0142%" height="15" fill="rgb(206,20,26)" fg:x="220547" fg:w="218"/><text x="14.5820%" y="591.50"></text></g><g><title>_cond_resched (299 samples, 0.02%)</title><rect x="14.3281%" y="597" width="0.0194%" height="15" fill="rgb(238,220,4)" fg:x="220488" fg:w="299"/><text x="14.5781%" y="607.50"></text></g><g><title>_raw_spin_lock (217 samples, 0.01%)</title><rect x="14.3754%" y="581" width="0.0141%" height="15" fill="rgb(252,195,42)" fg:x="221215" fg:w="217"/><text x="14.6254%" y="591.50"></text></g><g><title>lockref_put_or_lock (540 samples, 0.04%)</title><rect x="14.3545%" y="597" width="0.0351%" height="15" fill="rgb(209,10,6)" fg:x="220894" fg:w="540"/><text x="14.6045%" y="607.50"></text></g><g><title>dput (1,500 samples, 0.10%)</title><rect x="14.2935%" y="613" width="0.0975%" height="15" fill="rgb(229,3,52)" fg:x="219955" fg:w="1500"/><text x="14.5435%" y="623.50"></text></g><g><title>_raw_spin_lock (172 samples, 0.01%)</title><rect x="14.4432%" y="533" width="0.0112%" height="15" fill="rgb(253,49,37)" fg:x="222259" fg:w="172"/><text x="14.6932%" y="543.50"></text></g><g><title>__d_lookup (597 samples, 0.04%)</title><rect x="14.4167%" y="549" width="0.0388%" height="15" fill="rgb(240,103,49)" fg:x="221851" fg:w="597"/><text x="14.6667%" y="559.50"></text></g><g><title>__lookup_hash (740 samples, 0.05%)</title><rect x="14.4075%" y="597" width="0.0481%" height="15" fill="rgb(250,182,30)" fg:x="221709" fg:w="740"/><text x="14.6575%" y="607.50"></text></g><g><title>lookup_dcache (694 samples, 0.05%)</title><rect x="14.4105%" y="581" width="0.0451%" height="15" fill="rgb(248,8,30)" fg:x="221755" fg:w="694"/><text x="14.6605%" y="591.50"></text></g><g><title>d_lookup (669 samples, 0.04%)</title><rect x="14.4121%" y="565" width="0.0435%" height="15" fill="rgb(237,120,30)" fg:x="221780" fg:w="669"/><text x="14.6621%" y="575.50"></text></g><g><title>down_write (262 samples, 0.02%)</title><rect x="14.4556%" y="597" width="0.0170%" height="15" fill="rgb(221,146,34)" fg:x="222449" fg:w="262"/><text x="14.7056%" y="607.50"></text></g><g><title>__legitimize_mnt (236 samples, 0.02%)</title><rect x="14.5063%" y="517" width="0.0153%" height="15" fill="rgb(242,55,13)" fg:x="223230" fg:w="236"/><text x="14.7563%" y="527.50"></text></g><g><title>__legitimize_path (383 samples, 0.02%)</title><rect x="14.5041%" y="533" width="0.0249%" height="15" fill="rgb(242,112,31)" fg:x="223196" fg:w="383"/><text x="14.7541%" y="543.50"></text></g><g><title>complete_walk (527 samples, 0.03%)</title><rect x="14.4979%" y="565" width="0.0342%" height="15" fill="rgb(249,192,27)" fg:x="223100" fg:w="527"/><text x="14.7479%" y="575.50"></text></g><g><title>try_to_unlazy (481 samples, 0.03%)</title><rect x="14.5009%" y="549" width="0.0313%" height="15" fill="rgb(208,204,44)" fg:x="223146" fg:w="481"/><text x="14.7509%" y="559.50"></text></g><g><title>inode_permission.part.0 (3,241 samples, 0.21%)</title><rect x="14.7411%" y="549" width="0.2106%" height="15" fill="rgb(208,93,54)" fg:x="226843" fg:w="3241"/><text x="14.9911%" y="559.50"></text></g><g><title>generic_permission (694 samples, 0.05%)</title><rect x="14.9066%" y="533" width="0.0451%" height="15" fill="rgb(242,1,31)" fg:x="229390" fg:w="694"/><text x="15.1566%" y="543.50"></text></g><g><title>security_inode_permission (345 samples, 0.02%)</title><rect x="14.9517%" y="549" width="0.0224%" height="15" fill="rgb(241,83,25)" fg:x="230084" fg:w="345"/><text x="15.2017%" y="559.50"></text></g><g><title>__d_lookup_rcu (4,362 samples, 0.28%)</title><rect x="15.1141%" y="517" width="0.2835%" height="15" fill="rgb(205,169,50)" fg:x="232583" fg:w="4362"/><text x="15.3641%" y="527.50"></text></g><g><title>lookup_fast (5,351 samples, 0.35%)</title><rect x="15.0502%" y="533" width="0.3477%" height="15" fill="rgb(239,186,37)" fg:x="231600" fg:w="5351"/><text x="15.3002%" y="543.50"></text></g><g><title>link_path_walk.part.0 (14,643 samples, 0.95%)</title><rect x="14.5321%" y="565" width="0.9516%" height="15" fill="rgb(205,221,10)" fg:x="223627" fg:w="14643"/><text x="14.7821%" y="575.50"></text></g><g><title>walk_component (7,841 samples, 0.51%)</title><rect x="14.9741%" y="549" width="0.5095%" height="15" fill="rgb(218,196,15)" fg:x="230429" fg:w="7841"/><text x="15.2241%" y="559.50"></text></g><g><title>step_into (1,319 samples, 0.09%)</title><rect x="15.3980%" y="533" width="0.0857%" height="15" fill="rgb(218,196,35)" fg:x="236951" fg:w="1319"/><text x="15.6480%" y="543.50"></text></g><g><title>path_init (389 samples, 0.03%)</title><rect x="15.4837%" y="565" width="0.0253%" height="15" fill="rgb(233,63,24)" fg:x="238270" fg:w="389"/><text x="15.7337%" y="575.50"></text></g><g><title>nd_jump_root (222 samples, 0.01%)</title><rect x="15.4945%" y="549" width="0.0144%" height="15" fill="rgb(225,8,4)" fg:x="238437" fg:w="222"/><text x="15.7445%" y="559.50"></text></g><g><title>set_root (162 samples, 0.01%)</title><rect x="15.4984%" y="533" width="0.0105%" height="15" fill="rgb(234,105,35)" fg:x="238497" fg:w="162"/><text x="15.7484%" y="543.50"></text></g><g><title>filename_parentat (15,998 samples, 1.04%)</title><rect x="14.4726%" y="597" width="1.0396%" height="15" fill="rgb(236,21,32)" fg:x="222711" fg:w="15998"/><text x="14.7226%" y="607.50"></text></g><g><title>path_parentat (15,744 samples, 1.02%)</title><rect x="14.4891%" y="581" width="1.0231%" height="15" fill="rgb(228,109,6)" fg:x="222965" fg:w="15744"/><text x="14.7391%" y="591.50"></text></g><g><title>kmem_cache_free (429 samples, 0.03%)</title><rect x="15.5122%" y="597" width="0.0279%" height="15" fill="rgb(229,215,31)" fg:x="238709" fg:w="429"/><text x="15.7622%" y="607.50"></text></g><g><title>__mnt_want_write (176 samples, 0.01%)</title><rect x="15.5596%" y="581" width="0.0114%" height="15" fill="rgb(221,52,54)" fg:x="239439" fg:w="176"/><text x="15.8096%" y="591.50"></text></g><g><title>mnt_want_write (582 samples, 0.04%)</title><rect x="15.5401%" y="597" width="0.0378%" height="15" fill="rgb(252,129,43)" fg:x="239138" fg:w="582"/><text x="15.7901%" y="607.50"></text></g><g><title>filename_create (18,347 samples, 1.19%)</title><rect x="14.3910%" y="613" width="1.1923%" height="15" fill="rgb(248,183,27)" fg:x="221455" fg:w="18347"/><text x="14.6410%" y="623.50"></text></g><g><title>kmem_cache_free (436 samples, 0.03%)</title><rect x="15.5984%" y="597" width="0.0283%" height="15" fill="rgb(250,0,22)" fg:x="240036" fg:w="436"/><text x="15.8484%" y="607.50"></text></g><g><title>__legitimize_mnt (262 samples, 0.02%)</title><rect x="15.6476%" y="533" width="0.0170%" height="15" fill="rgb(213,166,10)" fg:x="240792" fg:w="262"/><text x="15.8976%" y="543.50"></text></g><g><title>__legitimize_path (433 samples, 0.03%)</title><rect x="15.6443%" y="549" width="0.0281%" height="15" fill="rgb(207,163,36)" fg:x="240742" fg:w="433"/><text x="15.8943%" y="559.50"></text></g><g><title>complete_walk (580 samples, 0.04%)</title><rect x="15.6385%" y="581" width="0.0377%" height="15" fill="rgb(208,122,22)" fg:x="240652" fg:w="580"/><text x="15.8885%" y="591.50"></text></g><g><title>try_to_unlazy (546 samples, 0.04%)</title><rect x="15.6407%" y="565" width="0.0355%" height="15" fill="rgb(207,104,49)" fg:x="240686" fg:w="546"/><text x="15.8907%" y="575.50"></text></g><g><title>btrfs_permission (161 samples, 0.01%)</title><rect x="16.1607%" y="549" width="0.0105%" height="15" fill="rgb(248,211,50)" fg:x="248688" fg:w="161"/><text x="16.4107%" y="559.50"></text></g><g><title>inode_permission.part.0 (4,296 samples, 0.28%)</title><rect x="15.9580%" y="565" width="0.2792%" height="15" fill="rgb(217,13,45)" fg:x="245569" fg:w="4296"/><text x="16.2080%" y="575.50"></text></g><g><title>generic_permission (1,016 samples, 0.07%)</title><rect x="16.1711%" y="549" width="0.0660%" height="15" fill="rgb(211,216,49)" fg:x="248849" fg:w="1016"/><text x="16.4211%" y="559.50"></text></g><g><title>security_inode_permission (477 samples, 0.03%)</title><rect x="16.2372%" y="565" width="0.0310%" height="15" fill="rgb(221,58,53)" fg:x="249865" fg:w="477"/><text x="16.4872%" y="575.50"></text></g><g><title>__d_lookup_rcu (5,855 samples, 0.38%)</title><rect x="16.4641%" y="533" width="0.3805%" height="15" fill="rgb(220,112,41)" fg:x="253357" fg:w="5855"/><text x="16.7141%" y="543.50"></text></g><g><title>lookup_fast (7,253 samples, 0.47%)</title><rect x="16.3735%" y="549" width="0.4713%" height="15" fill="rgb(236,38,28)" fg:x="251963" fg:w="7253"/><text x="16.6235%" y="559.50"></text></g><g><title>page_put_link (240 samples, 0.02%)</title><rect x="16.8448%" y="549" width="0.0156%" height="15" fill="rgb(227,195,22)" fg:x="259216" fg:w="240"/><text x="17.0948%" y="559.50"></text></g><g><title>__lookup_mnt (220 samples, 0.01%)</title><rect x="16.9839%" y="533" width="0.0143%" height="15" fill="rgb(214,55,33)" fg:x="261357" fg:w="220"/><text x="17.2339%" y="543.50"></text></g><g><title>atime_needs_update (265 samples, 0.02%)</title><rect x="16.9988%" y="533" width="0.0172%" height="15" fill="rgb(248,80,13)" fg:x="261585" fg:w="265"/><text x="17.2488%" y="543.50"></text></g><g><title>current_time (154 samples, 0.01%)</title><rect x="17.0060%" y="517" width="0.0100%" height="15" fill="rgb(238,52,6)" fg:x="261696" fg:w="154"/><text x="17.2560%" y="527.50"></text></g><g><title>page_get_link (1,243 samples, 0.08%)</title><rect x="17.0206%" y="533" width="0.0808%" height="15" fill="rgb(224,198,47)" fg:x="261921" fg:w="1243"/><text x="17.2706%" y="543.50"></text></g><g><title>pagecache_get_page (1,158 samples, 0.08%)</title><rect x="17.0261%" y="517" width="0.0753%" height="15" fill="rgb(233,171,20)" fg:x="262006" fg:w="1158"/><text x="17.2761%" y="527.50"></text></g><g><title>find_get_entry (1,036 samples, 0.07%)</title><rect x="17.0341%" y="501" width="0.0673%" height="15" fill="rgb(241,30,25)" fg:x="262128" fg:w="1036"/><text x="17.2841%" y="511.50"></text></g><g><title>xas_load (278 samples, 0.02%)</title><rect x="17.0833%" y="485" width="0.0181%" height="15" fill="rgb(207,171,38)" fg:x="262886" fg:w="278"/><text x="17.3333%" y="495.50"></text></g><g><title>xas_start (254 samples, 0.02%)</title><rect x="17.0849%" y="469" width="0.0165%" height="15" fill="rgb(234,70,1)" fg:x="262910" fg:w="254"/><text x="17.3349%" y="479.50"></text></g><g><title>link_path_walk.part.0 (21,981 samples, 1.43%)</title><rect x="15.6762%" y="581" width="1.4284%" height="15" fill="rgb(232,178,18)" fg:x="241232" fg:w="21981"/><text x="15.9262%" y="591.50"></text></g><g><title>walk_component (12,871 samples, 0.84%)</title><rect x="16.2682%" y="565" width="0.8364%" height="15" fill="rgb(241,78,40)" fg:x="250342" fg:w="12871"/><text x="16.5182%" y="575.50"></text></g><g><title>step_into (3,757 samples, 0.24%)</title><rect x="16.8604%" y="549" width="0.2441%" height="15" fill="rgb(222,35,25)" fg:x="259456" fg:w="3757"/><text x="17.1104%" y="559.50"></text></g><g><title>path_init (627 samples, 0.04%)</title><rect x="17.1046%" y="581" width="0.0407%" height="15" fill="rgb(207,92,16)" fg:x="263213" fg:w="627"/><text x="17.3546%" y="591.50"></text></g><g><title>nd_jump_root (381 samples, 0.02%)</title><rect x="17.1205%" y="565" width="0.0248%" height="15" fill="rgb(216,59,51)" fg:x="263459" fg:w="381"/><text x="17.3705%" y="575.50"></text></g><g><title>set_root (302 samples, 0.02%)</title><rect x="17.1257%" y="549" width="0.0196%" height="15" fill="rgb(213,80,28)" fg:x="263538" fg:w="302"/><text x="17.3757%" y="559.50"></text></g><g><title>lookup_fast (406 samples, 0.03%)</title><rect x="17.1586%" y="565" width="0.0264%" height="15" fill="rgb(220,93,7)" fg:x="264044" fg:w="406"/><text x="17.4086%" y="575.50"></text></g><g><title>__d_lookup_rcu (348 samples, 0.02%)</title><rect x="17.1623%" y="549" width="0.0226%" height="15" fill="rgb(225,24,44)" fg:x="264102" fg:w="348"/><text x="17.4123%" y="559.50"></text></g><g><title>path_lookupat (24,036 samples, 1.56%)</title><rect x="15.6268%" y="597" width="1.5619%" height="15" fill="rgb(243,74,40)" fg:x="240472" fg:w="24036"/><text x="15.8768%" y="607.50"></text></g><g><title>walk_component (515 samples, 0.03%)</title><rect x="17.1552%" y="581" width="0.0335%" height="15" fill="rgb(228,39,7)" fg:x="263993" fg:w="515"/><text x="17.4052%" y="591.50"></text></g><g><title>filename_lookup (24,745 samples, 1.61%)</title><rect x="15.5832%" y="613" width="1.6080%" height="15" fill="rgb(227,79,8)" fg:x="239802" fg:w="24745"/><text x="15.8332%" y="623.50"></text></g><g><title>getname_flags (259 samples, 0.02%)</title><rect x="17.1912%" y="613" width="0.0168%" height="15" fill="rgb(236,58,11)" fg:x="264547" fg:w="259"/><text x="17.4412%" y="623.50"></text></g><g><title>memset_erms (2,047 samples, 0.13%)</title><rect x="17.2675%" y="581" width="0.1330%" height="15" fill="rgb(249,63,35)" fg:x="265720" fg:w="2047"/><text x="17.5175%" y="591.50"></text></g><g><title>_cond_resched (170 samples, 0.01%)</title><rect x="17.4149%" y="565" width="0.0110%" height="15" fill="rgb(252,114,16)" fg:x="267988" fg:w="170"/><text x="17.6649%" y="575.50"></text></g><g><title>kmem_cache_alloc (3,107 samples, 0.20%)</title><rect x="17.2254%" y="597" width="0.2019%" height="15" fill="rgb(254,151,24)" fg:x="265072" fg:w="3107"/><text x="17.4754%" y="607.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (412 samples, 0.03%)</title><rect x="17.4005%" y="581" width="0.0268%" height="15" fill="rgb(253,54,39)" fg:x="267767" fg:w="412"/><text x="17.6505%" y="591.50"></text></g><g><title>__check_heap_object (260 samples, 0.02%)</title><rect x="17.5550%" y="565" width="0.0169%" height="15" fill="rgb(243,25,45)" fg:x="270145" fg:w="260"/><text x="17.8050%" y="575.50"></text></g><g><title>__virt_addr_valid (564 samples, 0.04%)</title><rect x="17.5719%" y="565" width="0.0367%" height="15" fill="rgb(234,134,9)" fg:x="270405" fg:w="564"/><text x="17.8219%" y="575.50"></text></g><g><title>__check_object_size (1,163 samples, 0.08%)</title><rect x="17.5380%" y="581" width="0.0756%" height="15" fill="rgb(227,166,31)" fg:x="269883" fg:w="1163"/><text x="17.7880%" y="591.50"></text></g><g><title>getname_flags.part.0 (6,245 samples, 0.41%)</title><rect x="17.2081%" y="613" width="0.4058%" height="15" fill="rgb(245,143,41)" fg:x="264806" fg:w="6245"/><text x="17.4581%" y="623.50"></text></g><g><title>strncpy_from_user (2,872 samples, 0.19%)</title><rect x="17.4273%" y="597" width="0.1866%" height="15" fill="rgb(238,181,32)" fg:x="268179" fg:w="2872"/><text x="17.6773%" y="607.50"></text></g><g><title>btrfs_permission (247 samples, 0.02%)</title><rect x="17.6410%" y="581" width="0.0161%" height="15" fill="rgb(224,113,18)" fg:x="271468" fg:w="247"/><text x="17.8910%" y="591.50"></text></g><g><title>inode_permission.part.0 (409 samples, 0.03%)</title><rect x="17.6328%" y="597" width="0.0266%" height="15" fill="rgb(240,229,28)" fg:x="271342" fg:w="409"/><text x="17.8828%" y="607.50"></text></g><g><title>may_linkat (716 samples, 0.05%)</title><rect x="17.6139%" y="613" width="0.0465%" height="15" fill="rgb(250,185,3)" fg:x="271051" fg:w="716"/><text x="17.8639%" y="623.50"></text></g><g><title>mnt_drop_write (224 samples, 0.01%)</title><rect x="17.6604%" y="613" width="0.0146%" height="15" fill="rgb(212,59,25)" fg:x="271767" fg:w="224"/><text x="17.9104%" y="623.50"></text></g><g><title>mntput_no_expire (170 samples, 0.01%)</title><rect x="17.6777%" y="613" width="0.0110%" height="15" fill="rgb(221,87,20)" fg:x="272033" fg:w="170"/><text x="17.9277%" y="623.50"></text></g><g><title>apparmor_path_link (413 samples, 0.03%)</title><rect x="17.7001%" y="597" width="0.0268%" height="15" fill="rgb(213,74,28)" fg:x="272378" fg:w="413"/><text x="17.9501%" y="607.50"></text></g><g><title>security_path_link (1,276 samples, 0.08%)</title><rect x="17.6888%" y="613" width="0.0829%" height="15" fill="rgb(224,132,34)" fg:x="272203" fg:w="1276"/><text x="17.9388%" y="623.50"></text></g><g><title>tomoyo_path_link (687 samples, 0.04%)</title><rect x="17.7270%" y="597" width="0.0446%" height="15" fill="rgb(222,101,24)" fg:x="272792" fg:w="687"/><text x="17.9770%" y="607.50"></text></g><g><title>tomoyo_path2_perm (634 samples, 0.04%)</title><rect x="17.7305%" y="581" width="0.0412%" height="15" fill="rgb(254,142,4)" fg:x="272845" fg:w="634"/><text x="17.9805%" y="591.50"></text></g><g><title>tomoyo_init_request_info (391 samples, 0.03%)</title><rect x="17.7463%" y="565" width="0.0254%" height="15" fill="rgb(230,229,49)" fg:x="273088" fg:w="391"/><text x="17.9963%" y="575.50"></text></g><g><title>tomoyo_domain (229 samples, 0.01%)</title><rect x="17.7568%" y="549" width="0.0149%" height="15" fill="rgb(238,70,47)" fg:x="273250" fg:w="229"/><text x="18.0068%" y="559.50"></text></g><g><title>up_write (158 samples, 0.01%)</title><rect x="17.7717%" y="613" width="0.0103%" height="15" fill="rgb(231,160,17)" fg:x="273479" fg:w="158"/><text x="18.0217%" y="623.50"></text></g><g><title>btrfs_create_pending_block_groups (238 samples, 0.02%)</title><rect x="17.9479%" y="565" width="0.0155%" height="15" fill="rgb(218,68,53)" fg:x="276191" fg:w="238"/><text x="18.1979%" y="575.50"></text></g><g><title>_raw_spin_lock (935 samples, 0.06%)</title><rect x="18.0133%" y="533" width="0.0608%" height="15" fill="rgb(236,111,10)" fg:x="277197" fg:w="935"/><text x="18.2633%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (271 samples, 0.02%)</title><rect x="18.0564%" y="517" width="0.0176%" height="15" fill="rgb(224,34,41)" fg:x="277861" fg:w="271"/><text x="18.3064%" y="527.50"></text></g><g><title>btrfs_trans_release_metadata (1,637 samples, 0.11%)</title><rect x="17.9788%" y="565" width="0.1064%" height="15" fill="rgb(241,118,19)" fg:x="276666" fg:w="1637"/><text x="18.2288%" y="575.50"></text></g><g><title>btrfs_block_rsv_release (1,433 samples, 0.09%)</title><rect x="17.9920%" y="549" width="0.0931%" height="15" fill="rgb(238,129,25)" fg:x="276870" fg:w="1433"/><text x="18.2420%" y="559.50"></text></g><g><title>__btrfs_end_transaction (3,593 samples, 0.23%)</title><rect x="17.8861%" y="581" width="0.2335%" height="15" fill="rgb(238,22,31)" fg:x="275239" fg:w="3593"/><text x="18.1361%" y="591.50"></text></g><g><title>kmem_cache_free (529 samples, 0.03%)</title><rect x="18.0852%" y="565" width="0.0344%" height="15" fill="rgb(222,174,48)" fg:x="278303" fg:w="529"/><text x="18.3352%" y="575.50"></text></g><g><title>__radix_tree_lookup (256 samples, 0.02%)</title><rect x="18.1492%" y="565" width="0.0166%" height="15" fill="rgb(206,152,40)" fg:x="279289" fg:w="256"/><text x="18.3992%" y="575.50"></text></g><g><title>balance_dirty_pages_ratelimited (715 samples, 0.05%)</title><rect x="18.1198%" y="581" width="0.0465%" height="15" fill="rgb(218,99,54)" fg:x="278836" fg:w="715"/><text x="18.3698%" y="591.50"></text></g><g><title>btrfs_comp_cpu_keys (492 samples, 0.03%)</title><rect x="18.3112%" y="517" width="0.0320%" height="15" fill="rgb(220,174,26)" fg:x="281781" fg:w="492"/><text x="18.5612%" y="527.50"></text></g><g><title>__btrfs_add_delayed_item (1,551 samples, 0.10%)</title><rect x="18.2602%" y="533" width="0.1008%" height="15" fill="rgb(245,116,9)" fg:x="280996" fg:w="1551"/><text x="18.5102%" y="543.50"></text></g><g><title>rb_insert_color (274 samples, 0.02%)</title><rect x="18.3431%" y="517" width="0.0178%" height="15" fill="rgb(209,72,35)" fg:x="282273" fg:w="274"/><text x="18.5931%" y="527.50"></text></g><g><title>__list_add_valid (339 samples, 0.02%)</title><rect x="18.3769%" y="517" width="0.0220%" height="15" fill="rgb(226,126,21)" fg:x="282793" fg:w="339"/><text x="18.6269%" y="527.50"></text></g><g><title>__list_del_entry_valid (155 samples, 0.01%)</title><rect x="18.3990%" y="517" width="0.0101%" height="15" fill="rgb(227,192,1)" fg:x="283132" fg:w="155"/><text x="18.6490%" y="527.50"></text></g><g><title>_raw_spin_lock (265 samples, 0.02%)</title><rect x="18.4103%" y="517" width="0.0172%" height="15" fill="rgb(237,180,29)" fg:x="283306" fg:w="265"/><text x="18.6603%" y="527.50"></text></g><g><title>mutex_lock (154 samples, 0.01%)</title><rect x="18.4276%" y="517" width="0.0100%" height="15" fill="rgb(230,197,35)" fg:x="283572" fg:w="154"/><text x="18.6776%" y="527.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,645 samples, 0.11%)</title><rect x="18.3610%" y="533" width="0.1069%" height="15" fill="rgb(246,193,31)" fg:x="282547" fg:w="1645"/><text x="18.6110%" y="543.50"></text></g><g><title>mutex_unlock (466 samples, 0.03%)</title><rect x="18.4376%" y="517" width="0.0303%" height="15" fill="rgb(241,36,4)" fg:x="283726" fg:w="466"/><text x="18.6876%" y="527.50"></text></g><g><title>__slab_alloc (216 samples, 0.01%)</title><rect x="18.4981%" y="517" width="0.0140%" height="15" fill="rgb(241,130,17)" fg:x="284658" fg:w="216"/><text x="18.7481%" y="527.50"></text></g><g><title>___slab_alloc (187 samples, 0.01%)</title><rect x="18.5000%" y="501" width="0.0122%" height="15" fill="rgb(206,137,32)" fg:x="284687" fg:w="187"/><text x="18.7500%" y="511.50"></text></g><g><title>kmalloc_slab (154 samples, 0.01%)</title><rect x="18.5122%" y="517" width="0.0100%" height="15" fill="rgb(237,228,51)" fg:x="284875" fg:w="154"/><text x="18.7622%" y="527.50"></text></g><g><title>__schedule (234 samples, 0.02%)</title><rect x="18.5446%" y="485" width="0.0152%" height="15" fill="rgb(243,6,42)" fg:x="285373" fg:w="234"/><text x="18.7946%" y="495.50"></text></g><g><title>_cond_resched (286 samples, 0.02%)</title><rect x="18.5429%" y="501" width="0.0186%" height="15" fill="rgb(251,74,28)" fg:x="285347" fg:w="286"/><text x="18.7929%" y="511.50"></text></g><g><title>__kmalloc (1,450 samples, 0.09%)</title><rect x="18.4679%" y="533" width="0.0942%" height="15" fill="rgb(218,20,49)" fg:x="284192" fg:w="1450"/><text x="18.7179%" y="543.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (437 samples, 0.03%)</title><rect x="18.5337%" y="517" width="0.0284%" height="15" fill="rgb(238,28,14)" fg:x="285205" fg:w="437"/><text x="18.7837%" y="527.50"></text></g><g><title>mutex_spin_on_owner (1,740 samples, 0.11%)</title><rect x="18.5645%" y="517" width="0.1131%" height="15" fill="rgb(229,40,46)" fg:x="285679" fg:w="1740"/><text x="18.8145%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (270 samples, 0.02%)</title><rect x="18.6811%" y="453" width="0.0175%" height="15" fill="rgb(244,195,20)" fg:x="287474" fg:w="270"/><text x="18.9311%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (256 samples, 0.02%)</title><rect x="18.6820%" y="437" width="0.0166%" height="15" fill="rgb(253,56,35)" fg:x="287488" fg:w="256"/><text x="18.9320%" y="447.50"></text></g><g><title>native_write_msr (255 samples, 0.02%)</title><rect x="18.6821%" y="421" width="0.0166%" height="15" fill="rgb(210,149,44)" fg:x="287489" fg:w="255"/><text x="18.9321%" y="431.50"></text></g><g><title>finish_task_switch (288 samples, 0.02%)</title><rect x="18.6807%" y="469" width="0.0187%" height="15" fill="rgb(240,135,12)" fg:x="287468" fg:w="288"/><text x="18.9307%" y="479.50"></text></g><g><title>__mutex_lock.constprop.0 (2,137 samples, 0.14%)</title><rect x="18.5621%" y="533" width="0.1389%" height="15" fill="rgb(251,24,50)" fg:x="285642" fg:w="2137"/><text x="18.8121%" y="543.50"></text></g><g><title>schedule_preempt_disabled (349 samples, 0.02%)</title><rect x="18.6783%" y="517" width="0.0227%" height="15" fill="rgb(243,200,47)" fg:x="287430" fg:w="349"/><text x="18.9283%" y="527.50"></text></g><g><title>schedule (348 samples, 0.02%)</title><rect x="18.6783%" y="501" width="0.0226%" height="15" fill="rgb(224,166,26)" fg:x="287431" fg:w="348"/><text x="18.9283%" y="511.50"></text></g><g><title>__schedule (348 samples, 0.02%)</title><rect x="18.6783%" y="485" width="0.0226%" height="15" fill="rgb(233,0,47)" fg:x="287431" fg:w="348"/><text x="18.9283%" y="495.50"></text></g><g><title>_raw_spin_lock (975 samples, 0.06%)</title><rect x="18.7202%" y="501" width="0.0634%" height="15" fill="rgb(253,80,5)" fg:x="288076" fg:w="975"/><text x="18.9702%" y="511.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,262 samples, 0.08%)</title><rect x="18.7017%" y="533" width="0.0820%" height="15" fill="rgb(214,133,25)" fg:x="287790" fg:w="1262"/><text x="18.9517%" y="543.50"></text></g><g><title>btrfs_block_rsv_migrate (1,103 samples, 0.07%)</title><rect x="18.7120%" y="517" width="0.0717%" height="15" fill="rgb(209,27,14)" fg:x="287949" fg:w="1103"/><text x="18.9620%" y="527.50"></text></g><g><title>btrfs_get_or_create_delayed_node (682 samples, 0.04%)</title><rect x="18.7837%" y="533" width="0.0443%" height="15" fill="rgb(219,102,51)" fg:x="289052" fg:w="682"/><text x="19.0337%" y="543.50"></text></g><g><title>btrfs_get_delayed_node (475 samples, 0.03%)</title><rect x="18.7971%" y="517" width="0.0309%" height="15" fill="rgb(237,18,16)" fg:x="289259" fg:w="475"/><text x="19.0471%" y="527.50"></text></g><g><title>memcpy_erms (214 samples, 0.01%)</title><rect x="18.8281%" y="533" width="0.0139%" height="15" fill="rgb(241,85,17)" fg:x="289735" fg:w="214"/><text x="19.0781%" y="543.50"></text></g><g><title>mutex_lock (183 samples, 0.01%)</title><rect x="18.8420%" y="533" width="0.0119%" height="15" fill="rgb(236,90,42)" fg:x="289949" fg:w="183"/><text x="19.0920%" y="543.50"></text></g><g><title>btrfs_insert_delayed_dir_index (9,518 samples, 0.62%)</title><rect x="18.2424%" y="549" width="0.6185%" height="15" fill="rgb(249,57,21)" fg:x="280723" fg:w="9518"/><text x="18.4924%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (297 samples, 0.02%)</title><rect x="18.8609%" y="549" width="0.0193%" height="15" fill="rgb(243,12,36)" fg:x="290241" fg:w="297"/><text x="19.1109%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (176 samples, 0.01%)</title><rect x="18.8688%" y="533" width="0.0114%" height="15" fill="rgb(253,128,47)" fg:x="290362" fg:w="176"/><text x="19.1188%" y="543.50"></text></g><g><title>_raw_spin_lock (373 samples, 0.02%)</title><rect x="18.9353%" y="517" width="0.0242%" height="15" fill="rgb(207,33,20)" fg:x="291386" fg:w="373"/><text x="19.1853%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (1,043 samples, 0.07%)</title><rect x="18.8921%" y="533" width="0.0678%" height="15" fill="rgb(233,215,35)" fg:x="290720" fg:w="1043"/><text x="19.1421%" y="543.50"></text></g><g><title>btrfs_release_path (1,493 samples, 0.10%)</title><rect x="18.8802%" y="549" width="0.0970%" height="15" fill="rgb(249,188,52)" fg:x="290538" fg:w="1493"/><text x="19.1302%" y="559.50"></text></g><g><title>release_extent_buffer (268 samples, 0.02%)</title><rect x="18.9598%" y="533" width="0.0174%" height="15" fill="rgb(225,12,32)" fg:x="291763" fg:w="268"/><text x="19.2098%" y="543.50"></text></g><g><title>btrfs_set_16 (276 samples, 0.02%)</title><rect x="18.9773%" y="549" width="0.0179%" height="15" fill="rgb(247,98,14)" fg:x="292031" fg:w="276"/><text x="19.2273%" y="559.50"></text></g><g><title>crc32c (530 samples, 0.03%)</title><rect x="19.0056%" y="549" width="0.0344%" height="15" fill="rgb(247,219,48)" fg:x="292467" fg:w="530"/><text x="19.2556%" y="559.50"></text></g><g><title>crypto_shash_update (295 samples, 0.02%)</title><rect x="19.0209%" y="533" width="0.0192%" height="15" fill="rgb(253,60,48)" fg:x="292702" fg:w="295"/><text x="19.2709%" y="543.50"></text></g><g><title>btrfs_get_32 (284 samples, 0.02%)</title><rect x="19.0541%" y="533" width="0.0185%" height="15" fill="rgb(245,15,52)" fg:x="293214" fg:w="284"/><text x="19.3041%" y="543.50"></text></g><g><title>_raw_read_lock (240 samples, 0.02%)</title><rect x="19.1698%" y="469" width="0.0156%" height="15" fill="rgb(220,133,28)" fg:x="294994" fg:w="240"/><text x="19.4198%" y="479.50"></text></g><g><title>finish_wait (345 samples, 0.02%)</title><rect x="19.1859%" y="469" width="0.0224%" height="15" fill="rgb(217,180,4)" fg:x="295242" fg:w="345"/><text x="19.4359%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (331 samples, 0.02%)</title><rect x="19.1868%" y="453" width="0.0215%" height="15" fill="rgb(251,24,1)" fg:x="295256" fg:w="331"/><text x="19.4368%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (314 samples, 0.02%)</title><rect x="19.1879%" y="437" width="0.0204%" height="15" fill="rgb(212,185,49)" fg:x="295273" fg:w="314"/><text x="19.4379%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (921 samples, 0.06%)</title><rect x="19.2150%" y="453" width="0.0599%" height="15" fill="rgb(215,175,22)" fg:x="295689" fg:w="921"/><text x="19.4650%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (842 samples, 0.05%)</title><rect x="19.2201%" y="437" width="0.0547%" height="15" fill="rgb(250,205,14)" fg:x="295768" fg:w="842"/><text x="19.4701%" y="447.50"></text></g><g><title>prepare_to_wait_event (1,050 samples, 0.07%)</title><rect x="19.2085%" y="469" width="0.0682%" height="15" fill="rgb(225,211,22)" fg:x="295589" fg:w="1050"/><text x="19.4585%" y="479.50"></text></g><g><title>queued_read_lock_slowpath (2,238 samples, 0.15%)</title><rect x="19.2767%" y="469" width="0.1454%" height="15" fill="rgb(251,179,42)" fg:x="296639" fg:w="2238"/><text x="19.5267%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,451 samples, 0.09%)</title><rect x="19.3278%" y="453" width="0.0943%" height="15" fill="rgb(208,216,51)" fg:x="297426" fg:w="1451"/><text x="19.5778%" y="463.50"></text></g><g><title>dequeue_entity (284 samples, 0.02%)</title><rect x="19.4342%" y="421" width="0.0185%" height="15" fill="rgb(235,36,11)" fg:x="299063" fg:w="284"/><text x="19.6842%" y="431.50"></text></g><g><title>dequeue_task_fair (336 samples, 0.02%)</title><rect x="19.4319%" y="437" width="0.0218%" height="15" fill="rgb(213,189,28)" fg:x="299027" fg:w="336"/><text x="19.6819%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (1,585 samples, 0.10%)</title><rect x="19.4580%" y="421" width="0.1030%" height="15" fill="rgb(227,203,42)" fg:x="299429" fg:w="1585"/><text x="19.7080%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,562 samples, 0.10%)</title><rect x="19.4595%" y="405" width="0.1015%" height="15" fill="rgb(244,72,36)" fg:x="299452" fg:w="1562"/><text x="19.7095%" y="415.50"></text></g><g><title>native_write_msr (1,541 samples, 0.10%)</title><rect x="19.4609%" y="389" width="0.1001%" height="15" fill="rgb(213,53,17)" fg:x="299473" fg:w="1541"/><text x="19.7109%" y="399.50"></text></g><g><title>finish_task_switch (1,734 samples, 0.11%)</title><rect x="19.4537%" y="437" width="0.1127%" height="15" fill="rgb(207,167,3)" fg:x="299363" fg:w="1734"/><text x="19.7037%" y="447.50"></text></g><g><title>psi_task_change (223 samples, 0.01%)</title><rect x="19.5756%" y="437" width="0.0145%" height="15" fill="rgb(216,98,30)" fg:x="301238" fg:w="223"/><text x="19.8256%" y="447.50"></text></g><g><title>psi_group_change (167 samples, 0.01%)</title><rect x="19.5792%" y="421" width="0.0109%" height="15" fill="rgb(236,123,15)" fg:x="301294" fg:w="167"/><text x="19.8292%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (6,723 samples, 0.44%)</title><rect x="19.1576%" y="485" width="0.4369%" height="15" fill="rgb(248,81,50)" fg:x="294806" fg:w="6723"/><text x="19.4076%" y="495.50"></text></g><g><title>schedule (2,652 samples, 0.17%)</title><rect x="19.4221%" y="469" width="0.1723%" height="15" fill="rgb(214,120,4)" fg:x="298877" fg:w="2652"/><text x="19.6721%" y="479.50"></text></g><g><title>__schedule (2,632 samples, 0.17%)</title><rect x="19.4234%" y="453" width="0.1710%" height="15" fill="rgb(208,179,34)" fg:x="298897" fg:w="2632"/><text x="19.6734%" y="463.50"></text></g><g><title>__btrfs_read_lock_root_node (7,192 samples, 0.47%)</title><rect x="19.1545%" y="501" width="0.4674%" height="15" fill="rgb(227,140,7)" fg:x="294758" fg:w="7192"/><text x="19.4045%" y="511.50"></text></g><g><title>btrfs_root_node (420 samples, 0.03%)</title><rect x="19.5945%" y="485" width="0.0273%" height="15" fill="rgb(214,22,6)" fg:x="301530" fg:w="420"/><text x="19.8445%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (438 samples, 0.03%)</title><rect x="19.6460%" y="469" width="0.0285%" height="15" fill="rgb(207,137,27)" fg:x="302322" fg:w="438"/><text x="19.8960%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (336 samples, 0.02%)</title><rect x="19.6526%" y="453" width="0.0218%" height="15" fill="rgb(210,8,46)" fg:x="302424" fg:w="336"/><text x="19.9026%" y="463.50"></text></g><g><title>prepare_to_wait_event (563 samples, 0.04%)</title><rect x="19.6395%" y="485" width="0.0366%" height="15" fill="rgb(240,16,54)" fg:x="302222" fg:w="563"/><text x="19.8895%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (409 samples, 0.03%)</title><rect x="19.6761%" y="485" width="0.0266%" height="15" fill="rgb(211,209,29)" fg:x="302785" fg:w="409"/><text x="19.9261%" y="495.50"></text></g><g><title>dequeue_entity (402 samples, 0.03%)</title><rect x="19.7224%" y="437" width="0.0261%" height="15" fill="rgb(226,228,24)" fg:x="303498" fg:w="402"/><text x="19.9724%" y="447.50"></text></g><g><title>dequeue_task_fair (489 samples, 0.03%)</title><rect x="19.7189%" y="453" width="0.0318%" height="15" fill="rgb(222,84,9)" fg:x="303443" fg:w="489"/><text x="19.9689%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (4,840 samples, 0.31%)</title><rect x="19.7590%" y="437" width="0.3145%" height="15" fill="rgb(234,203,30)" fg:x="304061" fg:w="4840"/><text x="20.0090%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,761 samples, 0.31%)</title><rect x="19.7641%" y="421" width="0.3094%" height="15" fill="rgb(238,109,14)" fg:x="304140" fg:w="4761"/><text x="20.0141%" y="431.50"></text></g><g><title>native_write_msr (4,721 samples, 0.31%)</title><rect x="19.7667%" y="405" width="0.3068%" height="15" fill="rgb(233,206,34)" fg:x="304180" fg:w="4721"/><text x="20.0167%" y="415.50"></text></g><g><title>finish_task_switch (5,169 samples, 0.34%)</title><rect x="19.7506%" y="453" width="0.3359%" height="15" fill="rgb(220,167,47)" fg:x="303932" fg:w="5169"/><text x="20.0006%" y="463.50"></text></g><g><title>psi_task_change (343 samples, 0.02%)</title><rect x="20.0999%" y="453" width="0.0223%" height="15" fill="rgb(238,105,10)" fg:x="309306" fg:w="343"/><text x="20.3499%" y="463.50"></text></g><g><title>psi_group_change (254 samples, 0.02%)</title><rect x="20.1056%" y="437" width="0.0165%" height="15" fill="rgb(213,227,17)" fg:x="309395" fg:w="254"/><text x="20.3556%" y="447.50"></text></g><g><title>__btrfs_tree_lock (7,807 samples, 0.51%)</title><rect x="19.6218%" y="501" width="0.5073%" height="15" fill="rgb(217,132,38)" fg:x="301950" fg:w="7807"/><text x="19.8718%" y="511.50"></text></g><g><title>schedule (6,563 samples, 0.43%)</title><rect x="19.7027%" y="485" width="0.4265%" height="15" fill="rgb(242,146,4)" fg:x="303194" fg:w="6563"/><text x="19.9527%" y="495.50"></text></g><g><title>__schedule (6,532 samples, 0.42%)</title><rect x="19.7047%" y="469" width="0.4245%" height="15" fill="rgb(212,61,9)" fg:x="303225" fg:w="6532"/><text x="19.9547%" y="479.50"></text></g><g><title>btrfs_leaf_free_space (587 samples, 0.04%)</title><rect x="20.1392%" y="501" width="0.0381%" height="15" fill="rgb(247,126,22)" fg:x="309911" fg:w="587"/><text x="20.3892%" y="511.50"></text></g><g><title>leaf_space_used (503 samples, 0.03%)</title><rect x="20.1446%" y="485" width="0.0327%" height="15" fill="rgb(220,196,2)" fg:x="309995" fg:w="503"/><text x="20.3946%" y="495.50"></text></g><g><title>btrfs_get_32 (407 samples, 0.03%)</title><rect x="20.1509%" y="469" width="0.0264%" height="15" fill="rgb(208,46,4)" fg:x="310091" fg:w="407"/><text x="20.4009%" y="479.50"></text></g><g><title>_raw_write_lock (287 samples, 0.02%)</title><rect x="20.1918%" y="485" width="0.0187%" height="15" fill="rgb(252,104,46)" fg:x="310721" fg:w="287"/><text x="20.4418%" y="495.50"></text></g><g><title>btrfs_try_tree_write_lock (2,074 samples, 0.13%)</title><rect x="20.1864%" y="501" width="0.1348%" height="15" fill="rgb(237,152,48)" fg:x="310638" fg:w="2074"/><text x="20.4364%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (1,703 samples, 0.11%)</title><rect x="20.2105%" y="485" width="0.1107%" height="15" fill="rgb(221,59,37)" fg:x="311009" fg:w="1703"/><text x="20.4605%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (313 samples, 0.02%)</title><rect x="20.3008%" y="469" width="0.0203%" height="15" fill="rgb(209,202,51)" fg:x="312399" fg:w="313"/><text x="20.5508%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (2,974 samples, 0.19%)</title><rect x="20.3212%" y="501" width="0.1933%" height="15" fill="rgb(228,81,30)" fg:x="312712" fg:w="2974"/><text x="20.5712%" y="511.50"></text></g><g><title>btrfs_buffer_uptodate (371 samples, 0.02%)</title><rect x="20.5379%" y="485" width="0.0241%" height="15" fill="rgb(227,42,39)" fg:x="316047" fg:w="371"/><text x="20.7879%" y="495.50"></text></g><g><title>verify_parent_transid (311 samples, 0.02%)</title><rect x="20.5418%" y="469" width="0.0202%" height="15" fill="rgb(221,26,2)" fg:x="316107" fg:w="311"/><text x="20.7918%" y="479.50"></text></g><g><title>btrfs_get_64 (462 samples, 0.03%)</title><rect x="20.5620%" y="485" width="0.0300%" height="15" fill="rgb(254,61,31)" fg:x="316418" fg:w="462"/><text x="20.8120%" y="495.50"></text></g><g><title>__radix_tree_lookup (1,440 samples, 0.09%)</title><rect x="20.6609%" y="469" width="0.0936%" height="15" fill="rgb(222,173,38)" fg:x="317939" fg:w="1440"/><text x="20.9109%" y="479.50"></text></g><g><title>mark_page_accessed (550 samples, 0.04%)</title><rect x="20.7691%" y="453" width="0.0357%" height="15" fill="rgb(218,50,12)" fg:x="319605" fg:w="550"/><text x="21.0191%" y="463.50"></text></g><g><title>mark_extent_buffer_accessed (774 samples, 0.05%)</title><rect x="20.7546%" y="469" width="0.0503%" height="15" fill="rgb(223,88,40)" fg:x="319382" fg:w="774"/><text x="21.0046%" y="479.50"></text></g><g><title>find_extent_buffer (3,150 samples, 0.20%)</title><rect x="20.6015%" y="485" width="0.2047%" height="15" fill="rgb(237,54,19)" fg:x="317025" fg:w="3150"/><text x="20.8515%" y="495.50"></text></g><g><title>read_block_for_search.isra.0 (4,924 samples, 0.32%)</title><rect x="20.5145%" y="501" width="0.3200%" height="15" fill="rgb(251,129,25)" fg:x="315686" fg:w="4924"/><text x="20.7645%" y="511.50"></text></g><g><title>read_extent_buffer (435 samples, 0.03%)</title><rect x="20.8062%" y="485" width="0.0283%" height="15" fill="rgb(238,97,19)" fg:x="320175" fg:w="435"/><text x="21.0562%" y="495.50"></text></g><g><title>alloc_tree_block_no_bg_flush (489 samples, 0.03%)</title><rect x="20.8371%" y="485" width="0.0318%" height="15" fill="rgb(240,169,18)" fg:x="320651" fg:w="489"/><text x="21.0871%" y="495.50"></text></g><g><title>btrfs_alloc_tree_block (485 samples, 0.03%)</title><rect x="20.8374%" y="469" width="0.0315%" height="15" fill="rgb(230,187,49)" fg:x="320655" fg:w="485"/><text x="21.0874%" y="479.50"></text></g><g><title>copy_for_split (274 samples, 0.02%)</title><rect x="20.8717%" y="485" width="0.0178%" height="15" fill="rgb(209,44,26)" fg:x="321183" fg:w="274"/><text x="21.1217%" y="495.50"></text></g><g><title>btrfs_get_token_32 (334 samples, 0.02%)</title><rect x="20.9055%" y="453" width="0.0217%" height="15" fill="rgb(244,0,6)" fg:x="321704" fg:w="334"/><text x="21.1555%" y="463.50"></text></g><g><title>btrfs_set_token_32 (310 samples, 0.02%)</title><rect x="20.9287%" y="453" width="0.0201%" height="15" fill="rgb(248,18,21)" fg:x="322061" fg:w="310"/><text x="21.1787%" y="463.50"></text></g><g><title>__push_leaf_left (1,136 samples, 0.07%)</title><rect x="20.8929%" y="469" width="0.0738%" height="15" fill="rgb(245,180,19)" fg:x="321509" fg:w="1136"/><text x="21.1429%" y="479.50"></text></g><g><title>push_leaf_left (1,303 samples, 0.08%)</title><rect x="20.8896%" y="485" width="0.0847%" height="15" fill="rgb(252,118,36)" fg:x="321459" fg:w="1303"/><text x="21.1396%" y="495.50"></text></g><g><title>btrfs_get_token_32 (349 samples, 0.02%)</title><rect x="20.9950%" y="453" width="0.0227%" height="15" fill="rgb(210,224,19)" fg:x="323081" fg:w="349"/><text x="21.2450%" y="463.50"></text></g><g><title>btrfs_set_token_32 (370 samples, 0.02%)</title><rect x="21.0200%" y="453" width="0.0240%" height="15" fill="rgb(218,30,24)" fg:x="323466" fg:w="370"/><text x="21.2700%" y="463.50"></text></g><g><title>__push_leaf_right (1,291 samples, 0.08%)</title><rect x="20.9797%" y="469" width="0.0839%" height="15" fill="rgb(219,75,50)" fg:x="322845" fg:w="1291"/><text x="21.2297%" y="479.50"></text></g><g><title>btrfs_read_node_slot (196 samples, 0.01%)</title><rect x="21.0718%" y="469" width="0.0127%" height="15" fill="rgb(234,72,50)" fg:x="324263" fg:w="196"/><text x="21.3218%" y="479.50"></text></g><g><title>read_tree_block (168 samples, 0.01%)</title><rect x="21.0736%" y="453" width="0.0109%" height="15" fill="rgb(219,100,48)" fg:x="324291" fg:w="168"/><text x="21.3236%" y="463.50"></text></g><g><title>push_leaf_right (1,735 samples, 0.11%)</title><rect x="20.9743%" y="485" width="0.1127%" height="15" fill="rgb(253,5,41)" fg:x="322762" fg:w="1735"/><text x="21.2243%" y="495.50"></text></g><g><title>split_leaf (3,889 samples, 0.25%)</title><rect x="20.8344%" y="501" width="0.2527%" height="15" fill="rgb(247,181,11)" fg:x="320610" fg:w="3889"/><text x="21.0844%" y="511.50"></text></g><g><title>select_task_rq_fair (455 samples, 0.03%)</title><rect x="21.1541%" y="421" width="0.0296%" height="15" fill="rgb(222,223,25)" fg:x="325530" fg:w="455"/><text x="21.4041%" y="431.50"></text></g><g><title>enqueue_entity (422 samples, 0.03%)</title><rect x="21.1940%" y="389" width="0.0274%" height="15" fill="rgb(214,198,28)" fg:x="326144" fg:w="422"/><text x="21.4440%" y="399.50"></text></g><g><title>update_load_avg (172 samples, 0.01%)</title><rect x="21.2103%" y="373" width="0.0112%" height="15" fill="rgb(230,46,43)" fg:x="326394" fg:w="172"/><text x="21.4603%" y="383.50"></text></g><g><title>enqueue_task_fair (538 samples, 0.03%)</title><rect x="21.1889%" y="405" width="0.0350%" height="15" fill="rgb(233,65,53)" fg:x="326065" fg:w="538"/><text x="21.4389%" y="415.50"></text></g><g><title>ttwu_do_activate (1,024 samples, 0.07%)</title><rect x="21.1868%" y="421" width="0.0665%" height="15" fill="rgb(221,121,27)" fg:x="326033" fg:w="1024"/><text x="21.4368%" y="431.50"></text></g><g><title>psi_task_change (453 samples, 0.03%)</title><rect x="21.2239%" y="405" width="0.0294%" height="15" fill="rgb(247,70,47)" fg:x="326604" fg:w="453"/><text x="21.4739%" y="415.50"></text></g><g><title>psi_group_change (371 samples, 0.02%)</title><rect x="21.2293%" y="389" width="0.0241%" height="15" fill="rgb(228,85,35)" fg:x="326686" fg:w="371"/><text x="21.4793%" y="399.50"></text></g><g><title>__wake_up_common (2,310 samples, 0.15%)</title><rect x="21.1173%" y="469" width="0.1501%" height="15" fill="rgb(209,50,18)" fg:x="324963" fg:w="2310"/><text x="21.3673%" y="479.50"></text></g><g><title>autoremove_wake_function (2,262 samples, 0.15%)</title><rect x="21.1204%" y="453" width="0.1470%" height="15" fill="rgb(250,19,35)" fg:x="325011" fg:w="2262"/><text x="21.3704%" y="463.50"></text></g><g><title>try_to_wake_up (2,190 samples, 0.14%)</title><rect x="21.1251%" y="437" width="0.1423%" height="15" fill="rgb(253,107,29)" fg:x="325083" fg:w="2190"/><text x="21.3751%" y="447.50"></text></g><g><title>__wake_up_common_lock (2,363 samples, 0.15%)</title><rect x="21.1165%" y="485" width="0.1536%" height="15" fill="rgb(252,179,29)" fg:x="324950" fg:w="2363"/><text x="21.3665%" y="495.50"></text></g><g><title>btrfs_tree_read_unlock (399 samples, 0.03%)</title><rect x="21.2702%" y="485" width="0.0259%" height="15" fill="rgb(238,194,6)" fg:x="327316" fg:w="399"/><text x="21.5202%" y="495.50"></text></g><g><title>btrfs_search_slot (34,267 samples, 2.23%)</title><rect x="19.0797%" y="517" width="2.2268%" height="15" fill="rgb(238,164,29)" fg:x="293608" fg:w="34267"/><text x="19.3297%" y="527.50">b..</text></g><g><title>unlock_up (3,375 samples, 0.22%)</title><rect x="21.0872%" y="501" width="0.2193%" height="15" fill="rgb(224,25,9)" fg:x="324500" fg:w="3375"/><text x="21.3372%" y="511.50"></text></g><g><title>btrfs_get_32 (295 samples, 0.02%)</title><rect x="21.4286%" y="501" width="0.0192%" height="15" fill="rgb(244,153,23)" fg:x="329754" fg:w="295"/><text x="21.6786%" y="511.50"></text></g><g><title>btrfs_get_token_32 (9,737 samples, 0.63%)</title><rect x="21.4478%" y="501" width="0.6327%" height="15" fill="rgb(212,203,14)" fg:x="330049" fg:w="9737"/><text x="21.6978%" y="511.50"></text></g><g><title>check_setget_bounds.isra.0 (1,355 samples, 0.09%)</title><rect x="21.9925%" y="485" width="0.0881%" height="15" fill="rgb(220,164,20)" fg:x="338431" fg:w="1355"/><text x="22.2425%" y="495.50"></text></g><g><title>btrfs_leaf_free_space (725 samples, 0.05%)</title><rect x="22.0806%" y="501" width="0.0471%" height="15" fill="rgb(222,203,48)" fg:x="339786" fg:w="725"/><text x="22.3306%" y="511.50"></text></g><g><title>leaf_space_used (625 samples, 0.04%)</title><rect x="22.0871%" y="485" width="0.0406%" height="15" fill="rgb(215,159,22)" fg:x="339886" fg:w="625"/><text x="22.3371%" y="495.50"></text></g><g><title>btrfs_get_32 (455 samples, 0.03%)</title><rect x="22.0981%" y="469" width="0.0296%" height="15" fill="rgb(216,183,47)" fg:x="340056" fg:w="455"/><text x="22.3481%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (392 samples, 0.03%)</title><rect x="22.1277%" y="501" width="0.0255%" height="15" fill="rgb(229,195,25)" fg:x="340511" fg:w="392"/><text x="22.3777%" y="511.50"></text></g><g><title>set_extent_buffer_dirty (188 samples, 0.01%)</title><rect x="22.1409%" y="485" width="0.0122%" height="15" fill="rgb(224,132,51)" fg:x="340715" fg:w="188"/><text x="22.3909%" y="495.50"></text></g><g><title>check_setget_bounds.isra.0 (1,176 samples, 0.08%)</title><rect x="22.5870%" y="485" width="0.0764%" height="15" fill="rgb(240,63,7)" fg:x="347579" fg:w="1176"/><text x="22.8370%" y="495.50"></text></g><g><title>btrfs_set_token_32 (7,853 samples, 0.51%)</title><rect x="22.1531%" y="501" width="0.5103%" height="15" fill="rgb(249,182,41)" fg:x="340903" fg:w="7853"/><text x="22.4031%" y="511.50"></text></g><g><title>btrfs_unlock_up_safe (260 samples, 0.02%)</title><rect x="22.6635%" y="501" width="0.0169%" height="15" fill="rgb(243,47,26)" fg:x="348756" fg:w="260"/><text x="22.9135%" y="511.50"></text></g><g><title>copy_pages (254 samples, 0.02%)</title><rect x="22.6900%" y="485" width="0.0165%" height="15" fill="rgb(233,48,2)" fg:x="349165" fg:w="254"/><text x="22.9400%" y="495.50"></text></g><g><title>memcpy_extent_buffer (2,494 samples, 0.16%)</title><rect x="22.6807%" y="501" width="0.1621%" height="15" fill="rgb(244,165,34)" fg:x="349021" fg:w="2494"/><text x="22.9307%" y="511.50"></text></g><g><title>memmove (2,096 samples, 0.14%)</title><rect x="22.7065%" y="485" width="0.1362%" height="15" fill="rgb(207,89,7)" fg:x="349419" fg:w="2096"/><text x="22.9565%" y="495.50"></text></g><g><title>copy_pages (257 samples, 0.02%)</title><rect x="22.8622%" y="485" width="0.0167%" height="15" fill="rgb(244,117,36)" fg:x="351815" fg:w="257"/><text x="23.1122%" y="495.50"></text></g><g><title>memmove_extent_buffer (2,425 samples, 0.16%)</title><rect x="22.8428%" y="501" width="0.1576%" height="15" fill="rgb(226,144,34)" fg:x="351515" fg:w="2425"/><text x="23.0928%" y="511.50"></text></g><g><title>memmove (1,868 samples, 0.12%)</title><rect x="22.8789%" y="485" width="0.1214%" height="15" fill="rgb(213,23,19)" fg:x="352072" fg:w="1868"/><text x="23.1289%" y="495.50"></text></g><g><title>insert_with_overflow (61,184 samples, 3.98%)</title><rect x="19.0400%" y="549" width="3.9760%" height="15" fill="rgb(217,75,12)" fg:x="292997" fg:w="61184"/><text x="19.2900%" y="559.50">inse..</text></g><g><title>btrfs_insert_empty_items (60,683 samples, 3.94%)</title><rect x="19.0726%" y="533" width="3.9434%" height="15" fill="rgb(224,159,17)" fg:x="293498" fg:w="60683"/><text x="19.3226%" y="543.50">btrf..</text></g><g><title>setup_items_for_insert (26,306 samples, 1.71%)</title><rect x="21.3065%" y="517" width="1.7095%" height="15" fill="rgb(217,118,1)" fg:x="327875" fg:w="26306"/><text x="21.5565%" y="527.50"></text></g><g><title>write_extent_buffer (241 samples, 0.02%)</title><rect x="23.0003%" y="501" width="0.0157%" height="15" fill="rgb(232,180,48)" fg:x="353940" fg:w="241"/><text x="23.2503%" y="511.50"></text></g><g><title>_cond_resched (198 samples, 0.01%)</title><rect x="23.0468%" y="517" width="0.0129%" height="15" fill="rgb(230,27,33)" fg:x="354655" fg:w="198"/><text x="23.2968%" y="527.50"></text></g><g><title>kmem_cache_alloc (678 samples, 0.04%)</title><rect x="23.0160%" y="549" width="0.0441%" height="15" fill="rgb(205,31,21)" fg:x="354181" fg:w="678"/><text x="23.2660%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (276 samples, 0.02%)</title><rect x="23.0421%" y="533" width="0.0179%" height="15" fill="rgb(253,59,4)" fg:x="354583" fg:w="276"/><text x="23.2921%" y="543.50"></text></g><g><title>kmem_cache_free (446 samples, 0.03%)</title><rect x="23.0601%" y="549" width="0.0290%" height="15" fill="rgb(224,201,9)" fg:x="354859" fg:w="446"/><text x="23.3101%" y="559.50"></text></g><g><title>btrfs_insert_dir_item (75,841 samples, 4.93%)</title><rect x="18.2064%" y="565" width="4.9284%" height="15" fill="rgb(229,206,30)" fg:x="280169" fg:w="75841"/><text x="18.4564%" y="575.50">btrfs_..</text></g><g><title>write_extent_buffer (705 samples, 0.05%)</title><rect x="23.0890%" y="549" width="0.0458%" height="15" fill="rgb(212,67,47)" fg:x="355305" fg:w="705"/><text x="23.3390%" y="559.50"></text></g><g><title>_raw_spin_lock (317 samples, 0.02%)</title><rect x="23.2236%" y="501" width="0.0206%" height="15" fill="rgb(211,96,50)" fg:x="357375" fg:w="317"/><text x="23.4736%" y="511.50"></text></g><g><title>free_extent_buffer.part.0 (1,013 samples, 0.07%)</title><rect x="23.1787%" y="517" width="0.0658%" height="15" fill="rgb(252,114,18)" fg:x="356684" fg:w="1013"/><text x="23.4287%" y="527.50"></text></g><g><title>btrfs_free_path (1,507 samples, 0.10%)</title><rect x="23.1646%" y="549" width="0.0979%" height="15" fill="rgb(223,58,37)" fg:x="356467" fg:w="1507"/><text x="23.4146%" y="559.50"></text></g><g><title>btrfs_release_path (1,488 samples, 0.10%)</title><rect x="23.1658%" y="533" width="0.0967%" height="15" fill="rgb(237,70,4)" fg:x="356486" fg:w="1488"/><text x="23.4158%" y="543.50"></text></g><g><title>release_extent_buffer (276 samples, 0.02%)</title><rect x="23.2445%" y="517" width="0.0179%" height="15" fill="rgb(244,85,46)" fg:x="357698" fg:w="276"/><text x="23.4945%" y="527.50"></text></g><g><title>_raw_read_lock (226 samples, 0.01%)</title><rect x="23.3986%" y="485" width="0.0147%" height="15" fill="rgb(223,39,52)" fg:x="360069" fg:w="226"/><text x="23.6486%" y="495.50"></text></g><g><title>finish_wait (524 samples, 0.03%)</title><rect x="23.4134%" y="485" width="0.0341%" height="15" fill="rgb(218,200,14)" fg:x="360297" fg:w="524"/><text x="23.6634%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (498 samples, 0.03%)</title><rect x="23.4151%" y="469" width="0.0324%" height="15" fill="rgb(208,171,16)" fg:x="360323" fg:w="498"/><text x="23.6651%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (464 samples, 0.03%)</title><rect x="23.4173%" y="453" width="0.0302%" height="15" fill="rgb(234,200,18)" fg:x="360357" fg:w="464"/><text x="23.6673%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (1,437 samples, 0.09%)</title><rect x="23.4581%" y="469" width="0.0934%" height="15" fill="rgb(228,45,11)" fg:x="360984" fg:w="1437"/><text x="23.7081%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,348 samples, 0.09%)</title><rect x="23.4639%" y="453" width="0.0876%" height="15" fill="rgb(237,182,11)" fg:x="361073" fg:w="1348"/><text x="23.7139%" y="463.50"></text></g><g><title>prepare_to_wait_event (1,641 samples, 0.11%)</title><rect x="23.4477%" y="485" width="0.1066%" height="15" fill="rgb(241,175,49)" fg:x="360824" fg:w="1641"/><text x="23.6977%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (2,476 samples, 0.16%)</title><rect x="23.5543%" y="485" width="0.1609%" height="15" fill="rgb(247,38,35)" fg:x="362465" fg:w="2476"/><text x="23.8043%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,619 samples, 0.11%)</title><rect x="23.6100%" y="469" width="0.1052%" height="15" fill="rgb(228,39,49)" fg:x="363322" fg:w="1619"/><text x="23.8600%" y="479.50"></text></g><g><title>dequeue_entity (348 samples, 0.02%)</title><rect x="23.7328%" y="437" width="0.0226%" height="15" fill="rgb(226,101,26)" fg:x="365211" fg:w="348"/><text x="23.9828%" y="447.50"></text></g><g><title>dequeue_task_fair (422 samples, 0.03%)</title><rect x="23.7293%" y="453" width="0.0274%" height="15" fill="rgb(206,141,19)" fg:x="365158" fg:w="422"/><text x="23.9793%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (2,348 samples, 0.15%)</title><rect x="23.7620%" y="437" width="0.1526%" height="15" fill="rgb(211,200,13)" fg:x="365661" fg:w="2348"/><text x="24.0120%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,305 samples, 0.15%)</title><rect x="23.7648%" y="421" width="0.1498%" height="15" fill="rgb(241,121,6)" fg:x="365704" fg:w="2305"/><text x="24.0148%" y="431.50"></text></g><g><title>native_write_msr (2,272 samples, 0.15%)</title><rect x="23.7670%" y="405" width="0.1476%" height="15" fill="rgb(234,221,29)" fg:x="365737" fg:w="2272"/><text x="24.0170%" y="415.50"></text></g><g><title>finish_task_switch (2,505 samples, 0.16%)</title><rect x="23.7567%" y="453" width="0.1628%" height="15" fill="rgb(229,136,5)" fg:x="365580" fg:w="2505"/><text x="24.0067%" y="463.50"></text></g><g><title>psi_task_change (298 samples, 0.02%)</title><rect x="23.9314%" y="453" width="0.0194%" height="15" fill="rgb(238,36,11)" fg:x="368268" fg:w="298"/><text x="24.1814%" y="463.50"></text></g><g><title>psi_group_change (221 samples, 0.01%)</title><rect x="23.9364%" y="437" width="0.0144%" height="15" fill="rgb(251,55,41)" fg:x="368345" fg:w="221"/><text x="24.1864%" y="447.50"></text></g><g><title>__btrfs_tree_read_lock (8,801 samples, 0.57%)</title><rect x="23.3858%" y="501" width="0.5719%" height="15" fill="rgb(242,34,40)" fg:x="359872" fg:w="8801"/><text x="23.6358%" y="511.50"></text></g><g><title>schedule (3,732 samples, 0.24%)</title><rect x="23.7152%" y="485" width="0.2425%" height="15" fill="rgb(215,42,17)" fg:x="364941" fg:w="3732"/><text x="23.9652%" y="495.50"></text></g><g><title>__schedule (3,711 samples, 0.24%)</title><rect x="23.7166%" y="469" width="0.2412%" height="15" fill="rgb(207,44,46)" fg:x="364962" fg:w="3711"/><text x="23.9666%" y="479.50"></text></g><g><title>btrfs_root_node (930 samples, 0.06%)</title><rect x="23.9578%" y="501" width="0.0604%" height="15" fill="rgb(211,206,28)" fg:x="368674" fg:w="930"/><text x="24.2078%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (9,917 samples, 0.64%)</title><rect x="23.3739%" y="517" width="0.6444%" height="15" fill="rgb(237,167,16)" fg:x="359688" fg:w="9917"/><text x="23.6239%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (220 samples, 0.01%)</title><rect x="24.0228%" y="453" width="0.0143%" height="15" fill="rgb(233,66,6)" fg:x="369674" fg:w="220"/><text x="24.2728%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (215 samples, 0.01%)</title><rect x="24.0231%" y="437" width="0.0140%" height="15" fill="rgb(246,123,29)" fg:x="369679" fg:w="215"/><text x="24.2731%" y="447.50"></text></g><g><title>native_write_msr (212 samples, 0.01%)</title><rect x="24.0233%" y="421" width="0.0138%" height="15" fill="rgb(209,62,40)" fg:x="369682" fg:w="212"/><text x="24.2733%" y="431.50"></text></g><g><title>finish_task_switch (239 samples, 0.02%)</title><rect x="24.0219%" y="469" width="0.0155%" height="15" fill="rgb(218,4,25)" fg:x="369661" fg:w="239"/><text x="24.2719%" y="479.50"></text></g><g><title>__btrfs_tree_lock (331 samples, 0.02%)</title><rect x="24.0183%" y="517" width="0.0215%" height="15" fill="rgb(253,91,49)" fg:x="369605" fg:w="331"/><text x="24.2683%" y="527.50"></text></g><g><title>schedule (303 samples, 0.02%)</title><rect x="24.0201%" y="501" width="0.0197%" height="15" fill="rgb(228,155,29)" fg:x="369633" fg:w="303"/><text x="24.2701%" y="511.50"></text></g><g><title>__schedule (302 samples, 0.02%)</title><rect x="24.0202%" y="485" width="0.0196%" height="15" fill="rgb(243,57,37)" fg:x="369634" fg:w="302"/><text x="24.2702%" y="495.50"></text></g><g><title>_raw_spin_lock (169 samples, 0.01%)</title><rect x="24.0783%" y="405" width="0.0110%" height="15" fill="rgb(244,167,17)" fg:x="370528" fg:w="169"/><text x="24.3283%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (160 samples, 0.01%)</title><rect x="24.0789%" y="389" width="0.0104%" height="15" fill="rgb(207,181,38)" fg:x="370537" fg:w="160"/><text x="24.3289%" y="399.50"></text></g><g><title>btrfs_alloc_from_cluster (237 samples, 0.02%)</title><rect x="24.0774%" y="421" width="0.0154%" height="15" fill="rgb(211,8,23)" fg:x="370514" fg:w="237"/><text x="24.3274%" y="431.50"></text></g><g><title>btrfs_reserve_extent (369 samples, 0.02%)</title><rect x="24.0695%" y="453" width="0.0240%" height="15" fill="rgb(235,11,44)" fg:x="370393" fg:w="369"/><text x="24.3195%" y="463.50"></text></g><g><title>find_free_extent (342 samples, 0.02%)</title><rect x="24.0713%" y="437" width="0.0222%" height="15" fill="rgb(248,18,52)" fg:x="370420" fg:w="342"/><text x="24.3213%" y="447.50"></text></g><g><title>alloc_tree_block_no_bg_flush (772 samples, 0.05%)</title><rect x="24.0513%" y="485" width="0.0502%" height="15" fill="rgb(208,4,7)" fg:x="370113" fg:w="772"/><text x="24.3013%" y="495.50"></text></g><g><title>btrfs_alloc_tree_block (771 samples, 0.05%)</title><rect x="24.0514%" y="469" width="0.0501%" height="15" fill="rgb(240,17,39)" fg:x="370114" fg:w="771"/><text x="24.3014%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (175 samples, 0.01%)</title><rect x="24.1075%" y="485" width="0.0114%" height="15" fill="rgb(207,170,3)" fg:x="370978" fg:w="175"/><text x="24.3575%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (166 samples, 0.01%)</title><rect x="24.1081%" y="469" width="0.0108%" height="15" fill="rgb(236,100,52)" fg:x="370987" fg:w="166"/><text x="24.3581%" y="479.50"></text></g><g><title>copy_extent_buffer_full (176 samples, 0.01%)</title><rect x="24.1191%" y="485" width="0.0114%" height="15" fill="rgb(246,78,51)" fg:x="371156" fg:w="176"/><text x="24.3691%" y="495.50"></text></g><g><title>copy_page (171 samples, 0.01%)</title><rect x="24.1194%" y="469" width="0.0111%" height="15" fill="rgb(211,17,15)" fg:x="371161" fg:w="171"/><text x="24.3694%" y="479.50"></text></g><g><title>__btrfs_cow_block (1,362 samples, 0.09%)</title><rect x="24.0500%" y="501" width="0.0885%" height="15" fill="rgb(209,59,46)" fg:x="370093" fg:w="1362"/><text x="24.3000%" y="511.50"></text></g><g><title>btrfs_cow_block (1,368 samples, 0.09%)</title><rect x="24.0498%" y="517" width="0.0889%" height="15" fill="rgb(210,92,25)" fg:x="370090" fg:w="1368"/><text x="24.2998%" y="527.50"></text></g><g><title>btrfs_leaf_free_space (792 samples, 0.05%)</title><rect x="24.1387%" y="517" width="0.0515%" height="15" fill="rgb(238,174,52)" fg:x="371458" fg:w="792"/><text x="24.3887%" y="527.50"></text></g><g><title>leaf_space_used (651 samples, 0.04%)</title><rect x="24.1479%" y="501" width="0.0423%" height="15" fill="rgb(230,73,7)" fg:x="371599" fg:w="651"/><text x="24.3979%" y="511.50"></text></g><g><title>btrfs_get_32 (484 samples, 0.03%)</title><rect x="24.1587%" y="485" width="0.0315%" height="15" fill="rgb(243,124,40)" fg:x="371766" fg:w="484"/><text x="24.4087%" y="495.50"></text></g><g><title>_raw_write_lock (330 samples, 0.02%)</title><rect x="24.2072%" y="501" width="0.0214%" height="15" fill="rgb(244,170,11)" fg:x="372512" fg:w="330"/><text x="24.4572%" y="511.50"></text></g><g><title>btrfs_try_tree_write_lock (1,660 samples, 0.11%)</title><rect x="24.2003%" y="517" width="0.1079%" height="15" fill="rgb(207,114,54)" fg:x="372405" fg:w="1660"/><text x="24.4503%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (1,223 samples, 0.08%)</title><rect x="24.2287%" y="501" width="0.0795%" height="15" fill="rgb(205,42,20)" fg:x="372842" fg:w="1223"/><text x="24.4787%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (3,868 samples, 0.25%)</title><rect x="24.3082%" y="517" width="0.2514%" height="15" fill="rgb(230,30,28)" fg:x="374066" fg:w="3868"/><text x="24.5582%" y="527.50"></text></g><g><title>btrfs_buffer_uptodate (604 samples, 0.04%)</title><rect x="24.5945%" y="501" width="0.0393%" height="15" fill="rgb(205,73,54)" fg:x="378472" fg:w="604"/><text x="24.8445%" y="511.50"></text></g><g><title>verify_parent_transid (534 samples, 0.03%)</title><rect x="24.5991%" y="485" width="0.0347%" height="15" fill="rgb(254,227,23)" fg:x="378542" fg:w="534"/><text x="24.8491%" y="495.50"></text></g><g><title>btrfs_get_64 (522 samples, 0.03%)</title><rect x="24.6338%" y="501" width="0.0339%" height="15" fill="rgb(228,202,34)" fg:x="379076" fg:w="522"/><text x="24.8838%" y="511.50"></text></g><g><title>__radix_tree_lookup (2,036 samples, 0.13%)</title><rect x="24.7520%" y="485" width="0.1323%" height="15" fill="rgb(222,225,37)" fg:x="380895" fg:w="2036"/><text x="25.0020%" y="495.50"></text></g><g><title>mark_page_accessed (975 samples, 0.06%)</title><rect x="24.8988%" y="469" width="0.0634%" height="15" fill="rgb(221,14,54)" fg:x="383155" fg:w="975"/><text x="25.1488%" y="479.50"></text></g><g><title>mark_extent_buffer_accessed (1,193 samples, 0.08%)</title><rect x="24.8847%" y="485" width="0.0775%" height="15" fill="rgb(254,102,2)" fg:x="382938" fg:w="1193"/><text x="25.1347%" y="495.50"></text></g><g><title>find_extent_buffer (4,386 samples, 0.29%)</title><rect x="24.6786%" y="501" width="0.2850%" height="15" fill="rgb(232,104,17)" fg:x="379766" fg:w="4386"/><text x="24.9286%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (6,759 samples, 0.44%)</title><rect x="24.5596%" y="517" width="0.4392%" height="15" fill="rgb(250,220,14)" fg:x="377934" fg:w="6759"/><text x="24.8096%" y="527.50"></text></g><g><title>read_extent_buffer (541 samples, 0.04%)</title><rect x="24.9636%" y="501" width="0.0352%" height="15" fill="rgb(241,158,9)" fg:x="384152" fg:w="541"/><text x="25.2136%" y="511.50"></text></g><g><title>__wake_up_common (166 samples, 0.01%)</title><rect x="25.0468%" y="485" width="0.0108%" height="15" fill="rgb(246,9,43)" fg:x="385432" fg:w="166"/><text x="25.2968%" y="495.50"></text></g><g><title>autoremove_wake_function (160 samples, 0.01%)</title><rect x="25.0472%" y="469" width="0.0104%" height="15" fill="rgb(206,73,33)" fg:x="385438" fg:w="160"/><text x="25.2972%" y="479.50"></text></g><g><title>try_to_wake_up (157 samples, 0.01%)</title><rect x="25.0474%" y="453" width="0.0102%" height="15" fill="rgb(222,79,8)" fg:x="385441" fg:w="157"/><text x="25.2974%" y="463.50"></text></g><g><title>__wake_up_common_lock (168 samples, 0.01%)</title><rect x="25.0467%" y="501" width="0.0109%" height="15" fill="rgb(234,8,54)" fg:x="385431" fg:w="168"/><text x="25.2967%" y="511.50"></text></g><g><title>btrfs_tree_read_unlock (441 samples, 0.03%)</title><rect x="25.0577%" y="501" width="0.0287%" height="15" fill="rgb(209,134,38)" fg:x="385600" fg:w="441"/><text x="25.3077%" y="511.50"></text></g><g><title>btrfs_search_slot (27,818 samples, 1.81%)</title><rect x="23.2869%" y="533" width="1.8077%" height="15" fill="rgb(230,127,29)" fg:x="358350" fg:w="27818"/><text x="23.5369%" y="543.50">b..</text></g><g><title>unlock_up (1,471 samples, 0.10%)</title><rect x="24.9990%" y="517" width="0.0956%" height="15" fill="rgb(242,44,41)" fg:x="384697" fg:w="1471"/><text x="25.2490%" y="527.50"></text></g><g><title>btrfs_get_32 (373 samples, 0.02%)</title><rect x="25.2002%" y="517" width="0.0242%" height="15" fill="rgb(222,56,43)" fg:x="387793" fg:w="373"/><text x="25.4502%" y="527.50"></text></g><g><title>check_setget_bounds.isra.0 (881 samples, 0.06%)</title><rect x="25.5990%" y="501" width="0.0573%" height="15" fill="rgb(238,39,47)" fg:x="393930" fg:w="881"/><text x="25.8490%" y="511.50"></text></g><g><title>btrfs_get_token_32 (6,646 samples, 0.43%)</title><rect x="25.2245%" y="517" width="0.4319%" height="15" fill="rgb(226,79,43)" fg:x="388166" fg:w="6646"/><text x="25.4745%" y="527.50"></text></g><g><title>btrfs_leaf_free_space (781 samples, 0.05%)</title><rect x="25.6564%" y="517" width="0.0508%" height="15" fill="rgb(242,105,53)" fg:x="394812" fg:w="781"/><text x="25.9064%" y="527.50"></text></g><g><title>leaf_space_used (651 samples, 0.04%)</title><rect x="25.6648%" y="501" width="0.0423%" height="15" fill="rgb(251,132,46)" fg:x="394942" fg:w="651"/><text x="25.9148%" y="511.50"></text></g><g><title>btrfs_get_32 (477 samples, 0.03%)</title><rect x="25.6761%" y="485" width="0.0310%" height="15" fill="rgb(231,77,14)" fg:x="395116" fg:w="477"/><text x="25.9261%" y="495.50"></text></g><g><title>btrfs_mark_buffer_dirty (537 samples, 0.03%)</title><rect x="25.7071%" y="517" width="0.0349%" height="15" fill="rgb(240,135,9)" fg:x="395593" fg:w="537"/><text x="25.9571%" y="527.50"></text></g><g><title>set_extent_buffer_dirty (195 samples, 0.01%)</title><rect x="25.7293%" y="501" width="0.0127%" height="15" fill="rgb(248,109,14)" fg:x="395935" fg:w="195"/><text x="25.9793%" y="511.50"></text></g><g><title>btrfs_set_token_32 (5,384 samples, 0.35%)</title><rect x="25.7420%" y="517" width="0.3499%" height="15" fill="rgb(227,146,52)" fg:x="396130" fg:w="5384"/><text x="25.9920%" y="527.50"></text></g><g><title>check_setget_bounds.isra.0 (800 samples, 0.05%)</title><rect x="26.0399%" y="501" width="0.0520%" height="15" fill="rgb(232,54,3)" fg:x="400714" fg:w="800"/><text x="26.2899%" y="511.50"></text></g><g><title>btrfs_unlock_up_safe (224 samples, 0.01%)</title><rect x="26.0919%" y="517" width="0.0146%" height="15" fill="rgb(229,201,43)" fg:x="401514" fg:w="224"/><text x="26.3419%" y="527.50"></text></g><g><title>copy_pages (429 samples, 0.03%)</title><rect x="26.1207%" y="501" width="0.0279%" height="15" fill="rgb(252,161,33)" fg:x="401957" fg:w="429"/><text x="26.3707%" y="511.50"></text></g><g><title>memcpy_extent_buffer (4,388 samples, 0.29%)</title><rect x="26.1064%" y="517" width="0.2851%" height="15" fill="rgb(226,146,40)" fg:x="401738" fg:w="4388"/><text x="26.3564%" y="527.50"></text></g><g><title>memmove (3,740 samples, 0.24%)</title><rect x="26.1485%" y="501" width="0.2430%" height="15" fill="rgb(219,47,25)" fg:x="402386" fg:w="3740"/><text x="26.3985%" y="511.50"></text></g><g><title>copy_pages (188 samples, 0.01%)</title><rect x="26.4094%" y="501" width="0.0122%" height="15" fill="rgb(250,135,13)" fg:x="406401" fg:w="188"/><text x="26.6594%" y="511.50"></text></g><g><title>memmove_extent_buffer (1,790 samples, 0.12%)</title><rect x="26.3916%" y="517" width="0.1163%" height="15" fill="rgb(219,229,18)" fg:x="406126" fg:w="1790"/><text x="26.6416%" y="527.50"></text></g><g><title>memmove (1,327 samples, 0.09%)</title><rect x="26.4217%" y="501" width="0.0862%" height="15" fill="rgb(217,152,27)" fg:x="406589" fg:w="1327"/><text x="26.6717%" y="511.50"></text></g><g><title>btrfs_insert_empty_items (50,171 samples, 3.26%)</title><rect x="23.2709%" y="549" width="3.2603%" height="15" fill="rgb(225,71,47)" fg:x="358104" fg:w="50171"/><text x="23.5209%" y="559.50">btr..</text></g><g><title>setup_items_for_insert (22,107 samples, 1.44%)</title><rect x="25.0946%" y="533" width="1.4366%" height="15" fill="rgb(220,139,14)" fg:x="386168" fg:w="22107"/><text x="25.3446%" y="543.50"></text></g><g><title>write_extent_buffer (359 samples, 0.02%)</title><rect x="26.5079%" y="517" width="0.0233%" height="15" fill="rgb(247,54,32)" fg:x="407916" fg:w="359"/><text x="26.7579%" y="527.50"></text></g><g><title>btrfs_mark_buffer_dirty (320 samples, 0.02%)</title><rect x="26.5312%" y="549" width="0.0208%" height="15" fill="rgb(252,131,39)" fg:x="408275" fg:w="320"/><text x="26.7812%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (184 samples, 0.01%)</title><rect x="26.5401%" y="533" width="0.0120%" height="15" fill="rgb(210,108,39)" fg:x="408411" fg:w="184"/><text x="26.7901%" y="543.50"></text></g><g><title>btrfs_set_16 (251 samples, 0.02%)</title><rect x="26.5520%" y="549" width="0.0163%" height="15" fill="rgb(205,23,29)" fg:x="408595" fg:w="251"/><text x="26.8020%" y="559.50"></text></g><g><title>btrfs_set_64 (239 samples, 0.02%)</title><rect x="26.5683%" y="549" width="0.0155%" height="15" fill="rgb(246,139,46)" fg:x="408846" fg:w="239"/><text x="26.8183%" y="559.50"></text></g><g><title>kmem_cache_alloc (680 samples, 0.04%)</title><rect x="26.5839%" y="549" width="0.0442%" height="15" fill="rgb(250,81,26)" fg:x="409085" fg:w="680"/><text x="26.8339%" y="559.50"></text></g><g><title>kmem_cache_free (399 samples, 0.03%)</title><rect x="26.6281%" y="549" width="0.0259%" height="15" fill="rgb(214,104,7)" fg:x="409765" fg:w="399"/><text x="26.8781%" y="559.50"></text></g><g><title>btrfs_insert_inode_ref (54,460 samples, 3.54%)</title><rect x="23.1349%" y="565" width="3.5390%" height="15" fill="rgb(233,189,8)" fg:x="356010" fg:w="54460"/><text x="23.3849%" y="575.50">btr..</text></g><g><title>write_extent_buffer (306 samples, 0.02%)</title><rect x="26.6540%" y="549" width="0.0199%" height="15" fill="rgb(228,141,17)" fg:x="410164" fg:w="306"/><text x="26.9040%" y="559.50"></text></g><g><title>_raw_spin_lock (262 samples, 0.02%)</title><rect x="26.7325%" y="517" width="0.0170%" height="15" fill="rgb(247,157,1)" fg:x="411372" fg:w="262"/><text x="26.9825%" y="527.50"></text></g><g><title>mutex_lock (169 samples, 0.01%)</title><rect x="26.7496%" y="517" width="0.0110%" height="15" fill="rgb(249,225,5)" fg:x="411636" fg:w="169"/><text x="26.9996%" y="527.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (982 samples, 0.06%)</title><rect x="26.7088%" y="533" width="0.0638%" height="15" fill="rgb(242,55,13)" fg:x="411008" fg:w="982"/><text x="26.9588%" y="543.50"></text></g><g><title>mutex_unlock (185 samples, 0.01%)</title><rect x="26.7606%" y="517" width="0.0120%" height="15" fill="rgb(230,49,50)" fg:x="411805" fg:w="185"/><text x="27.0106%" y="527.50"></text></g><g><title>btrfs_get_or_create_delayed_node (245 samples, 0.02%)</title><rect x="26.7862%" y="533" width="0.0159%" height="15" fill="rgb(241,111,38)" fg:x="412198" fg:w="245"/><text x="27.0362%" y="543.50"></text></g><g><title>btrfs_get_delayed_node (217 samples, 0.01%)</title><rect x="26.7880%" y="517" width="0.0141%" height="15" fill="rgb(252,155,4)" fg:x="412226" fg:w="217"/><text x="27.0380%" y="527.50"></text></g><g><title>inode_get_bytes (216 samples, 0.01%)</title><rect x="26.8135%" y="517" width="0.0140%" height="15" fill="rgb(212,69,32)" fg:x="412619" fg:w="216"/><text x="27.0635%" y="527.50"></text></g><g><title>fill_stack_inode_item (524 samples, 0.03%)</title><rect x="26.8021%" y="533" width="0.0341%" height="15" fill="rgb(243,107,47)" fg:x="412443" fg:w="524"/><text x="27.0521%" y="543.50"></text></g><g><title>btrfs_delayed_update_inode (2,351 samples, 0.15%)</title><rect x="26.7021%" y="549" width="0.1528%" height="15" fill="rgb(247,130,12)" fg:x="410904" fg:w="2351"/><text x="26.9521%" y="559.50"></text></g><g><title>_raw_spin_lock (473 samples, 0.03%)</title><rect x="26.8650%" y="533" width="0.0307%" height="15" fill="rgb(233,74,16)" fg:x="413412" fg:w="473"/><text x="27.1150%" y="543.50"></text></g><g><title>btrfs_update_inode (3,883 samples, 0.25%)</title><rect x="26.6739%" y="565" width="0.2523%" height="15" fill="rgb(208,58,18)" fg:x="410470" fg:w="3883"/><text x="26.9239%" y="575.50"></text></g><g><title>btrfs_update_root_times (1,098 samples, 0.07%)</title><rect x="26.8548%" y="549" width="0.0714%" height="15" fill="rgb(242,225,1)" fg:x="413255" fg:w="1098"/><text x="27.1048%" y="559.50"></text></g><g><title>ktime_get_real_ts64 (468 samples, 0.03%)</title><rect x="26.8958%" y="533" width="0.0304%" height="15" fill="rgb(249,39,40)" fg:x="413885" fg:w="468"/><text x="27.1458%" y="543.50"></text></g><g><title>read_tsc (163 samples, 0.01%)</title><rect x="26.9156%" y="517" width="0.0106%" height="15" fill="rgb(207,72,44)" fg:x="414190" fg:w="163"/><text x="27.1656%" y="527.50"></text></g><g><title>btrfs_add_link (135,095 samples, 8.78%)</title><rect x="18.1663%" y="581" width="8.7790%" height="15" fill="rgb(215,193,12)" fg:x="279551" fg:w="135095"/><text x="18.4163%" y="591.50">btrfs_add_li..</text></g><g><title>fs_umode_to_ftype (192 samples, 0.01%)</title><rect x="26.9328%" y="565" width="0.0125%" height="15" fill="rgb(248,41,39)" fg:x="414454" fg:w="192"/><text x="27.1828%" y="575.50"></text></g><g><title>btrfs_balance_delayed_items (687 samples, 0.04%)</title><rect x="26.9684%" y="565" width="0.0446%" height="15" fill="rgb(253,85,4)" fg:x="415003" fg:w="687"/><text x="27.2184%" y="575.50"></text></g><g><title>schedule (163 samples, 0.01%)</title><rect x="27.0025%" y="549" width="0.0106%" height="15" fill="rgb(243,70,31)" fg:x="415527" fg:w="163"/><text x="27.2525%" y="559.50"></text></g><g><title>__schedule (162 samples, 0.01%)</title><rect x="27.0026%" y="533" width="0.0105%" height="15" fill="rgb(253,195,26)" fg:x="415528" fg:w="162"/><text x="27.2526%" y="543.50"></text></g><g><title>_raw_spin_lock (464 samples, 0.03%)</title><rect x="27.0321%" y="533" width="0.0302%" height="15" fill="rgb(243,42,11)" fg:x="415982" fg:w="464"/><text x="27.2821%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (376 samples, 0.02%)</title><rect x="27.0378%" y="517" width="0.0244%" height="15" fill="rgb(239,66,17)" fg:x="416070" fg:w="376"/><text x="27.2878%" y="527.50"></text></g><g><title>select_task_rq_fair (367 samples, 0.02%)</title><rect x="27.0963%" y="517" width="0.0238%" height="15" fill="rgb(217,132,21)" fg:x="416970" fg:w="367"/><text x="27.3463%" y="527.50"></text></g><g><title>enqueue_task_fair (361 samples, 0.02%)</title><rect x="27.1246%" y="501" width="0.0235%" height="15" fill="rgb(252,202,21)" fg:x="417406" fg:w="361"/><text x="27.3746%" y="511.50"></text></g><g><title>enqueue_entity (284 samples, 0.02%)</title><rect x="27.1296%" y="485" width="0.0185%" height="15" fill="rgb(233,98,36)" fg:x="417483" fg:w="284"/><text x="27.3796%" y="495.50"></text></g><g><title>ttwu_do_activate (572 samples, 0.04%)</title><rect x="27.1217%" y="517" width="0.0372%" height="15" fill="rgb(216,153,54)" fg:x="417362" fg:w="572"/><text x="27.3717%" y="527.50"></text></g><g><title>psi_task_change (164 samples, 0.01%)</title><rect x="27.1482%" y="501" width="0.0107%" height="15" fill="rgb(250,99,7)" fg:x="417770" fg:w="164"/><text x="27.3982%" y="511.50"></text></g><g><title>ttwu_do_wakeup (205 samples, 0.01%)</title><rect x="27.1589%" y="517" width="0.0133%" height="15" fill="rgb(207,56,50)" fg:x="417934" fg:w="205"/><text x="27.4089%" y="527.50"></text></g><g><title>check_preempt_curr (187 samples, 0.01%)</title><rect x="27.1601%" y="501" width="0.0122%" height="15" fill="rgb(244,61,34)" fg:x="417952" fg:w="187"/><text x="27.4101%" y="511.50"></text></g><g><title>__queue_work (2,391 samples, 0.16%)</title><rect x="27.0222%" y="549" width="0.1554%" height="15" fill="rgb(241,50,38)" fg:x="415831" fg:w="2391"/><text x="27.2722%" y="559.50"></text></g><g><title>try_to_wake_up (1,632 samples, 0.11%)</title><rect x="27.0716%" y="533" width="0.1061%" height="15" fill="rgb(212,166,30)" fg:x="416590" fg:w="1632"/><text x="27.3216%" y="543.50"></text></g><g><title>btrfs_btree_balance_dirty (3,593 samples, 0.23%)</title><rect x="26.9452%" y="581" width="0.2335%" height="15" fill="rgb(249,127,32)" fg:x="414646" fg:w="3593"/><text x="27.1952%" y="591.50"></text></g><g><title>queue_work_on (2,442 samples, 0.16%)</title><rect x="27.0200%" y="565" width="0.1587%" height="15" fill="rgb(209,103,0)" fg:x="415797" fg:w="2442"/><text x="27.2700%" y="575.50"></text></g><g><title>_raw_spin_lock (183 samples, 0.01%)</title><rect x="27.2402%" y="485" width="0.0119%" height="15" fill="rgb(238,209,51)" fg:x="419185" fg:w="183"/><text x="27.4902%" y="495.50"></text></g><g><title>btrfs_iget (643 samples, 0.04%)</title><rect x="27.2314%" y="549" width="0.0418%" height="15" fill="rgb(237,56,23)" fg:x="419050" fg:w="643"/><text x="27.4814%" y="559.50"></text></g><g><title>iget5_locked (616 samples, 0.04%)</title><rect x="27.2332%" y="533" width="0.0400%" height="15" fill="rgb(215,153,46)" fg:x="419077" fg:w="616"/><text x="27.4832%" y="543.50"></text></g><g><title>ilookup5 (605 samples, 0.04%)</title><rect x="27.2339%" y="517" width="0.0393%" height="15" fill="rgb(224,49,31)" fg:x="419088" fg:w="605"/><text x="27.4839%" y="527.50"></text></g><g><title>ilookup5_nowait (561 samples, 0.04%)</title><rect x="27.2368%" y="501" width="0.0365%" height="15" fill="rgb(250,18,42)" fg:x="419132" fg:w="561"/><text x="27.4868%" y="511.50"></text></g><g><title>find_inode (325 samples, 0.02%)</title><rect x="27.2521%" y="485" width="0.0211%" height="15" fill="rgb(215,176,39)" fg:x="419368" fg:w="325"/><text x="27.5021%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (289 samples, 0.02%)</title><rect x="27.2968%" y="485" width="0.0188%" height="15" fill="rgb(223,77,29)" fg:x="420056" fg:w="289"/><text x="27.5468%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (308 samples, 0.02%)</title><rect x="27.2966%" y="501" width="0.0200%" height="15" fill="rgb(234,94,52)" fg:x="420053" fg:w="308"/><text x="27.5466%" y="511.50"></text></g><g><title>__btrfs_tree_lock (233 samples, 0.02%)</title><rect x="27.3202%" y="485" width="0.0151%" height="15" fill="rgb(220,154,50)" fg:x="420416" fg:w="233"/><text x="27.5702%" y="495.50"></text></g><g><title>btrfs_lock_root_node (241 samples, 0.02%)</title><rect x="27.3201%" y="501" width="0.0157%" height="15" fill="rgb(212,11,10)" fg:x="420415" fg:w="241"/><text x="27.5701%" y="511.50"></text></g><g><title>btrfs_search_slot (824 samples, 0.05%)</title><rect x="27.2951%" y="517" width="0.0535%" height="15" fill="rgb(205,166,19)" fg:x="420030" fg:w="824"/><text x="27.5451%" y="527.50"></text></g><g><title>btrfs_insert_empty_items (1,241 samples, 0.08%)</title><rect x="27.2950%" y="533" width="0.0806%" height="15" fill="rgb(244,198,16)" fg:x="420028" fg:w="1241"/><text x="27.5450%" y="543.50"></text></g><g><title>setup_items_for_insert (415 samples, 0.03%)</title><rect x="27.3487%" y="517" width="0.0270%" height="15" fill="rgb(219,69,12)" fg:x="420854" fg:w="415"/><text x="27.5987%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (164 samples, 0.01%)</title><rect x="27.3888%" y="517" width="0.0107%" height="15" fill="rgb(245,30,7)" fg:x="421471" fg:w="164"/><text x="27.6388%" y="527.50"></text></g><g><title>btrfs_read_node_slot (207 samples, 0.01%)</title><rect x="27.4120%" y="517" width="0.0135%" height="15" fill="rgb(218,221,48)" fg:x="421829" fg:w="207"/><text x="27.6620%" y="527.50"></text></g><g><title>read_tree_block (164 samples, 0.01%)</title><rect x="27.4148%" y="501" width="0.0107%" height="15" fill="rgb(216,66,15)" fg:x="421872" fg:w="164"/><text x="27.6648%" y="511.50"></text></g><g><title>btrfs_search_forward (883 samples, 0.06%)</title><rect x="27.3855%" y="533" width="0.0574%" height="15" fill="rgb(226,122,50)" fg:x="421421" fg:w="883"/><text x="27.6355%" y="543.50"></text></g><g><title>__btrfs_tree_read_lock (181 samples, 0.01%)</title><rect x="27.4547%" y="469" width="0.0118%" height="15" fill="rgb(239,156,16)" fg:x="422486" fg:w="181"/><text x="27.7047%" y="479.50"></text></g><g><title>__btrfs_read_lock_root_node (195 samples, 0.01%)</title><rect x="27.4547%" y="485" width="0.0127%" height="15" fill="rgb(224,27,38)" fg:x="422486" fg:w="195"/><text x="27.7047%" y="495.50"></text></g><g><title>__btrfs_tree_lock (160 samples, 0.01%)</title><rect x="27.4687%" y="469" width="0.0104%" height="15" fill="rgb(224,39,27)" fg:x="422702" fg:w="160"/><text x="27.7187%" y="479.50"></text></g><g><title>btrfs_lock_root_node (161 samples, 0.01%)</title><rect x="27.4687%" y="485" width="0.0105%" height="15" fill="rgb(215,92,29)" fg:x="422702" fg:w="161"/><text x="27.7187%" y="495.50"></text></g><g><title>btrfs_search_slot (604 samples, 0.04%)</title><rect x="27.4535%" y="501" width="0.0393%" height="15" fill="rgb(207,159,16)" fg:x="422468" fg:w="604"/><text x="27.7035%" y="511.50"></text></g><g><title>btrfs_insert_empty_items (953 samples, 0.06%)</title><rect x="27.4535%" y="517" width="0.0619%" height="15" fill="rgb(238,163,47)" fg:x="422467" fg:w="953"/><text x="27.7035%" y="527.50"></text></g><g><title>setup_items_for_insert (348 samples, 0.02%)</title><rect x="27.4928%" y="501" width="0.0226%" height="15" fill="rgb(219,91,49)" fg:x="423072" fg:w="348"/><text x="27.7428%" y="511.50"></text></g><g><title>copy_items.isra.0 (1,090 samples, 0.07%)</title><rect x="27.4509%" y="533" width="0.0708%" height="15" fill="rgb(227,167,31)" fg:x="422427" fg:w="1090"/><text x="27.7009%" y="543.50"></text></g><g><title>btrfs_get_token_32 (199 samples, 0.01%)</title><rect x="27.5260%" y="501" width="0.0129%" height="15" fill="rgb(234,80,54)" fg:x="423583" fg:w="199"/><text x="27.7760%" y="511.50"></text></g><g><title>btrfs_del_items (531 samples, 0.03%)</title><rect x="27.5221%" y="517" width="0.0345%" height="15" fill="rgb(212,114,2)" fg:x="423523" fg:w="531"/><text x="27.7721%" y="527.50"></text></g><g><title>enqueue_task_fair (189 samples, 0.01%)</title><rect x="27.5806%" y="421" width="0.0123%" height="15" fill="rgb(234,50,24)" fg:x="424424" fg:w="189"/><text x="27.8306%" y="431.50"></text></g><g><title>ttwu_do_activate (401 samples, 0.03%)</title><rect x="27.5797%" y="437" width="0.0261%" height="15" fill="rgb(221,68,8)" fg:x="424410" fg:w="401"/><text x="27.8297%" y="447.50"></text></g><g><title>psi_task_change (197 samples, 0.01%)</title><rect x="27.5930%" y="421" width="0.0128%" height="15" fill="rgb(254,180,31)" fg:x="424614" fg:w="197"/><text x="27.8430%" y="431.50"></text></g><g><title>psi_group_change (181 samples, 0.01%)</title><rect x="27.5940%" y="405" width="0.0118%" height="15" fill="rgb(247,130,50)" fg:x="424630" fg:w="181"/><text x="27.8440%" y="415.50"></text></g><g><title>__wake_up_common (852 samples, 0.06%)</title><rect x="27.5572%" y="485" width="0.0554%" height="15" fill="rgb(211,109,4)" fg:x="424063" fg:w="852"/><text x="27.8072%" y="495.50"></text></g><g><title>autoremove_wake_function (839 samples, 0.05%)</title><rect x="27.5580%" y="469" width="0.0545%" height="15" fill="rgb(238,50,21)" fg:x="424076" fg:w="839"/><text x="27.8080%" y="479.50"></text></g><g><title>try_to_wake_up (811 samples, 0.05%)</title><rect x="27.5599%" y="453" width="0.0527%" height="15" fill="rgb(225,57,45)" fg:x="424104" fg:w="811"/><text x="27.8099%" y="463.50"></text></g><g><title>__wake_up_common_lock (948 samples, 0.06%)</title><rect x="27.5570%" y="501" width="0.0616%" height="15" fill="rgb(209,196,50)" fg:x="424060" fg:w="948"/><text x="27.8070%" y="511.50"></text></g><g><title>btrfs_release_path (1,006 samples, 0.07%)</title><rect x="27.5566%" y="517" width="0.0654%" height="15" fill="rgb(242,140,13)" fg:x="424054" fg:w="1006"/><text x="27.8066%" y="527.50"></text></g><g><title>__btrfs_tree_read_lock (504 samples, 0.03%)</title><rect x="27.6257%" y="485" width="0.0328%" height="15" fill="rgb(217,111,7)" fg:x="425118" fg:w="504"/><text x="27.8757%" y="495.50"></text></g><g><title>schedule (198 samples, 0.01%)</title><rect x="27.6456%" y="469" width="0.0129%" height="15" fill="rgb(253,193,51)" fg:x="425424" fg:w="198"/><text x="27.8956%" y="479.50"></text></g><g><title>__schedule (197 samples, 0.01%)</title><rect x="27.6457%" y="453" width="0.0128%" height="15" fill="rgb(252,70,29)" fg:x="425425" fg:w="197"/><text x="27.8957%" y="463.50"></text></g><g><title>__btrfs_read_lock_root_node (538 samples, 0.03%)</title><rect x="27.6254%" y="501" width="0.0350%" height="15" fill="rgb(232,127,12)" fg:x="425113" fg:w="538"/><text x="27.8754%" y="511.50"></text></g><g><title>__btrfs_tree_lock (327 samples, 0.02%)</title><rect x="27.6630%" y="485" width="0.0212%" height="15" fill="rgb(211,180,21)" fg:x="425692" fg:w="327"/><text x="27.9130%" y="495.50"></text></g><g><title>btrfs_lock_root_node (335 samples, 0.02%)</title><rect x="27.6630%" y="501" width="0.0218%" height="15" fill="rgb(229,72,13)" fg:x="425691" fg:w="335"/><text x="27.9130%" y="511.50"></text></g><g><title>btrfs_search_slot (1,181 samples, 0.08%)</title><rect x="27.6220%" y="517" width="0.0767%" height="15" fill="rgb(240,211,49)" fg:x="425060" fg:w="1181"/><text x="27.8720%" y="527.50"></text></g><g><title>drop_objectid_items (2,750 samples, 0.18%)</title><rect x="27.5217%" y="533" width="0.1787%" height="15" fill="rgb(219,149,40)" fg:x="423517" fg:w="2750"/><text x="27.7717%" y="543.50"></text></g><g><title>__btrfs_read_lock_root_node (155 samples, 0.01%)</title><rect x="27.7380%" y="485" width="0.0101%" height="15" fill="rgb(210,127,46)" fg:x="426846" fg:w="155"/><text x="27.9880%" y="495.50"></text></g><g><title>btrfs_get_64 (242 samples, 0.02%)</title><rect x="27.7545%" y="485" width="0.0157%" height="15" fill="rgb(220,106,7)" fg:x="427099" fg:w="242"/><text x="28.0045%" y="495.50"></text></g><g><title>btrfs_read_node_slot (235 samples, 0.02%)</title><rect x="27.7703%" y="485" width="0.0153%" height="15" fill="rgb(249,31,22)" fg:x="427343" fg:w="235"/><text x="28.0203%" y="495.50"></text></g><g><title>read_tree_block (182 samples, 0.01%)</title><rect x="27.7738%" y="469" width="0.0118%" height="15" fill="rgb(253,1,49)" fg:x="427396" fg:w="182"/><text x="28.0238%" y="479.50"></text></g><g><title>btrfs_search_forward (1,246 samples, 0.08%)</title><rect x="27.7334%" y="501" width="0.0810%" height="15" fill="rgb(227,144,33)" fg:x="426774" fg:w="1246"/><text x="27.9834%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (229 samples, 0.01%)</title><rect x="27.8360%" y="485" width="0.0149%" height="15" fill="rgb(249,163,44)" fg:x="428354" fg:w="229"/><text x="28.0860%" y="495.50"></text></g><g><title>btrfs_search_slot (590 samples, 0.04%)</title><rect x="27.8143%" y="501" width="0.0383%" height="15" fill="rgb(234,15,39)" fg:x="428020" fg:w="590"/><text x="28.0643%" y="511.50"></text></g><g><title>prepare_to_wait_event (156 samples, 0.01%)</title><rect x="27.8650%" y="421" width="0.0101%" height="15" fill="rgb(207,66,16)" fg:x="428799" fg:w="156"/><text x="28.1150%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (643 samples, 0.04%)</title><rect x="27.8572%" y="437" width="0.0418%" height="15" fill="rgb(233,112,24)" fg:x="428679" fg:w="643"/><text x="28.1072%" y="447.50"></text></g><g><title>schedule (259 samples, 0.02%)</title><rect x="27.8821%" y="421" width="0.0168%" height="15" fill="rgb(230,90,22)" fg:x="429063" fg:w="259"/><text x="28.1321%" y="431.50"></text></g><g><title>__schedule (254 samples, 0.02%)</title><rect x="27.8824%" y="405" width="0.0165%" height="15" fill="rgb(229,61,13)" fg:x="429068" fg:w="254"/><text x="28.1324%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (687 samples, 0.04%)</title><rect x="27.8570%" y="453" width="0.0446%" height="15" fill="rgb(225,57,24)" fg:x="428676" fg:w="687"/><text x="28.1070%" y="463.50"></text></g><g><title>__btrfs_tree_lock (164 samples, 0.01%)</title><rect x="27.9016%" y="453" width="0.0107%" height="15" fill="rgb(208,169,48)" fg:x="429363" fg:w="164"/><text x="28.1516%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (194 samples, 0.01%)</title><rect x="27.9256%" y="421" width="0.0126%" height="15" fill="rgb(244,218,51)" fg:x="429732" fg:w="194"/><text x="28.1756%" y="431.50"></text></g><g><title>__btrfs_tree_lock (515 samples, 0.03%)</title><rect x="27.9140%" y="437" width="0.0335%" height="15" fill="rgb(214,148,10)" fg:x="429554" fg:w="515"/><text x="28.1640%" y="447.50"></text></g><g><title>btrfs_lock_root_node (537 samples, 0.03%)</title><rect x="27.9139%" y="453" width="0.0349%" height="15" fill="rgb(225,174,27)" fg:x="429552" fg:w="537"/><text x="28.1639%" y="463.50"></text></g><g><title>__wake_up_common (164 samples, 0.01%)</title><rect x="27.9687%" y="421" width="0.0107%" height="15" fill="rgb(230,96,26)" fg:x="430395" fg:w="164"/><text x="28.2187%" y="431.50"></text></g><g><title>autoremove_wake_function (163 samples, 0.01%)</title><rect x="27.9687%" y="405" width="0.0106%" height="15" fill="rgb(232,10,30)" fg:x="430396" fg:w="163"/><text x="28.2187%" y="415.50"></text></g><g><title>try_to_wake_up (154 samples, 0.01%)</title><rect x="27.9693%" y="389" width="0.0100%" height="15" fill="rgb(222,8,50)" fg:x="430405" fg:w="154"/><text x="28.2193%" y="399.50"></text></g><g><title>__wake_up_common_lock (166 samples, 0.01%)</title><rect x="27.9687%" y="437" width="0.0108%" height="15" fill="rgb(213,81,27)" fg:x="430395" fg:w="166"/><text x="28.2187%" y="447.50"></text></g><g><title>btrfs_search_slot (1,952 samples, 0.13%)</title><rect x="27.8537%" y="469" width="0.1268%" height="15" fill="rgb(245,50,10)" fg:x="428626" fg:w="1952"/><text x="28.1037%" y="479.50"></text></g><g><title>unlock_up (197 samples, 0.01%)</title><rect x="27.9678%" y="453" width="0.0128%" height="15" fill="rgb(216,100,18)" fg:x="430381" fg:w="197"/><text x="28.2178%" y="463.50"></text></g><g><title>btrfs_get_token_32 (365 samples, 0.02%)</title><rect x="27.9862%" y="453" width="0.0237%" height="15" fill="rgb(236,147,54)" fg:x="430665" fg:w="365"/><text x="28.2362%" y="463.50"></text></g><g><title>btrfs_set_token_32 (285 samples, 0.02%)</title><rect x="28.0123%" y="453" width="0.0185%" height="15" fill="rgb(205,143,26)" fg:x="431066" fg:w="285"/><text x="28.2623%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (2,968 samples, 0.19%)</title><rect x="27.8536%" y="485" width="0.1929%" height="15" fill="rgb(236,26,9)" fg:x="428624" fg:w="2968"/><text x="28.1036%" y="495.50"></text></g><g><title>setup_items_for_insert (1,014 samples, 0.07%)</title><rect x="27.9806%" y="469" width="0.0659%" height="15" fill="rgb(221,165,53)" fg:x="430578" fg:w="1014"/><text x="28.2306%" y="479.50"></text></g><g><title>insert_dir_log_key (3,121 samples, 0.20%)</title><rect x="27.8527%" y="501" width="0.2028%" height="15" fill="rgb(214,110,17)" fg:x="428610" fg:w="3121"/><text x="28.1027%" y="511.50"></text></g><g><title>__kmalloc (643 samples, 0.04%)</title><rect x="28.0670%" y="485" width="0.0418%" height="15" fill="rgb(237,197,12)" fg:x="431908" fg:w="643"/><text x="28.3170%" y="495.50"></text></g><g><title>btrfs_get_32 (203 samples, 0.01%)</title><rect x="28.1089%" y="485" width="0.0132%" height="15" fill="rgb(205,84,17)" fg:x="432553" fg:w="203"/><text x="28.3589%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (301 samples, 0.02%)</title><rect x="28.1233%" y="437" width="0.0196%" height="15" fill="rgb(237,18,45)" fg:x="432774" fg:w="301"/><text x="28.3733%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (314 samples, 0.02%)</title><rect x="28.1233%" y="453" width="0.0204%" height="15" fill="rgb(221,87,14)" fg:x="432774" fg:w="314"/><text x="28.3733%" y="463.50"></text></g><g><title>__btrfs_tree_lock (502 samples, 0.03%)</title><rect x="28.1464%" y="437" width="0.0326%" height="15" fill="rgb(238,186,15)" fg:x="433130" fg:w="502"/><text x="28.3964%" y="447.50"></text></g><g><title>schedule (181 samples, 0.01%)</title><rect x="28.1673%" y="421" width="0.0118%" height="15" fill="rgb(208,115,11)" fg:x="433451" fg:w="181"/><text x="28.4173%" y="431.50"></text></g><g><title>__schedule (179 samples, 0.01%)</title><rect x="28.1674%" y="405" width="0.0116%" height="15" fill="rgb(254,175,0)" fg:x="433453" fg:w="179"/><text x="28.4174%" y="415.50"></text></g><g><title>btrfs_lock_root_node (505 samples, 0.03%)</title><rect x="28.1463%" y="453" width="0.0328%" height="15" fill="rgb(227,24,42)" fg:x="433129" fg:w="505"/><text x="28.3963%" y="463.50"></text></g><g><title>btrfs_search_slot (1,090 samples, 0.07%)</title><rect x="28.1221%" y="469" width="0.0708%" height="15" fill="rgb(223,211,37)" fg:x="432756" fg:w="1090"/><text x="28.3721%" y="479.50"></text></g><g><title>btrfs_get_token_32 (166 samples, 0.01%)</title><rect x="28.1956%" y="453" width="0.0108%" height="15" fill="rgb(235,49,27)" fg:x="433887" fg:w="166"/><text x="28.4456%" y="463.50"></text></g><g><title>btrfs_set_token_32 (162 samples, 0.01%)</title><rect x="28.2074%" y="453" width="0.0105%" height="15" fill="rgb(254,97,51)" fg:x="434069" fg:w="162"/><text x="28.4574%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (1,601 samples, 0.10%)</title><rect x="28.1221%" y="485" width="0.1040%" height="15" fill="rgb(249,51,40)" fg:x="432756" fg:w="1601"/><text x="28.3721%" y="495.50"></text></g><g><title>setup_items_for_insert (511 samples, 0.03%)</title><rect x="28.1929%" y="469" width="0.0332%" height="15" fill="rgb(210,128,45)" fg:x="433846" fg:w="511"/><text x="28.4429%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (439 samples, 0.03%)</title><rect x="28.2419%" y="469" width="0.0285%" height="15" fill="rgb(224,137,50)" fg:x="434600" fg:w="439"/><text x="28.4919%" y="479.50"></text></g><g><title>btrfs_release_path (754 samples, 0.05%)</title><rect x="28.2265%" y="485" width="0.0490%" height="15" fill="rgb(242,15,9)" fg:x="434362" fg:w="754"/><text x="28.4765%" y="495.50"></text></g><g><title>_raw_read_lock (221 samples, 0.01%)</title><rect x="28.3144%" y="437" width="0.0144%" height="15" fill="rgb(233,187,41)" fg:x="435716" fg:w="221"/><text x="28.5644%" y="447.50"></text></g><g><title>finish_wait (387 samples, 0.03%)</title><rect x="28.3293%" y="437" width="0.0251%" height="15" fill="rgb(227,2,29)" fg:x="435944" fg:w="387"/><text x="28.5793%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (360 samples, 0.02%)</title><rect x="28.3310%" y="421" width="0.0234%" height="15" fill="rgb(222,70,3)" fg:x="435971" fg:w="360"/><text x="28.5810%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (330 samples, 0.02%)</title><rect x="28.3330%" y="405" width="0.0214%" height="15" fill="rgb(213,11,42)" fg:x="436001" fg:w="330"/><text x="28.5830%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (802 samples, 0.05%)</title><rect x="28.3641%" y="421" width="0.0521%" height="15" fill="rgb(225,150,9)" fg:x="436480" fg:w="802"/><text x="28.6141%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (721 samples, 0.05%)</title><rect x="28.3694%" y="405" width="0.0469%" height="15" fill="rgb(230,162,45)" fg:x="436561" fg:w="721"/><text x="28.6194%" y="415.50"></text></g><g><title>prepare_to_wait_event (966 samples, 0.06%)</title><rect x="28.3544%" y="437" width="0.0628%" height="15" fill="rgb(222,14,52)" fg:x="436331" fg:w="966"/><text x="28.6044%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (1,007 samples, 0.07%)</title><rect x="28.4172%" y="437" width="0.0654%" height="15" fill="rgb(254,198,14)" fg:x="437297" fg:w="1007"/><text x="28.6672%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (646 samples, 0.04%)</title><rect x="28.4406%" y="421" width="0.0420%" height="15" fill="rgb(220,217,30)" fg:x="437658" fg:w="646"/><text x="28.6906%" y="431.50"></text></g><g><title>dequeue_entity (256 samples, 0.02%)</title><rect x="28.4920%" y="389" width="0.0166%" height="15" fill="rgb(215,146,41)" fg:x="438448" fg:w="256"/><text x="28.7420%" y="399.50"></text></g><g><title>dequeue_task_fair (288 samples, 0.02%)</title><rect x="28.4904%" y="405" width="0.0187%" height="15" fill="rgb(217,27,36)" fg:x="438424" fg:w="288"/><text x="28.7404%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (652 samples, 0.04%)</title><rect x="28.5130%" y="389" width="0.0424%" height="15" fill="rgb(219,218,39)" fg:x="438771" fg:w="652"/><text x="28.7630%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (633 samples, 0.04%)</title><rect x="28.5142%" y="373" width="0.0411%" height="15" fill="rgb(219,4,42)" fg:x="438790" fg:w="633"/><text x="28.7642%" y="383.50"></text></g><g><title>native_write_msr (620 samples, 0.04%)</title><rect x="28.5151%" y="357" width="0.0403%" height="15" fill="rgb(249,119,36)" fg:x="438803" fg:w="620"/><text x="28.7651%" y="367.50"></text></g><g><title>finish_task_switch (726 samples, 0.05%)</title><rect x="28.5091%" y="405" width="0.0472%" height="15" fill="rgb(209,23,33)" fg:x="438712" fg:w="726"/><text x="28.7591%" y="415.50"></text></g><g><title>psi_task_change (226 samples, 0.01%)</title><rect x="28.5607%" y="405" width="0.0147%" height="15" fill="rgb(211,10,0)" fg:x="439506" fg:w="226"/><text x="28.8107%" y="415.50"></text></g><g><title>psi_group_change (190 samples, 0.01%)</title><rect x="28.5631%" y="389" width="0.0123%" height="15" fill="rgb(208,99,37)" fg:x="439542" fg:w="190"/><text x="28.8131%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (4,252 samples, 0.28%)</title><rect x="28.3015%" y="453" width="0.2763%" height="15" fill="rgb(213,132,31)" fg:x="435517" fg:w="4252"/><text x="28.5515%" y="463.50"></text></g><g><title>schedule (1,465 samples, 0.10%)</title><rect x="28.4826%" y="437" width="0.0952%" height="15" fill="rgb(243,129,40)" fg:x="438304" fg:w="1465"/><text x="28.7326%" y="447.50"></text></g><g><title>__schedule (1,444 samples, 0.09%)</title><rect x="28.4840%" y="421" width="0.0938%" height="15" fill="rgb(210,66,33)" fg:x="438325" fg:w="1444"/><text x="28.7340%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (4,560 samples, 0.30%)</title><rect x="28.2999%" y="469" width="0.2963%" height="15" fill="rgb(209,189,4)" fg:x="435492" fg:w="4560"/><text x="28.5499%" y="479.50"></text></g><g><title>btrfs_root_node (283 samples, 0.02%)</title><rect x="28.5778%" y="453" width="0.0184%" height="15" fill="rgb(214,107,37)" fg:x="439769" fg:w="283"/><text x="28.8278%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (186 samples, 0.01%)</title><rect x="28.6059%" y="469" width="0.0121%" height="15" fill="rgb(245,88,54)" fg:x="440201" fg:w="186"/><text x="28.8559%" y="479.50"></text></g><g><title>btrfs_tree_read_unlock (263 samples, 0.02%)</title><rect x="28.6227%" y="469" width="0.0171%" height="15" fill="rgb(205,146,20)" fg:x="440459" fg:w="263"/><text x="28.8727%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (695 samples, 0.05%)</title><rect x="28.6398%" y="469" width="0.0452%" height="15" fill="rgb(220,161,25)" fg:x="440723" fg:w="695"/><text x="28.8898%" y="479.50"></text></g><g><title>btrfs_get_64 (212 samples, 0.01%)</title><rect x="28.6963%" y="453" width="0.0138%" height="15" fill="rgb(215,152,15)" fg:x="441592" fg:w="212"/><text x="28.9463%" y="463.50"></text></g><g><title>__radix_tree_lookup (232 samples, 0.02%)</title><rect x="28.7183%" y="437" width="0.0151%" height="15" fill="rgb(233,192,44)" fg:x="441931" fg:w="232"/><text x="28.9683%" y="447.50"></text></g><g><title>find_extent_buffer (478 samples, 0.03%)</title><rect x="28.7127%" y="453" width="0.0311%" height="15" fill="rgb(240,170,46)" fg:x="441845" fg:w="478"/><text x="28.9627%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (1,047 samples, 0.07%)</title><rect x="28.6850%" y="469" width="0.0680%" height="15" fill="rgb(207,104,33)" fg:x="441418" fg:w="1047"/><text x="28.9350%" y="479.50"></text></g><g><title>btrfs_search_slot (7,477 samples, 0.49%)</title><rect x="28.2755%" y="485" width="0.4859%" height="15" fill="rgb(219,21,39)" fg:x="435116" fg:w="7477"/><text x="28.5255%" y="495.50"></text></g><g><title>kfree (440 samples, 0.03%)</title><rect x="28.7621%" y="485" width="0.0286%" height="15" fill="rgb(214,133,29)" fg:x="442605" fg:w="440"/><text x="29.0121%" y="495.50"></text></g><g><title>memcmp (286 samples, 0.02%)</title><rect x="28.7907%" y="485" width="0.0186%" height="15" fill="rgb(226,93,6)" fg:x="443045" fg:w="286"/><text x="29.0407%" y="495.50"></text></g><g><title>overwrite_item (11,885 samples, 0.77%)</title><rect x="28.0555%" y="501" width="0.7723%" height="15" fill="rgb(252,222,34)" fg:x="431731" fg:w="11885"/><text x="28.3055%" y="511.50"></text></g><g><title>read_extent_buffer (285 samples, 0.02%)</title><rect x="28.8093%" y="485" width="0.0185%" height="15" fill="rgb(252,92,48)" fg:x="443331" fg:w="285"/><text x="29.0593%" y="495.50"></text></g><g><title>log_directory_changes (17,467 samples, 1.14%)</title><rect x="27.7072%" y="533" width="1.1351%" height="15" fill="rgb(245,223,24)" fg:x="426372" fg:w="17467"/><text x="27.9572%" y="543.50"></text></g><g><title>log_dir_items (17,461 samples, 1.13%)</title><rect x="27.7076%" y="517" width="1.1347%" height="15" fill="rgb(205,176,3)" fg:x="426378" fg:w="17461"/><text x="27.9576%" y="527.50"></text></g><g><title>read_extent_buffer (223 samples, 0.01%)</title><rect x="28.8278%" y="501" width="0.0145%" height="15" fill="rgb(235,151,15)" fg:x="443616" fg:w="223"/><text x="29.0778%" y="511.50"></text></g><g><title>btrfs_log_inode (24,176 samples, 1.57%)</title><rect x="27.2733%" y="549" width="1.5710%" height="15" fill="rgb(237,209,11)" fg:x="419694" fg:w="24176"/><text x="27.5233%" y="559.50"></text></g><g><title>free_extent_buffer.part.0 (403 samples, 0.03%)</title><rect x="28.8537%" y="533" width="0.0262%" height="15" fill="rgb(243,227,24)" fg:x="444014" fg:w="403"/><text x="29.1037%" y="543.50"></text></g><g><title>btrfs_release_path (621 samples, 0.04%)</title><rect x="28.8467%" y="549" width="0.0404%" height="15" fill="rgb(239,193,16)" fg:x="443906" fg:w="621"/><text x="29.0967%" y="559.50"></text></g><g><title>queued_read_lock_slowpath (192 samples, 0.01%)</title><rect x="28.9352%" y="501" width="0.0125%" height="15" fill="rgb(231,27,9)" fg:x="445269" fg:w="192"/><text x="29.1852%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (200 samples, 0.01%)</title><rect x="28.9519%" y="453" width="0.0130%" height="15" fill="rgb(219,169,10)" fg:x="445525" fg:w="200"/><text x="29.2019%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (196 samples, 0.01%)</title><rect x="28.9521%" y="437" width="0.0127%" height="15" fill="rgb(244,229,43)" fg:x="445529" fg:w="196"/><text x="29.2021%" y="447.50"></text></g><g><title>native_write_msr (194 samples, 0.01%)</title><rect x="28.9523%" y="421" width="0.0126%" height="15" fill="rgb(254,38,20)" fg:x="445531" fg:w="194"/><text x="29.2023%" y="431.50"></text></g><g><title>finish_task_switch (218 samples, 0.01%)</title><rect x="28.9512%" y="469" width="0.0142%" height="15" fill="rgb(250,47,30)" fg:x="445514" fg:w="218"/><text x="29.2012%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (832 samples, 0.05%)</title><rect x="28.9150%" y="517" width="0.0541%" height="15" fill="rgb(224,124,36)" fg:x="444957" fg:w="832"/><text x="29.1650%" y="527.50"></text></g><g><title>schedule (328 samples, 0.02%)</title><rect x="28.9477%" y="501" width="0.0213%" height="15" fill="rgb(246,68,51)" fg:x="445461" fg:w="328"/><text x="29.1977%" y="511.50"></text></g><g><title>__schedule (325 samples, 0.02%)</title><rect x="28.9479%" y="485" width="0.0211%" height="15" fill="rgb(253,43,49)" fg:x="445464" fg:w="325"/><text x="29.1979%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (1,018 samples, 0.07%)</title><rect x="28.9142%" y="533" width="0.0662%" height="15" fill="rgb(219,54,36)" fg:x="444945" fg:w="1018"/><text x="29.1642%" y="543.50"></text></g><g><title>btrfs_root_node (174 samples, 0.01%)</title><rect x="28.9690%" y="517" width="0.0113%" height="15" fill="rgb(227,133,34)" fg:x="445789" fg:w="174"/><text x="29.2190%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (198 samples, 0.01%)</title><rect x="28.9940%" y="533" width="0.0129%" height="15" fill="rgb(247,227,15)" fg:x="446174" fg:w="198"/><text x="29.2440%" y="543.50"></text></g><g><title>btrfs_tree_read_lock_atomic (270 samples, 0.02%)</title><rect x="29.0069%" y="533" width="0.0175%" height="15" fill="rgb(229,96,14)" fg:x="446372" fg:w="270"/><text x="29.2569%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (256 samples, 0.02%)</title><rect x="29.0245%" y="533" width="0.0166%" height="15" fill="rgb(220,79,17)" fg:x="446642" fg:w="256"/><text x="29.2745%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (1,693 samples, 0.11%)</title><rect x="29.0415%" y="533" width="0.1100%" height="15" fill="rgb(205,131,53)" fg:x="446904" fg:w="1693"/><text x="29.2915%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (195 samples, 0.01%)</title><rect x="29.1626%" y="517" width="0.0127%" height="15" fill="rgb(209,50,29)" fg:x="448768" fg:w="195"/><text x="29.4126%" y="527.50"></text></g><g><title>btrfs_get_64 (245 samples, 0.02%)</title><rect x="29.1753%" y="517" width="0.0159%" height="15" fill="rgb(245,86,46)" fg:x="448963" fg:w="245"/><text x="29.4253%" y="527.50"></text></g><g><title>btrfs_verify_level_key (242 samples, 0.02%)</title><rect x="29.1921%" y="517" width="0.0157%" height="15" fill="rgb(235,66,46)" fg:x="449222" fg:w="242"/><text x="29.4421%" y="527.50"></text></g><g><title>__radix_tree_lookup (685 samples, 0.04%)</title><rect x="29.2324%" y="501" width="0.0445%" height="15" fill="rgb(232,148,31)" fg:x="449842" fg:w="685"/><text x="29.4824%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (422 samples, 0.03%)</title><rect x="29.2769%" y="501" width="0.0274%" height="15" fill="rgb(217,149,8)" fg:x="450527" fg:w="422"/><text x="29.5269%" y="511.50"></text></g><g><title>mark_page_accessed (308 samples, 0.02%)</title><rect x="29.2843%" y="485" width="0.0200%" height="15" fill="rgb(209,183,11)" fg:x="450641" fg:w="308"/><text x="29.5343%" y="495.50"></text></g><g><title>find_extent_buffer (1,493 samples, 0.10%)</title><rect x="29.2078%" y="517" width="0.0970%" height="15" fill="rgb(208,55,20)" fg:x="449464" fg:w="1493"/><text x="29.4578%" y="527.50"></text></g><g><title>read_extent_buffer (241 samples, 0.02%)</title><rect x="29.3049%" y="517" width="0.0157%" height="15" fill="rgb(218,39,14)" fg:x="450957" fg:w="241"/><text x="29.5549%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (2,620 samples, 0.17%)</title><rect x="29.1515%" y="533" width="0.1703%" height="15" fill="rgb(216,169,33)" fg:x="448597" fg:w="2620"/><text x="29.4015%" y="543.50"></text></g><g><title>btrfs_search_slot (6,864 samples, 0.45%)</title><rect x="28.8870%" y="549" width="0.4460%" height="15" fill="rgb(233,80,24)" fg:x="444527" fg:w="6864"/><text x="29.1370%" y="559.50"></text></g><g><title>unlock_up (174 samples, 0.01%)</title><rect x="29.3218%" y="533" width="0.0113%" height="15" fill="rgb(213,179,31)" fg:x="451217" fg:w="174"/><text x="29.5718%" y="543.50"></text></g><g><title>btrfs_search_forward (223 samples, 0.01%)</title><rect x="29.3596%" y="517" width="0.0145%" height="15" fill="rgb(209,19,5)" fg:x="451799" fg:w="223"/><text x="29.6096%" y="527.50"></text></g><g><title>btrfs_search_slot (250 samples, 0.02%)</title><rect x="29.3757%" y="485" width="0.0162%" height="15" fill="rgb(219,18,35)" fg:x="452047" fg:w="250"/><text x="29.6257%" y="495.50"></text></g><g><title>btrfs_insert_empty_items (495 samples, 0.03%)</title><rect x="29.3756%" y="501" width="0.0322%" height="15" fill="rgb(209,169,16)" fg:x="452046" fg:w="495"/><text x="29.6256%" y="511.50"></text></g><g><title>setup_items_for_insert (244 samples, 0.02%)</title><rect x="29.3919%" y="485" width="0.0159%" height="15" fill="rgb(245,90,51)" fg:x="452297" fg:w="244"/><text x="29.6419%" y="495.50"></text></g><g><title>copy_items.isra.0 (573 samples, 0.04%)</title><rect x="29.3741%" y="517" width="0.0372%" height="15" fill="rgb(220,99,45)" fg:x="452022" fg:w="573"/><text x="29.6241%" y="527.50"></text></g><g><title>btrfs_del_items (245 samples, 0.02%)</title><rect x="29.4115%" y="501" width="0.0159%" height="15" fill="rgb(249,89,25)" fg:x="452598" fg:w="245"/><text x="29.6615%" y="511.50"></text></g><g><title>ttwu_do_activate (165 samples, 0.01%)</title><rect x="29.4362%" y="421" width="0.0107%" height="15" fill="rgb(239,193,0)" fg:x="452978" fg:w="165"/><text x="29.6862%" y="431.50"></text></g><g><title>__wake_up_common (337 samples, 0.02%)</title><rect x="29.4278%" y="469" width="0.0219%" height="15" fill="rgb(231,126,1)" fg:x="452849" fg:w="337"/><text x="29.6778%" y="479.50"></text></g><g><title>autoremove_wake_function (329 samples, 0.02%)</title><rect x="29.4283%" y="453" width="0.0214%" height="15" fill="rgb(243,166,3)" fg:x="452857" fg:w="329"/><text x="29.6783%" y="463.50"></text></g><g><title>try_to_wake_up (318 samples, 0.02%)</title><rect x="29.4290%" y="437" width="0.0207%" height="15" fill="rgb(223,22,34)" fg:x="452868" fg:w="318"/><text x="29.6790%" y="447.50"></text></g><g><title>__wake_up_common_lock (354 samples, 0.02%)</title><rect x="29.4277%" y="485" width="0.0230%" height="15" fill="rgb(251,52,51)" fg:x="452848" fg:w="354"/><text x="29.6777%" y="495.50"></text></g><g><title>btrfs_release_path (370 samples, 0.02%)</title><rect x="29.4274%" y="501" width="0.0240%" height="15" fill="rgb(221,165,28)" fg:x="452843" fg:w="370"/><text x="29.6774%" y="511.50"></text></g><g><title>btrfs_search_slot (315 samples, 0.02%)</title><rect x="29.4515%" y="501" width="0.0205%" height="15" fill="rgb(218,121,47)" fg:x="453213" fg:w="315"/><text x="29.7015%" y="511.50"></text></g><g><title>drop_objectid_items (953 samples, 0.06%)</title><rect x="29.4113%" y="517" width="0.0619%" height="15" fill="rgb(209,120,9)" fg:x="452595" fg:w="953"/><text x="29.6613%" y="527.50"></text></g><g><title>btrfs_search_forward (429 samples, 0.03%)</title><rect x="29.4843%" y="485" width="0.0279%" height="15" fill="rgb(236,68,12)" fg:x="453718" fg:w="429"/><text x="29.7343%" y="495.50"></text></g><g><title>btrfs_search_slot (201 samples, 0.01%)</title><rect x="29.5122%" y="485" width="0.0131%" height="15" fill="rgb(225,194,26)" fg:x="454147" fg:w="201"/><text x="29.7622%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (199 samples, 0.01%)</title><rect x="29.5263%" y="421" width="0.0129%" height="15" fill="rgb(231,84,39)" fg:x="454365" fg:w="199"/><text x="29.7763%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (222 samples, 0.01%)</title><rect x="29.5262%" y="437" width="0.0144%" height="15" fill="rgb(210,11,45)" fg:x="454363" fg:w="222"/><text x="29.7762%" y="447.50"></text></g><g><title>__btrfs_tree_lock (192 samples, 0.01%)</title><rect x="29.5421%" y="421" width="0.0125%" height="15" fill="rgb(224,54,52)" fg:x="454607" fg:w="192"/><text x="29.7921%" y="431.50"></text></g><g><title>btrfs_lock_root_node (205 samples, 0.01%)</title><rect x="29.5419%" y="437" width="0.0133%" height="15" fill="rgb(238,102,14)" fg:x="454605" fg:w="205"/><text x="29.7919%" y="447.50"></text></g><g><title>btrfs_search_slot (576 samples, 0.04%)</title><rect x="29.5255%" y="453" width="0.0374%" height="15" fill="rgb(243,160,52)" fg:x="454352" fg:w="576"/><text x="29.7755%" y="463.50"></text></g><g><title>btrfs_get_token_32 (199 samples, 0.01%)</title><rect x="29.5653%" y="437" width="0.0129%" height="15" fill="rgb(216,114,19)" fg:x="454964" fg:w="199"/><text x="29.8153%" y="447.50"></text></g><g><title>btrfs_set_token_32 (165 samples, 0.01%)</title><rect x="29.5794%" y="437" width="0.0107%" height="15" fill="rgb(244,166,37)" fg:x="455182" fg:w="165"/><text x="29.8294%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (1,117 samples, 0.07%)</title><rect x="29.5254%" y="469" width="0.0726%" height="15" fill="rgb(246,29,44)" fg:x="454351" fg:w="1117"/><text x="29.7754%" y="479.50"></text></g><g><title>setup_items_for_insert (540 samples, 0.04%)</title><rect x="29.5629%" y="453" width="0.0351%" height="15" fill="rgb(215,56,53)" fg:x="454928" fg:w="540"/><text x="29.8129%" y="463.50"></text></g><g><title>insert_dir_log_key (1,153 samples, 0.07%)</title><rect x="29.5252%" y="485" width="0.0749%" height="15" fill="rgb(217,60,2)" fg:x="454348" fg:w="1153"/><text x="29.7752%" y="495.50"></text></g><g><title>__kmalloc (156 samples, 0.01%)</title><rect x="29.6027%" y="469" width="0.0101%" height="15" fill="rgb(207,26,24)" fg:x="455541" fg:w="156"/><text x="29.8527%" y="479.50"></text></g><g><title>btrfs_search_slot (296 samples, 0.02%)</title><rect x="29.6156%" y="453" width="0.0192%" height="15" fill="rgb(252,210,15)" fg:x="455739" fg:w="296"/><text x="29.8656%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (563 samples, 0.04%)</title><rect x="29.6156%" y="469" width="0.0366%" height="15" fill="rgb(253,209,26)" fg:x="455739" fg:w="563"/><text x="29.8656%" y="479.50"></text></g><g><title>setup_items_for_insert (267 samples, 0.02%)</title><rect x="29.6348%" y="453" width="0.0174%" height="15" fill="rgb(238,170,14)" fg:x="456035" fg:w="267"/><text x="29.8848%" y="463.50"></text></g><g><title>btrfs_release_path (190 samples, 0.01%)</title><rect x="29.6524%" y="469" width="0.0123%" height="15" fill="rgb(216,178,15)" fg:x="456305" fg:w="190"/><text x="29.9024%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (243 samples, 0.02%)</title><rect x="29.6874%" y="405" width="0.0158%" height="15" fill="rgb(250,197,2)" fg:x="456844" fg:w="243"/><text x="29.9374%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (220 samples, 0.01%)</title><rect x="29.6889%" y="389" width="0.0143%" height="15" fill="rgb(212,70,42)" fg:x="456867" fg:w="220"/><text x="29.9389%" y="399.50"></text></g><g><title>prepare_to_wait_event (288 samples, 0.02%)</title><rect x="29.6848%" y="421" width="0.0187%" height="15" fill="rgb(227,213,9)" fg:x="456803" fg:w="288"/><text x="29.9348%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (312 samples, 0.02%)</title><rect x="29.7035%" y="421" width="0.0203%" height="15" fill="rgb(245,99,25)" fg:x="457091" fg:w="312"/><text x="29.9535%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (207 samples, 0.01%)</title><rect x="29.7103%" y="405" width="0.0135%" height="15" fill="rgb(250,82,29)" fg:x="457196" fg:w="207"/><text x="29.9603%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (204 samples, 0.01%)</title><rect x="29.7332%" y="373" width="0.0133%" height="15" fill="rgb(241,226,54)" fg:x="457548" fg:w="204"/><text x="29.9832%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (201 samples, 0.01%)</title><rect x="29.7334%" y="357" width="0.0131%" height="15" fill="rgb(221,99,41)" fg:x="457551" fg:w="201"/><text x="29.9834%" y="367.50"></text></g><g><title>native_write_msr (197 samples, 0.01%)</title><rect x="29.7336%" y="341" width="0.0128%" height="15" fill="rgb(213,90,21)" fg:x="457555" fg:w="197"/><text x="29.9836%" y="351.50"></text></g><g><title>finish_task_switch (231 samples, 0.02%)</title><rect x="29.7319%" y="389" width="0.0150%" height="15" fill="rgb(205,208,24)" fg:x="457529" fg:w="231"/><text x="29.9819%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (1,280 samples, 0.08%)</title><rect x="29.6710%" y="437" width="0.0832%" height="15" fill="rgb(246,31,12)" fg:x="456591" fg:w="1280"/><text x="29.9210%" y="447.50"></text></g><g><title>schedule (468 samples, 0.03%)</title><rect x="29.7237%" y="421" width="0.0304%" height="15" fill="rgb(213,154,6)" fg:x="457403" fg:w="468"/><text x="29.9737%" y="431.50"></text></g><g><title>__schedule (458 samples, 0.03%)</title><rect x="29.7244%" y="405" width="0.0298%" height="15" fill="rgb(222,163,29)" fg:x="457413" fg:w="458"/><text x="29.9744%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (1,384 samples, 0.09%)</title><rect x="29.6704%" y="453" width="0.0899%" height="15" fill="rgb(227,201,8)" fg:x="456582" fg:w="1384"/><text x="29.9204%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (198 samples, 0.01%)</title><rect x="29.7718%" y="453" width="0.0129%" height="15" fill="rgb(233,9,32)" fg:x="458143" fg:w="198"/><text x="30.0218%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (273 samples, 0.02%)</title><rect x="29.7847%" y="453" width="0.0177%" height="15" fill="rgb(217,54,24)" fg:x="458341" fg:w="273"/><text x="30.0347%" y="463.50"></text></g><g><title>btrfs_search_slot (2,156 samples, 0.14%)</title><rect x="29.6647%" y="469" width="0.1401%" height="15" fill="rgb(235,192,0)" fg:x="456495" fg:w="2156"/><text x="29.9147%" y="479.50"></text></g><g><title>overwrite_item (3,392 samples, 0.22%)</title><rect x="29.6001%" y="485" width="0.2204%" height="15" fill="rgb(235,45,9)" fg:x="455501" fg:w="3392"/><text x="29.8501%" y="495.50"></text></g><g><title>log_directory_changes (5,376 samples, 0.35%)</title><rect x="29.4749%" y="517" width="0.3494%" height="15" fill="rgb(246,42,40)" fg:x="453573" fg:w="5376"/><text x="29.7249%" y="527.50"></text></g><g><title>log_dir_items (5,372 samples, 0.35%)</title><rect x="29.4751%" y="501" width="0.3491%" height="15" fill="rgb(248,111,24)" fg:x="453577" fg:w="5372"/><text x="29.7251%" y="511.50"></text></g><g><title>btrfs_log_inode (7,341 samples, 0.48%)</title><rect x="29.3475%" y="533" width="0.4770%" height="15" fill="rgb(249,65,22)" fg:x="451613" fg:w="7341"/><text x="29.5975%" y="543.50"></text></g><g><title>btrfs_search_forward (362 samples, 0.02%)</title><rect x="29.8274%" y="533" width="0.0235%" height="15" fill="rgb(238,111,51)" fg:x="458998" fg:w="362"/><text x="30.0774%" y="543.50"></text></g><g><title>log_new_dir_dentries (7,893 samples, 0.51%)</title><rect x="29.3409%" y="549" width="0.5129%" height="15" fill="rgb(250,118,22)" fg:x="451512" fg:w="7893"/><text x="29.5909%" y="559.50"></text></g><g><title>btrfs_log_new_name (41,249 samples, 2.68%)</title><rect x="27.1820%" y="581" width="2.6805%" height="15" fill="rgb(234,84,26)" fg:x="418289" fg:w="41249"/><text x="27.4320%" y="591.50">bt..</text></g><g><title>btrfs_log_inode_parent (41,044 samples, 2.67%)</title><rect x="27.1953%" y="565" width="2.6672%" height="15" fill="rgb(243,172,12)" fg:x="418494" fg:w="41044"/><text x="27.4453%" y="575.50">bt..</text></g><g><title>_raw_spin_lock (227 samples, 0.01%)</title><rect x="29.9427%" y="533" width="0.0148%" height="15" fill="rgb(236,150,49)" fg:x="460772" fg:w="227"/><text x="30.1927%" y="543.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,122 samples, 0.07%)</title><rect x="29.9013%" y="549" width="0.0729%" height="15" fill="rgb(225,197,26)" fg:x="460135" fg:w="1122"/><text x="30.1513%" y="559.50"></text></g><g><title>btrfs_block_rsv_migrate (455 samples, 0.03%)</title><rect x="29.9749%" y="549" width="0.0296%" height="15" fill="rgb(214,17,42)" fg:x="461268" fg:w="455"/><text x="30.2249%" y="559.50"></text></g><g><title>_raw_spin_lock (396 samples, 0.03%)</title><rect x="29.9787%" y="533" width="0.0257%" height="15" fill="rgb(224,165,40)" fg:x="461327" fg:w="396"/><text x="30.2287%" y="543.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,102 samples, 0.07%)</title><rect x="30.0045%" y="549" width="0.0716%" height="15" fill="rgb(246,100,4)" fg:x="461723" fg:w="1102"/><text x="30.2545%" y="559.50"></text></g><g><title>btrfs_get_delayed_node (1,081 samples, 0.07%)</title><rect x="30.0058%" y="533" width="0.0702%" height="15" fill="rgb(222,103,0)" fg:x="461744" fg:w="1081"/><text x="30.2558%" y="543.50"></text></g><g><title>inode_get_bytes (189 samples, 0.01%)</title><rect x="30.0840%" y="533" width="0.0123%" height="15" fill="rgb(227,189,26)" fg:x="462947" fg:w="189"/><text x="30.3340%" y="543.50"></text></g><g><title>_raw_spin_lock (175 samples, 0.01%)</title><rect x="30.0849%" y="517" width="0.0114%" height="15" fill="rgb(214,202,17)" fg:x="462961" fg:w="175"/><text x="30.3349%" y="527.50"></text></g><g><title>fill_stack_inode_item (385 samples, 0.03%)</title><rect x="30.0761%" y="549" width="0.0250%" height="15" fill="rgb(229,111,3)" fg:x="462825" fg:w="385"/><text x="30.3261%" y="559.50"></text></g><g><title>mutex_lock (289 samples, 0.02%)</title><rect x="30.1011%" y="549" width="0.0188%" height="15" fill="rgb(229,172,15)" fg:x="463210" fg:w="289"/><text x="30.3511%" y="559.50"></text></g><g><title>btrfs_delayed_update_inode (3,855 samples, 0.25%)</title><rect x="29.8774%" y="565" width="0.2505%" height="15" fill="rgb(230,224,35)" fg:x="459767" fg:w="3855"/><text x="30.1274%" y="575.50"></text></g><g><title>_raw_spin_lock (162 samples, 0.01%)</title><rect x="30.1299%" y="549" width="0.0105%" height="15" fill="rgb(251,141,6)" fg:x="463653" fg:w="162"/><text x="30.3799%" y="559.50"></text></g><g><title>btrfs_update_inode (4,427 samples, 0.29%)</title><rect x="29.8639%" y="581" width="0.2877%" height="15" fill="rgb(225,208,6)" fg:x="459559" fg:w="4427"/><text x="30.1139%" y="591.50"></text></g><g><title>btrfs_update_root_times (364 samples, 0.02%)</title><rect x="30.1279%" y="565" width="0.0237%" height="15" fill="rgb(246,181,16)" fg:x="463622" fg:w="364"/><text x="30.3779%" y="575.50"></text></g><g><title>ktime_get_real_ts64 (171 samples, 0.01%)</title><rect x="30.1404%" y="549" width="0.0111%" height="15" fill="rgb(227,129,36)" fg:x="463815" fg:w="171"/><text x="30.3904%" y="559.50"></text></g><g><title>_raw_spin_lock (176 samples, 0.01%)</title><rect x="30.1749%" y="549" width="0.0114%" height="15" fill="rgb(248,117,24)" fg:x="464345" fg:w="176"/><text x="30.4249%" y="559.50"></text></g><g><title>__d_instantiate (520 samples, 0.03%)</title><rect x="30.1574%" y="565" width="0.0338%" height="15" fill="rgb(214,185,35)" fg:x="464076" fg:w="520"/><text x="30.4074%" y="575.50"></text></g><g><title>d_instantiate (751 samples, 0.05%)</title><rect x="30.1551%" y="581" width="0.0488%" height="15" fill="rgb(236,150,34)" fg:x="464041" fg:w="751"/><text x="30.4051%" y="591.50"></text></g><g><title>_raw_spin_lock (431 samples, 0.03%)</title><rect x="30.3089%" y="549" width="0.0280%" height="15" fill="rgb(243,228,27)" fg:x="466408" fg:w="431"/><text x="30.5589%" y="559.50"></text></g><g><title>_raw_spin_lock (997 samples, 0.06%)</title><rect x="30.3835%" y="517" width="0.0648%" height="15" fill="rgb(245,77,44)" fg:x="467555" fg:w="997"/><text x="30.6335%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (443 samples, 0.03%)</title><rect x="30.4195%" y="501" width="0.0288%" height="15" fill="rgb(235,214,42)" fg:x="468109" fg:w="443"/><text x="30.6695%" y="511.50"></text></g><g><title>_raw_spin_lock (197 samples, 0.01%)</title><rect x="30.5136%" y="485" width="0.0128%" height="15" fill="rgb(221,74,3)" fg:x="469557" fg:w="197"/><text x="30.7636%" y="495.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,202 samples, 0.08%)</title><rect x="30.4483%" y="517" width="0.0781%" height="15" fill="rgb(206,121,29)" fg:x="468553" fg:w="1202"/><text x="30.6983%" y="527.50"></text></g><g><title>btrfs_reduce_alloc_profile (513 samples, 0.03%)</title><rect x="30.4931%" y="501" width="0.0333%" height="15" fill="rgb(249,131,53)" fg:x="469242" fg:w="513"/><text x="30.7431%" y="511.50"></text></g><g><title>btrfs_get_alloc_profile (169 samples, 0.01%)</title><rect x="30.5448%" y="501" width="0.0110%" height="15" fill="rgb(236,170,29)" fg:x="470038" fg:w="169"/><text x="30.7948%" y="511.50"></text></g><g><title>calc_available_free_space.isra.0 (903 samples, 0.06%)</title><rect x="30.5264%" y="517" width="0.0587%" height="15" fill="rgb(247,96,15)" fg:x="469755" fg:w="903"/><text x="30.7764%" y="527.50"></text></g><g><title>btrfs_reduce_alloc_profile (451 samples, 0.03%)</title><rect x="30.5558%" y="501" width="0.0293%" height="15" fill="rgb(211,210,7)" fg:x="470207" fg:w="451"/><text x="30.8058%" y="511.50"></text></g><g><title>_raw_spin_lock (264 samples, 0.02%)</title><rect x="30.5680%" y="485" width="0.0172%" height="15" fill="rgb(240,88,50)" fg:x="470394" fg:w="264"/><text x="30.8180%" y="495.50"></text></g><g><title>__reserve_bytes (3,457 samples, 0.22%)</title><rect x="30.3607%" y="533" width="0.2246%" height="15" fill="rgb(209,229,26)" fg:x="467204" fg:w="3457"/><text x="30.6107%" y="543.50"></text></g><g><title>btrfs_block_rsv_add (4,336 samples, 0.28%)</title><rect x="30.3036%" y="565" width="0.2818%" height="15" fill="rgb(210,68,23)" fg:x="466326" fg:w="4336"/><text x="30.5536%" y="575.50"></text></g><g><title>btrfs_reserve_metadata_bytes (3,823 samples, 0.25%)</title><rect x="30.3369%" y="549" width="0.2484%" height="15" fill="rgb(229,180,13)" fg:x="466839" fg:w="3823"/><text x="30.5869%" y="559.50"></text></g><g><title>_raw_spin_lock (296 samples, 0.02%)</title><rect x="30.6149%" y="549" width="0.0192%" height="15" fill="rgb(236,53,44)" fg:x="471116" fg:w="296"/><text x="30.8649%" y="559.50"></text></g><g><title>join_transaction (677 samples, 0.04%)</title><rect x="30.5902%" y="565" width="0.0440%" height="15" fill="rgb(244,214,29)" fg:x="470737" fg:w="677"/><text x="30.8402%" y="575.50"></text></g><g><title>kmem_cache_alloc (584 samples, 0.04%)</title><rect x="30.6342%" y="565" width="0.0380%" height="15" fill="rgb(220,75,29)" fg:x="471414" fg:w="584"/><text x="30.8842%" y="575.50"></text></g><g><title>_raw_spin_lock (381 samples, 0.02%)</title><rect x="30.6859%" y="549" width="0.0248%" height="15" fill="rgb(214,183,37)" fg:x="472209" fg:w="381"/><text x="30.9359%" y="559.50"></text></g><g><title>btrfs_link (198,215 samples, 12.88%)</title><rect x="17.8310%" y="597" width="12.8807%" height="15" fill="rgb(239,117,29)" fg:x="274392" fg:w="198215"/><text x="18.0810%" y="607.50">btrfs_link</text></g><g><title>start_transaction (7,650 samples, 0.50%)</title><rect x="30.2146%" y="581" width="0.4971%" height="15" fill="rgb(237,171,35)" fg:x="464957" fg:w="7650"/><text x="30.4646%" y="591.50"></text></g><g><title>wait_current_trans (609 samples, 0.04%)</title><rect x="30.6722%" y="565" width="0.0396%" height="15" fill="rgb(229,178,53)" fg:x="471998" fg:w="609"/><text x="30.9222%" y="575.50"></text></g><g><title>down_write (206 samples, 0.01%)</title><rect x="30.7118%" y="597" width="0.0134%" height="15" fill="rgb(210,102,19)" fg:x="472607" fg:w="206"/><text x="30.9618%" y="607.50"></text></g><g><title>fsnotify (518 samples, 0.03%)</title><rect x="30.7277%" y="597" width="0.0337%" height="15" fill="rgb(235,127,22)" fg:x="472852" fg:w="518"/><text x="30.9777%" y="607.50"></text></g><g><title>btrfs_permission (212 samples, 0.01%)</title><rect x="30.7668%" y="581" width="0.0138%" height="15" fill="rgb(244,31,31)" fg:x="473454" fg:w="212"/><text x="31.0168%" y="591.50"></text></g><g><title>inode_permission.part.0 (318 samples, 0.02%)</title><rect x="30.7613%" y="597" width="0.0207%" height="15" fill="rgb(231,43,21)" fg:x="473370" fg:w="318"/><text x="31.0113%" y="607.50"></text></g><g><title>map_id_up (231 samples, 0.02%)</title><rect x="30.7820%" y="597" width="0.0150%" height="15" fill="rgb(217,131,35)" fg:x="473688" fg:w="231"/><text x="31.0320%" y="607.50"></text></g><g><title>__x64_sys_link (254,734 samples, 16.55%)</title><rect x="14.2646%" y="645" width="16.5536%" height="15" fill="rgb(221,149,4)" fg:x="219511" fg:w="254734"/><text x="14.5146%" y="655.50">__x64_sys_link</text></g><g><title>do_linkat (254,706 samples, 16.55%)</title><rect x="14.2665%" y="629" width="16.5517%" height="15" fill="rgb(232,170,28)" fg:x="219539" fg:w="254706"/><text x="14.5165%" y="639.50">do_linkat</text></g><g><title>vfs_link (200,608 samples, 13.04%)</title><rect x="17.7819%" y="613" width="13.0363%" height="15" fill="rgb(238,56,10)" fg:x="273637" fg:w="200608"/><text x="18.0319%" y="623.50">vfs_link</text></g><g><title>up_write (175 samples, 0.01%)</title><rect x="30.8068%" y="597" width="0.0114%" height="15" fill="rgb(235,196,14)" fg:x="474070" fg:w="175"/><text x="31.0568%" y="607.50"></text></g><g><title>do_syscall_64 (254,972 samples, 16.57%)</title><rect x="14.2530%" y="661" width="16.5690%" height="15" fill="rgb(216,45,48)" fg:x="219332" fg:w="254972"/><text x="14.5030%" y="671.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (255,590 samples, 16.61%)</title><rect x="14.2397%" y="677" width="16.6092%" height="15" fill="rgb(238,213,17)" fg:x="219127" fg:w="255590"/><text x="14.4897%" y="687.50">entry_SYSCALL_64_after_hwf..</text></g><g><title>syscall_exit_to_user_mode (413 samples, 0.03%)</title><rect x="30.8220%" y="661" width="0.0268%" height="15" fill="rgb(212,13,2)" fg:x="474304" fg:w="413"/><text x="31.0720%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (344 samples, 0.02%)</title><rect x="30.8265%" y="645" width="0.0224%" height="15" fill="rgb(240,114,20)" fg:x="474373" fg:w="344"/><text x="31.0765%" y="655.50"></text></g><g><title>syscall_return_via_sysret (223 samples, 0.01%)</title><rect x="30.8502%" y="677" width="0.0145%" height="15" fill="rgb(228,41,40)" fg:x="474738" fg:w="223"/><text x="31.1002%" y="687.50"></text></g><g><title>__GI___link (256,646 samples, 16.68%)</title><rect x="14.1870%" y="693" width="16.6778%" height="15" fill="rgb(244,132,35)" fg:x="218316" fg:w="256646"/><text x="14.4370%" y="703.50">__GI___link</text></g><g><title>entry_SYSCALL_64 (565 samples, 0.04%)</title><rect x="30.9033%" y="677" width="0.0367%" height="15" fill="rgb(253,189,4)" fg:x="475555" fg:w="565"/><text x="31.1533%" y="687.50"></text></g><g><title>_copy_to_user (876 samples, 0.06%)</title><rect x="31.0082%" y="613" width="0.0569%" height="15" fill="rgb(224,37,19)" fg:x="477169" fg:w="876"/><text x="31.2582%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (702 samples, 0.05%)</title><rect x="31.0195%" y="597" width="0.0456%" height="15" fill="rgb(235,223,18)" fg:x="477343" fg:w="702"/><text x="31.2695%" y="607.50"></text></g><g><title>from_kgid_munged (172 samples, 0.01%)</title><rect x="31.0653%" y="613" width="0.0112%" height="15" fill="rgb(235,163,25)" fg:x="478047" fg:w="172"/><text x="31.3153%" y="623.50"></text></g><g><title>map_id_up (155 samples, 0.01%)</title><rect x="31.0664%" y="597" width="0.0101%" height="15" fill="rgb(217,145,28)" fg:x="478064" fg:w="155"/><text x="31.3164%" y="607.50"></text></g><g><title>cp_new_stat (1,829 samples, 0.12%)</title><rect x="30.9755%" y="629" width="0.1189%" height="15" fill="rgb(223,223,32)" fg:x="476666" fg:w="1829"/><text x="31.2255%" y="639.50"></text></g><g><title>from_kuid_munged (276 samples, 0.02%)</title><rect x="31.0764%" y="613" width="0.0179%" height="15" fill="rgb(227,189,39)" fg:x="478219" fg:w="276"/><text x="31.3264%" y="623.50"></text></g><g><title>map_id_up (171 samples, 0.01%)</title><rect x="31.0833%" y="597" width="0.0111%" height="15" fill="rgb(248,10,22)" fg:x="478324" fg:w="171"/><text x="31.3333%" y="607.50"></text></g><g><title>_raw_spin_lock (227 samples, 0.01%)</title><rect x="31.1986%" y="597" width="0.0148%" height="15" fill="rgb(248,46,39)" fg:x="480099" fg:w="227"/><text x="31.4486%" y="607.50"></text></g><g><title>generic_fillattr (182 samples, 0.01%)</title><rect x="31.2137%" y="597" width="0.0118%" height="15" fill="rgb(248,113,48)" fg:x="480331" fg:w="182"/><text x="31.4637%" y="607.50"></text></g><g><title>inode_get_bytes (255 samples, 0.02%)</title><rect x="31.2255%" y="597" width="0.0166%" height="15" fill="rgb(245,16,25)" fg:x="480513" fg:w="255"/><text x="31.4755%" y="607.50"></text></g><g><title>_raw_spin_lock (218 samples, 0.01%)</title><rect x="31.2279%" y="581" width="0.0142%" height="15" fill="rgb(249,152,16)" fg:x="480550" fg:w="218"/><text x="31.4779%" y="591.50"></text></g><g><title>btrfs_getattr (2,077 samples, 0.13%)</title><rect x="31.1072%" y="613" width="0.1350%" height="15" fill="rgb(250,16,1)" fg:x="478692" fg:w="2077"/><text x="31.3572%" y="623.50"></text></g><g><title>kmem_cache_free (978 samples, 0.06%)</title><rect x="31.2726%" y="597" width="0.0636%" height="15" fill="rgb(249,138,3)" fg:x="481238" fg:w="978"/><text x="31.5226%" y="607.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (186 samples, 0.01%)</title><rect x="31.3241%" y="581" width="0.0121%" height="15" fill="rgb(227,71,41)" fg:x="482030" fg:w="186"/><text x="31.5741%" y="591.50"></text></g><g><title>__legitimize_mnt (491 samples, 0.03%)</title><rect x="31.3772%" y="533" width="0.0319%" height="15" fill="rgb(209,184,23)" fg:x="482847" fg:w="491"/><text x="31.6272%" y="543.50"></text></g><g><title>__legitimize_path (890 samples, 0.06%)</title><rect x="31.3686%" y="549" width="0.0578%" height="15" fill="rgb(223,215,31)" fg:x="482714" fg:w="890"/><text x="31.6186%" y="559.50"></text></g><g><title>lockref_get_not_dead (264 samples, 0.02%)</title><rect x="31.4092%" y="533" width="0.0172%" height="15" fill="rgb(210,146,28)" fg:x="483340" fg:w="264"/><text x="31.6592%" y="543.50"></text></g><g><title>complete_walk (1,220 samples, 0.08%)</title><rect x="31.3565%" y="581" width="0.0793%" height="15" fill="rgb(209,183,41)" fg:x="482528" fg:w="1220"/><text x="31.6065%" y="591.50"></text></g><g><title>try_to_unlazy (1,150 samples, 0.07%)</title><rect x="31.3610%" y="565" width="0.0747%" height="15" fill="rgb(209,224,45)" fg:x="482598" fg:w="1150"/><text x="31.6110%" y="575.50"></text></g><g><title>btrfs_permission (402 samples, 0.03%)</title><rect x="32.4134%" y="549" width="0.0261%" height="15" fill="rgb(224,209,51)" fg:x="498792" fg:w="402"/><text x="32.6634%" y="559.50"></text></g><g><title>inode_permission.part.0 (8,721 samples, 0.57%)</title><rect x="32.0103%" y="565" width="0.5667%" height="15" fill="rgb(223,17,39)" fg:x="492590" fg:w="8721"/><text x="32.2603%" y="575.50"></text></g><g><title>generic_permission (2,117 samples, 0.14%)</title><rect x="32.4395%" y="549" width="0.1376%" height="15" fill="rgb(234,204,37)" fg:x="499194" fg:w="2117"/><text x="32.6895%" y="559.50"></text></g><g><title>security_inode_permission (981 samples, 0.06%)</title><rect x="32.5771%" y="565" width="0.0637%" height="15" fill="rgb(236,120,5)" fg:x="501312" fg:w="981"/><text x="32.8271%" y="575.50"></text></g><g><title>__d_lookup_rcu (11,526 samples, 0.75%)</title><rect x="33.0089%" y="533" width="0.7490%" height="15" fill="rgb(248,97,27)" fg:x="507957" fg:w="11526"/><text x="33.2589%" y="543.50"></text></g><g><title>lookup_fast (14,235 samples, 0.93%)</title><rect x="32.8333%" y="549" width="0.9250%" height="15" fill="rgb(240,66,17)" fg:x="505255" fg:w="14235"/><text x="33.0833%" y="559.50"></text></g><g><title>page_put_link (514 samples, 0.03%)</title><rect x="33.7584%" y="549" width="0.0334%" height="15" fill="rgb(210,79,3)" fg:x="519490" fg:w="514"/><text x="34.0084%" y="559.50"></text></g><g><title>__lookup_mnt (447 samples, 0.03%)</title><rect x="34.0252%" y="533" width="0.0290%" height="15" fill="rgb(214,176,27)" fg:x="523596" fg:w="447"/><text x="34.2752%" y="543.50"></text></g><g><title>atime_needs_update (550 samples, 0.04%)</title><rect x="34.0561%" y="533" width="0.0357%" height="15" fill="rgb(235,185,3)" fg:x="524072" fg:w="550"/><text x="34.3061%" y="543.50"></text></g><g><title>current_time (279 samples, 0.02%)</title><rect x="34.0738%" y="517" width="0.0181%" height="15" fill="rgb(227,24,12)" fg:x="524343" fg:w="279"/><text x="34.3238%" y="527.50"></text></g><g><title>pagecache_get_page (2,194 samples, 0.14%)</title><rect x="34.1135%" y="517" width="0.1426%" height="15" fill="rgb(252,169,48)" fg:x="524955" fg:w="2194"/><text x="34.3635%" y="527.50"></text></g><g><title>find_get_entry (1,924 samples, 0.13%)</title><rect x="34.1311%" y="501" width="0.1250%" height="15" fill="rgb(212,65,1)" fg:x="525225" fg:w="1924"/><text x="34.3811%" y="511.50"></text></g><g><title>xas_load (465 samples, 0.03%)</title><rect x="34.2259%" y="485" width="0.0302%" height="15" fill="rgb(242,39,24)" fg:x="526684" fg:w="465"/><text x="34.4759%" y="495.50"></text></g><g><title>xas_start (430 samples, 0.03%)</title><rect x="34.2282%" y="469" width="0.0279%" height="15" fill="rgb(249,32,23)" fg:x="526719" fg:w="430"/><text x="34.4782%" y="479.50"></text></g><g><title>page_get_link (2,415 samples, 0.16%)</title><rect x="34.0992%" y="533" width="0.1569%" height="15" fill="rgb(251,195,23)" fg:x="524735" fg:w="2415"/><text x="34.3492%" y="543.50"></text></g><g><title>link_path_walk.part.0 (43,492 samples, 2.83%)</title><rect x="31.4357%" y="581" width="2.8263%" height="15" fill="rgb(236,174,8)" fg:x="483748" fg:w="43492"/><text x="31.6857%" y="591.50">li..</text></g><g><title>walk_component (24,947 samples, 1.62%)</title><rect x="32.6409%" y="565" width="1.6211%" height="15" fill="rgb(220,197,8)" fg:x="502293" fg:w="24947"/><text x="32.8909%" y="575.50"></text></g><g><title>step_into (7,235 samples, 0.47%)</title><rect x="33.7919%" y="549" width="0.4702%" height="15" fill="rgb(240,108,37)" fg:x="520005" fg:w="7235"/><text x="34.0419%" y="559.50"></text></g><g><title>path_init (1,322 samples, 0.09%)</title><rect x="34.2620%" y="581" width="0.0859%" height="15" fill="rgb(232,176,24)" fg:x="527240" fg:w="1322"/><text x="34.5120%" y="591.50"></text></g><g><title>nd_jump_root (847 samples, 0.06%)</title><rect x="34.2929%" y="565" width="0.0550%" height="15" fill="rgb(243,35,29)" fg:x="527715" fg:w="847"/><text x="34.5429%" y="575.50"></text></g><g><title>set_root (673 samples, 0.04%)</title><rect x="34.3042%" y="549" width="0.0437%" height="15" fill="rgb(210,37,18)" fg:x="527889" fg:w="673"/><text x="34.5542%" y="559.50"></text></g><g><title>terminate_walk (358 samples, 0.02%)</title><rect x="34.3479%" y="581" width="0.0233%" height="15" fill="rgb(224,184,40)" fg:x="528562" fg:w="358"/><text x="34.5979%" y="591.50"></text></g><g><title>__d_lookup_rcu (2,030 samples, 0.13%)</title><rect x="34.3865%" y="549" width="0.1319%" height="15" fill="rgb(236,39,29)" fg:x="529155" fg:w="2030"/><text x="34.6365%" y="559.50"></text></g><g><title>lookup_fast (2,147 samples, 0.14%)</title><rect x="34.3790%" y="565" width="0.1395%" height="15" fill="rgb(232,48,39)" fg:x="529040" fg:w="2147"/><text x="34.6290%" y="575.50"></text></g><g><title>path_lookupat (49,095 samples, 3.19%)</title><rect x="31.3362%" y="597" width="3.1904%" height="15" fill="rgb(236,34,42)" fg:x="482216" fg:w="49095"/><text x="31.5862%" y="607.50">pat..</text></g><g><title>walk_component (2,391 samples, 0.16%)</title><rect x="34.3712%" y="581" width="0.1554%" height="15" fill="rgb(243,106,37)" fg:x="528920" fg:w="2391"/><text x="34.6212%" y="591.50"></text></g><g><title>filename_lookup (50,668 samples, 3.29%)</title><rect x="31.2422%" y="613" width="3.2926%" height="15" fill="rgb(218,96,6)" fg:x="480769" fg:w="50668"/><text x="31.4922%" y="623.50">fil..</text></g><g><title>mntput_no_expire (155 samples, 0.01%)</title><rect x="34.5364%" y="613" width="0.0101%" height="15" fill="rgb(235,130,12)" fg:x="531462" fg:w="155"/><text x="34.7864%" y="623.50"></text></g><g><title>__schedule (164 samples, 0.01%)</title><rect x="34.5576%" y="565" width="0.0107%" height="15" fill="rgb(231,95,0)" fg:x="531788" fg:w="164"/><text x="34.8076%" y="575.50"></text></g><g><title>_cond_resched (221 samples, 0.01%)</title><rect x="34.5562%" y="581" width="0.0144%" height="15" fill="rgb(228,12,23)" fg:x="531767" fg:w="221"/><text x="34.8062%" y="591.50"></text></g><g><title>btrfs_dentry_delete (183 samples, 0.01%)</title><rect x="34.5708%" y="581" width="0.0119%" height="15" fill="rgb(216,12,1)" fg:x="531992" fg:w="183"/><text x="34.8208%" y="591.50"></text></g><g><title>lockref_put_or_lock (279 samples, 0.02%)</title><rect x="34.5827%" y="581" width="0.0181%" height="15" fill="rgb(219,59,3)" fg:x="532175" fg:w="279"/><text x="34.8327%" y="591.50"></text></g><g><title>_raw_spin_lock (216 samples, 0.01%)</title><rect x="34.5868%" y="565" width="0.0140%" height="15" fill="rgb(215,208,46)" fg:x="532238" fg:w="216"/><text x="34.8368%" y="575.50"></text></g><g><title>path_put (843 samples, 0.05%)</title><rect x="34.5464%" y="613" width="0.0548%" height="15" fill="rgb(254,224,29)" fg:x="531617" fg:w="843"/><text x="34.7964%" y="623.50"></text></g><g><title>dput (822 samples, 0.05%)</title><rect x="34.5478%" y="597" width="0.0534%" height="15" fill="rgb(232,14,29)" fg:x="531638" fg:w="822"/><text x="34.7978%" y="607.50"></text></g><g><title>apparmor_inode_getattr (283 samples, 0.02%)</title><rect x="34.6726%" y="597" width="0.0184%" height="15" fill="rgb(208,45,52)" fg:x="533559" fg:w="283"/><text x="34.9226%" y="607.50"></text></g><g><title>security_inode_getattr (2,692 samples, 0.17%)</title><rect x="34.6012%" y="613" width="0.1749%" height="15" fill="rgb(234,191,28)" fg:x="532460" fg:w="2692"/><text x="34.8512%" y="623.50"></text></g><g><title>tomoyo_path_perm (1,294 samples, 0.08%)</title><rect x="34.6921%" y="597" width="0.0841%" height="15" fill="rgb(244,67,43)" fg:x="533858" fg:w="1294"/><text x="34.9421%" y="607.50"></text></g><g><title>tomoyo_init_request_info (839 samples, 0.05%)</title><rect x="34.7216%" y="581" width="0.0545%" height="15" fill="rgb(236,189,24)" fg:x="534313" fg:w="839"/><text x="34.9716%" y="591.50"></text></g><g><title>tomoyo_domain (476 samples, 0.03%)</title><rect x="34.7452%" y="565" width="0.0309%" height="15" fill="rgb(239,214,33)" fg:x="534676" fg:w="476"/><text x="34.9952%" y="575.50"></text></g><g><title>memset_erms (2,006 samples, 0.13%)</title><rect x="34.8661%" y="565" width="0.1304%" height="15" fill="rgb(226,176,41)" fg:x="536536" fg:w="2006"/><text x="35.1161%" y="575.50"></text></g><g><title>kmem_cache_alloc (3,280 samples, 0.21%)</title><rect x="34.8095%" y="581" width="0.2131%" height="15" fill="rgb(248,47,8)" fg:x="535665" fg:w="3280"/><text x="35.0595%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (403 samples, 0.03%)</title><rect x="34.9965%" y="565" width="0.0262%" height="15" fill="rgb(218,81,44)" fg:x="538542" fg:w="403"/><text x="35.2465%" y="575.50"></text></g><g><title>__check_heap_object (328 samples, 0.02%)</title><rect x="35.1608%" y="549" width="0.0213%" height="15" fill="rgb(213,98,6)" fg:x="541071" fg:w="328"/><text x="35.4108%" y="559.50"></text></g><g><title>__virt_addr_valid (846 samples, 0.05%)</title><rect x="35.1821%" y="549" width="0.0550%" height="15" fill="rgb(222,85,22)" fg:x="541399" fg:w="846"/><text x="35.4321%" y="559.50"></text></g><g><title>__check_object_size (1,677 samples, 0.11%)</title><rect x="35.1353%" y="565" width="0.1090%" height="15" fill="rgb(239,46,39)" fg:x="540678" fg:w="1677"/><text x="35.3853%" y="575.50"></text></g><g><title>user_path_at_empty (7,219 samples, 0.47%)</title><rect x="34.7762%" y="613" width="0.4691%" height="15" fill="rgb(237,12,29)" fg:x="535152" fg:w="7219"/><text x="35.0262%" y="623.50"></text></g><g><title>getname_flags.part.0 (7,039 samples, 0.46%)</title><rect x="34.7879%" y="597" width="0.4574%" height="15" fill="rgb(214,77,8)" fg:x="535332" fg:w="7039"/><text x="35.0379%" y="607.50"></text></g><g><title>strncpy_from_user (3,426 samples, 0.22%)</title><rect x="35.0227%" y="581" width="0.2226%" height="15" fill="rgb(217,168,37)" fg:x="538945" fg:w="3426"/><text x="35.2727%" y="591.50"></text></g><g><title>__do_sys_newlstat (66,350 samples, 4.31%)</title><rect x="30.9634%" y="645" width="4.3117%" height="15" fill="rgb(221,217,23)" fg:x="476480" fg:w="66350"/><text x="31.2134%" y="655.50">__do_..</text></g><g><title>vfs_statx (64,335 samples, 4.18%)</title><rect x="31.0944%" y="629" width="4.1807%" height="15" fill="rgb(243,229,36)" fg:x="478495" fg:w="64335"/><text x="31.3444%" y="639.50">vfs_s..</text></g><g><title>vfs_getattr_nosec (459 samples, 0.03%)</title><rect x="35.2453%" y="613" width="0.0298%" height="15" fill="rgb(251,163,40)" fg:x="542371" fg:w="459"/><text x="35.4953%" y="623.50"></text></g><g><title>do_syscall_64 (66,663 samples, 4.33%)</title><rect x="30.9534%" y="661" width="4.3320%" height="15" fill="rgb(237,222,12)" fg:x="476326" fg:w="66663"/><text x="31.2034%" y="671.50">do_sy..</text></g><g><title>entry_SYSCALL_64_after_hwframe (67,217 samples, 4.37%)</title><rect x="30.9400%" y="677" width="4.3680%" height="15" fill="rgb(248,132,6)" fg:x="476120" fg:w="67217"/><text x="31.1900%" y="687.50">entry..</text></g><g><title>syscall_exit_to_user_mode (348 samples, 0.02%)</title><rect x="35.2854%" y="661" width="0.0226%" height="15" fill="rgb(227,167,50)" fg:x="542989" fg:w="348"/><text x="35.5354%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (242 samples, 0.02%)</title><rect x="35.2923%" y="645" width="0.0157%" height="15" fill="rgb(242,84,37)" fg:x="543095" fg:w="242"/><text x="35.5423%" y="655.50"></text></g><g><title>__GI___lxstat (68,677 samples, 4.46%)</title><rect x="30.8648%" y="693" width="4.4629%" height="15" fill="rgb(212,4,50)" fg:x="474962" fg:w="68677"/><text x="31.1148%" y="703.50">__GI_..</text></g><g><title>syscall_return_via_sysret (297 samples, 0.02%)</title><rect x="35.3084%" y="677" width="0.0193%" height="15" fill="rgb(230,228,32)" fg:x="543342" fg:w="297"/><text x="35.5584%" y="687.50"></text></g><g><title>d_lru_add (157 samples, 0.01%)</title><rect x="35.3429%" y="613" width="0.0102%" height="15" fill="rgb(248,217,23)" fg:x="543873" fg:w="157"/><text x="35.5929%" y="623.50"></text></g><g><title>dput (244 samples, 0.02%)</title><rect x="35.3394%" y="629" width="0.0159%" height="15" fill="rgb(238,197,32)" fg:x="543819" fg:w="244"/><text x="35.5894%" y="639.50"></text></g><g><title>btrfs_free_path (167 samples, 0.01%)</title><rect x="35.3608%" y="565" width="0.0109%" height="15" fill="rgb(236,106,1)" fg:x="544148" fg:w="167"/><text x="35.6108%" y="575.50"></text></g><g><title>btrfs_release_path (162 samples, 0.01%)</title><rect x="35.3611%" y="549" width="0.0105%" height="15" fill="rgb(219,228,13)" fg:x="544153" fg:w="162"/><text x="35.6111%" y="559.50"></text></g><g><title>queued_read_lock_slowpath (300 samples, 0.02%)</title><rect x="35.3938%" y="501" width="0.0195%" height="15" fill="rgb(238,30,35)" fg:x="544657" fg:w="300"/><text x="35.6438%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (193 samples, 0.01%)</title><rect x="35.4008%" y="485" width="0.0125%" height="15" fill="rgb(236,70,23)" fg:x="544764" fg:w="193"/><text x="35.6508%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (756 samples, 0.05%)</title><rect x="35.3806%" y="517" width="0.0491%" height="15" fill="rgb(249,104,48)" fg:x="544453" fg:w="756"/><text x="35.6306%" y="527.50"></text></g><g><title>schedule (252 samples, 0.02%)</title><rect x="35.4133%" y="501" width="0.0164%" height="15" fill="rgb(254,117,50)" fg:x="544957" fg:w="252"/><text x="35.6633%" y="511.50"></text></g><g><title>__schedule (250 samples, 0.02%)</title><rect x="35.4135%" y="485" width="0.0162%" height="15" fill="rgb(223,152,4)" fg:x="544959" fg:w="250"/><text x="35.6635%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (836 samples, 0.05%)</title><rect x="35.3799%" y="533" width="0.0543%" height="15" fill="rgb(245,6,2)" fg:x="544442" fg:w="836"/><text x="35.6299%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (361 samples, 0.02%)</title><rect x="35.4558%" y="469" width="0.0235%" height="15" fill="rgb(249,150,24)" fg:x="545611" fg:w="361"/><text x="35.7058%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (354 samples, 0.02%)</title><rect x="35.4563%" y="453" width="0.0230%" height="15" fill="rgb(228,185,42)" fg:x="545618" fg:w="354"/><text x="35.7063%" y="463.50"></text></g><g><title>native_write_msr (349 samples, 0.02%)</title><rect x="35.4566%" y="437" width="0.0227%" height="15" fill="rgb(226,39,33)" fg:x="545623" fg:w="349"/><text x="35.7066%" y="447.50"></text></g><g><title>finish_task_switch (385 samples, 0.03%)</title><rect x="35.4549%" y="485" width="0.0250%" height="15" fill="rgb(221,166,19)" fg:x="545597" fg:w="385"/><text x="35.7049%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (768 samples, 0.05%)</title><rect x="35.4342%" y="533" width="0.0499%" height="15" fill="rgb(209,109,2)" fg:x="545278" fg:w="768"/><text x="35.6842%" y="543.50"></text></g><g><title>schedule (544 samples, 0.04%)</title><rect x="35.4487%" y="517" width="0.0354%" height="15" fill="rgb(252,216,26)" fg:x="545502" fg:w="544"/><text x="35.6987%" y="527.50"></text></g><g><title>__schedule (538 samples, 0.03%)</title><rect x="35.4491%" y="501" width="0.0350%" height="15" fill="rgb(227,173,36)" fg:x="545508" fg:w="538"/><text x="35.6991%" y="511.50"></text></g><g><title>__wake_up_common_lock (154 samples, 0.01%)</title><rect x="35.4841%" y="533" width="0.0100%" height="15" fill="rgb(209,90,7)" fg:x="546046" fg:w="154"/><text x="35.7341%" y="543.50"></text></g><g><title>btrfs_tree_read_lock_atomic (462 samples, 0.03%)</title><rect x="35.4994%" y="533" width="0.0300%" height="15" fill="rgb(250,194,11)" fg:x="546282" fg:w="462"/><text x="35.7494%" y="543.50"></text></g><g><title>queued_read_lock_slowpath (402 samples, 0.03%)</title><rect x="35.5033%" y="517" width="0.0261%" height="15" fill="rgb(220,72,50)" fg:x="546342" fg:w="402"/><text x="35.7533%" y="527.50"></text></g><g><title>generic_bin_search.constprop.0 (227 samples, 0.01%)</title><rect x="35.5332%" y="533" width="0.0148%" height="15" fill="rgb(222,106,48)" fg:x="546801" fg:w="227"/><text x="35.7832%" y="543.50"></text></g><g><title>find_extent_buffer (310 samples, 0.02%)</title><rect x="35.5570%" y="517" width="0.0201%" height="15" fill="rgb(216,220,45)" fg:x="547168" fg:w="310"/><text x="35.8070%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (505 samples, 0.03%)</title><rect x="35.5479%" y="533" width="0.0328%" height="15" fill="rgb(234,112,18)" fg:x="547028" fg:w="505"/><text x="35.7979%" y="543.50"></text></g><g><title>btrfs_search_slot (3,230 samples, 0.21%)</title><rect x="35.3728%" y="549" width="0.2099%" height="15" fill="rgb(206,179,9)" fg:x="544334" fg:w="3230"/><text x="35.6228%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (3,291 samples, 0.21%)</title><rect x="35.3716%" y="565" width="0.2139%" height="15" fill="rgb(215,115,40)" fg:x="544315" fg:w="3291"/><text x="35.6216%" y="575.50"></text></g><g><title>btrfs_lookup (3,610 samples, 0.23%)</title><rect x="35.3569%" y="597" width="0.2346%" height="15" fill="rgb(222,69,34)" fg:x="544089" fg:w="3610"/><text x="35.6069%" y="607.50"></text></g><g><title>btrfs_lookup_dentry (3,601 samples, 0.23%)</title><rect x="35.3575%" y="581" width="0.2340%" height="15" fill="rgb(209,161,10)" fg:x="544098" fg:w="3601"/><text x="35.6075%" y="591.50"></text></g><g><title>kmem_cache_alloc (259 samples, 0.02%)</title><rect x="35.5943%" y="565" width="0.0168%" height="15" fill="rgb(217,6,38)" fg:x="547742" fg:w="259"/><text x="35.8443%" y="575.50"></text></g><g><title>__d_alloc (306 samples, 0.02%)</title><rect x="35.5919%" y="581" width="0.0199%" height="15" fill="rgb(229,229,48)" fg:x="547705" fg:w="306"/><text x="35.8419%" y="591.50"></text></g><g><title>d_alloc (329 samples, 0.02%)</title><rect x="35.5915%" y="597" width="0.0214%" height="15" fill="rgb(225,21,28)" fg:x="547699" fg:w="329"/><text x="35.8415%" y="607.50"></text></g><g><title>__lookup_hash (4,087 samples, 0.27%)</title><rect x="35.3563%" y="613" width="0.2656%" height="15" fill="rgb(206,33,13)" fg:x="544080" fg:w="4087"/><text x="35.6063%" y="623.50"></text></g><g><title>inode_permission.part.0 (401 samples, 0.03%)</title><rect x="35.6491%" y="565" width="0.0261%" height="15" fill="rgb(242,178,17)" fg:x="548585" fg:w="401"/><text x="35.8991%" y="575.50"></text></g><g><title>lookup_fast (613 samples, 0.04%)</title><rect x="35.6835%" y="549" width="0.0398%" height="15" fill="rgb(220,162,5)" fg:x="549114" fg:w="613"/><text x="35.9335%" y="559.50"></text></g><g><title>__d_lookup_rcu (516 samples, 0.03%)</title><rect x="35.6898%" y="533" width="0.0335%" height="15" fill="rgb(210,33,43)" fg:x="549211" fg:w="516"/><text x="35.9398%" y="543.50"></text></g><g><title>link_path_walk.part.0 (1,530 samples, 0.10%)</title><rect x="35.6308%" y="581" width="0.0994%" height="15" fill="rgb(216,116,54)" fg:x="548304" fg:w="1530"/><text x="35.8808%" y="591.50"></text></g><g><title>walk_component (827 samples, 0.05%)</title><rect x="35.6765%" y="565" width="0.0537%" height="15" fill="rgb(249,92,24)" fg:x="549007" fg:w="827"/><text x="35.9265%" y="575.50"></text></g><g><title>filename_parentat (1,781 samples, 0.12%)</title><rect x="35.6231%" y="613" width="0.1157%" height="15" fill="rgb(231,189,14)" fg:x="548185" fg:w="1781"/><text x="35.8731%" y="623.50"></text></g><g><title>path_parentat (1,749 samples, 0.11%)</title><rect x="35.6252%" y="597" width="0.1137%" height="15" fill="rgb(230,8,41)" fg:x="548217" fg:w="1749"/><text x="35.8752%" y="607.50"></text></g><g><title>filename_create (6,024 samples, 0.39%)</title><rect x="35.3552%" y="629" width="0.3915%" height="15" fill="rgb(249,7,27)" fg:x="544063" fg:w="6024"/><text x="35.6052%" y="639.50"></text></g><g><title>kmem_cache_alloc (155 samples, 0.01%)</title><rect x="35.7481%" y="613" width="0.0101%" height="15" fill="rgb(232,86,5)" fg:x="550108" fg:w="155"/><text x="35.9981%" y="623.50"></text></g><g><title>getname_flags.part.0 (334 samples, 0.02%)</title><rect x="35.7471%" y="629" width="0.0217%" height="15" fill="rgb(224,175,18)" fg:x="550093" fg:w="334"/><text x="35.9971%" y="639.50"></text></g><g><title>strncpy_from_user (164 samples, 0.01%)</title><rect x="35.7581%" y="613" width="0.0107%" height="15" fill="rgb(220,129,12)" fg:x="550263" fg:w="164"/><text x="36.0081%" y="623.50"></text></g><g><title>__btrfs_end_transaction (253 samples, 0.02%)</title><rect x="35.7843%" y="597" width="0.0164%" height="15" fill="rgb(210,19,36)" fg:x="550665" fg:w="253"/><text x="36.0343%" y="607.50"></text></g><g><title>btrfs_insert_delayed_dir_index (599 samples, 0.04%)</title><rect x="35.8080%" y="565" width="0.0389%" height="15" fill="rgb(219,96,14)" fg:x="551030" fg:w="599"/><text x="36.0580%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (246 samples, 0.02%)</title><rect x="35.8806%" y="485" width="0.0160%" height="15" fill="rgb(249,106,1)" fg:x="552147" fg:w="246"/><text x="36.1306%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (547 samples, 0.04%)</title><rect x="35.8708%" y="501" width="0.0355%" height="15" fill="rgb(249,155,20)" fg:x="551997" fg:w="547"/><text x="36.1208%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (605 samples, 0.04%)</title><rect x="35.8707%" y="517" width="0.0393%" height="15" fill="rgb(244,168,9)" fg:x="551995" fg:w="605"/><text x="36.1207%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (313 samples, 0.02%)</title><rect x="35.9329%" y="453" width="0.0203%" height="15" fill="rgb(216,23,50)" fg:x="552953" fg:w="313"/><text x="36.1829%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (306 samples, 0.02%)</title><rect x="35.9334%" y="437" width="0.0199%" height="15" fill="rgb(224,219,20)" fg:x="552960" fg:w="306"/><text x="36.1834%" y="447.50"></text></g><g><title>native_write_msr (303 samples, 0.02%)</title><rect x="35.9336%" y="421" width="0.0197%" height="15" fill="rgb(222,156,15)" fg:x="552963" fg:w="303"/><text x="36.1836%" y="431.50"></text></g><g><title>finish_task_switch (338 samples, 0.02%)</title><rect x="35.9317%" y="469" width="0.0220%" height="15" fill="rgb(231,97,17)" fg:x="552934" fg:w="338"/><text x="36.1817%" y="479.50"></text></g><g><title>__btrfs_tree_lock (744 samples, 0.05%)</title><rect x="35.9100%" y="517" width="0.0483%" height="15" fill="rgb(218,70,48)" fg:x="552600" fg:w="744"/><text x="36.1600%" y="527.50"></text></g><g><title>schedule (481 samples, 0.03%)</title><rect x="35.9271%" y="501" width="0.0313%" height="15" fill="rgb(212,196,52)" fg:x="552863" fg:w="481"/><text x="36.1771%" y="511.50"></text></g><g><title>__schedule (480 samples, 0.03%)</title><rect x="35.9272%" y="485" width="0.0312%" height="15" fill="rgb(243,203,18)" fg:x="552864" fg:w="480"/><text x="36.1772%" y="495.50"></text></g><g><title>btrfs_try_tree_write_lock (590 samples, 0.04%)</title><rect x="35.9632%" y="517" width="0.0383%" height="15" fill="rgb(252,125,41)" fg:x="553419" fg:w="590"/><text x="36.2132%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (549 samples, 0.04%)</title><rect x="35.9659%" y="501" width="0.0357%" height="15" fill="rgb(223,180,33)" fg:x="553460" fg:w="549"/><text x="36.2159%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (218 samples, 0.01%)</title><rect x="36.0016%" y="517" width="0.0142%" height="15" fill="rgb(254,159,46)" fg:x="554009" fg:w="218"/><text x="36.2516%" y="527.50"></text></g><g><title>find_extent_buffer (233 samples, 0.02%)</title><rect x="36.0231%" y="501" width="0.0151%" height="15" fill="rgb(254,38,10)" fg:x="554341" fg:w="233"/><text x="36.2731%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (391 samples, 0.03%)</title><rect x="36.0157%" y="517" width="0.0254%" height="15" fill="rgb(208,217,32)" fg:x="554227" fg:w="391"/><text x="36.2657%" y="527.50"></text></g><g><title>split_leaf (233 samples, 0.02%)</title><rect x="36.0411%" y="517" width="0.0151%" height="15" fill="rgb(221,120,13)" fg:x="554618" fg:w="233"/><text x="36.2911%" y="527.50"></text></g><g><title>__wake_up_common (240 samples, 0.02%)</title><rect x="36.0592%" y="485" width="0.0156%" height="15" fill="rgb(246,54,52)" fg:x="554896" fg:w="240"/><text x="36.3092%" y="495.50"></text></g><g><title>autoremove_wake_function (233 samples, 0.02%)</title><rect x="36.0597%" y="469" width="0.0151%" height="15" fill="rgb(242,34,25)" fg:x="554903" fg:w="233"/><text x="36.3097%" y="479.50"></text></g><g><title>try_to_wake_up (225 samples, 0.01%)</title><rect x="36.0602%" y="453" width="0.0146%" height="15" fill="rgb(247,209,9)" fg:x="554911" fg:w="225"/><text x="36.3102%" y="463.50"></text></g><g><title>__wake_up_common_lock (247 samples, 0.02%)</title><rect x="36.0591%" y="501" width="0.0161%" height="15" fill="rgb(228,71,26)" fg:x="554894" fg:w="247"/><text x="36.3091%" y="511.50"></text></g><g><title>btrfs_search_slot (3,294 samples, 0.21%)</title><rect x="35.8640%" y="533" width="0.2141%" height="15" fill="rgb(222,145,49)" fg:x="551892" fg:w="3294"/><text x="36.1140%" y="543.50"></text></g><g><title>unlock_up (335 samples, 0.02%)</title><rect x="36.0563%" y="517" width="0.0218%" height="15" fill="rgb(218,121,17)" fg:x="554851" fg:w="335"/><text x="36.3063%" y="527.50"></text></g><g><title>btrfs_get_token_32 (499 samples, 0.03%)</title><rect x="36.0892%" y="517" width="0.0324%" height="15" fill="rgb(244,50,7)" fg:x="555357" fg:w="499"/><text x="36.3392%" y="527.50"></text></g><g><title>btrfs_set_token_32 (420 samples, 0.03%)</title><rect x="36.1285%" y="517" width="0.0273%" height="15" fill="rgb(246,229,37)" fg:x="555963" fg:w="420"/><text x="36.3785%" y="527.50"></text></g><g><title>memcpy_extent_buffer (160 samples, 0.01%)</title><rect x="36.1579%" y="517" width="0.0104%" height="15" fill="rgb(225,18,5)" fg:x="556414" fg:w="160"/><text x="36.4079%" y="527.50"></text></g><g><title>insert_with_overflow (4,917 samples, 0.32%)</title><rect x="35.8604%" y="565" width="0.3195%" height="15" fill="rgb(213,204,8)" fg:x="551837" fg:w="4917"/><text x="36.1104%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (4,872 samples, 0.32%)</title><rect x="35.8633%" y="549" width="0.3166%" height="15" fill="rgb(238,103,6)" fg:x="551882" fg:w="4872"/><text x="36.1133%" y="559.50"></text></g><g><title>setup_items_for_insert (1,568 samples, 0.10%)</title><rect x="36.0781%" y="533" width="0.1019%" height="15" fill="rgb(222,25,35)" fg:x="555186" fg:w="1568"/><text x="36.3281%" y="543.50"></text></g><g><title>btrfs_insert_dir_item (5,933 samples, 0.39%)</title><rect x="35.8052%" y="581" width="0.3855%" height="15" fill="rgb(213,203,35)" fg:x="550988" fg:w="5933"/><text x="36.0552%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (191 samples, 0.01%)</title><rect x="36.1932%" y="565" width="0.0124%" height="15" fill="rgb(221,79,53)" fg:x="556958" fg:w="191"/><text x="36.4432%" y="575.50"></text></g><g><title>btrfs_update_inode (294 samples, 0.02%)</title><rect x="36.1908%" y="581" width="0.0191%" height="15" fill="rgb(243,200,35)" fg:x="556921" fg:w="294"/><text x="36.4408%" y="591.50"></text></g><g><title>btrfs_add_link (6,281 samples, 0.41%)</title><rect x="35.8027%" y="597" width="0.4082%" height="15" fill="rgb(248,60,25)" fg:x="550949" fg:w="6281"/><text x="36.0527%" y="607.50"></text></g><g><title>__queue_work (245 samples, 0.02%)</title><rect x="36.2171%" y="565" width="0.0159%" height="15" fill="rgb(227,53,46)" fg:x="557325" fg:w="245"/><text x="36.4671%" y="575.50"></text></g><g><title>try_to_wake_up (177 samples, 0.01%)</title><rect x="36.2215%" y="549" width="0.0115%" height="15" fill="rgb(216,120,32)" fg:x="557393" fg:w="177"/><text x="36.4715%" y="559.50"></text></g><g><title>btrfs_btree_balance_dirty (342 samples, 0.02%)</title><rect x="36.2109%" y="597" width="0.0222%" height="15" fill="rgb(220,134,1)" fg:x="557230" fg:w="342"/><text x="36.4609%" y="607.50"></text></g><g><title>queue_work_on (250 samples, 0.02%)</title><rect x="36.2169%" y="581" width="0.0162%" height="15" fill="rgb(237,168,5)" fg:x="557322" fg:w="250"/><text x="36.4669%" y="591.50"></text></g><g><title>queued_read_lock_slowpath (268 samples, 0.02%)</title><rect x="36.2756%" y="517" width="0.0174%" height="15" fill="rgb(231,100,33)" fg:x="558226" fg:w="268"/><text x="36.5256%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (173 samples, 0.01%)</title><rect x="36.2818%" y="501" width="0.0112%" height="15" fill="rgb(236,177,47)" fg:x="558321" fg:w="173"/><text x="36.5318%" y="511.50"></text></g><g><title>__schedule (203 samples, 0.01%)</title><rect x="36.2931%" y="501" width="0.0132%" height="15" fill="rgb(235,7,49)" fg:x="558495" fg:w="203"/><text x="36.5431%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (611 samples, 0.04%)</title><rect x="36.2666%" y="533" width="0.0397%" height="15" fill="rgb(232,119,22)" fg:x="558088" fg:w="611"/><text x="36.5166%" y="543.50"></text></g><g><title>schedule (205 samples, 0.01%)</title><rect x="36.2930%" y="517" width="0.0133%" height="15" fill="rgb(254,73,53)" fg:x="558494" fg:w="205"/><text x="36.5430%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (662 samples, 0.04%)</title><rect x="36.2664%" y="549" width="0.0430%" height="15" fill="rgb(251,35,20)" fg:x="558085" fg:w="662"/><text x="36.5164%" y="559.50"></text></g><g><title>prepare_to_wait_event (155 samples, 0.01%)</title><rect x="36.3123%" y="533" width="0.0101%" height="15" fill="rgb(241,119,20)" fg:x="558791" fg:w="155"/><text x="36.5623%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (232 samples, 0.02%)</title><rect x="36.3321%" y="485" width="0.0151%" height="15" fill="rgb(207,102,14)" fg:x="559096" fg:w="232"/><text x="36.5821%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (226 samples, 0.01%)</title><rect x="36.3325%" y="469" width="0.0147%" height="15" fill="rgb(248,201,50)" fg:x="559102" fg:w="226"/><text x="36.5825%" y="479.50"></text></g><g><title>native_write_msr (223 samples, 0.01%)</title><rect x="36.3327%" y="453" width="0.0145%" height="15" fill="rgb(222,185,44)" fg:x="559105" fg:w="223"/><text x="36.5827%" y="463.50"></text></g><g><title>finish_task_switch (242 samples, 0.02%)</title><rect x="36.3319%" y="501" width="0.0157%" height="15" fill="rgb(218,107,18)" fg:x="559092" fg:w="242"/><text x="36.5819%" y="511.50"></text></g><g><title>__btrfs_tree_lock (639 samples, 0.04%)</title><rect x="36.3095%" y="549" width="0.0415%" height="15" fill="rgb(237,177,39)" fg:x="558747" fg:w="639"/><text x="36.5595%" y="559.50"></text></g><g><title>schedule (367 samples, 0.02%)</title><rect x="36.3271%" y="533" width="0.0238%" height="15" fill="rgb(246,69,6)" fg:x="559019" fg:w="367"/><text x="36.5771%" y="543.50"></text></g><g><title>__schedule (362 samples, 0.02%)</title><rect x="36.3275%" y="517" width="0.0235%" height="15" fill="rgb(234,208,37)" fg:x="559024" fg:w="362"/><text x="36.5775%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (596 samples, 0.04%)</title><rect x="36.3559%" y="549" width="0.0387%" height="15" fill="rgb(225,4,6)" fg:x="559461" fg:w="596"/><text x="36.6059%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (561 samples, 0.04%)</title><rect x="36.3581%" y="533" width="0.0365%" height="15" fill="rgb(233,45,0)" fg:x="559496" fg:w="561"/><text x="36.6081%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (192 samples, 0.01%)</title><rect x="36.3946%" y="549" width="0.0125%" height="15" fill="rgb(226,136,5)" fg:x="560057" fg:w="192"/><text x="36.6446%" y="559.50"></text></g><g><title>find_extent_buffer (246 samples, 0.02%)</title><rect x="36.4156%" y="533" width="0.0160%" height="15" fill="rgb(211,91,47)" fg:x="560381" fg:w="246"/><text x="36.6656%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (422 samples, 0.03%)</title><rect x="36.4071%" y="549" width="0.0274%" height="15" fill="rgb(242,88,51)" fg:x="560249" fg:w="422"/><text x="36.6571%" y="559.50"></text></g><g><title>__push_leaf_left (182 samples, 0.01%)</title><rect x="36.4503%" y="517" width="0.0118%" height="15" fill="rgb(230,91,28)" fg:x="560914" fg:w="182"/><text x="36.7003%" y="527.50"></text></g><g><title>push_leaf_left (228 samples, 0.01%)</title><rect x="36.4487%" y="533" width="0.0148%" height="15" fill="rgb(254,186,29)" fg:x="560890" fg:w="228"/><text x="36.6987%" y="543.50"></text></g><g><title>split_leaf (449 samples, 0.03%)</title><rect x="36.4345%" y="549" width="0.0292%" height="15" fill="rgb(238,6,4)" fg:x="560671" fg:w="449"/><text x="36.6845%" y="559.50"></text></g><g><title>__wake_up_common (298 samples, 0.02%)</title><rect x="36.4668%" y="517" width="0.0194%" height="15" fill="rgb(221,151,16)" fg:x="561169" fg:w="298"/><text x="36.7168%" y="527.50"></text></g><g><title>autoremove_wake_function (295 samples, 0.02%)</title><rect x="36.4670%" y="501" width="0.0192%" height="15" fill="rgb(251,143,52)" fg:x="561172" fg:w="295"/><text x="36.7170%" y="511.50"></text></g><g><title>try_to_wake_up (289 samples, 0.02%)</title><rect x="36.4674%" y="485" width="0.0188%" height="15" fill="rgb(206,90,15)" fg:x="561178" fg:w="289"/><text x="36.7174%" y="495.50"></text></g><g><title>__wake_up_common_lock (303 samples, 0.02%)</title><rect x="36.4668%" y="533" width="0.0197%" height="15" fill="rgb(218,35,8)" fg:x="561168" fg:w="303"/><text x="36.7168%" y="543.50"></text></g><g><title>btrfs_search_slot (3,525 samples, 0.23%)</title><rect x="36.2617%" y="565" width="0.2291%" height="15" fill="rgb(239,215,6)" fg:x="558012" fg:w="3525"/><text x="36.5117%" y="575.50"></text></g><g><title>unlock_up (417 samples, 0.03%)</title><rect x="36.4637%" y="549" width="0.0271%" height="15" fill="rgb(245,116,39)" fg:x="561120" fg:w="417"/><text x="36.7137%" y="559.50"></text></g><g><title>btrfs_get_token_32 (231 samples, 0.02%)</title><rect x="36.4994%" y="549" width="0.0150%" height="15" fill="rgb(242,65,28)" fg:x="561670" fg:w="231"/><text x="36.7494%" y="559.50"></text></g><g><title>btrfs_set_token_32 (217 samples, 0.01%)</title><rect x="36.5209%" y="549" width="0.0141%" height="15" fill="rgb(252,132,53)" fg:x="562001" fg:w="217"/><text x="36.7709%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (4,394 samples, 0.29%)</title><rect x="36.2612%" y="581" width="0.2855%" height="15" fill="rgb(224,159,50)" fg:x="558004" fg:w="4394"/><text x="36.5112%" y="591.50"></text></g><g><title>setup_items_for_insert (861 samples, 0.06%)</title><rect x="36.4908%" y="565" width="0.0560%" height="15" fill="rgb(224,93,4)" fg:x="561537" fg:w="861"/><text x="36.7408%" y="575.50"></text></g><g><title>fill_inode_item (303 samples, 0.02%)</title><rect x="36.5551%" y="581" width="0.0197%" height="15" fill="rgb(208,81,34)" fg:x="562527" fg:w="303"/><text x="36.8051%" y="591.50"></text></g><g><title>inode_tree_add (452 samples, 0.03%)</title><rect x="36.5772%" y="581" width="0.0294%" height="15" fill="rgb(233,92,54)" fg:x="562867" fg:w="452"/><text x="36.8272%" y="591.50"></text></g><g><title>btrfs_alloc_inode (345 samples, 0.02%)</title><rect x="36.6241%" y="549" width="0.0224%" height="15" fill="rgb(237,21,14)" fg:x="563589" fg:w="345"/><text x="36.8741%" y="559.50"></text></g><g><title>kmem_cache_alloc (222 samples, 0.01%)</title><rect x="36.6321%" y="533" width="0.0144%" height="15" fill="rgb(249,128,51)" fg:x="563712" fg:w="222"/><text x="36.8821%" y="543.50"></text></g><g><title>alloc_inode (458 samples, 0.03%)</title><rect x="36.6230%" y="565" width="0.0298%" height="15" fill="rgb(223,129,24)" fg:x="563572" fg:w="458"/><text x="36.8730%" y="575.50"></text></g><g><title>new_inode (515 samples, 0.03%)</title><rect x="36.6216%" y="581" width="0.0335%" height="15" fill="rgb(231,168,25)" fg:x="563551" fg:w="515"/><text x="36.8716%" y="591.50"></text></g><g><title>btrfs_new_inode (6,368 samples, 0.41%)</title><rect x="36.2428%" y="597" width="0.4138%" height="15" fill="rgb(224,39,20)" fg:x="557721" fg:w="6368"/><text x="36.4928%" y="607.50"></text></g><g><title>btrfs_get_delayed_node (173 samples, 0.01%)</title><rect x="36.6854%" y="549" width="0.0112%" height="15" fill="rgb(225,152,53)" fg:x="564532" fg:w="173"/><text x="36.9354%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (421 samples, 0.03%)</title><rect x="36.6795%" y="565" width="0.0274%" height="15" fill="rgb(252,17,24)" fg:x="564442" fg:w="421"/><text x="36.9295%" y="575.50"></text></g><g><title>btrfs_delayed_update_inode (791 samples, 0.05%)</title><rect x="36.6598%" y="581" width="0.0514%" height="15" fill="rgb(250,114,30)" fg:x="564138" fg:w="791"/><text x="36.9098%" y="591.50"></text></g><g><title>btrfs_update_inode (857 samples, 0.06%)</title><rect x="36.6572%" y="597" width="0.0557%" height="15" fill="rgb(229,5,4)" fg:x="564098" fg:w="857"/><text x="36.9072%" y="607.50"></text></g><g><title>__reserve_bytes (270 samples, 0.02%)</title><rect x="36.7350%" y="549" width="0.0175%" height="15" fill="rgb(225,176,49)" fg:x="565296" fg:w="270"/><text x="36.9850%" y="559.50"></text></g><g><title>btrfs_block_rsv_add (345 samples, 0.02%)</title><rect x="36.7303%" y="581" width="0.0224%" height="15" fill="rgb(224,221,49)" fg:x="565223" fg:w="345"/><text x="36.9803%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (292 samples, 0.02%)</title><rect x="36.7337%" y="565" width="0.0190%" height="15" fill="rgb(253,169,27)" fg:x="565276" fg:w="292"/><text x="36.9837%" y="575.50"></text></g><g><title>btrfs_mkdir (15,120 samples, 0.98%)</title><rect x="35.7823%" y="613" width="0.9826%" height="15" fill="rgb(211,206,16)" fg:x="550635" fg:w="15120"/><text x="36.0323%" y="623.50"></text></g><g><title>start_transaction (655 samples, 0.04%)</title><rect x="36.7223%" y="597" width="0.0426%" height="15" fill="rgb(244,87,35)" fg:x="565100" fg:w="655"/><text x="36.9723%" y="607.50"></text></g><g><title>do_mkdirat (22,074 samples, 1.43%)</title><rect x="35.3365%" y="645" width="1.4345%" height="15" fill="rgb(246,28,10)" fg:x="543775" fg:w="22074"/><text x="35.5865%" y="655.50"></text></g><g><title>vfs_mkdir (15,249 samples, 0.99%)</title><rect x="35.7800%" y="629" width="0.9909%" height="15" fill="rgb(229,12,44)" fg:x="550600" fg:w="15249"/><text x="36.0300%" y="639.50"></text></g><g><title>do_syscall_64 (22,103 samples, 1.44%)</title><rect x="35.3353%" y="661" width="1.4363%" height="15" fill="rgb(210,145,37)" fg:x="543756" fg:w="22103"/><text x="35.5853%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22,172 samples, 1.44%)</title><rect x="35.3337%" y="677" width="1.4408%" height="15" fill="rgb(227,112,52)" fg:x="543732" fg:w="22172"/><text x="35.5837%" y="687.50"></text></g><g><title>__GI___mkdir (22,297 samples, 1.45%)</title><rect x="35.3277%" y="693" width="1.4489%" height="15" fill="rgb(238,155,34)" fg:x="543639" fg:w="22297"/><text x="35.5777%" y="703.50"></text></g><g><title>btrfs_filldir (949 samples, 0.06%)</title><rect x="36.8668%" y="581" width="0.0617%" height="15" fill="rgb(239,226,36)" fg:x="567323" fg:w="949"/><text x="37.1168%" y="591.50"></text></g><g><title>filldir64 (882 samples, 0.06%)</title><rect x="36.8711%" y="565" width="0.0573%" height="15" fill="rgb(230,16,23)" fg:x="567390" fg:w="882"/><text x="37.1211%" y="575.50"></text></g><g><title>verify_dirent_name (257 samples, 0.02%)</title><rect x="36.9117%" y="549" width="0.0167%" height="15" fill="rgb(236,171,36)" fg:x="568015" fg:w="257"/><text x="37.1617%" y="559.50"></text></g><g><title>memchr (185 samples, 0.01%)</title><rect x="36.9164%" y="533" width="0.0120%" height="15" fill="rgb(221,22,14)" fg:x="568087" fg:w="185"/><text x="37.1664%" y="543.50"></text></g><g><title>btrfs_search_slot (286 samples, 0.02%)</title><rect x="36.9561%" y="565" width="0.0186%" height="15" fill="rgb(242,43,11)" fg:x="568698" fg:w="286"/><text x="37.2061%" y="575.50"></text></g><g><title>btrfs_next_old_leaf (406 samples, 0.03%)</title><rect x="36.9539%" y="581" width="0.0264%" height="15" fill="rgb(232,69,23)" fg:x="568664" fg:w="406"/><text x="37.2039%" y="591.50"></text></g><g><title>btrfs_readdir_get_delayed_items (317 samples, 0.02%)</title><rect x="36.9807%" y="581" width="0.0206%" height="15" fill="rgb(216,180,54)" fg:x="569077" fg:w="317"/><text x="37.2307%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (184 samples, 0.01%)</title><rect x="37.0127%" y="565" width="0.0120%" height="15" fill="rgb(216,5,24)" fg:x="569569" fg:w="184"/><text x="37.2627%" y="575.50"></text></g><g><title>btrfs_release_path (373 samples, 0.02%)</title><rect x="37.0040%" y="581" width="0.0242%" height="15" fill="rgb(225,89,9)" fg:x="569435" fg:w="373"/><text x="37.2540%" y="591.50"></text></g><g><title>finish_wait (250 samples, 0.02%)</title><rect x="37.0518%" y="533" width="0.0162%" height="15" fill="rgb(243,75,33)" fg:x="570170" fg:w="250"/><text x="37.3018%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (239 samples, 0.02%)</title><rect x="37.0525%" y="517" width="0.0155%" height="15" fill="rgb(247,141,45)" fg:x="570181" fg:w="239"/><text x="37.3025%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (223 samples, 0.01%)</title><rect x="37.0535%" y="501" width="0.0145%" height="15" fill="rgb(232,177,36)" fg:x="570197" fg:w="223"/><text x="37.3035%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (712 samples, 0.05%)</title><rect x="37.0722%" y="517" width="0.0463%" height="15" fill="rgb(219,125,36)" fg:x="570485" fg:w="712"/><text x="37.3222%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (674 samples, 0.04%)</title><rect x="37.0747%" y="501" width="0.0438%" height="15" fill="rgb(227,94,9)" fg:x="570523" fg:w="674"/><text x="37.3247%" y="511.50"></text></g><g><title>prepare_to_wait_event (794 samples, 0.05%)</title><rect x="37.0680%" y="533" width="0.0516%" height="15" fill="rgb(240,34,52)" fg:x="570420" fg:w="794"/><text x="37.3180%" y="543.50"></text></g><g><title>queued_read_lock_slowpath (1,042 samples, 0.07%)</title><rect x="37.1196%" y="533" width="0.0677%" height="15" fill="rgb(216,45,12)" fg:x="571214" fg:w="1042"/><text x="37.3696%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (698 samples, 0.05%)</title><rect x="37.1420%" y="517" width="0.0454%" height="15" fill="rgb(246,21,19)" fg:x="571558" fg:w="698"/><text x="37.3920%" y="527.50"></text></g><g><title>dequeue_task_fair (160 samples, 0.01%)</title><rect x="37.1930%" y="501" width="0.0104%" height="15" fill="rgb(213,98,42)" fg:x="572343" fg:w="160"/><text x="37.4430%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (473 samples, 0.03%)</title><rect x="37.2056%" y="485" width="0.0307%" height="15" fill="rgb(250,136,47)" fg:x="572537" fg:w="473"/><text x="37.4556%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (460 samples, 0.03%)</title><rect x="37.2064%" y="469" width="0.0299%" height="15" fill="rgb(251,124,27)" fg:x="572550" fg:w="460"/><text x="37.4564%" y="479.50"></text></g><g><title>native_write_msr (456 samples, 0.03%)</title><rect x="37.2067%" y="453" width="0.0296%" height="15" fill="rgb(229,180,14)" fg:x="572554" fg:w="456"/><text x="37.4567%" y="463.50"></text></g><g><title>finish_task_switch (524 samples, 0.03%)</title><rect x="37.2034%" y="501" width="0.0341%" height="15" fill="rgb(245,216,25)" fg:x="572503" fg:w="524"/><text x="37.4534%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (3,200 samples, 0.21%)</title><rect x="37.0442%" y="549" width="0.2079%" height="15" fill="rgb(251,43,5)" fg:x="570053" fg:w="3200"/><text x="37.2942%" y="559.50"></text></g><g><title>schedule (997 samples, 0.06%)</title><rect x="37.1873%" y="533" width="0.0648%" height="15" fill="rgb(250,128,24)" fg:x="572256" fg:w="997"/><text x="37.4373%" y="543.50"></text></g><g><title>__schedule (986 samples, 0.06%)</title><rect x="37.1880%" y="517" width="0.0641%" height="15" fill="rgb(217,117,27)" fg:x="572267" fg:w="986"/><text x="37.4380%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (3,394 samples, 0.22%)</title><rect x="37.0433%" y="565" width="0.2206%" height="15" fill="rgb(245,147,4)" fg:x="570040" fg:w="3394"/><text x="37.2933%" y="575.50"></text></g><g><title>btrfs_root_node (181 samples, 0.01%)</title><rect x="37.2521%" y="549" width="0.0118%" height="15" fill="rgb(242,201,35)" fg:x="573253" fg:w="181"/><text x="37.5021%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (447 samples, 0.03%)</title><rect x="37.2824%" y="501" width="0.0290%" height="15" fill="rgb(218,181,1)" fg:x="573719" fg:w="447"/><text x="37.5324%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (434 samples, 0.03%)</title><rect x="37.2832%" y="485" width="0.0282%" height="15" fill="rgb(222,6,29)" fg:x="573732" fg:w="434"/><text x="37.5332%" y="495.50"></text></g><g><title>native_write_msr (431 samples, 0.03%)</title><rect x="37.2834%" y="469" width="0.0280%" height="15" fill="rgb(208,186,3)" fg:x="573735" fg:w="431"/><text x="37.5334%" y="479.50"></text></g><g><title>finish_task_switch (493 samples, 0.03%)</title><rect x="37.2803%" y="517" width="0.0320%" height="15" fill="rgb(216,36,26)" fg:x="573687" fg:w="493"/><text x="37.5303%" y="527.50"></text></g><g><title>__btrfs_tree_read_lock (880 samples, 0.06%)</title><rect x="37.2639%" y="565" width="0.0572%" height="15" fill="rgb(248,201,23)" fg:x="573434" fg:w="880"/><text x="37.5139%" y="575.50"></text></g><g><title>schedule (782 samples, 0.05%)</title><rect x="37.2702%" y="549" width="0.0508%" height="15" fill="rgb(251,170,31)" fg:x="573532" fg:w="782"/><text x="37.5202%" y="559.50"></text></g><g><title>__schedule (775 samples, 0.05%)</title><rect x="37.2707%" y="533" width="0.0504%" height="15" fill="rgb(207,110,25)" fg:x="573539" fg:w="775"/><text x="37.5207%" y="543.50"></text></g><g><title>select_task_rq_fair (163 samples, 0.01%)</title><rect x="37.3320%" y="501" width="0.0106%" height="15" fill="rgb(250,54,15)" fg:x="574483" fg:w="163"/><text x="37.5820%" y="511.50"></text></g><g><title>enqueue_task_fair (191 samples, 0.01%)</title><rect x="37.3446%" y="485" width="0.0124%" height="15" fill="rgb(227,68,33)" fg:x="574677" fg:w="191"/><text x="37.5946%" y="495.50"></text></g><g><title>ttwu_do_activate (390 samples, 0.03%)</title><rect x="37.3435%" y="501" width="0.0253%" height="15" fill="rgb(238,34,41)" fg:x="574660" fg:w="390"/><text x="37.5935%" y="511.50"></text></g><g><title>psi_task_change (182 samples, 0.01%)</title><rect x="37.3571%" y="485" width="0.0118%" height="15" fill="rgb(220,11,15)" fg:x="574868" fg:w="182"/><text x="37.6071%" y="495.50"></text></g><g><title>psi_group_change (165 samples, 0.01%)</title><rect x="37.3582%" y="469" width="0.0107%" height="15" fill="rgb(246,111,35)" fg:x="574885" fg:w="165"/><text x="37.6082%" y="479.50"></text></g><g><title>__wake_up_common (802 samples, 0.05%)</title><rect x="37.3212%" y="549" width="0.0521%" height="15" fill="rgb(209,88,53)" fg:x="574316" fg:w="802"/><text x="37.5712%" y="559.50"></text></g><g><title>autoremove_wake_function (784 samples, 0.05%)</title><rect x="37.3224%" y="533" width="0.0509%" height="15" fill="rgb(231,185,47)" fg:x="574334" fg:w="784"/><text x="37.5724%" y="543.50"></text></g><g><title>try_to_wake_up (770 samples, 0.05%)</title><rect x="37.3233%" y="517" width="0.0500%" height="15" fill="rgb(233,154,1)" fg:x="574348" fg:w="770"/><text x="37.5733%" y="527.50"></text></g><g><title>__wake_up_common_lock (813 samples, 0.05%)</title><rect x="37.3211%" y="565" width="0.0528%" height="15" fill="rgb(225,15,46)" fg:x="574314" fg:w="813"/><text x="37.5711%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (167 samples, 0.01%)</title><rect x="37.3753%" y="565" width="0.0109%" height="15" fill="rgb(211,135,41)" fg:x="575148" fg:w="167"/><text x="37.6253%" y="575.50"></text></g><g><title>btrfs_tree_read_lock_atomic (656 samples, 0.04%)</title><rect x="37.3861%" y="565" width="0.0426%" height="15" fill="rgb(208,54,0)" fg:x="575315" fg:w="656"/><text x="37.6361%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (533 samples, 0.03%)</title><rect x="37.3941%" y="549" width="0.0346%" height="15" fill="rgb(244,136,14)" fg:x="575438" fg:w="533"/><text x="37.6441%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (696 samples, 0.05%)</title><rect x="37.4373%" y="565" width="0.0452%" height="15" fill="rgb(241,56,14)" fg:x="576103" fg:w="696"/><text x="37.6873%" y="575.50"></text></g><g><title>__radix_tree_lookup (333 samples, 0.02%)</title><rect x="37.5174%" y="533" width="0.0216%" height="15" fill="rgb(205,80,24)" fg:x="577336" fg:w="333"/><text x="37.7674%" y="543.50"></text></g><g><title>mark_extent_buffer_accessed (167 samples, 0.01%)</title><rect x="37.5391%" y="533" width="0.0109%" height="15" fill="rgb(220,57,4)" fg:x="577670" fg:w="167"/><text x="37.7891%" y="543.50"></text></g><g><title>find_extent_buffer (692 samples, 0.04%)</title><rect x="37.5056%" y="549" width="0.0450%" height="15" fill="rgb(226,193,50)" fg:x="577154" fg:w="692"/><text x="37.7556%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (1,147 samples, 0.07%)</title><rect x="37.4825%" y="565" width="0.0745%" height="15" fill="rgb(231,168,22)" fg:x="576799" fg:w="1147"/><text x="37.7325%" y="575.50"></text></g><g><title>btrfs_search_slot (8,235 samples, 0.54%)</title><rect x="37.0282%" y="581" width="0.5351%" height="15" fill="rgb(254,215,14)" fg:x="569808" fg:w="8235"/><text x="37.2782%" y="591.50"></text></g><g><title>filldir64 (175 samples, 0.01%)</title><rect x="37.5680%" y="581" width="0.0114%" height="15" fill="rgb(211,115,16)" fg:x="578114" fg:w="175"/><text x="37.8180%" y="591.50"></text></g><g><title>btrfs_real_readdir (12,765 samples, 0.83%)</title><rect x="36.8336%" y="597" width="0.8295%" height="15" fill="rgb(236,210,16)" fg:x="566812" fg:w="12765"/><text x="37.0836%" y="607.50"></text></g><g><title>read_extent_buffer (963 samples, 0.06%)</title><rect x="37.6005%" y="581" width="0.0626%" height="15" fill="rgb(221,94,12)" fg:x="578614" fg:w="963"/><text x="37.8505%" y="591.50"></text></g><g><title>security_file_permission (212 samples, 0.01%)</title><rect x="37.6698%" y="597" width="0.0138%" height="15" fill="rgb(235,218,49)" fg:x="579681" fg:w="212"/><text x="37.9198%" y="607.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (164 samples, 0.01%)</title><rect x="37.7199%" y="533" width="0.0107%" height="15" fill="rgb(217,114,14)" fg:x="580452" fg:w="164"/><text x="37.9699%" y="543.50"></text></g><g><title>__reserve_bytes (320 samples, 0.02%)</title><rect x="37.7362%" y="501" width="0.0208%" height="15" fill="rgb(216,145,22)" fg:x="580703" fg:w="320"/><text x="37.9862%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (408 samples, 0.03%)</title><rect x="37.7306%" y="533" width="0.0265%" height="15" fill="rgb(217,112,39)" fg:x="580616" fg:w="408"/><text x="37.9806%" y="543.50"></text></g><g><title>btrfs_reserve_metadata_bytes (363 samples, 0.02%)</title><rect x="37.7335%" y="517" width="0.0236%" height="15" fill="rgb(225,85,32)" fg:x="580661" fg:w="363"/><text x="37.9835%" y="527.50"></text></g><g><title>btrfs_delayed_update_inode (782 samples, 0.05%)</title><rect x="37.7145%" y="549" width="0.0508%" height="15" fill="rgb(245,209,47)" fg:x="580368" fg:w="782"/><text x="37.9645%" y="559.50"></text></g><g><title>btrfs_update_inode (887 samples, 0.06%)</title><rect x="37.7134%" y="565" width="0.0576%" height="15" fill="rgb(218,220,15)" fg:x="580352" fg:w="887"/><text x="37.9634%" y="575.50"></text></g><g><title>__queue_work (160 samples, 0.01%)</title><rect x="37.7713%" y="549" width="0.0104%" height="15" fill="rgb(222,202,31)" fg:x="581242" fg:w="160"/><text x="38.0213%" y="559.50"></text></g><g><title>queue_work_on (165 samples, 0.01%)</title><rect x="37.7711%" y="565" width="0.0107%" height="15" fill="rgb(243,203,4)" fg:x="581239" fg:w="165"/><text x="38.0211%" y="575.50"></text></g><g><title>btrfs_dirty_inode (1,544 samples, 0.10%)</title><rect x="37.6995%" y="581" width="0.1003%" height="15" fill="rgb(237,92,17)" fg:x="580137" fg:w="1544"/><text x="37.9495%" y="591.50"></text></g><g><title>start_transaction (277 samples, 0.02%)</title><rect x="37.7818%" y="565" width="0.0180%" height="15" fill="rgb(231,119,7)" fg:x="581404" fg:w="277"/><text x="38.0318%" y="575.50"></text></g><g><title>touch_atime (1,835 samples, 0.12%)</title><rect x="37.6836%" y="597" width="0.1192%" height="15" fill="rgb(237,82,41)" fg:x="579893" fg:w="1835"/><text x="37.9336%" y="607.50"></text></g><g><title>iterate_dir (15,035 samples, 0.98%)</title><rect x="36.8281%" y="613" width="0.9770%" height="15" fill="rgb(226,81,48)" fg:x="566728" fg:w="15035"/><text x="37.0781%" y="623.50"></text></g><g><title>__x64_sys_getdents64 (15,278 samples, 0.99%)</title><rect x="36.8142%" y="629" width="0.9928%" height="15" fill="rgb(234,70,51)" fg:x="566514" fg:w="15278"/><text x="37.0642%" y="639.50"></text></g><g><title>do_syscall_64 (15,330 samples, 1.00%)</title><rect x="36.8118%" y="645" width="0.9962%" height="15" fill="rgb(251,86,4)" fg:x="566477" fg:w="15330"/><text x="37.0618%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15,467 samples, 1.01%)</title><rect x="36.8103%" y="661" width="1.0051%" height="15" fill="rgb(244,144,28)" fg:x="566454" fg:w="15467"/><text x="37.0603%" y="671.50"></text></g><g><title>__GI___getdents64 (15,610 samples, 1.01%)</title><rect x="36.8032%" y="677" width="1.0144%" height="15" fill="rgb(232,161,39)" fg:x="566345" fg:w="15610"/><text x="37.0532%" y="687.50"></text></g><g><title>__GI___readdir64 (16,024 samples, 1.04%)</title><rect x="36.7766%" y="693" width="1.0413%" height="15" fill="rgb(247,34,51)" fg:x="565936" fg:w="16024"/><text x="37.0266%" y="703.50"></text></g><g><title>crc32c_pcl_intel_update (169 samples, 0.01%)</title><rect x="37.8755%" y="677" width="0.0110%" height="15" fill="rgb(225,132,2)" fg:x="582846" fg:w="169"/><text x="38.1255%" y="687.50"></text></g><g><title>entry_SYSCALL_64 (624 samples, 0.04%)</title><rect x="37.8865%" y="677" width="0.0405%" height="15" fill="rgb(209,159,44)" fg:x="583015" fg:w="624"/><text x="38.1365%" y="687.50"></text></g><g><title>_copy_to_user (730 samples, 0.05%)</title><rect x="37.9925%" y="613" width="0.0474%" height="15" fill="rgb(251,214,1)" fg:x="584646" fg:w="730"/><text x="38.2425%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (639 samples, 0.04%)</title><rect x="37.9984%" y="597" width="0.0415%" height="15" fill="rgb(247,84,47)" fg:x="584737" fg:w="639"/><text x="38.2484%" y="607.50"></text></g><g><title>cp_new_stat (1,375 samples, 0.09%)</title><rect x="37.9704%" y="629" width="0.0894%" height="15" fill="rgb(240,111,43)" fg:x="584306" fg:w="1375"/><text x="38.2204%" y="639.50"></text></g><g><title>from_kuid_munged (175 samples, 0.01%)</title><rect x="38.0484%" y="613" width="0.0114%" height="15" fill="rgb(215,214,35)" fg:x="585506" fg:w="175"/><text x="38.2984%" y="623.50"></text></g><g><title>_raw_spin_lock (230 samples, 0.01%)</title><rect x="38.1472%" y="597" width="0.0149%" height="15" fill="rgb(248,207,23)" fg:x="587027" fg:w="230"/><text x="38.3972%" y="607.50"></text></g><g><title>generic_fillattr (166 samples, 0.01%)</title><rect x="38.1621%" y="597" width="0.0108%" height="15" fill="rgb(214,186,4)" fg:x="587257" fg:w="166"/><text x="38.4121%" y="607.50"></text></g><g><title>_raw_spin_lock (214 samples, 0.01%)</title><rect x="38.1750%" y="581" width="0.0139%" height="15" fill="rgb(220,133,22)" fg:x="587455" fg:w="214"/><text x="38.4250%" y="591.50"></text></g><g><title>btrfs_getattr (1,625 samples, 0.11%)</title><rect x="38.0834%" y="613" width="0.1056%" height="15" fill="rgb(239,134,19)" fg:x="586045" fg:w="1625"/><text x="38.3334%" y="623.50"></text></g><g><title>inode_get_bytes (247 samples, 0.02%)</title><rect x="38.1729%" y="597" width="0.0161%" height="15" fill="rgb(250,140,9)" fg:x="587423" fg:w="247"/><text x="38.4229%" y="607.50"></text></g><g><title>kmem_cache_free (1,242 samples, 0.08%)</title><rect x="38.2258%" y="597" width="0.0807%" height="15" fill="rgb(225,59,14)" fg:x="588236" fg:w="1242"/><text x="38.4758%" y="607.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (268 samples, 0.02%)</title><rect x="38.2891%" y="581" width="0.0174%" height="15" fill="rgb(214,152,51)" fg:x="589210" fg:w="268"/><text x="38.5391%" y="591.50"></text></g><g><title>__legitimize_mnt (416 samples, 0.03%)</title><rect x="38.3423%" y="533" width="0.0270%" height="15" fill="rgb(251,227,43)" fg:x="590029" fg:w="416"/><text x="38.5923%" y="543.50"></text></g><g><title>__legitimize_path (713 samples, 0.05%)</title><rect x="38.3381%" y="549" width="0.0463%" height="15" fill="rgb(241,96,17)" fg:x="589965" fg:w="713"/><text x="38.5881%" y="559.50"></text></g><g><title>lockref_get_not_dead (233 samples, 0.02%)</title><rect x="38.3693%" y="533" width="0.0151%" height="15" fill="rgb(234,198,43)" fg:x="590445" fg:w="233"/><text x="38.6193%" y="543.50"></text></g><g><title>complete_walk (932 samples, 0.06%)</title><rect x="38.3299%" y="581" width="0.0606%" height="15" fill="rgb(220,108,29)" fg:x="589838" fg:w="932"/><text x="38.5799%" y="591.50"></text></g><g><title>try_to_unlazy (884 samples, 0.06%)</title><rect x="38.3330%" y="565" width="0.0574%" height="15" fill="rgb(226,163,33)" fg:x="589886" fg:w="884"/><text x="38.5830%" y="575.50"></text></g><g><title>btrfs_permission (459 samples, 0.03%)</title><rect x="39.6097%" y="549" width="0.0298%" height="15" fill="rgb(205,194,45)" fg:x="609532" fg:w="459"/><text x="39.8597%" y="559.50"></text></g><g><title>inode_permission.part.0 (10,718 samples, 0.70%)</title><rect x="39.1100%" y="565" width="0.6965%" height="15" fill="rgb(206,143,44)" fg:x="601843" fg:w="10718"/><text x="39.3600%" y="575.50"></text></g><g><title>generic_permission (2,570 samples, 0.17%)</title><rect x="39.6395%" y="549" width="0.1670%" height="15" fill="rgb(236,136,36)" fg:x="609991" fg:w="2570"/><text x="39.8895%" y="559.50"></text></g><g><title>security_inode_permission (1,321 samples, 0.09%)</title><rect x="39.8065%" y="565" width="0.0858%" height="15" fill="rgb(249,172,42)" fg:x="612561" fg:w="1321"/><text x="40.0565%" y="575.50"></text></g><g><title>__d_lookup_rcu (14,502 samples, 0.94%)</title><rect x="40.3551%" y="533" width="0.9424%" height="15" fill="rgb(216,139,23)" fg:x="621004" fg:w="14502"/><text x="40.6051%" y="543.50"></text></g><g><title>lookup_fast (17,787 samples, 1.16%)</title><rect x="40.1425%" y="549" width="1.1559%" height="15" fill="rgb(207,166,20)" fg:x="617731" fg:w="17787"/><text x="40.3925%" y="559.50"></text></g><g><title>page_put_link (473 samples, 0.03%)</title><rect x="41.2983%" y="549" width="0.0307%" height="15" fill="rgb(210,209,22)" fg:x="635518" fg:w="473"/><text x="41.5483%" y="559.50"></text></g><g><title>__lookup_mnt (424 samples, 0.03%)</title><rect x="41.6123%" y="533" width="0.0276%" height="15" fill="rgb(232,118,20)" fg:x="640350" fg:w="424"/><text x="41.8623%" y="543.50"></text></g><g><title>atime_needs_update (414 samples, 0.03%)</title><rect x="41.6414%" y="533" width="0.0269%" height="15" fill="rgb(238,113,42)" fg:x="640798" fg:w="414"/><text x="41.8914%" y="543.50"></text></g><g><title>current_time (248 samples, 0.02%)</title><rect x="41.6522%" y="517" width="0.0161%" height="15" fill="rgb(231,42,5)" fg:x="640964" fg:w="248"/><text x="41.9022%" y="527.50"></text></g><g><title>page_get_link (1,721 samples, 0.11%)</title><rect x="41.6762%" y="533" width="0.1118%" height="15" fill="rgb(243,166,24)" fg:x="641333" fg:w="1721"/><text x="41.9262%" y="543.50"></text></g><g><title>pagecache_get_page (1,576 samples, 0.10%)</title><rect x="41.6856%" y="517" width="0.1024%" height="15" fill="rgb(237,226,12)" fg:x="641478" fg:w="1576"/><text x="41.9356%" y="527.50"></text></g><g><title>find_get_entry (1,376 samples, 0.09%)</title><rect x="41.6986%" y="501" width="0.0894%" height="15" fill="rgb(229,133,24)" fg:x="641678" fg:w="1376"/><text x="41.9486%" y="511.50"></text></g><g><title>xas_load (266 samples, 0.02%)</title><rect x="41.7708%" y="485" width="0.0173%" height="15" fill="rgb(238,33,43)" fg:x="642788" fg:w="266"/><text x="42.0208%" y="495.50"></text></g><g><title>xas_start (238 samples, 0.02%)</title><rect x="41.7726%" y="469" width="0.0155%" height="15" fill="rgb(227,59,38)" fg:x="642816" fg:w="238"/><text x="42.0226%" y="479.50"></text></g><g><title>link_path_walk.part.0 (52,353 samples, 3.40%)</title><rect x="38.3904%" y="581" width="3.4021%" height="15" fill="rgb(230,97,0)" fg:x="590770" fg:w="52353"/><text x="38.6404%" y="591.50">lin..</text></g><g><title>walk_component (29,241 samples, 1.90%)</title><rect x="39.8923%" y="565" width="1.9002%" height="15" fill="rgb(250,173,50)" fg:x="613882" fg:w="29241"/><text x="40.1423%" y="575.50">w..</text></g><g><title>step_into (7,132 samples, 0.46%)</title><rect x="41.3291%" y="549" width="0.4635%" height="15" fill="rgb(240,15,50)" fg:x="635991" fg:w="7132"/><text x="41.5791%" y="559.50"></text></g><g><title>path_init (1,263 samples, 0.08%)</title><rect x="41.7925%" y="581" width="0.0821%" height="15" fill="rgb(221,93,22)" fg:x="643123" fg:w="1263"/><text x="42.0425%" y="591.50"></text></g><g><title>nd_jump_root (885 samples, 0.06%)</title><rect x="41.8171%" y="565" width="0.0575%" height="15" fill="rgb(245,180,53)" fg:x="643501" fg:w="885"/><text x="42.0671%" y="575.50"></text></g><g><title>set_root (719 samples, 0.05%)</title><rect x="41.8279%" y="549" width="0.0467%" height="15" fill="rgb(231,88,51)" fg:x="643667" fg:w="719"/><text x="42.0779%" y="559.50"></text></g><g><title>dput (929 samples, 0.06%)</title><rect x="41.8851%" y="565" width="0.0604%" height="15" fill="rgb(240,58,21)" fg:x="644548" fg:w="929"/><text x="42.1351%" y="575.50"></text></g><g><title>lockref_put_or_lock (786 samples, 0.05%)</title><rect x="41.8944%" y="549" width="0.0511%" height="15" fill="rgb(237,21,10)" fg:x="644691" fg:w="786"/><text x="42.1444%" y="559.50"></text></g><g><title>terminate_walk (1,283 samples, 0.08%)</title><rect x="41.8746%" y="581" width="0.0834%" height="15" fill="rgb(218,43,11)" fg:x="644386" fg:w="1283"/><text x="42.1246%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (272 samples, 0.02%)</title><rect x="42.0465%" y="485" width="0.0177%" height="15" fill="rgb(218,221,29)" fg:x="647032" fg:w="272"/><text x="42.2965%" y="495.50"></text></g><g><title>_raw_spin_lock (339 samples, 0.02%)</title><rect x="42.1174%" y="469" width="0.0220%" height="15" fill="rgb(214,118,42)" fg:x="648123" fg:w="339"/><text x="42.3674%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (1,073 samples, 0.07%)</title><rect x="42.0699%" y="485" width="0.0697%" height="15" fill="rgb(251,200,26)" fg:x="647392" fg:w="1073"/><text x="42.3199%" y="495.50"></text></g><g><title>btrfs_free_path (1,991 samples, 0.13%)</title><rect x="42.0263%" y="517" width="0.1294%" height="15" fill="rgb(237,101,39)" fg:x="646721" fg:w="1991"/><text x="42.2763%" y="527.50"></text></g><g><title>btrfs_release_path (1,885 samples, 0.12%)</title><rect x="42.0332%" y="501" width="0.1225%" height="15" fill="rgb(251,117,11)" fg:x="646827" fg:w="1885"/><text x="42.2832%" y="511.50"></text></g><g><title>release_extent_buffer (247 samples, 0.02%)</title><rect x="42.1397%" y="485" width="0.0161%" height="15" fill="rgb(216,223,23)" fg:x="648465" fg:w="247"/><text x="42.3897%" y="495.50"></text></g><g><title>_raw_read_lock (245 samples, 0.02%)</title><rect x="42.2946%" y="453" width="0.0159%" height="15" fill="rgb(251,54,12)" fg:x="650849" fg:w="245"/><text x="42.5446%" y="463.50"></text></g><g><title>finish_wait (544 samples, 0.04%)</title><rect x="42.3114%" y="453" width="0.0354%" height="15" fill="rgb(254,176,54)" fg:x="651107" fg:w="544"/><text x="42.5614%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (512 samples, 0.03%)</title><rect x="42.3134%" y="437" width="0.0333%" height="15" fill="rgb(210,32,8)" fg:x="651139" fg:w="512"/><text x="42.5634%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (491 samples, 0.03%)</title><rect x="42.3148%" y="421" width="0.0319%" height="15" fill="rgb(235,52,38)" fg:x="651160" fg:w="491"/><text x="42.5648%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (1,658 samples, 0.11%)</title><rect x="42.3585%" y="437" width="0.1077%" height="15" fill="rgb(231,4,44)" fg:x="651833" fg:w="1658"/><text x="42.6085%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,566 samples, 0.10%)</title><rect x="42.3645%" y="421" width="0.1018%" height="15" fill="rgb(249,2,32)" fg:x="651925" fg:w="1566"/><text x="42.6145%" y="431.50"></text></g><g><title>prepare_to_wait_event (1,903 samples, 0.12%)</title><rect x="42.3470%" y="453" width="0.1237%" height="15" fill="rgb(224,65,26)" fg:x="651656" fg:w="1903"/><text x="42.5970%" y="463.50"></text></g><g><title>queued_read_lock_slowpath (2,581 samples, 0.17%)</title><rect x="42.4707%" y="453" width="0.1677%" height="15" fill="rgb(250,73,40)" fg:x="653559" fg:w="2581"/><text x="42.7207%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,711 samples, 0.11%)</title><rect x="42.5272%" y="437" width="0.1112%" height="15" fill="rgb(253,177,16)" fg:x="654429" fg:w="1711"/><text x="42.7772%" y="447.50"></text></g><g><title>dequeue_entity (381 samples, 0.02%)</title><rect x="42.6570%" y="405" width="0.0248%" height="15" fill="rgb(217,32,34)" fg:x="656426" fg:w="381"/><text x="42.9070%" y="415.50"></text></g><g><title>dequeue_task_fair (445 samples, 0.03%)</title><rect x="42.6538%" y="421" width="0.0289%" height="15" fill="rgb(212,7,10)" fg:x="656377" fg:w="445"/><text x="42.9038%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (2,818 samples, 0.18%)</title><rect x="42.6894%" y="405" width="0.1831%" height="15" fill="rgb(245,89,8)" fg:x="656925" fg:w="2818"/><text x="42.9394%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,765 samples, 0.18%)</title><rect x="42.6929%" y="389" width="0.1797%" height="15" fill="rgb(237,16,53)" fg:x="656978" fg:w="2765"/><text x="42.9429%" y="399.50"></text></g><g><title>native_write_msr (2,730 samples, 0.18%)</title><rect x="42.6951%" y="373" width="0.1774%" height="15" fill="rgb(250,204,30)" fg:x="657013" fg:w="2730"/><text x="42.9451%" y="383.50"></text></g><g><title>finish_task_switch (3,012 samples, 0.20%)</title><rect x="42.6827%" y="421" width="0.1957%" height="15" fill="rgb(208,77,27)" fg:x="656822" fg:w="3012"/><text x="42.9327%" y="431.50"></text></g><g><title>psi_task_change (298 samples, 0.02%)</title><rect x="42.8913%" y="421" width="0.0194%" height="15" fill="rgb(250,204,28)" fg:x="660031" fg:w="298"/><text x="43.1413%" y="431.50"></text></g><g><title>psi_group_change (245 samples, 0.02%)</title><rect x="42.8947%" y="405" width="0.0159%" height="15" fill="rgb(244,63,21)" fg:x="660084" fg:w="245"/><text x="43.1447%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (9,784 samples, 0.64%)</title><rect x="42.2806%" y="469" width="0.6358%" height="15" fill="rgb(236,85,44)" fg:x="650634" fg:w="9784"/><text x="42.5306%" y="479.50"></text></g><g><title>schedule (4,278 samples, 0.28%)</title><rect x="42.6384%" y="453" width="0.2780%" height="15" fill="rgb(215,98,4)" fg:x="656140" fg:w="4278"/><text x="42.8884%" y="463.50"></text></g><g><title>__schedule (4,245 samples, 0.28%)</title><rect x="42.6406%" y="437" width="0.2759%" height="15" fill="rgb(235,38,11)" fg:x="656173" fg:w="4245"/><text x="42.8906%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (11,101 samples, 0.72%)</title><rect x="42.2654%" y="485" width="0.7214%" height="15" fill="rgb(254,186,25)" fg:x="650400" fg:w="11101"/><text x="42.5154%" y="495.50"></text></g><g><title>btrfs_root_node (1,082 samples, 0.07%)</title><rect x="42.9165%" y="469" width="0.0703%" height="15" fill="rgb(225,55,31)" fg:x="660419" fg:w="1082"/><text x="43.1665%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (391 samples, 0.03%)</title><rect x="43.0047%" y="453" width="0.0254%" height="15" fill="rgb(211,15,21)" fg:x="661776" fg:w="391"/><text x="43.2547%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (308 samples, 0.02%)</title><rect x="43.0101%" y="437" width="0.0200%" height="15" fill="rgb(215,187,41)" fg:x="661859" fg:w="308"/><text x="43.2601%" y="447.50"></text></g><g><title>prepare_to_wait_event (510 samples, 0.03%)</title><rect x="42.9983%" y="469" width="0.0331%" height="15" fill="rgb(248,69,32)" fg:x="661678" fg:w="510"/><text x="43.2483%" y="479.50"></text></g><g><title>dequeue_entity (341 samples, 0.02%)</title><rect x="43.0572%" y="421" width="0.0222%" height="15" fill="rgb(252,102,52)" fg:x="662584" fg:w="341"/><text x="43.3072%" y="431.50"></text></g><g><title>dequeue_task_fair (406 samples, 0.03%)</title><rect x="43.0547%" y="437" width="0.0264%" height="15" fill="rgb(253,140,32)" fg:x="662546" fg:w="406"/><text x="43.3047%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (3,553 samples, 0.23%)</title><rect x="43.0885%" y="421" width="0.2309%" height="15" fill="rgb(216,56,42)" fg:x="663066" fg:w="3553"/><text x="43.3385%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,471 samples, 0.23%)</title><rect x="43.0938%" y="405" width="0.2256%" height="15" fill="rgb(216,184,14)" fg:x="663148" fg:w="3471"/><text x="43.3438%" y="415.50"></text></g><g><title>native_write_msr (3,438 samples, 0.22%)</title><rect x="43.0960%" y="389" width="0.2234%" height="15" fill="rgb(237,187,27)" fg:x="663181" fg:w="3438"/><text x="43.3460%" y="399.50"></text></g><g><title>finish_task_switch (3,815 samples, 0.25%)</title><rect x="43.0811%" y="437" width="0.2479%" height="15" fill="rgb(219,65,3)" fg:x="662952" fg:w="3815"/><text x="43.3311%" y="447.50"></text></g><g><title>psi_task_change (293 samples, 0.02%)</title><rect x="43.3405%" y="437" width="0.0190%" height="15" fill="rgb(245,83,25)" fg:x="666944" fg:w="293"/><text x="43.5905%" y="447.50"></text></g><g><title>psi_group_change (235 samples, 0.02%)</title><rect x="43.3443%" y="421" width="0.0153%" height="15" fill="rgb(214,205,45)" fg:x="667002" fg:w="235"/><text x="43.5943%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (5,828 samples, 0.38%)</title><rect x="42.9868%" y="485" width="0.3787%" height="15" fill="rgb(241,20,18)" fg:x="661501" fg:w="5828"/><text x="43.2368%" y="495.50"></text></g><g><title>schedule (4,988 samples, 0.32%)</title><rect x="43.0414%" y="469" width="0.3241%" height="15" fill="rgb(232,163,23)" fg:x="662341" fg:w="4988"/><text x="43.2914%" y="479.50"></text></g><g><title>__schedule (4,966 samples, 0.32%)</title><rect x="43.0428%" y="453" width="0.3227%" height="15" fill="rgb(214,5,46)" fg:x="662363" fg:w="4966"/><text x="43.2928%" y="463.50"></text></g><g><title>select_task_rq_fair (207 samples, 0.01%)</title><rect x="43.3785%" y="421" width="0.0135%" height="15" fill="rgb(229,78,17)" fg:x="667529" fg:w="207"/><text x="43.6285%" y="431.50"></text></g><g><title>enqueue_task_fair (174 samples, 0.01%)</title><rect x="43.3940%" y="405" width="0.0113%" height="15" fill="rgb(248,89,10)" fg:x="667768" fg:w="174"/><text x="43.6440%" y="415.50"></text></g><g><title>ttwu_do_activate (341 samples, 0.02%)</title><rect x="43.3929%" y="421" width="0.0222%" height="15" fill="rgb(248,54,15)" fg:x="667751" fg:w="341"/><text x="43.6429%" y="431.50"></text></g><g><title>__wake_up_common (846 samples, 0.05%)</title><rect x="43.3660%" y="469" width="0.0550%" height="15" fill="rgb(223,116,6)" fg:x="667337" fg:w="846"/><text x="43.6160%" y="479.50"></text></g><g><title>autoremove_wake_function (824 samples, 0.05%)</title><rect x="43.3675%" y="453" width="0.0535%" height="15" fill="rgb(205,125,38)" fg:x="667359" fg:w="824"/><text x="43.6175%" y="463.50"></text></g><g><title>try_to_wake_up (805 samples, 0.05%)</title><rect x="43.3687%" y="437" width="0.0523%" height="15" fill="rgb(251,78,38)" fg:x="667378" fg:w="805"/><text x="43.6187%" y="447.50"></text></g><g><title>__wake_up_common_lock (874 samples, 0.06%)</title><rect x="43.3656%" y="485" width="0.0568%" height="15" fill="rgb(253,78,28)" fg:x="667331" fg:w="874"/><text x="43.6156%" y="495.50"></text></g><g><title>btrfs_set_path_blocking (851 samples, 0.06%)</title><rect x="43.4305%" y="485" width="0.0553%" height="15" fill="rgb(209,120,3)" fg:x="668329" fg:w="851"/><text x="43.6805%" y="495.50"></text></g><g><title>btrfs_set_lock_blocking_read (413 samples, 0.03%)</title><rect x="43.4590%" y="469" width="0.0268%" height="15" fill="rgb(238,229,9)" fg:x="668767" fg:w="413"/><text x="43.7090%" y="479.50"></text></g><g><title>_raw_read_lock (350 samples, 0.02%)</title><rect x="43.5018%" y="469" width="0.0227%" height="15" fill="rgb(253,159,18)" fg:x="669426" fg:w="350"/><text x="43.7518%" y="479.50"></text></g><g><title>btrfs_tree_read_lock_atomic (1,881 samples, 0.12%)</title><rect x="43.4858%" y="485" width="0.1222%" height="15" fill="rgb(244,42,34)" fg:x="669180" fg:w="1881"/><text x="43.7358%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (1,284 samples, 0.08%)</title><rect x="43.5246%" y="469" width="0.0834%" height="15" fill="rgb(224,8,7)" fg:x="669777" fg:w="1284"/><text x="43.7746%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (335 samples, 0.02%)</title><rect x="43.5863%" y="453" width="0.0218%" height="15" fill="rgb(210,201,45)" fg:x="670726" fg:w="335"/><text x="43.8363%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (592 samples, 0.04%)</title><rect x="43.6080%" y="485" width="0.0385%" height="15" fill="rgb(252,185,21)" fg:x="671061" fg:w="592"/><text x="43.8580%" y="495.50"></text></g><g><title>generic_bin_search.constprop.0 (3,088 samples, 0.20%)</title><rect x="43.6526%" y="485" width="0.2007%" height="15" fill="rgb(223,131,1)" fg:x="671746" fg:w="3088"/><text x="43.9026%" y="495.50"></text></g><g><title>btrfs_buffer_uptodate (418 samples, 0.03%)</title><rect x="43.8898%" y="469" width="0.0272%" height="15" fill="rgb(245,141,16)" fg:x="675397" fg:w="418"/><text x="44.1398%" y="479.50"></text></g><g><title>verify_parent_transid (304 samples, 0.02%)</title><rect x="43.8972%" y="453" width="0.0198%" height="15" fill="rgb(229,55,45)" fg:x="675511" fg:w="304"/><text x="44.1472%" y="463.50"></text></g><g><title>btrfs_get_64 (680 samples, 0.04%)</title><rect x="43.9170%" y="469" width="0.0442%" height="15" fill="rgb(208,92,15)" fg:x="675815" fg:w="680"/><text x="44.1670%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (221 samples, 0.01%)</title><rect x="43.9468%" y="453" width="0.0144%" height="15" fill="rgb(234,185,47)" fg:x="676274" fg:w="221"/><text x="44.1968%" y="463.50"></text></g><g><title>btrfs_verify_level_key (160 samples, 0.01%)</title><rect x="43.9649%" y="469" width="0.0104%" height="15" fill="rgb(253,104,50)" fg:x="676552" fg:w="160"/><text x="44.2149%" y="479.50"></text></g><g><title>__radix_tree_lookup (2,068 samples, 0.13%)</title><rect x="44.0450%" y="453" width="0.1344%" height="15" fill="rgb(205,70,7)" fg:x="677785" fg:w="2068"/><text x="44.2950%" y="463.50"></text></g><g><title>mark_page_accessed (686 samples, 0.04%)</title><rect x="44.1926%" y="437" width="0.0446%" height="15" fill="rgb(240,178,43)" fg:x="680057" fg:w="686"/><text x="44.4426%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (885 samples, 0.06%)</title><rect x="44.1798%" y="453" width="0.0575%" height="15" fill="rgb(214,112,2)" fg:x="679859" fg:w="885"/><text x="44.4298%" y="463.50"></text></g><g><title>find_extent_buffer (4,065 samples, 0.26%)</title><rect x="43.9753%" y="469" width="0.2642%" height="15" fill="rgb(206,46,17)" fg:x="676712" fg:w="4065"/><text x="44.2253%" y="479.50"></text></g><g><title>read_block_for_search.isra.0 (6,583 samples, 0.43%)</title><rect x="43.8532%" y="485" width="0.4278%" height="15" fill="rgb(225,220,16)" fg:x="674834" fg:w="6583"/><text x="44.1032%" y="495.50"></text></g><g><title>read_extent_buffer (640 samples, 0.04%)</title><rect x="44.2394%" y="469" width="0.0416%" height="15" fill="rgb(238,65,40)" fg:x="680777" fg:w="640"/><text x="44.4894%" y="479.50"></text></g><g><title>btrfs_search_slot (33,017 samples, 2.15%)</title><rect x="42.1715%" y="501" width="2.1456%" height="15" fill="rgb(230,151,21)" fg:x="648955" fg:w="33017"/><text x="42.4215%" y="511.50">b..</text></g><g><title>unlock_up (555 samples, 0.04%)</title><rect x="44.2810%" y="485" width="0.0361%" height="15" fill="rgb(218,58,49)" fg:x="681417" fg:w="555"/><text x="44.5310%" y="495.50"></text></g><g><title>btrfs_lookup_dir_item (33,994 samples, 2.21%)</title><rect x="42.1557%" y="517" width="2.2091%" height="15" fill="rgb(219,179,14)" fg:x="648712" fg:w="33994"/><text x="42.4057%" y="527.50">b..</text></g><g><title>crc32c (734 samples, 0.05%)</title><rect x="44.3171%" y="501" width="0.0477%" height="15" fill="rgb(223,72,1)" fg:x="681972" fg:w="734"/><text x="44.5671%" y="511.50"></text></g><g><title>crypto_shash_update (373 samples, 0.02%)</title><rect x="44.3405%" y="485" width="0.0242%" height="15" fill="rgb(238,126,10)" fg:x="682333" fg:w="373"/><text x="44.5905%" y="495.50"></text></g><g><title>kmem_cache_alloc (752 samples, 0.05%)</title><rect x="44.3648%" y="517" width="0.0489%" height="15" fill="rgb(224,206,38)" fg:x="682706" fg:w="752"/><text x="44.6148%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (164 samples, 0.01%)</title><rect x="44.4030%" y="501" width="0.0107%" height="15" fill="rgb(212,201,54)" fg:x="683294" fg:w="164"/><text x="44.6530%" y="511.50"></text></g><g><title>btrfs_lookup (37,972 samples, 2.47%)</title><rect x="41.9758%" y="549" width="2.4676%" height="15" fill="rgb(218,154,48)" fg:x="645944" fg:w="37972"/><text x="42.2258%" y="559.50">bt..</text></g><g><title>btrfs_lookup_dentry (37,910 samples, 2.46%)</title><rect x="41.9799%" y="533" width="2.4635%" height="15" fill="rgb(232,93,24)" fg:x="646006" fg:w="37910"/><text x="42.2299%" y="543.50">bt..</text></g><g><title>kmem_cache_free (458 samples, 0.03%)</title><rect x="44.4136%" y="517" width="0.0298%" height="15" fill="rgb(245,30,21)" fg:x="683458" fg:w="458"/><text x="44.6636%" y="527.50"></text></g><g><title>d_set_d_op (184 samples, 0.01%)</title><rect x="44.5272%" y="501" width="0.0120%" height="15" fill="rgb(242,148,29)" fg:x="685205" fg:w="184"/><text x="44.7772%" y="511.50"></text></g><g><title>__alloc_pages_nodemask (186 samples, 0.01%)</title><rect x="44.5838%" y="437" width="0.0121%" height="15" fill="rgb(244,153,54)" fg:x="686077" fg:w="186"/><text x="44.8338%" y="447.50"></text></g><g><title>allocate_slab (288 samples, 0.02%)</title><rect x="44.5809%" y="453" width="0.0187%" height="15" fill="rgb(252,87,22)" fg:x="686032" fg:w="288"/><text x="44.8309%" y="463.50"></text></g><g><title>___slab_alloc (539 samples, 0.04%)</title><rect x="44.5677%" y="469" width="0.0350%" height="15" fill="rgb(210,51,29)" fg:x="685829" fg:w="539"/><text x="44.8177%" y="479.50"></text></g><g><title>__slab_alloc (569 samples, 0.04%)</title><rect x="44.5658%" y="485" width="0.0370%" height="15" fill="rgb(242,136,47)" fg:x="685800" fg:w="569"/><text x="44.8158%" y="495.50"></text></g><g><title>__mod_memcg_lruvec_state (298 samples, 0.02%)</title><rect x="44.6658%" y="469" width="0.0194%" height="15" fill="rgb(238,68,4)" fg:x="687338" fg:w="298"/><text x="44.9158%" y="479.50"></text></g><g><title>__mod_memcg_state.part.0 (229 samples, 0.01%)</title><rect x="44.6703%" y="453" width="0.0149%" height="15" fill="rgb(242,161,30)" fg:x="687407" fg:w="229"/><text x="44.9203%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,341 samples, 0.09%)</title><rect x="44.6029%" y="485" width="0.0871%" height="15" fill="rgb(218,58,44)" fg:x="686370" fg:w="1341"/><text x="44.8529%" y="495.50"></text></g><g><title>get_obj_cgroup_from_current (926 samples, 0.06%)</title><rect x="44.7143%" y="469" width="0.0602%" height="15" fill="rgb(252,125,32)" fg:x="688085" fg:w="926"/><text x="44.9643%" y="479.50"></text></g><g><title>obj_cgroup_charge (407 samples, 0.03%)</title><rect x="44.7745%" y="469" width="0.0264%" height="15" fill="rgb(219,178,0)" fg:x="689011" fg:w="407"/><text x="45.0245%" y="479.50"></text></g><g><title>kmem_cache_alloc (4,033 samples, 0.26%)</title><rect x="44.5391%" y="501" width="0.2621%" height="15" fill="rgb(213,152,7)" fg:x="685389" fg:w="4033"/><text x="44.7891%" y="511.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,574 samples, 0.10%)</title><rect x="44.6989%" y="485" width="0.1023%" height="15" fill="rgb(249,109,34)" fg:x="687848" fg:w="1574"/><text x="44.9489%" y="495.50"></text></g><g><title>__d_alloc (4,704 samples, 0.31%)</title><rect x="44.5024%" y="517" width="0.3057%" height="15" fill="rgb(232,96,21)" fg:x="684824" fg:w="4704"/><text x="44.7524%" y="527.50"></text></g><g><title>d_alloc (5,056 samples, 0.33%)</title><rect x="44.4964%" y="533" width="0.3286%" height="15" fill="rgb(228,27,39)" fg:x="684731" fg:w="5056"/><text x="44.7464%" y="543.50"></text></g><g><title>d_alloc_parallel (5,875 samples, 0.38%)</title><rect x="44.4434%" y="549" width="0.3818%" height="15" fill="rgb(211,182,52)" fg:x="683916" fg:w="5875"/><text x="44.6934%" y="559.50"></text></g><g><title>__wake_up_common_lock (566 samples, 0.04%)</title><rect x="44.8740%" y="501" width="0.0368%" height="15" fill="rgb(234,178,38)" fg:x="690542" fg:w="566"/><text x="45.1240%" y="511.50"></text></g><g><title>_raw_spin_unlock_irqrestore (161 samples, 0.01%)</title><rect x="44.9003%" y="485" width="0.0105%" height="15" fill="rgb(221,111,3)" fg:x="690947" fg:w="161"/><text x="45.1503%" y="495.50"></text></g><g><title>__d_lookup_done (792 samples, 0.05%)</title><rect x="44.8594%" y="517" width="0.0515%" height="15" fill="rgb(228,175,21)" fg:x="690317" fg:w="792"/><text x="45.1094%" y="527.50"></text></g><g><title>__d_rehash (295 samples, 0.02%)</title><rect x="44.9108%" y="517" width="0.0192%" height="15" fill="rgb(228,174,43)" fg:x="691109" fg:w="295"/><text x="45.1608%" y="527.50"></text></g><g><title>__d_add (1,534 samples, 0.10%)</title><rect x="44.8377%" y="533" width="0.0997%" height="15" fill="rgb(211,191,0)" fg:x="689984" fg:w="1534"/><text x="45.0877%" y="543.50"></text></g><g><title>__lookup_slow (45,653 samples, 2.97%)</title><rect x="41.9708%" y="565" width="2.9667%" height="15" fill="rgb(253,117,3)" fg:x="645866" fg:w="45653"/><text x="42.2208%" y="575.50">__l..</text></g><g><title>d_splice_alias (1,728 samples, 0.11%)</title><rect x="44.8252%" y="549" width="0.1123%" height="15" fill="rgb(241,127,19)" fg:x="689791" fg:w="1728"/><text x="45.0752%" y="559.50"></text></g><g><title>down_read (158 samples, 0.01%)</title><rect x="44.9377%" y="565" width="0.0103%" height="15" fill="rgb(218,103,12)" fg:x="691522" fg:w="158"/><text x="45.1877%" y="575.50"></text></g><g><title>__d_lookup_rcu (2,756 samples, 0.18%)</title><rect x="44.9589%" y="549" width="0.1791%" height="15" fill="rgb(236,214,43)" fg:x="691848" fg:w="2756"/><text x="45.2089%" y="559.50"></text></g><g><title>__legitimize_mnt (442 samples, 0.03%)</title><rect x="45.1467%" y="517" width="0.0287%" height="15" fill="rgb(244,144,19)" fg:x="694738" fg:w="442"/><text x="45.3967%" y="527.50"></text></g><g><title>__legitimize_path (965 samples, 0.06%)</title><rect x="45.1422%" y="533" width="0.0627%" height="15" fill="rgb(246,188,10)" fg:x="694670" fg:w="965"/><text x="45.3922%" y="543.50"></text></g><g><title>lockref_get_not_dead (454 samples, 0.03%)</title><rect x="45.1754%" y="517" width="0.0295%" height="15" fill="rgb(212,193,33)" fg:x="695181" fg:w="454"/><text x="45.4254%" y="527.50"></text></g><g><title>lookup_fast (4,013 samples, 0.26%)</title><rect x="44.9479%" y="565" width="0.2608%" height="15" fill="rgb(241,51,29)" fg:x="691680" fg:w="4013"/><text x="45.1979%" y="575.50"></text></g><g><title>try_to_unlazy (1,087 samples, 0.07%)</title><rect x="45.1381%" y="549" width="0.0706%" height="15" fill="rgb(211,58,19)" fg:x="694606" fg:w="1087"/><text x="45.3881%" y="559.50"></text></g><g><title>_cond_resched (187 samples, 0.01%)</title><rect x="45.2376%" y="533" width="0.0122%" height="15" fill="rgb(229,111,26)" fg:x="696138" fg:w="187"/><text x="45.4876%" y="543.50"></text></g><g><title>btrfs_dentry_delete (250 samples, 0.02%)</title><rect x="45.2500%" y="533" width="0.0162%" height="15" fill="rgb(213,115,40)" fg:x="696328" fg:w="250"/><text x="45.5000%" y="543.50"></text></g><g><title>__list_add_valid (411 samples, 0.03%)</title><rect x="45.3152%" y="501" width="0.0267%" height="15" fill="rgb(209,56,44)" fg:x="697332" fg:w="411"/><text x="45.5652%" y="511.50"></text></g><g><title>_raw_spin_lock (565 samples, 0.04%)</title><rect x="45.3419%" y="501" width="0.0367%" height="15" fill="rgb(230,108,32)" fg:x="697743" fg:w="565"/><text x="45.5919%" y="511.50"></text></g><g><title>d_lru_add (1,841 samples, 0.12%)</title><rect x="45.2662%" y="533" width="0.1196%" height="15" fill="rgb(216,165,31)" fg:x="696578" fg:w="1841"/><text x="45.5162%" y="543.50"></text></g><g><title>list_lru_add (1,732 samples, 0.11%)</title><rect x="45.2733%" y="517" width="0.1126%" height="15" fill="rgb(218,122,21)" fg:x="696687" fg:w="1732"/><text x="45.5233%" y="527.50"></text></g><g><title>lockref_put_or_lock (213 samples, 0.01%)</title><rect x="45.3859%" y="533" width="0.0138%" height="15" fill="rgb(223,224,47)" fg:x="698419" fg:w="213"/><text x="45.6359%" y="543.50"></text></g><g><title>step_into (2,954 samples, 0.19%)</title><rect x="45.2087%" y="565" width="0.1920%" height="15" fill="rgb(238,102,44)" fg:x="695693" fg:w="2954"/><text x="45.4587%" y="575.50"></text></g><g><title>dput (2,651 samples, 0.17%)</title><rect x="45.2284%" y="549" width="0.1723%" height="15" fill="rgb(236,46,40)" fg:x="695996" fg:w="2651"/><text x="45.4784%" y="559.50"></text></g><g><title>path_lookupat (109,382 samples, 7.11%)</title><rect x="38.3065%" y="597" width="7.1080%" height="15" fill="rgb(247,202,50)" fg:x="589478" fg:w="109382"/><text x="38.5565%" y="607.50">path_looku..</text></g><g><title>walk_component (53,191 samples, 3.46%)</title><rect x="41.9580%" y="581" width="3.4565%" height="15" fill="rgb(209,99,20)" fg:x="645669" fg:w="53191"/><text x="42.2080%" y="591.50">wal..</text></g><g><title>up_read (213 samples, 0.01%)</title><rect x="45.4007%" y="565" width="0.0138%" height="15" fill="rgb(252,27,34)" fg:x="698647" fg:w="213"/><text x="45.6507%" y="575.50"></text></g><g><title>filename_lookup (111,293 samples, 7.23%)</title><rect x="38.1890%" y="613" width="7.2322%" height="15" fill="rgb(215,206,23)" fg:x="587670" fg:w="111293"/><text x="38.4390%" y="623.50">filename_l..</text></g><g><title>mntput_no_expire (175 samples, 0.01%)</title><rect x="45.4223%" y="613" width="0.0114%" height="15" fill="rgb(212,135,36)" fg:x="698979" fg:w="175"/><text x="45.6723%" y="623.50"></text></g><g><title>__schedule (186 samples, 0.01%)</title><rect x="45.4441%" y="565" width="0.0121%" height="15" fill="rgb(240,189,1)" fg:x="699315" fg:w="186"/><text x="45.6941%" y="575.50"></text></g><g><title>_cond_resched (221 samples, 0.01%)</title><rect x="45.4429%" y="581" width="0.0144%" height="15" fill="rgb(242,56,20)" fg:x="699296" fg:w="221"/><text x="45.6929%" y="591.50"></text></g><g><title>lockref_put_or_lock (234 samples, 0.02%)</title><rect x="45.4664%" y="581" width="0.0152%" height="15" fill="rgb(247,132,33)" fg:x="699659" fg:w="234"/><text x="45.7164%" y="591.50"></text></g><g><title>_raw_spin_lock (174 samples, 0.01%)</title><rect x="45.4703%" y="565" width="0.0113%" height="15" fill="rgb(208,149,11)" fg:x="699719" fg:w="174"/><text x="45.7203%" y="575.50"></text></g><g><title>path_put (748 samples, 0.05%)</title><rect x="45.4336%" y="613" width="0.0486%" height="15" fill="rgb(211,33,11)" fg:x="699154" fg:w="748"/><text x="45.6836%" y="623.50"></text></g><g><title>dput (736 samples, 0.05%)</title><rect x="45.4344%" y="597" width="0.0478%" height="15" fill="rgb(221,29,38)" fg:x="699166" fg:w="736"/><text x="45.6844%" y="607.50"></text></g><g><title>apparmor_inode_getattr (227 samples, 0.01%)</title><rect x="45.5375%" y="597" width="0.0148%" height="15" fill="rgb(206,182,49)" fg:x="700753" fg:w="227"/><text x="45.7875%" y="607.50"></text></g><g><title>security_inode_getattr (2,020 samples, 0.13%)</title><rect x="45.4822%" y="613" width="0.1313%" height="15" fill="rgb(216,140,1)" fg:x="699902" fg:w="2020"/><text x="45.7322%" y="623.50"></text></g><g><title>tomoyo_path_perm (925 samples, 0.06%)</title><rect x="45.5534%" y="597" width="0.0601%" height="15" fill="rgb(232,57,40)" fg:x="700997" fg:w="925"/><text x="45.8034%" y="607.50"></text></g><g><title>tomoyo_init_request_info (577 samples, 0.04%)</title><rect x="45.5760%" y="581" width="0.0375%" height="15" fill="rgb(224,186,18)" fg:x="701345" fg:w="577"/><text x="45.8260%" y="591.50"></text></g><g><title>tomoyo_domain (272 samples, 0.02%)</title><rect x="45.5958%" y="565" width="0.0177%" height="15" fill="rgb(215,121,11)" fg:x="701650" fg:w="272"/><text x="45.8458%" y="575.50"></text></g><g><title>memcg_slab_post_alloc_hook (168 samples, 0.01%)</title><rect x="45.7036%" y="565" width="0.0109%" height="15" fill="rgb(245,147,10)" fg:x="703309" fg:w="168"/><text x="45.9536%" y="575.50"></text></g><g><title>memset_erms (2,629 samples, 0.17%)</title><rect x="45.7150%" y="565" width="0.1708%" height="15" fill="rgb(238,153,13)" fg:x="703484" fg:w="2629"/><text x="45.9650%" y="575.50"></text></g><g><title>kmem_cache_alloc (4,145 samples, 0.27%)</title><rect x="45.6471%" y="581" width="0.2694%" height="15" fill="rgb(233,108,0)" fg:x="702439" fg:w="4145"/><text x="45.8971%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (471 samples, 0.03%)</title><rect x="45.8858%" y="565" width="0.0306%" height="15" fill="rgb(212,157,17)" fg:x="706113" fg:w="471"/><text x="46.1358%" y="575.50"></text></g><g><title>__check_heap_object (438 samples, 0.03%)</title><rect x="46.0945%" y="549" width="0.0285%" height="15" fill="rgb(225,213,38)" fg:x="709324" fg:w="438"/><text x="46.3445%" y="559.50"></text></g><g><title>__virt_addr_valid (776 samples, 0.05%)</title><rect x="46.1230%" y="549" width="0.0504%" height="15" fill="rgb(248,16,11)" fg:x="709762" fg:w="776"/><text x="46.3730%" y="559.50"></text></g><g><title>__check_object_size (1,642 samples, 0.11%)</title><rect x="46.0717%" y="565" width="0.1067%" height="15" fill="rgb(241,33,4)" fg:x="708973" fg:w="1642"/><text x="46.3217%" y="575.50"></text></g><g><title>user_path_at_empty (8,700 samples, 0.57%)</title><rect x="45.6135%" y="613" width="0.5654%" height="15" fill="rgb(222,26,43)" fg:x="701922" fg:w="8700"/><text x="45.8635%" y="623.50"></text></g><g><title>getname_flags.part.0 (8,493 samples, 0.55%)</title><rect x="45.6270%" y="597" width="0.5519%" height="15" fill="rgb(243,29,36)" fg:x="702129" fg:w="8493"/><text x="45.8770%" y="607.50"></text></g><g><title>strncpy_from_user (4,038 samples, 0.26%)</title><rect x="45.9165%" y="581" width="0.2624%" height="15" fill="rgb(241,9,27)" fg:x="706584" fg:w="4038"/><text x="46.1665%" y="591.50"></text></g><g><title>__do_sys_newstat (126,959 samples, 8.25%)</title><rect x="37.9564%" y="645" width="8.2503%" height="15" fill="rgb(205,117,26)" fg:x="584091" fg:w="126959"/><text x="38.2064%" y="655.50">__do_sys_ne..</text></g><g><title>vfs_statx (125,369 samples, 8.15%)</title><rect x="38.0597%" y="629" width="8.1469%" height="15" fill="rgb(209,80,39)" fg:x="585681" fg:w="125369"/><text x="38.3097%" y="639.50">vfs_statx</text></g><g><title>vfs_getattr_nosec (428 samples, 0.03%)</title><rect x="46.1789%" y="613" width="0.0278%" height="15" fill="rgb(239,155,6)" fg:x="710622" fg:w="428"/><text x="46.4289%" y="623.50"></text></g><g><title>do_syscall_64 (127,193 samples, 8.27%)</title><rect x="37.9480%" y="661" width="8.2655%" height="15" fill="rgb(212,104,12)" fg:x="583962" fg:w="127193"/><text x="38.1980%" y="671.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (128,140 samples, 8.33%)</title><rect x="37.9270%" y="677" width="8.3270%" height="15" fill="rgb(234,204,3)" fg:x="583639" fg:w="128140"/><text x="38.1770%" y="687.50">entry_SYSCAL..</text></g><g><title>syscall_exit_to_user_mode (624 samples, 0.04%)</title><rect x="46.2135%" y="661" width="0.0405%" height="15" fill="rgb(251,218,7)" fg:x="711155" fg:w="624"/><text x="46.4635%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (472 samples, 0.03%)</title><rect x="46.2234%" y="645" width="0.0307%" height="15" fill="rgb(221,81,32)" fg:x="711307" fg:w="472"/><text x="46.4734%" y="655.50"></text></g><g><title>syscall_return_via_sysret (449 samples, 0.03%)</title><rect x="46.2571%" y="677" width="0.0292%" height="15" fill="rgb(214,152,26)" fg:x="711826" fg:w="449"/><text x="46.5071%" y="687.50"></text></g><g><title>__GI___xstat (130,316 samples, 8.47%)</title><rect x="37.8180%" y="693" width="8.4684%" height="15" fill="rgb(223,22,3)" fg:x="581961" fg:w="130316"/><text x="38.0680%" y="703.50">__GI___xstat</text></g><g><title>crc32c_pcl_intel_update (340 samples, 0.02%)</title><rect x="46.3420%" y="677" width="0.0221%" height="15" fill="rgb(207,174,7)" fg:x="713133" fg:w="340"/><text x="46.5920%" y="687.50"></text></g><g><title>entry_SYSCALL_64 (369 samples, 0.02%)</title><rect x="46.3641%" y="677" width="0.0240%" height="15" fill="rgb(224,19,52)" fg:x="713473" fg:w="369"/><text x="46.6141%" y="687.50"></text></g><g><title>getname_flags (246 samples, 0.02%)</title><rect x="46.4348%" y="629" width="0.0160%" height="15" fill="rgb(228,24,14)" fg:x="714561" fg:w="246"/><text x="46.6848%" y="639.50"></text></g><g><title>memset_erms (1,556 samples, 0.10%)</title><rect x="46.4973%" y="597" width="0.1011%" height="15" fill="rgb(230,153,43)" fg:x="715522" fg:w="1556"/><text x="46.7473%" y="607.50"></text></g><g><title>kmem_cache_alloc (2,328 samples, 0.15%)</title><rect x="46.4619%" y="613" width="0.1513%" height="15" fill="rgb(231,106,12)" fg:x="714978" fg:w="2328"/><text x="46.7119%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (228 samples, 0.01%)</title><rect x="46.5984%" y="597" width="0.0148%" height="15" fill="rgb(215,92,2)" fg:x="717078" fg:w="228"/><text x="46.8484%" y="607.50"></text></g><g><title>__check_heap_object (169 samples, 0.01%)</title><rect x="46.6794%" y="581" width="0.0110%" height="15" fill="rgb(249,143,25)" fg:x="718324" fg:w="169"/><text x="46.9294%" y="591.50"></text></g><g><title>__virt_addr_valid (668 samples, 0.04%)</title><rect x="46.6903%" y="581" width="0.0434%" height="15" fill="rgb(252,7,35)" fg:x="718493" fg:w="668"/><text x="46.9403%" y="591.50"></text></g><g><title>__check_object_size (1,198 samples, 0.08%)</title><rect x="46.6642%" y="597" width="0.0779%" height="15" fill="rgb(216,69,40)" fg:x="718091" fg:w="1198"/><text x="46.9142%" y="607.50"></text></g><g><title>getname_flags.part.0 (4,489 samples, 0.29%)</title><rect x="46.4508%" y="629" width="0.2917%" height="15" fill="rgb(240,36,33)" fg:x="714807" fg:w="4489"/><text x="46.7008%" y="639.50"></text></g><g><title>strncpy_from_user (1,990 samples, 0.13%)</title><rect x="46.6132%" y="613" width="0.1293%" height="15" fill="rgb(231,128,14)" fg:x="717306" fg:w="1990"/><text x="46.8632%" y="623.50"></text></g><g><title>__x64_sys_unlinkat (4,773 samples, 0.31%)</title><rect x="46.4325%" y="645" width="0.3102%" height="15" fill="rgb(245,143,14)" fg:x="714525" fg:w="4773"/><text x="46.6825%" y="655.50"></text></g><g><title>d_lru_add (236 samples, 0.02%)</title><rect x="46.7664%" y="613" width="0.0153%" height="15" fill="rgb(222,130,28)" fg:x="719663" fg:w="236"/><text x="47.0164%" y="623.50"></text></g><g><title>list_lru_add (231 samples, 0.02%)</title><rect x="46.7667%" y="597" width="0.0150%" height="15" fill="rgb(212,10,48)" fg:x="719668" fg:w="231"/><text x="47.0167%" y="607.50"></text></g><g><title>dput (399 samples, 0.03%)</title><rect x="46.7581%" y="629" width="0.0259%" height="15" fill="rgb(254,118,45)" fg:x="719536" fg:w="399"/><text x="47.0081%" y="639.50"></text></g><g><title>path_init (166 samples, 0.01%)</title><rect x="46.8002%" y="597" width="0.0108%" height="15" fill="rgb(228,6,45)" fg:x="720183" fg:w="166"/><text x="47.0502%" y="607.50"></text></g><g><title>filename_parentat (465 samples, 0.03%)</title><rect x="46.7841%" y="629" width="0.0302%" height="15" fill="rgb(241,18,35)" fg:x="719935" fg:w="465"/><text x="47.0341%" y="639.50"></text></g><g><title>path_parentat (430 samples, 0.03%)</title><rect x="46.7863%" y="613" width="0.0279%" height="15" fill="rgb(227,214,53)" fg:x="719970" fg:w="430"/><text x="47.0363%" y="623.50"></text></g><g><title>security_path_rmdir (178 samples, 0.01%)</title><rect x="46.8298%" y="629" width="0.0116%" height="15" fill="rgb(224,107,51)" fg:x="720639" fg:w="178"/><text x="47.0798%" y="639.50"></text></g><g><title>__btrfs_end_transaction (331 samples, 0.02%)</title><rect x="46.8542%" y="597" width="0.0215%" height="15" fill="rgb(248,60,28)" fg:x="721015" fg:w="331"/><text x="47.1042%" y="607.50"></text></g><g><title>__wake_up_common (387 samples, 0.03%)</title><rect x="46.8904%" y="517" width="0.0251%" height="15" fill="rgb(249,101,23)" fg:x="721571" fg:w="387"/><text x="47.1404%" y="527.50"></text></g><g><title>autoremove_wake_function (379 samples, 0.02%)</title><rect x="46.8909%" y="501" width="0.0246%" height="15" fill="rgb(228,51,19)" fg:x="721579" fg:w="379"/><text x="47.1409%" y="511.50"></text></g><g><title>try_to_wake_up (374 samples, 0.02%)</title><rect x="46.8912%" y="485" width="0.0243%" height="15" fill="rgb(213,20,6)" fg:x="721584" fg:w="374"/><text x="47.1412%" y="495.50"></text></g><g><title>__wake_up_common_lock (469 samples, 0.03%)</title><rect x="46.8899%" y="533" width="0.0305%" height="15" fill="rgb(212,124,10)" fg:x="721564" fg:w="469"/><text x="47.1399%" y="543.50"></text></g><g><title>btrfs_free_path (572 samples, 0.04%)</title><rect x="46.8888%" y="565" width="0.0372%" height="15" fill="rgb(248,3,40)" fg:x="721547" fg:w="572"/><text x="47.1388%" y="575.50"></text></g><g><title>btrfs_release_path (564 samples, 0.04%)</title><rect x="46.8893%" y="549" width="0.0367%" height="15" fill="rgb(223,178,23)" fg:x="721555" fg:w="564"/><text x="47.1393%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (228 samples, 0.01%)</title><rect x="46.9307%" y="517" width="0.0148%" height="15" fill="rgb(240,132,45)" fg:x="722191" fg:w="228"/><text x="47.1807%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (246 samples, 0.02%)</title><rect x="46.9306%" y="533" width="0.0160%" height="15" fill="rgb(245,164,36)" fg:x="722190" fg:w="246"/><text x="47.1806%" y="543.50"></text></g><g><title>__btrfs_tree_lock (382 samples, 0.02%)</title><rect x="46.9492%" y="517" width="0.0248%" height="15" fill="rgb(231,188,53)" fg:x="722477" fg:w="382"/><text x="47.1992%" y="527.50"></text></g><g><title>btrfs_lock_root_node (396 samples, 0.03%)</title><rect x="46.9491%" y="533" width="0.0257%" height="15" fill="rgb(237,198,39)" fg:x="722475" fg:w="396"/><text x="47.1991%" y="543.50"></text></g><g><title>btrfs_lookup_dir_index_item (1,098 samples, 0.07%)</title><rect x="46.9260%" y="565" width="0.0714%" height="15" fill="rgb(223,120,35)" fg:x="722119" fg:w="1098"/><text x="47.1760%" y="575.50"></text></g><g><title>btrfs_search_slot (1,086 samples, 0.07%)</title><rect x="46.9268%" y="549" width="0.0706%" height="15" fill="rgb(253,107,49)" fg:x="722131" fg:w="1086"/><text x="47.1768%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (279 samples, 0.02%)</title><rect x="47.0147%" y="485" width="0.0181%" height="15" fill="rgb(216,44,31)" fg:x="723485" fg:w="279"/><text x="47.2647%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (267 samples, 0.02%)</title><rect x="47.0155%" y="469" width="0.0174%" height="15" fill="rgb(253,87,21)" fg:x="723497" fg:w="267"/><text x="47.2655%" y="479.50"></text></g><g><title>prepare_to_wait_event (321 samples, 0.02%)</title><rect x="47.0125%" y="501" width="0.0209%" height="15" fill="rgb(226,18,2)" fg:x="723451" fg:w="321"/><text x="47.2625%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (741 samples, 0.05%)</title><rect x="47.0029%" y="517" width="0.0482%" height="15" fill="rgb(216,8,46)" fg:x="723303" fg:w="741"/><text x="47.2529%" y="527.50"></text></g><g><title>schedule (244 samples, 0.02%)</title><rect x="47.0352%" y="501" width="0.0159%" height="15" fill="rgb(226,140,39)" fg:x="723800" fg:w="244"/><text x="47.2852%" y="511.50"></text></g><g><title>__schedule (241 samples, 0.02%)</title><rect x="47.0354%" y="485" width="0.0157%" height="15" fill="rgb(221,194,54)" fg:x="723803" fg:w="241"/><text x="47.2854%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (774 samples, 0.05%)</title><rect x="47.0026%" y="533" width="0.0503%" height="15" fill="rgb(213,92,11)" fg:x="723298" fg:w="774"/><text x="47.2526%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (168 samples, 0.01%)</title><rect x="47.0615%" y="485" width="0.0109%" height="15" fill="rgb(229,162,46)" fg:x="724205" fg:w="168"/><text x="47.3115%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (160 samples, 0.01%)</title><rect x="47.0621%" y="469" width="0.0104%" height="15" fill="rgb(214,111,36)" fg:x="724213" fg:w="160"/><text x="47.3121%" y="479.50"></text></g><g><title>prepare_to_wait_event (181 samples, 0.01%)</title><rect x="47.0609%" y="501" width="0.0118%" height="15" fill="rgb(207,6,21)" fg:x="724195" fg:w="181"/><text x="47.3109%" y="511.50"></text></g><g><title>__btrfs_tree_lock (391 samples, 0.03%)</title><rect x="47.0551%" y="517" width="0.0254%" height="15" fill="rgb(213,127,38)" fg:x="724106" fg:w="391"/><text x="47.3051%" y="527.50"></text></g><g><title>btrfs_lock_root_node (408 samples, 0.03%)</title><rect x="47.0550%" y="533" width="0.0265%" height="15" fill="rgb(238,118,32)" fg:x="724105" fg:w="408"/><text x="47.3050%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (169 samples, 0.01%)</title><rect x="47.0928%" y="533" width="0.0110%" height="15" fill="rgb(240,139,39)" fg:x="724686" fg:w="169"/><text x="47.3428%" y="543.50"></text></g><g><title>btrfs_search_slot (1,656 samples, 0.11%)</title><rect x="46.9983%" y="549" width="0.1076%" height="15" fill="rgb(235,10,37)" fg:x="723232" fg:w="1656"/><text x="47.2483%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (1,685 samples, 0.11%)</title><rect x="46.9973%" y="565" width="0.1095%" height="15" fill="rgb(249,171,38)" fg:x="723217" fg:w="1685"/><text x="47.2473%" y="575.50"></text></g><g><title>__wake_up_common (362 samples, 0.02%)</title><rect x="47.1081%" y="533" width="0.0235%" height="15" fill="rgb(242,144,32)" fg:x="724922" fg:w="362"/><text x="47.3581%" y="543.50"></text></g><g><title>autoremove_wake_function (349 samples, 0.02%)</title><rect x="47.1090%" y="517" width="0.0227%" height="15" fill="rgb(217,117,21)" fg:x="724935" fg:w="349"/><text x="47.3590%" y="527.50"></text></g><g><title>try_to_wake_up (341 samples, 0.02%)</title><rect x="47.1095%" y="501" width="0.0222%" height="15" fill="rgb(249,87,1)" fg:x="724943" fg:w="341"/><text x="47.3595%" y="511.50"></text></g><g><title>__wake_up_common_lock (466 samples, 0.03%)</title><rect x="47.1081%" y="549" width="0.0303%" height="15" fill="rgb(248,196,48)" fg:x="724922" fg:w="466"/><text x="47.3581%" y="559.50"></text></g><g><title>btrfs_release_path (557 samples, 0.04%)</title><rect x="47.1068%" y="565" width="0.0362%" height="15" fill="rgb(251,206,33)" fg:x="724902" fg:w="557"/><text x="47.3568%" y="575.50"></text></g><g><title>btrfs_del_dir_entries_in_log (4,139 samples, 0.27%)</title><rect x="46.8832%" y="581" width="0.2690%" height="15" fill="rgb(232,141,28)" fg:x="721460" fg:w="4139"/><text x="47.1332%" y="591.50"></text></g><g><title>ttwu_do_activate (211 samples, 0.01%)</title><rect x="47.1916%" y="453" width="0.0137%" height="15" fill="rgb(209,167,14)" fg:x="726206" fg:w="211"/><text x="47.4416%" y="463.50"></text></g><g><title>__wake_up_common (760 samples, 0.05%)</title><rect x="47.1596%" y="501" width="0.0494%" height="15" fill="rgb(225,11,50)" fg:x="725714" fg:w="760"/><text x="47.4096%" y="511.50"></text></g><g><title>autoremove_wake_function (739 samples, 0.05%)</title><rect x="47.1610%" y="485" width="0.0480%" height="15" fill="rgb(209,50,20)" fg:x="725735" fg:w="739"/><text x="47.4110%" y="495.50"></text></g><g><title>try_to_wake_up (733 samples, 0.05%)</title><rect x="47.1613%" y="469" width="0.0476%" height="15" fill="rgb(212,17,46)" fg:x="725741" fg:w="733"/><text x="47.4113%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (326 samples, 0.02%)</title><rect x="47.2090%" y="501" width="0.0212%" height="15" fill="rgb(216,101,39)" fg:x="726474" fg:w="326"/><text x="47.4590%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (318 samples, 0.02%)</title><rect x="47.2095%" y="485" width="0.0207%" height="15" fill="rgb(212,228,48)" fg:x="726482" fg:w="318"/><text x="47.4595%" y="495.50"></text></g><g><title>__wake_up_common_lock (1,099 samples, 0.07%)</title><rect x="47.1593%" y="517" width="0.0714%" height="15" fill="rgb(250,6,50)" fg:x="725710" fg:w="1099"/><text x="47.4093%" y="527.50"></text></g><g><title>btrfs_free_path (1,309 samples, 0.09%)</title><rect x="47.1558%" y="549" width="0.0851%" height="15" fill="rgb(250,160,48)" fg:x="725656" fg:w="1309"/><text x="47.4058%" y="559.50"></text></g><g><title>btrfs_release_path (1,294 samples, 0.08%)</title><rect x="47.1568%" y="533" width="0.0841%" height="15" fill="rgb(244,216,33)" fg:x="725671" fg:w="1294"/><text x="47.4068%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (387 samples, 0.03%)</title><rect x="47.2697%" y="485" width="0.0251%" height="15" fill="rgb(207,157,5)" fg:x="727409" fg:w="387"/><text x="47.5197%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (356 samples, 0.02%)</title><rect x="47.2718%" y="469" width="0.0231%" height="15" fill="rgb(228,199,8)" fg:x="727440" fg:w="356"/><text x="47.5218%" y="479.50"></text></g><g><title>prepare_to_wait_event (433 samples, 0.03%)</title><rect x="47.2671%" y="501" width="0.0281%" height="15" fill="rgb(227,80,20)" fg:x="727369" fg:w="433"/><text x="47.5171%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (171 samples, 0.01%)</title><rect x="47.3092%" y="453" width="0.0111%" height="15" fill="rgb(222,9,33)" fg:x="728016" fg:w="171"/><text x="47.5592%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (168 samples, 0.01%)</title><rect x="47.3094%" y="437" width="0.0109%" height="15" fill="rgb(239,44,28)" fg:x="728019" fg:w="168"/><text x="47.5594%" y="447.50"></text></g><g><title>native_write_msr (167 samples, 0.01%)</title><rect x="47.3094%" y="421" width="0.0109%" height="15" fill="rgb(249,187,43)" fg:x="728020" fg:w="167"/><text x="47.5594%" y="431.50"></text></g><g><title>finish_task_switch (194 samples, 0.01%)</title><rect x="47.3084%" y="469" width="0.0126%" height="15" fill="rgb(216,141,28)" fg:x="728004" fg:w="194"/><text x="47.5584%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (1,165 samples, 0.08%)</title><rect x="47.2524%" y="517" width="0.0757%" height="15" fill="rgb(230,154,53)" fg:x="727142" fg:w="1165"/><text x="47.5024%" y="527.50"></text></g><g><title>schedule (454 samples, 0.03%)</title><rect x="47.2986%" y="501" width="0.0295%" height="15" fill="rgb(227,82,4)" fg:x="727853" fg:w="454"/><text x="47.5486%" y="511.50"></text></g><g><title>__schedule (449 samples, 0.03%)</title><rect x="47.2989%" y="485" width="0.0292%" height="15" fill="rgb(220,107,16)" fg:x="727858" fg:w="449"/><text x="47.5489%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (1,288 samples, 0.08%)</title><rect x="47.2514%" y="533" width="0.0837%" height="15" fill="rgb(207,187,2)" fg:x="727126" fg:w="1288"/><text x="47.5014%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (248 samples, 0.02%)</title><rect x="47.3525%" y="485" width="0.0161%" height="15" fill="rgb(210,162,52)" fg:x="728683" fg:w="248"/><text x="47.6025%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (238 samples, 0.02%)</title><rect x="47.3532%" y="469" width="0.0155%" height="15" fill="rgb(217,216,49)" fg:x="728693" fg:w="238"/><text x="47.6032%" y="479.50"></text></g><g><title>prepare_to_wait_event (269 samples, 0.02%)</title><rect x="47.3517%" y="501" width="0.0175%" height="15" fill="rgb(218,146,49)" fg:x="728670" fg:w="269"/><text x="47.6017%" y="511.50"></text></g><g><title>__btrfs_tree_lock (703 samples, 0.05%)</title><rect x="47.3400%" y="517" width="0.0457%" height="15" fill="rgb(216,55,40)" fg:x="728490" fg:w="703"/><text x="47.5900%" y="527.50"></text></g><g><title>schedule (192 samples, 0.01%)</title><rect x="47.3732%" y="501" width="0.0125%" height="15" fill="rgb(208,196,21)" fg:x="729001" fg:w="192"/><text x="47.6232%" y="511.50"></text></g><g><title>__schedule (185 samples, 0.01%)</title><rect x="47.3737%" y="485" width="0.0120%" height="15" fill="rgb(242,117,42)" fg:x="729008" fg:w="185"/><text x="47.6237%" y="495.50"></text></g><g><title>btrfs_lock_root_node (740 samples, 0.05%)</title><rect x="47.3398%" y="533" width="0.0481%" height="15" fill="rgb(210,11,23)" fg:x="728487" fg:w="740"/><text x="47.5898%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (160 samples, 0.01%)</title><rect x="47.3974%" y="533" width="0.0104%" height="15" fill="rgb(217,110,2)" fg:x="729373" fg:w="160"/><text x="47.6474%" y="543.50"></text></g><g><title>find_extent_buffer (220 samples, 0.01%)</title><rect x="47.4158%" y="517" width="0.0143%" height="15" fill="rgb(229,77,54)" fg:x="729657" fg:w="220"/><text x="47.6658%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (384 samples, 0.02%)</title><rect x="47.4078%" y="533" width="0.0250%" height="15" fill="rgb(218,53,16)" fg:x="729533" fg:w="384"/><text x="47.6578%" y="543.50"></text></g><g><title>btrfs_search_slot (3,027 samples, 0.20%)</title><rect x="47.2410%" y="549" width="0.1967%" height="15" fill="rgb(215,38,13)" fg:x="726966" fg:w="3027"/><text x="47.4910%" y="559.50"></text></g><g><title>btrfs_del_inode_ref (4,578 samples, 0.30%)</title><rect x="47.1542%" y="565" width="0.2975%" height="15" fill="rgb(235,42,18)" fg:x="725631" fg:w="4578"/><text x="47.4042%" y="575.50"></text></g><g><title>btrfs_del_inode_ref_in_log (4,730 samples, 0.31%)</title><rect x="47.1521%" y="581" width="0.3074%" height="15" fill="rgb(219,66,54)" fg:x="725599" fg:w="4730"/><text x="47.4021%" y="591.50"></text></g><g><title>btrfs_del_leaf (154 samples, 0.01%)</title><rect x="47.4726%" y="565" width="0.0100%" height="15" fill="rgb(222,205,4)" fg:x="730530" fg:w="154"/><text x="47.7226%" y="575.50"></text></g><g><title>btrfs_get_token_32 (728 samples, 0.05%)</title><rect x="47.4851%" y="565" width="0.0473%" height="15" fill="rgb(227,213,46)" fg:x="730723" fg:w="728"/><text x="47.7351%" y="575.50"></text></g><g><title>btrfs_set_token_32 (493 samples, 0.03%)</title><rect x="47.5356%" y="565" width="0.0320%" height="15" fill="rgb(250,145,42)" fg:x="731500" fg:w="493"/><text x="47.7856%" y="575.50"></text></g><g><title>memmove_extent_buffer (420 samples, 0.03%)</title><rect x="47.5762%" y="565" width="0.0273%" height="15" fill="rgb(219,15,2)" fg:x="732125" fg:w="420"/><text x="47.8262%" y="575.50"></text></g><g><title>memmove (345 samples, 0.02%)</title><rect x="47.5811%" y="549" width="0.0224%" height="15" fill="rgb(231,181,52)" fg:x="732200" fg:w="345"/><text x="47.8311%" y="559.50"></text></g><g><title>__push_leaf_right (156 samples, 0.01%)</title><rect x="47.6069%" y="549" width="0.0101%" height="15" fill="rgb(235,1,42)" fg:x="732598" fg:w="156"/><text x="47.8569%" y="559.50"></text></g><g><title>push_leaf_right (198 samples, 0.01%)</title><rect x="47.6065%" y="565" width="0.0129%" height="15" fill="rgb(249,88,27)" fg:x="732591" fg:w="198"/><text x="47.8565%" y="575.50"></text></g><g><title>btrfs_del_items (2,463 samples, 0.16%)</title><rect x="47.4595%" y="581" width="0.1601%" height="15" fill="rgb(235,145,16)" fg:x="730329" fg:w="2463"/><text x="47.7095%" y="591.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (355 samples, 0.02%)</title><rect x="47.6195%" y="581" width="0.0231%" height="15" fill="rgb(237,114,19)" fg:x="732792" fg:w="355"/><text x="47.8695%" y="591.50"></text></g><g><title>__mutex_lock.constprop.0 (155 samples, 0.01%)</title><rect x="47.6565%" y="565" width="0.0101%" height="15" fill="rgb(238,51,50)" fg:x="733361" fg:w="155"/><text x="47.9065%" y="575.50"></text></g><g><title>btrfs_delete_delayed_dir_index (659 samples, 0.04%)</title><rect x="47.6426%" y="581" width="0.0428%" height="15" fill="rgb(205,194,25)" fg:x="733147" fg:w="659"/><text x="47.8926%" y="591.50"></text></g><g><title>btrfs_match_dir_item_name (167 samples, 0.01%)</title><rect x="47.6915%" y="565" width="0.0109%" height="15" fill="rgb(215,203,17)" fg:x="733899" fg:w="167"/><text x="47.9415%" y="575.50"></text></g><g><title>_raw_spin_lock_irqsave (222 samples, 0.01%)</title><rect x="47.7237%" y="501" width="0.0144%" height="15" fill="rgb(233,112,49)" fg:x="734395" fg:w="222"/><text x="47.9737%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (204 samples, 0.01%)</title><rect x="47.7249%" y="485" width="0.0133%" height="15" fill="rgb(241,130,26)" fg:x="734413" fg:w="204"/><text x="47.9749%" y="495.50"></text></g><g><title>prepare_to_wait_event (242 samples, 0.02%)</title><rect x="47.7225%" y="517" width="0.0157%" height="15" fill="rgb(252,223,19)" fg:x="734376" fg:w="242"/><text x="47.9725%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (515 samples, 0.03%)</title><rect x="47.7382%" y="517" width="0.0335%" height="15" fill="rgb(211,95,25)" fg:x="734618" fg:w="515"/><text x="47.9882%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (339 samples, 0.02%)</title><rect x="47.7496%" y="501" width="0.0220%" height="15" fill="rgb(251,182,27)" fg:x="734794" fg:w="339"/><text x="47.9996%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (1,226 samples, 0.08%)</title><rect x="47.7123%" y="533" width="0.0797%" height="15" fill="rgb(238,24,4)" fg:x="734219" fg:w="1226"/><text x="47.9623%" y="543.50"></text></g><g><title>schedule (312 samples, 0.02%)</title><rect x="47.7717%" y="517" width="0.0203%" height="15" fill="rgb(224,220,25)" fg:x="735133" fg:w="312"/><text x="48.0217%" y="527.50"></text></g><g><title>__schedule (306 samples, 0.02%)</title><rect x="47.7721%" y="501" width="0.0199%" height="15" fill="rgb(239,133,26)" fg:x="735139" fg:w="306"/><text x="48.0221%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (1,270 samples, 0.08%)</title><rect x="47.7120%" y="549" width="0.0825%" height="15" fill="rgb(211,94,48)" fg:x="734215" fg:w="1270"/><text x="47.9620%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (257 samples, 0.02%)</title><rect x="47.8005%" y="485" width="0.0167%" height="15" fill="rgb(239,87,6)" fg:x="735576" fg:w="257"/><text x="48.0505%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (252 samples, 0.02%)</title><rect x="47.8008%" y="469" width="0.0164%" height="15" fill="rgb(227,62,0)" fg:x="735581" fg:w="252"/><text x="48.0508%" y="479.50"></text></g><g><title>native_write_msr (251 samples, 0.02%)</title><rect x="47.8009%" y="453" width="0.0163%" height="15" fill="rgb(211,226,4)" fg:x="735582" fg:w="251"/><text x="48.0509%" y="463.50"></text></g><g><title>finish_task_switch (271 samples, 0.02%)</title><rect x="47.7999%" y="501" width="0.0176%" height="15" fill="rgb(253,38,52)" fg:x="735568" fg:w="271"/><text x="48.0499%" y="511.50"></text></g><g><title>__schedule (406 samples, 0.03%)</title><rect x="47.7961%" y="517" width="0.0264%" height="15" fill="rgb(229,126,40)" fg:x="735509" fg:w="406"/><text x="48.0461%" y="527.50"></text></g><g><title>__btrfs_tree_lock (431 samples, 0.03%)</title><rect x="47.7946%" y="549" width="0.0280%" height="15" fill="rgb(229,165,44)" fg:x="735485" fg:w="431"/><text x="48.0446%" y="559.50"></text></g><g><title>schedule (410 samples, 0.03%)</title><rect x="47.7959%" y="533" width="0.0266%" height="15" fill="rgb(247,95,47)" fg:x="735506" fg:w="410"/><text x="48.0459%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (339 samples, 0.02%)</title><rect x="47.8393%" y="501" width="0.0220%" height="15" fill="rgb(216,140,30)" fg:x="736173" fg:w="339"/><text x="48.0893%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (315 samples, 0.02%)</title><rect x="47.8408%" y="485" width="0.0205%" height="15" fill="rgb(246,214,8)" fg:x="736197" fg:w="315"/><text x="48.0908%" y="495.50"></text></g><g><title>prepare_to_wait_event (391 samples, 0.03%)</title><rect x="47.8363%" y="517" width="0.0254%" height="15" fill="rgb(227,224,15)" fg:x="736127" fg:w="391"/><text x="48.0863%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (642 samples, 0.04%)</title><rect x="47.8617%" y="517" width="0.0417%" height="15" fill="rgb(233,175,4)" fg:x="736518" fg:w="642"/><text x="48.1117%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (238 samples, 0.02%)</title><rect x="47.8879%" y="501" width="0.0155%" height="15" fill="rgb(221,66,45)" fg:x="736922" fg:w="238"/><text x="48.1379%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (487 samples, 0.03%)</title><rect x="47.9134%" y="469" width="0.0316%" height="15" fill="rgb(221,178,18)" fg:x="737314" fg:w="487"/><text x="48.1634%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (470 samples, 0.03%)</title><rect x="47.9145%" y="453" width="0.0305%" height="15" fill="rgb(213,81,29)" fg:x="737331" fg:w="470"/><text x="48.1645%" y="463.50"></text></g><g><title>native_write_msr (463 samples, 0.03%)</title><rect x="47.9150%" y="437" width="0.0301%" height="15" fill="rgb(220,89,49)" fg:x="737338" fg:w="463"/><text x="48.1650%" y="447.50"></text></g><g><title>finish_task_switch (529 samples, 0.03%)</title><rect x="47.9119%" y="485" width="0.0344%" height="15" fill="rgb(227,60,33)" fg:x="737291" fg:w="529"/><text x="48.1619%" y="495.50"></text></g><g><title>__btrfs_tree_lock (1,985 samples, 0.13%)</title><rect x="47.8249%" y="533" width="0.1290%" height="15" fill="rgb(205,113,12)" fg:x="735952" fg:w="1985"/><text x="48.0749%" y="543.50"></text></g><g><title>schedule (777 samples, 0.05%)</title><rect x="47.9034%" y="517" width="0.0505%" height="15" fill="rgb(211,32,1)" fg:x="737160" fg:w="777"/><text x="48.1534%" y="527.50"></text></g><g><title>__schedule (770 samples, 0.05%)</title><rect x="47.9039%" y="501" width="0.0500%" height="15" fill="rgb(246,2,12)" fg:x="737167" fg:w="770"/><text x="48.1539%" y="511.50"></text></g><g><title>btrfs_lock_root_node (2,007 samples, 0.13%)</title><rect x="47.8247%" y="549" width="0.1304%" height="15" fill="rgb(243,37,27)" fg:x="735949" fg:w="2007"/><text x="48.0747%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (313 samples, 0.02%)</title><rect x="47.9584%" y="549" width="0.0203%" height="15" fill="rgb(248,211,31)" fg:x="738007" fg:w="313"/><text x="48.2084%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (283 samples, 0.02%)</title><rect x="47.9604%" y="533" width="0.0184%" height="15" fill="rgb(242,146,47)" fg:x="738037" fg:w="283"/><text x="48.2104%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (322 samples, 0.02%)</title><rect x="47.9817%" y="549" width="0.0209%" height="15" fill="rgb(206,70,20)" fg:x="738365" fg:w="322"/><text x="48.2317%" y="559.50"></text></g><g><title>__radix_tree_lookup (159 samples, 0.01%)</title><rect x="48.0186%" y="517" width="0.0103%" height="15" fill="rgb(215,10,51)" fg:x="738933" fg:w="159"/><text x="48.2686%" y="527.50"></text></g><g><title>find_extent_buffer (369 samples, 0.02%)</title><rect x="48.0119%" y="533" width="0.0240%" height="15" fill="rgb(243,178,53)" fg:x="738830" fg:w="369"/><text x="48.2619%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (559 samples, 0.04%)</title><rect x="48.0026%" y="549" width="0.0363%" height="15" fill="rgb(233,221,20)" fg:x="738687" fg:w="559"/><text x="48.2526%" y="559.50"></text></g><g><title>reada_for_balance (186 samples, 0.01%)</title><rect x="48.0390%" y="549" width="0.0121%" height="15" fill="rgb(218,95,35)" fg:x="739246" fg:w="186"/><text x="48.2890%" y="559.50"></text></g><g><title>select_task_rq_fair (172 samples, 0.01%)</title><rect x="48.0867%" y="469" width="0.0112%" height="15" fill="rgb(229,13,5)" fg:x="739981" fg:w="172"/><text x="48.3367%" y="479.50"></text></g><g><title>enqueue_task_fair (192 samples, 0.01%)</title><rect x="48.1000%" y="453" width="0.0125%" height="15" fill="rgb(252,164,30)" fg:x="740185" fg:w="192"/><text x="48.3500%" y="463.50"></text></g><g><title>ttwu_do_activate (376 samples, 0.02%)</title><rect x="48.0989%" y="469" width="0.0244%" height="15" fill="rgb(232,68,36)" fg:x="740169" fg:w="376"/><text x="48.3489%" y="479.50"></text></g><g><title>psi_task_change (168 samples, 0.01%)</title><rect x="48.1125%" y="453" width="0.0109%" height="15" fill="rgb(219,59,54)" fg:x="740377" fg:w="168"/><text x="48.3625%" y="463.50"></text></g><g><title>__wake_up_common (1,156 samples, 0.08%)</title><rect x="48.0546%" y="517" width="0.0751%" height="15" fill="rgb(250,92,33)" fg:x="739487" fg:w="1156"/><text x="48.3046%" y="527.50"></text></g><g><title>autoremove_wake_function (1,133 samples, 0.07%)</title><rect x="48.0561%" y="501" width="0.0736%" height="15" fill="rgb(229,162,54)" fg:x="739510" fg:w="1133"/><text x="48.3061%" y="511.50"></text></g><g><title>try_to_wake_up (1,097 samples, 0.07%)</title><rect x="48.0584%" y="485" width="0.0713%" height="15" fill="rgb(244,114,52)" fg:x="739546" fg:w="1097"/><text x="48.3084%" y="495.50"></text></g><g><title>__wake_up_common_lock (1,244 samples, 0.08%)</title><rect x="48.0544%" y="533" width="0.0808%" height="15" fill="rgb(212,211,43)" fg:x="739484" fg:w="1244"/><text x="48.3044%" y="543.50"></text></g><g><title>btrfs_search_slot (6,685 samples, 0.43%)</title><rect x="47.7023%" y="565" width="0.4344%" height="15" fill="rgb(226,147,8)" fg:x="734066" fg:w="6685"/><text x="47.9523%" y="575.50"></text></g><g><title>unlock_up (1,316 samples, 0.09%)</title><rect x="48.0512%" y="549" width="0.0855%" height="15" fill="rgb(226,23,13)" fg:x="739435" fg:w="1316"/><text x="48.3012%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (6,954 samples, 0.45%)</title><rect x="47.6895%" y="581" width="0.4519%" height="15" fill="rgb(240,63,4)" fg:x="733869" fg:w="6954"/><text x="47.9395%" y="591.50"></text></g><g><title>__wake_up_common (385 samples, 0.03%)</title><rect x="48.1427%" y="549" width="0.0250%" height="15" fill="rgb(221,1,32)" fg:x="740842" fg:w="385"/><text x="48.3927%" y="559.50"></text></g><g><title>autoremove_wake_function (374 samples, 0.02%)</title><rect x="48.1434%" y="533" width="0.0243%" height="15" fill="rgb(242,117,10)" fg:x="740853" fg:w="374"/><text x="48.3934%" y="543.50"></text></g><g><title>try_to_wake_up (367 samples, 0.02%)</title><rect x="48.1438%" y="517" width="0.0238%" height="15" fill="rgb(249,172,44)" fg:x="740860" fg:w="367"/><text x="48.3938%" y="527.50"></text></g><g><title>__wake_up_common_lock (393 samples, 0.03%)</title><rect x="48.1427%" y="565" width="0.0255%" height="15" fill="rgb(244,46,45)" fg:x="740842" fg:w="393"/><text x="48.3927%" y="575.50"></text></g><g><title>btrfs_release_path (545 samples, 0.04%)</title><rect x="48.1414%" y="581" width="0.0354%" height="15" fill="rgb(206,43,17)" fg:x="740823" fg:w="545"/><text x="48.3914%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (315 samples, 0.02%)</title><rect x="48.1790%" y="565" width="0.0205%" height="15" fill="rgb(239,218,39)" fg:x="741401" fg:w="315"/><text x="48.4290%" y="575.50"></text></g><g><title>btrfs_update_inode (433 samples, 0.03%)</title><rect x="48.1768%" y="581" width="0.0281%" height="15" fill="rgb(208,169,54)" fg:x="741368" fg:w="433"/><text x="48.4268%" y="591.50"></text></g><g><title>__btrfs_unlink_inode (20,581 samples, 1.34%)</title><rect x="46.8757%" y="597" width="1.3374%" height="15" fill="rgb(247,25,42)" fg:x="721346" fg:w="20581"/><text x="47.1257%" y="607.50"></text></g><g><title>__queue_work (222 samples, 0.01%)</title><rect x="48.2221%" y="565" width="0.0144%" height="15" fill="rgb(226,23,31)" fg:x="742064" fg:w="222"/><text x="48.4721%" y="575.50"></text></g><g><title>try_to_wake_up (157 samples, 0.01%)</title><rect x="48.2263%" y="549" width="0.0102%" height="15" fill="rgb(247,16,28)" fg:x="742129" fg:w="157"/><text x="48.4763%" y="559.50"></text></g><g><title>btrfs_btree_balance_dirty (308 samples, 0.02%)</title><rect x="48.2166%" y="597" width="0.0200%" height="15" fill="rgb(231,147,38)" fg:x="741979" fg:w="308"/><text x="48.4666%" y="607.50"></text></g><g><title>queue_work_on (228 samples, 0.01%)</title><rect x="48.2218%" y="581" width="0.0148%" height="15" fill="rgb(253,81,48)" fg:x="742059" fg:w="228"/><text x="48.4718%" y="591.50"></text></g><g><title>btrfs_free_path (183 samples, 0.01%)</title><rect x="48.2389%" y="565" width="0.0119%" height="15" fill="rgb(249,222,43)" fg:x="742323" fg:w="183"/><text x="48.4889%" y="575.50"></text></g><g><title>btrfs_release_path (168 samples, 0.01%)</title><rect x="48.2399%" y="549" width="0.0109%" height="15" fill="rgb(221,3,27)" fg:x="742338" fg:w="168"/><text x="48.4899%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (372 samples, 0.02%)</title><rect x="48.2773%" y="485" width="0.0242%" height="15" fill="rgb(228,180,5)" fg:x="742914" fg:w="372"/><text x="48.5273%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (358 samples, 0.02%)</title><rect x="48.2782%" y="469" width="0.0233%" height="15" fill="rgb(227,131,42)" fg:x="742928" fg:w="358"/><text x="48.5282%" y="479.50"></text></g><g><title>prepare_to_wait_event (398 samples, 0.03%)</title><rect x="48.2765%" y="501" width="0.0259%" height="15" fill="rgb(212,3,39)" fg:x="742901" fg:w="398"/><text x="48.5265%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (507 samples, 0.03%)</title><rect x="48.3023%" y="501" width="0.0329%" height="15" fill="rgb(226,45,5)" fg:x="743299" fg:w="507"/><text x="48.5523%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (351 samples, 0.02%)</title><rect x="48.3125%" y="485" width="0.0228%" height="15" fill="rgb(215,167,45)" fg:x="743455" fg:w="351"/><text x="48.5625%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (222 samples, 0.01%)</title><rect x="48.3448%" y="453" width="0.0144%" height="15" fill="rgb(250,218,53)" fg:x="743953" fg:w="222"/><text x="48.5948%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (216 samples, 0.01%)</title><rect x="48.3452%" y="437" width="0.0140%" height="15" fill="rgb(207,140,0)" fg:x="743959" fg:w="216"/><text x="48.5952%" y="447.50"></text></g><g><title>native_write_msr (213 samples, 0.01%)</title><rect x="48.3454%" y="421" width="0.0138%" height="15" fill="rgb(238,133,51)" fg:x="743962" fg:w="213"/><text x="48.5954%" y="431.50"></text></g><g><title>finish_task_switch (254 samples, 0.02%)</title><rect x="48.3433%" y="469" width="0.0165%" height="15" fill="rgb(218,203,53)" fg:x="743930" fg:w="254"/><text x="48.5933%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (1,593 samples, 0.10%)</title><rect x="48.2639%" y="517" width="0.1035%" height="15" fill="rgb(226,184,25)" fg:x="742707" fg:w="1593"/><text x="48.5139%" y="527.50"></text></g><g><title>schedule (494 samples, 0.03%)</title><rect x="48.3353%" y="501" width="0.0321%" height="15" fill="rgb(231,121,21)" fg:x="743806" fg:w="494"/><text x="48.5853%" y="511.50"></text></g><g><title>__schedule (488 samples, 0.03%)</title><rect x="48.3357%" y="485" width="0.0317%" height="15" fill="rgb(251,14,34)" fg:x="743812" fg:w="488"/><text x="48.5857%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (1,707 samples, 0.11%)</title><rect x="48.2630%" y="533" width="0.1109%" height="15" fill="rgb(249,193,11)" fg:x="742693" fg:w="1707"/><text x="48.5130%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (300 samples, 0.02%)</title><rect x="48.3810%" y="469" width="0.0195%" height="15" fill="rgb(220,172,37)" fg:x="744509" fg:w="300"/><text x="48.6310%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (294 samples, 0.02%)</title><rect x="48.3814%" y="453" width="0.0191%" height="15" fill="rgb(231,229,43)" fg:x="744515" fg:w="294"/><text x="48.6314%" y="463.50"></text></g><g><title>native_write_msr (286 samples, 0.02%)</title><rect x="48.3819%" y="437" width="0.0186%" height="15" fill="rgb(250,161,5)" fg:x="744523" fg:w="286"/><text x="48.6319%" y="447.50"></text></g><g><title>finish_task_switch (324 samples, 0.02%)</title><rect x="48.3805%" y="485" width="0.0211%" height="15" fill="rgb(218,225,18)" fg:x="744502" fg:w="324"/><text x="48.6305%" y="495.50"></text></g><g><title>__btrfs_tree_lock (472 samples, 0.03%)</title><rect x="48.3739%" y="533" width="0.0307%" height="15" fill="rgb(245,45,42)" fg:x="744400" fg:w="472"/><text x="48.6239%" y="543.50"></text></g><g><title>schedule (406 samples, 0.03%)</title><rect x="48.3782%" y="517" width="0.0264%" height="15" fill="rgb(211,115,1)" fg:x="744466" fg:w="406"/><text x="48.6282%" y="527.50"></text></g><g><title>__schedule (406 samples, 0.03%)</title><rect x="48.3782%" y="501" width="0.0264%" height="15" fill="rgb(248,133,52)" fg:x="744466" fg:w="406"/><text x="48.6282%" y="511.50"></text></g><g><title>btrfs_try_tree_write_lock (282 samples, 0.02%)</title><rect x="48.4166%" y="533" width="0.0183%" height="15" fill="rgb(238,100,21)" fg:x="745057" fg:w="282"/><text x="48.6666%" y="543.50"></text></g><g><title>queued_write_lock_slowpath (239 samples, 0.02%)</title><rect x="48.4194%" y="517" width="0.0155%" height="15" fill="rgb(247,144,11)" fg:x="745100" fg:w="239"/><text x="48.6694%" y="527.50"></text></g><g><title>generic_bin_search.constprop.0 (297 samples, 0.02%)</title><rect x="48.4349%" y="533" width="0.0193%" height="15" fill="rgb(206,164,16)" fg:x="745339" fg:w="297"/><text x="48.6849%" y="543.50"></text></g><g><title>__radix_tree_lookup (186 samples, 0.01%)</title><rect x="48.4719%" y="501" width="0.0121%" height="15" fill="rgb(222,34,3)" fg:x="745909" fg:w="186"/><text x="48.7219%" y="511.50"></text></g><g><title>find_extent_buffer (385 samples, 0.03%)</title><rect x="48.4649%" y="517" width="0.0250%" height="15" fill="rgb(248,82,4)" fg:x="745801" fg:w="385"/><text x="48.7149%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (604 samples, 0.04%)</title><rect x="48.4542%" y="533" width="0.0393%" height="15" fill="rgb(228,81,46)" fg:x="745636" fg:w="604"/><text x="48.7042%" y="543.50"></text></g><g><title>btrfs_search_slot (4,006 samples, 0.26%)</title><rect x="48.2522%" y="549" width="0.2603%" height="15" fill="rgb(227,67,47)" fg:x="742528" fg:w="4006"/><text x="48.5022%" y="559.50"></text></g><g><title>unlock_up (281 samples, 0.02%)</title><rect x="48.4943%" y="533" width="0.0183%" height="15" fill="rgb(215,93,53)" fg:x="746253" fg:w="281"/><text x="48.7443%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (4,433 samples, 0.29%)</title><rect x="48.2508%" y="565" width="0.2881%" height="15" fill="rgb(248,194,39)" fg:x="742506" fg:w="4433"/><text x="48.5008%" y="575.50"></text></g><g><title>setup_items_for_insert (405 samples, 0.03%)</title><rect x="48.5126%" y="549" width="0.0263%" height="15" fill="rgb(215,5,19)" fg:x="746534" fg:w="405"/><text x="48.7626%" y="559.50"></text></g><g><title>btrfs_orphan_add (4,746 samples, 0.31%)</title><rect x="48.2369%" y="597" width="0.3084%" height="15" fill="rgb(226,215,51)" fg:x="742292" fg:w="4746"/><text x="48.4869%" y="607.50"></text></g><g><title>btrfs_insert_orphan_item (4,735 samples, 0.31%)</title><rect x="48.2376%" y="581" width="0.3077%" height="15" fill="rgb(225,56,26)" fg:x="742303" fg:w="4735"/><text x="48.4876%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (210 samples, 0.01%)</title><rect x="48.5476%" y="581" width="0.0136%" height="15" fill="rgb(222,75,29)" fg:x="747073" fg:w="210"/><text x="48.7976%" y="591.50"></text></g><g><title>btrfs_update_inode (262 samples, 0.02%)</title><rect x="48.5465%" y="597" width="0.0170%" height="15" fill="rgb(236,139,6)" fg:x="747056" fg:w="262"/><text x="48.7965%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (386 samples, 0.03%)</title><rect x="48.5734%" y="581" width="0.0251%" height="15" fill="rgb(223,137,36)" fg:x="747471" fg:w="386"/><text x="48.8234%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (342 samples, 0.02%)</title><rect x="48.5763%" y="565" width="0.0222%" height="15" fill="rgb(226,99,2)" fg:x="747515" fg:w="342"/><text x="48.8263%" y="575.50"></text></g><g><title>__reserve_bytes (297 samples, 0.02%)</title><rect x="48.5792%" y="549" width="0.0193%" height="15" fill="rgb(206,133,23)" fg:x="747560" fg:w="297"/><text x="48.8292%" y="559.50"></text></g><g><title>btrfs_rmdir (27,103 samples, 1.76%)</title><rect x="46.8490%" y="613" width="1.7613%" height="15" fill="rgb(243,173,15)" fg:x="720934" fg:w="27103"/><text x="47.0990%" y="623.50"></text></g><g><title>start_transaction (670 samples, 0.04%)</title><rect x="48.5667%" y="597" width="0.0435%" height="15" fill="rgb(228,69,28)" fg:x="747367" fg:w="670"/><text x="48.8167%" y="607.50"></text></g><g><title>dentry_unlink_inode (201 samples, 0.01%)</title><rect x="48.6174%" y="613" width="0.0131%" height="15" fill="rgb(212,51,22)" fg:x="748147" fg:w="201"/><text x="48.8674%" y="623.50"></text></g><g><title>__destroy_inode (179 samples, 0.01%)</title><rect x="48.6306%" y="597" width="0.0116%" height="15" fill="rgb(227,113,0)" fg:x="748351" fg:w="179"/><text x="48.8806%" y="607.50"></text></g><g><title>alloc_extent_map (187 samples, 0.01%)</title><rect x="48.6485%" y="565" width="0.0122%" height="15" fill="rgb(252,84,27)" fg:x="748626" fg:w="187"/><text x="48.8985%" y="575.50"></text></g><g><title>kmem_cache_alloc (170 samples, 0.01%)</title><rect x="48.6496%" y="549" width="0.0110%" height="15" fill="rgb(223,145,39)" fg:x="748643" fg:w="170"/><text x="48.8996%" y="559.50"></text></g><g><title>btrfs_drop_extent_cache (322 samples, 0.02%)</title><rect x="48.6465%" y="581" width="0.0209%" height="15" fill="rgb(239,219,30)" fg:x="748595" fg:w="322"/><text x="48.8965%" y="591.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (177 samples, 0.01%)</title><rect x="48.6674%" y="581" width="0.0115%" height="15" fill="rgb(224,196,39)" fg:x="748917" fg:w="177"/><text x="48.9174%" y="591.50"></text></g><g><title>clear_record_extent_bits (199 samples, 0.01%)</title><rect x="48.6846%" y="565" width="0.0129%" height="15" fill="rgb(205,35,43)" fg:x="749181" fg:w="199"/><text x="48.9346%" y="575.50"></text></g><g><title>__clear_extent_bit (181 samples, 0.01%)</title><rect x="48.6857%" y="549" width="0.0118%" height="15" fill="rgb(228,201,21)" fg:x="749199" fg:w="181"/><text x="48.9357%" y="559.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (276 samples, 0.02%)</title><rect x="48.6822%" y="581" width="0.0179%" height="15" fill="rgb(237,118,16)" fg:x="749145" fg:w="276"/><text x="48.9322%" y="591.50"></text></g><g><title>btrfs_destroy_inode (1,123 samples, 0.07%)</title><rect x="48.6423%" y="597" width="0.0730%" height="15" fill="rgb(241,17,19)" fg:x="748530" fg:w="1123"/><text x="48.8923%" y="607.50"></text></g><g><title>rb_erase (232 samples, 0.02%)</title><rect x="48.7002%" y="581" width="0.0151%" height="15" fill="rgb(214,10,25)" fg:x="749421" fg:w="232"/><text x="48.9502%" y="591.50"></text></g><g><title>destroy_inode (1,332 samples, 0.09%)</title><rect x="48.6304%" y="613" width="0.0866%" height="15" fill="rgb(238,37,29)" fg:x="748348" fg:w="1332"/><text x="48.8804%" y="623.50"></text></g><g><title>_raw_spin_lock (163 samples, 0.01%)</title><rect x="48.7630%" y="533" width="0.0106%" height="15" fill="rgb(253,83,25)" fg:x="750388" fg:w="163"/><text x="49.0130%" y="543.50"></text></g><g><title>btrfs_trans_release_metadata (281 samples, 0.02%)</title><rect x="48.7562%" y="565" width="0.0183%" height="15" fill="rgb(234,192,12)" fg:x="750283" fg:w="281"/><text x="49.0062%" y="575.50"></text></g><g><title>btrfs_block_rsv_release (262 samples, 0.02%)</title><rect x="48.7574%" y="549" width="0.0170%" height="15" fill="rgb(241,216,45)" fg:x="750302" fg:w="262"/><text x="49.0074%" y="559.50"></text></g><g><title>__btrfs_end_transaction (631 samples, 0.04%)</title><rect x="48.7403%" y="581" width="0.0410%" height="15" fill="rgb(242,22,33)" fg:x="750039" fg:w="631"/><text x="48.9903%" y="591.50"></text></g><g><title>__radix_tree_lookup (211 samples, 0.01%)</title><rect x="48.7992%" y="549" width="0.0137%" height="15" fill="rgb(231,105,49)" fg:x="750945" fg:w="211"/><text x="49.0492%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (506 samples, 0.03%)</title><rect x="48.7813%" y="581" width="0.0329%" height="15" fill="rgb(218,204,15)" fg:x="750670" fg:w="506"/><text x="49.0313%" y="591.50"></text></g><g><title>radix_tree_delete_item (293 samples, 0.02%)</title><rect x="48.7952%" y="565" width="0.0190%" height="15" fill="rgb(235,138,41)" fg:x="750883" fg:w="293"/><text x="49.0452%" y="575.50"></text></g><g><title>btrfs_alloc_block_rsv (158 samples, 0.01%)</title><rect x="48.8191%" y="581" width="0.0103%" height="15" fill="rgb(246,0,9)" fg:x="751252" fg:w="158"/><text x="49.0691%" y="591.50"></text></g><g><title>btrfs_btree_balance_dirty (176 samples, 0.01%)</title><rect x="48.8294%" y="581" width="0.0114%" height="15" fill="rgb(210,74,4)" fg:x="751410" fg:w="176"/><text x="49.0794%" y="591.50"></text></g><g><title>__btrfs_end_transaction (214 samples, 0.01%)</title><rect x="48.8429%" y="565" width="0.0139%" height="15" fill="rgb(250,60,41)" fg:x="751618" fg:w="214"/><text x="49.0929%" y="575.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (215 samples, 0.01%)</title><rect x="48.8568%" y="565" width="0.0140%" height="15" fill="rgb(220,115,12)" fg:x="751832" fg:w="215"/><text x="49.1068%" y="575.50"></text></g><g><title>btrfs_get_token_32 (959 samples, 0.06%)</title><rect x="48.8974%" y="533" width="0.0623%" height="15" fill="rgb(237,100,13)" fg:x="752456" fg:w="959"/><text x="49.1474%" y="543.50"></text></g><g><title>btrfs_set_token_32 (683 samples, 0.04%)</title><rect x="48.9629%" y="533" width="0.0444%" height="15" fill="rgb(213,55,26)" fg:x="753464" fg:w="683"/><text x="49.2129%" y="543.50"></text></g><g><title>memmove_extent_buffer (477 samples, 0.03%)</title><rect x="49.0171%" y="533" width="0.0310%" height="15" fill="rgb(216,17,4)" fg:x="754298" fg:w="477"/><text x="49.2671%" y="543.50"></text></g><g><title>memmove (361 samples, 0.02%)</title><rect x="49.0246%" y="517" width="0.0235%" height="15" fill="rgb(220,153,47)" fg:x="754414" fg:w="361"/><text x="49.2746%" y="527.50"></text></g><g><title>btrfs_del_items (2,728 samples, 0.18%)</title><rect x="48.8765%" y="549" width="0.1773%" height="15" fill="rgb(215,131,9)" fg:x="752134" fg:w="2728"/><text x="49.1265%" y="559.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (154 samples, 0.01%)</title><rect x="49.0537%" y="549" width="0.0100%" height="15" fill="rgb(233,46,42)" fg:x="754862" fg:w="154"/><text x="49.3037%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (368 samples, 0.02%)</title><rect x="49.0894%" y="469" width="0.0239%" height="15" fill="rgb(226,86,7)" fg:x="755411" fg:w="368"/><text x="49.3394%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (347 samples, 0.02%)</title><rect x="49.0908%" y="453" width="0.0225%" height="15" fill="rgb(239,226,21)" fg:x="755432" fg:w="347"/><text x="49.3408%" y="463.50"></text></g><g><title>prepare_to_wait_event (406 samples, 0.03%)</title><rect x="49.0875%" y="485" width="0.0264%" height="15" fill="rgb(244,137,22)" fg:x="755382" fg:w="406"/><text x="49.3375%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (550 samples, 0.04%)</title><rect x="49.1139%" y="485" width="0.0357%" height="15" fill="rgb(211,139,35)" fg:x="755788" fg:w="550"/><text x="49.3639%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (364 samples, 0.02%)</title><rect x="49.1260%" y="469" width="0.0237%" height="15" fill="rgb(214,62,50)" fg:x="755974" fg:w="364"/><text x="49.3760%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (337 samples, 0.02%)</title><rect x="49.1586%" y="437" width="0.0219%" height="15" fill="rgb(212,113,44)" fg:x="756475" fg:w="337"/><text x="49.4086%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (328 samples, 0.02%)</title><rect x="49.1591%" y="421" width="0.0213%" height="15" fill="rgb(226,150,43)" fg:x="756484" fg:w="328"/><text x="49.4091%" y="431.50"></text></g><g><title>native_write_msr (327 samples, 0.02%)</title><rect x="49.1592%" y="405" width="0.0212%" height="15" fill="rgb(250,71,37)" fg:x="756485" fg:w="327"/><text x="49.4092%" y="415.50"></text></g><g><title>finish_task_switch (366 samples, 0.02%)</title><rect x="49.1569%" y="453" width="0.0238%" height="15" fill="rgb(219,76,19)" fg:x="756450" fg:w="366"/><text x="49.4069%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (1,706 samples, 0.11%)</title><rect x="49.0759%" y="501" width="0.1109%" height="15" fill="rgb(250,39,11)" fg:x="755203" fg:w="1706"/><text x="49.3259%" y="511.50"></text></g><g><title>schedule (571 samples, 0.04%)</title><rect x="49.1497%" y="485" width="0.0371%" height="15" fill="rgb(230,64,31)" fg:x="756338" fg:w="571"/><text x="49.3997%" y="495.50"></text></g><g><title>__schedule (569 samples, 0.04%)</title><rect x="49.1498%" y="469" width="0.0370%" height="15" fill="rgb(208,222,23)" fg:x="756340" fg:w="569"/><text x="49.3998%" y="479.50"></text></g><g><title>__btrfs_read_lock_root_node (1,790 samples, 0.12%)</title><rect x="49.0752%" y="517" width="0.1163%" height="15" fill="rgb(227,125,18)" fg:x="755193" fg:w="1790"/><text x="49.3252%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (356 samples, 0.02%)</title><rect x="49.2009%" y="453" width="0.0231%" height="15" fill="rgb(234,210,9)" fg:x="757126" fg:w="356"/><text x="49.4509%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (352 samples, 0.02%)</title><rect x="49.2011%" y="437" width="0.0229%" height="15" fill="rgb(217,127,24)" fg:x="757130" fg:w="352"/><text x="49.4511%" y="447.50"></text></g><g><title>native_write_msr (349 samples, 0.02%)</title><rect x="49.2013%" y="421" width="0.0227%" height="15" fill="rgb(239,141,48)" fg:x="757133" fg:w="349"/><text x="49.4513%" y="431.50"></text></g><g><title>finish_task_switch (380 samples, 0.02%)</title><rect x="49.2001%" y="469" width="0.0247%" height="15" fill="rgb(227,109,8)" fg:x="757114" fg:w="380"/><text x="49.4501%" y="479.50"></text></g><g><title>__btrfs_tree_lock (575 samples, 0.04%)</title><rect x="49.1916%" y="517" width="0.0374%" height="15" fill="rgb(235,184,23)" fg:x="756983" fg:w="575"/><text x="49.4416%" y="527.50"></text></g><g><title>schedule (524 samples, 0.03%)</title><rect x="49.1949%" y="501" width="0.0341%" height="15" fill="rgb(227,226,48)" fg:x="757034" fg:w="524"/><text x="49.4449%" y="511.50"></text></g><g><title>__schedule (523 samples, 0.03%)</title><rect x="49.1949%" y="485" width="0.0340%" height="15" fill="rgb(206,150,11)" fg:x="757035" fg:w="523"/><text x="49.4449%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (255 samples, 0.02%)</title><rect x="49.2453%" y="469" width="0.0166%" height="15" fill="rgb(254,2,33)" fg:x="757810" fg:w="255"/><text x="49.4953%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (235 samples, 0.02%)</title><rect x="49.2466%" y="453" width="0.0153%" height="15" fill="rgb(243,160,20)" fg:x="757830" fg:w="235"/><text x="49.4966%" y="463.50"></text></g><g><title>prepare_to_wait_event (301 samples, 0.02%)</title><rect x="49.2428%" y="485" width="0.0196%" height="15" fill="rgb(218,208,30)" fg:x="757771" fg:w="301"/><text x="49.4928%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (608 samples, 0.04%)</title><rect x="49.2623%" y="485" width="0.0395%" height="15" fill="rgb(224,120,49)" fg:x="758072" fg:w="608"/><text x="49.5123%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (259 samples, 0.02%)</title><rect x="49.2850%" y="469" width="0.0168%" height="15" fill="rgb(246,12,2)" fg:x="758421" fg:w="259"/><text x="49.5350%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (571 samples, 0.04%)</title><rect x="49.3116%" y="437" width="0.0371%" height="15" fill="rgb(236,117,3)" fg:x="758830" fg:w="571"/><text x="49.5616%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (556 samples, 0.04%)</title><rect x="49.3126%" y="421" width="0.0361%" height="15" fill="rgb(216,128,52)" fg:x="758845" fg:w="556"/><text x="49.5626%" y="431.50"></text></g><g><title>native_write_msr (550 samples, 0.04%)</title><rect x="49.3130%" y="405" width="0.0357%" height="15" fill="rgb(246,145,19)" fg:x="758851" fg:w="550"/><text x="49.5630%" y="415.50"></text></g><g><title>finish_task_switch (620 samples, 0.04%)</title><rect x="49.3100%" y="453" width="0.0403%" height="15" fill="rgb(222,11,46)" fg:x="758806" fg:w="620"/><text x="49.5600%" y="463.50"></text></g><g><title>__btrfs_tree_lock (1,944 samples, 0.13%)</title><rect x="49.2313%" y="501" width="0.1263%" height="15" fill="rgb(245,82,36)" fg:x="757595" fg:w="1944"/><text x="49.4813%" y="511.50"></text></g><g><title>schedule (859 samples, 0.06%)</title><rect x="49.3018%" y="485" width="0.0558%" height="15" fill="rgb(250,73,51)" fg:x="758680" fg:w="859"/><text x="49.5518%" y="495.50"></text></g><g><title>__schedule (850 samples, 0.06%)</title><rect x="49.3024%" y="469" width="0.0552%" height="15" fill="rgb(221,189,23)" fg:x="758689" fg:w="850"/><text x="49.5524%" y="479.50"></text></g><g><title>btrfs_lock_root_node (1,973 samples, 0.13%)</title><rect x="49.2310%" y="517" width="0.1282%" height="15" fill="rgb(210,33,7)" fg:x="757590" fg:w="1973"/><text x="49.4810%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (302 samples, 0.02%)</title><rect x="49.3631%" y="517" width="0.0196%" height="15" fill="rgb(210,107,22)" fg:x="759622" fg:w="302"/><text x="49.6131%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (261 samples, 0.02%)</title><rect x="49.3657%" y="501" width="0.0170%" height="15" fill="rgb(222,116,37)" fg:x="759663" fg:w="261"/><text x="49.6157%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (274 samples, 0.02%)</title><rect x="49.3847%" y="517" width="0.0178%" height="15" fill="rgb(254,17,48)" fg:x="759955" fg:w="274"/><text x="49.6347%" y="527.50"></text></g><g><title>__radix_tree_lookup (177 samples, 0.01%)</title><rect x="49.4194%" y="485" width="0.0115%" height="15" fill="rgb(224,36,32)" fg:x="760489" fg:w="177"/><text x="49.6694%" y="495.50"></text></g><g><title>find_extent_buffer (359 samples, 0.02%)</title><rect x="49.4133%" y="501" width="0.0233%" height="15" fill="rgb(232,90,46)" fg:x="760395" fg:w="359"/><text x="49.6633%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (585 samples, 0.04%)</title><rect x="49.4025%" y="517" width="0.0380%" height="15" fill="rgb(241,66,40)" fg:x="760229" fg:w="585"/><text x="49.6525%" y="527.50"></text></g><g><title>reada_for_balance (198 samples, 0.01%)</title><rect x="49.4405%" y="517" width="0.0129%" height="15" fill="rgb(249,184,29)" fg:x="760814" fg:w="198"/><text x="49.6905%" y="527.50"></text></g><g><title>select_task_rq_fair (240 samples, 0.02%)</title><rect x="49.4911%" y="437" width="0.0156%" height="15" fill="rgb(231,181,1)" fg:x="761592" fg:w="240"/><text x="49.7411%" y="447.50"></text></g><g><title>enqueue_entity (196 samples, 0.01%)</title><rect x="49.5123%" y="405" width="0.0127%" height="15" fill="rgb(224,94,2)" fg:x="761918" fg:w="196"/><text x="49.7623%" y="415.50"></text></g><g><title>enqueue_task_fair (255 samples, 0.02%)</title><rect x="49.5094%" y="421" width="0.0166%" height="15" fill="rgb(229,170,15)" fg:x="761874" fg:w="255"/><text x="49.7594%" y="431.50"></text></g><g><title>ttwu_do_activate (521 samples, 0.03%)</title><rect x="49.5080%" y="437" width="0.0339%" height="15" fill="rgb(240,127,35)" fg:x="761853" fg:w="521"/><text x="49.7580%" y="447.50"></text></g><g><title>psi_task_change (244 samples, 0.02%)</title><rect x="49.5260%" y="421" width="0.0159%" height="15" fill="rgb(248,196,34)" fg:x="762130" fg:w="244"/><text x="49.7760%" y="431.50"></text></g><g><title>psi_group_change (219 samples, 0.01%)</title><rect x="49.5277%" y="405" width="0.0142%" height="15" fill="rgb(236,137,7)" fg:x="762155" fg:w="219"/><text x="49.7777%" y="415.50"></text></g><g><title>__wake_up_common (1,412 samples, 0.09%)</title><rect x="49.4585%" y="485" width="0.0918%" height="15" fill="rgb(235,127,16)" fg:x="761090" fg:w="1412"/><text x="49.7085%" y="495.50"></text></g><g><title>autoremove_wake_function (1,394 samples, 0.09%)</title><rect x="49.4596%" y="469" width="0.0906%" height="15" fill="rgb(250,192,54)" fg:x="761108" fg:w="1394"/><text x="49.7096%" y="479.50"></text></g><g><title>try_to_wake_up (1,365 samples, 0.09%)</title><rect x="49.4615%" y="453" width="0.0887%" height="15" fill="rgb(218,98,20)" fg:x="761137" fg:w="1365"/><text x="49.7115%" y="463.50"></text></g><g><title>__wake_up_common_lock (1,539 samples, 0.10%)</title><rect x="49.4583%" y="501" width="0.1000%" height="15" fill="rgb(230,176,47)" fg:x="761088" fg:w="1539"/><text x="49.7083%" y="511.50"></text></g><g><title>btrfs_lookup_inode (7,607 samples, 0.49%)</title><rect x="49.0653%" y="549" width="0.4943%" height="15" fill="rgb(244,2,33)" fg:x="755040" fg:w="7607"/><text x="49.3153%" y="559.50"></text></g><g><title>btrfs_search_slot (7,582 samples, 0.49%)</title><rect x="49.0669%" y="533" width="0.4927%" height="15" fill="rgb(231,100,17)" fg:x="755065" fg:w="7582"/><text x="49.3169%" y="543.50"></text></g><g><title>unlock_up (1,629 samples, 0.11%)</title><rect x="49.4538%" y="517" width="0.1059%" height="15" fill="rgb(245,23,12)" fg:x="761018" fg:w="1629"/><text x="49.7038%" y="527.50"></text></g><g><title>__wake_up_common (323 samples, 0.02%)</title><rect x="49.5656%" y="517" width="0.0210%" height="15" fill="rgb(249,55,22)" fg:x="762738" fg:w="323"/><text x="49.8156%" y="527.50"></text></g><g><title>autoremove_wake_function (317 samples, 0.02%)</title><rect x="49.5659%" y="501" width="0.0206%" height="15" fill="rgb(207,134,9)" fg:x="762744" fg:w="317"/><text x="49.8159%" y="511.50"></text></g><g><title>try_to_wake_up (307 samples, 0.02%)</title><rect x="49.5666%" y="485" width="0.0200%" height="15" fill="rgb(218,134,0)" fg:x="762754" fg:w="307"/><text x="49.8166%" y="495.50"></text></g><g><title>__wake_up_common_lock (337 samples, 0.02%)</title><rect x="49.5654%" y="533" width="0.0219%" height="15" fill="rgb(213,212,33)" fg:x="762735" fg:w="337"/><text x="49.8154%" y="543.50"></text></g><g><title>btrfs_release_path (496 samples, 0.03%)</title><rect x="49.5642%" y="549" width="0.0322%" height="15" fill="rgb(252,106,18)" fg:x="762717" fg:w="496"/><text x="49.8142%" y="559.50"></text></g><g><title>__btrfs_update_delayed_inode (11,369 samples, 0.74%)</title><rect x="48.8708%" y="565" width="0.7388%" height="15" fill="rgb(208,126,42)" fg:x="752047" fg:w="11369"/><text x="49.1208%" y="575.50"></text></g><g><title>btrfs_btree_balance_dirty (246 samples, 0.02%)</title><rect x="49.6151%" y="565" width="0.0160%" height="15" fill="rgb(246,175,29)" fg:x="763500" fg:w="246"/><text x="49.8651%" y="575.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (12,602 samples, 0.82%)</title><rect x="48.8409%" y="581" width="0.8189%" height="15" fill="rgb(215,13,50)" fg:x="751586" fg:w="12602"/><text x="49.0909%" y="591.50"></text></g><g><title>start_transaction (213 samples, 0.01%)</title><rect x="49.6459%" y="565" width="0.0138%" height="15" fill="rgb(216,172,15)" fg:x="763975" fg:w="213"/><text x="49.8959%" y="575.50"></text></g><g><title>btrfs_del_items (203 samples, 0.01%)</title><rect x="49.6610%" y="565" width="0.0132%" height="15" fill="rgb(212,103,13)" fg:x="764207" fg:w="203"/><text x="49.9110%" y="575.50"></text></g><g><title>__wake_up_common (197 samples, 0.01%)</title><rect x="49.6755%" y="517" width="0.0128%" height="15" fill="rgb(231,171,36)" fg:x="764430" fg:w="197"/><text x="49.9255%" y="527.50"></text></g><g><title>autoremove_wake_function (194 samples, 0.01%)</title><rect x="49.6757%" y="501" width="0.0126%" height="15" fill="rgb(250,123,20)" fg:x="764433" fg:w="194"/><text x="49.9257%" y="511.50"></text></g><g><title>try_to_wake_up (192 samples, 0.01%)</title><rect x="49.6758%" y="485" width="0.0125%" height="15" fill="rgb(212,53,50)" fg:x="764435" fg:w="192"/><text x="49.9258%" y="495.50"></text></g><g><title>__wake_up_common_lock (205 samples, 0.01%)</title><rect x="49.6754%" y="533" width="0.0133%" height="15" fill="rgb(243,54,12)" fg:x="764429" fg:w="205"/><text x="49.9254%" y="543.50"></text></g><g><title>btrfs_free_path (382 samples, 0.02%)</title><rect x="49.6742%" y="565" width="0.0248%" height="15" fill="rgb(234,101,34)" fg:x="764410" fg:w="382"/><text x="49.9242%" y="575.50"></text></g><g><title>btrfs_release_path (379 samples, 0.02%)</title><rect x="49.6744%" y="549" width="0.0246%" height="15" fill="rgb(254,67,22)" fg:x="764413" fg:w="379"/><text x="49.9244%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (211 samples, 0.01%)</title><rect x="49.7167%" y="501" width="0.0137%" height="15" fill="rgb(250,35,47)" fg:x="765064" fg:w="211"/><text x="49.9667%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (198 samples, 0.01%)</title><rect x="49.7175%" y="485" width="0.0129%" height="15" fill="rgb(226,126,38)" fg:x="765077" fg:w="198"/><text x="49.9675%" y="495.50"></text></g><g><title>finish_wait (218 samples, 0.01%)</title><rect x="49.7163%" y="517" width="0.0142%" height="15" fill="rgb(216,138,53)" fg:x="765058" fg:w="218"/><text x="49.9663%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (742 samples, 0.05%)</title><rect x="49.7348%" y="501" width="0.0482%" height="15" fill="rgb(246,199,43)" fg:x="765342" fg:w="742"/><text x="49.9848%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (713 samples, 0.05%)</title><rect x="49.7367%" y="485" width="0.0463%" height="15" fill="rgb(232,125,11)" fg:x="765371" fg:w="713"/><text x="49.9867%" y="495.50"></text></g><g><title>prepare_to_wait_event (829 samples, 0.05%)</title><rect x="49.7305%" y="517" width="0.0539%" height="15" fill="rgb(218,219,45)" fg:x="765277" fg:w="829"/><text x="49.9805%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (527 samples, 0.03%)</title><rect x="49.7844%" y="517" width="0.0342%" height="15" fill="rgb(216,102,54)" fg:x="766106" fg:w="527"/><text x="50.0344%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (348 samples, 0.02%)</title><rect x="49.7960%" y="501" width="0.0226%" height="15" fill="rgb(250,228,7)" fg:x="766285" fg:w="348"/><text x="50.0460%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (958 samples, 0.06%)</title><rect x="49.8363%" y="469" width="0.0623%" height="15" fill="rgb(226,125,25)" fg:x="766905" fg:w="958"/><text x="50.0863%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (920 samples, 0.06%)</title><rect x="49.8388%" y="453" width="0.0598%" height="15" fill="rgb(224,165,27)" fg:x="766943" fg:w="920"/><text x="50.0888%" y="463.50"></text></g><g><title>native_write_msr (904 samples, 0.06%)</title><rect x="49.8398%" y="437" width="0.0587%" height="15" fill="rgb(233,86,3)" fg:x="766959" fg:w="904"/><text x="50.0898%" y="447.50"></text></g><g><title>finish_task_switch (1,031 samples, 0.07%)</title><rect x="49.8334%" y="485" width="0.0670%" height="15" fill="rgb(228,116,20)" fg:x="766860" fg:w="1031"/><text x="50.0834%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (3,129 samples, 0.20%)</title><rect x="49.7099%" y="533" width="0.2033%" height="15" fill="rgb(209,192,17)" fg:x="764960" fg:w="3129"/><text x="49.9599%" y="543.50"></text></g><g><title>schedule (1,456 samples, 0.09%)</title><rect x="49.8187%" y="517" width="0.0946%" height="15" fill="rgb(224,88,34)" fg:x="766633" fg:w="1456"/><text x="50.0687%" y="527.50"></text></g><g><title>__schedule (1,443 samples, 0.09%)</title><rect x="49.8195%" y="501" width="0.0938%" height="15" fill="rgb(233,38,6)" fg:x="766646" fg:w="1443"/><text x="50.0695%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (3,192 samples, 0.21%)</title><rect x="49.7093%" y="549" width="0.2074%" height="15" fill="rgb(212,59,30)" fg:x="764950" fg:w="3192"/><text x="49.9593%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (205 samples, 0.01%)</title><rect x="49.9202%" y="485" width="0.0133%" height="15" fill="rgb(213,80,3)" fg:x="768196" fg:w="205"/><text x="50.1702%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (202 samples, 0.01%)</title><rect x="49.9204%" y="469" width="0.0131%" height="15" fill="rgb(251,178,7)" fg:x="768199" fg:w="202"/><text x="50.1704%" y="479.50"></text></g><g><title>native_write_msr (201 samples, 0.01%)</title><rect x="49.9205%" y="453" width="0.0131%" height="15" fill="rgb(213,154,26)" fg:x="768200" fg:w="201"/><text x="50.1705%" y="463.50"></text></g><g><title>finish_task_switch (225 samples, 0.01%)</title><rect x="49.9196%" y="501" width="0.0146%" height="15" fill="rgb(238,165,49)" fg:x="768186" fg:w="225"/><text x="50.1696%" y="511.50"></text></g><g><title>__btrfs_tree_lock (283 samples, 0.02%)</title><rect x="49.9167%" y="549" width="0.0184%" height="15" fill="rgb(248,91,46)" fg:x="768142" fg:w="283"/><text x="50.1667%" y="559.50"></text></g><g><title>schedule (272 samples, 0.02%)</title><rect x="49.9174%" y="533" width="0.0177%" height="15" fill="rgb(244,21,52)" fg:x="768153" fg:w="272"/><text x="50.1674%" y="543.50"></text></g><g><title>__schedule (270 samples, 0.02%)</title><rect x="49.9176%" y="517" width="0.0175%" height="15" fill="rgb(247,122,20)" fg:x="768155" fg:w="270"/><text x="50.1676%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (382 samples, 0.02%)</title><rect x="49.9562%" y="501" width="0.0248%" height="15" fill="rgb(218,27,9)" fg:x="768749" fg:w="382"/><text x="50.2062%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (357 samples, 0.02%)</title><rect x="49.9578%" y="485" width="0.0232%" height="15" fill="rgb(246,7,6)" fg:x="768774" fg:w="357"/><text x="50.2078%" y="495.50"></text></g><g><title>prepare_to_wait_event (435 samples, 0.03%)</title><rect x="49.9536%" y="517" width="0.0283%" height="15" fill="rgb(227,135,54)" fg:x="768710" fg:w="435"/><text x="50.2036%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (767 samples, 0.05%)</title><rect x="49.9819%" y="517" width="0.0498%" height="15" fill="rgb(247,14,11)" fg:x="769145" fg:w="767"/><text x="50.2319%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (317 samples, 0.02%)</title><rect x="50.0111%" y="501" width="0.0206%" height="15" fill="rgb(206,149,34)" fg:x="769595" fg:w="317"/><text x="50.2611%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (818 samples, 0.05%)</title><rect x="50.0479%" y="469" width="0.0532%" height="15" fill="rgb(227,228,4)" fg:x="770161" fg:w="818"/><text x="50.2979%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (789 samples, 0.05%)</title><rect x="50.0498%" y="453" width="0.0513%" height="15" fill="rgb(238,218,28)" fg:x="770190" fg:w="789"/><text x="50.2998%" y="463.50"></text></g><g><title>native_write_msr (781 samples, 0.05%)</title><rect x="50.0503%" y="437" width="0.0508%" height="15" fill="rgb(252,86,40)" fg:x="770198" fg:w="781"/><text x="50.3003%" y="447.50"></text></g><g><title>finish_task_switch (881 samples, 0.06%)</title><rect x="50.0451%" y="485" width="0.0573%" height="15" fill="rgb(251,225,11)" fg:x="770117" fg:w="881"/><text x="50.2951%" y="495.50"></text></g><g><title>__btrfs_tree_lock (2,751 samples, 0.18%)</title><rect x="49.9370%" y="533" width="0.1788%" height="15" fill="rgb(206,46,49)" fg:x="768454" fg:w="2751"/><text x="50.1870%" y="543.50"></text></g><g><title>schedule (1,293 samples, 0.08%)</title><rect x="50.0317%" y="517" width="0.0840%" height="15" fill="rgb(245,128,24)" fg:x="769912" fg:w="1293"/><text x="50.2817%" y="527.50"></text></g><g><title>__schedule (1,282 samples, 0.08%)</title><rect x="50.0325%" y="501" width="0.0833%" height="15" fill="rgb(219,177,34)" fg:x="769923" fg:w="1282"/><text x="50.2825%" y="511.50"></text></g><g><title>btrfs_lock_root_node (2,789 samples, 0.18%)</title><rect x="49.9369%" y="549" width="0.1812%" height="15" fill="rgb(218,60,48)" fg:x="768452" fg:w="2789"/><text x="50.1869%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (208 samples, 0.01%)</title><rect x="50.1251%" y="549" width="0.0135%" height="15" fill="rgb(221,11,5)" fg:x="771349" fg:w="208"/><text x="50.3751%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (171 samples, 0.01%)</title><rect x="50.1275%" y="533" width="0.0111%" height="15" fill="rgb(220,148,13)" fg:x="771386" fg:w="171"/><text x="50.3775%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (341 samples, 0.02%)</title><rect x="50.1403%" y="549" width="0.0222%" height="15" fill="rgb(210,16,3)" fg:x="771583" fg:w="341"/><text x="50.3903%" y="559.50"></text></g><g><title>__radix_tree_lookup (179 samples, 0.01%)</title><rect x="50.1829%" y="517" width="0.0116%" height="15" fill="rgb(236,80,2)" fg:x="772238" fg:w="179"/><text x="50.4329%" y="527.50"></text></g><g><title>find_extent_buffer (380 samples, 0.02%)</title><rect x="50.1752%" y="533" width="0.0247%" height="15" fill="rgb(239,129,19)" fg:x="772119" fg:w="380"/><text x="50.4252%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (637 samples, 0.04%)</title><rect x="50.1625%" y="549" width="0.0414%" height="15" fill="rgb(220,106,35)" fg:x="771924" fg:w="637"/><text x="50.4125%" y="559.50"></text></g><g><title>__wake_up_common (384 samples, 0.02%)</title><rect x="50.2095%" y="517" width="0.0250%" height="15" fill="rgb(252,139,45)" fg:x="772647" fg:w="384"/><text x="50.4595%" y="527.50"></text></g><g><title>autoremove_wake_function (373 samples, 0.02%)</title><rect x="50.2102%" y="501" width="0.0242%" height="15" fill="rgb(229,8,36)" fg:x="772658" fg:w="373"/><text x="50.4602%" y="511.50"></text></g><g><title>try_to_wake_up (366 samples, 0.02%)</title><rect x="50.2106%" y="485" width="0.0238%" height="15" fill="rgb(230,126,33)" fg:x="772665" fg:w="366"/><text x="50.4606%" y="495.50"></text></g><g><title>__wake_up_common_lock (414 samples, 0.03%)</title><rect x="50.2093%" y="533" width="0.0269%" height="15" fill="rgb(239,140,21)" fg:x="772645" fg:w="414"/><text x="50.4593%" y="543.50"></text></g><g><title>btrfs_search_slot (8,291 samples, 0.54%)</title><rect x="49.6990%" y="565" width="0.5388%" height="15" fill="rgb(254,104,9)" fg:x="764792" fg:w="8291"/><text x="49.9490%" y="575.50"></text></g><g><title>unlock_up (502 samples, 0.03%)</title><rect x="50.2052%" y="549" width="0.0326%" height="15" fill="rgb(239,52,14)" fg:x="772581" fg:w="502"/><text x="50.4552%" y="559.50"></text></g><g><title>btrfs_del_orphan_item (8,991 samples, 0.58%)</title><rect x="49.6598%" y="581" width="0.5843%" height="15" fill="rgb(208,227,44)" fg:x="764188" fg:w="8991"/><text x="49.9098%" y="591.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (176 samples, 0.01%)</title><rect x="50.2641%" y="565" width="0.0114%" height="15" fill="rgb(246,18,19)" fg:x="773487" fg:w="176"/><text x="50.5141%" y="575.50"></text></g><g><title>clear_state_bit (224 samples, 0.01%)</title><rect x="50.2901%" y="549" width="0.0146%" height="15" fill="rgb(235,228,25)" fg:x="773888" fg:w="224"/><text x="50.5401%" y="559.50"></text></g><g><title>__clear_extent_bit (500 samples, 0.03%)</title><rect x="50.2755%" y="565" width="0.0325%" height="15" fill="rgb(240,156,20)" fg:x="773663" fg:w="500"/><text x="50.5255%" y="575.50"></text></g><g><title>_find_next_bit.constprop.0 (160 samples, 0.01%)</title><rect x="50.3318%" y="485" width="0.0104%" height="15" fill="rgb(224,8,20)" fg:x="774530" fg:w="160"/><text x="50.5818%" y="495.50"></text></g><g><title>steal_from_bitmap.part.0 (193 samples, 0.01%)</title><rect x="50.3302%" y="501" width="0.0125%" height="15" fill="rgb(214,12,52)" fg:x="774505" fg:w="193"/><text x="50.5802%" y="511.50"></text></g><g><title>__btrfs_add_free_space (260 samples, 0.02%)</title><rect x="50.3283%" y="517" width="0.0169%" height="15" fill="rgb(211,220,47)" fg:x="774475" fg:w="260"/><text x="50.5783%" y="527.50"></text></g><g><title>btrfs_free_tree_block (366 samples, 0.02%)</title><rect x="50.3280%" y="533" width="0.0238%" height="15" fill="rgb(250,173,5)" fg:x="774471" fg:w="366"/><text x="50.5780%" y="543.50"></text></g><g><title>btrfs_del_leaf (425 samples, 0.03%)</title><rect x="50.3278%" y="549" width="0.0276%" height="15" fill="rgb(250,125,52)" fg:x="774468" fg:w="425"/><text x="50.5778%" y="559.50"></text></g><g><title>btrfs_get_token_32 (982 samples, 0.06%)</title><rect x="50.3626%" y="549" width="0.0638%" height="15" fill="rgb(209,133,18)" fg:x="775003" fg:w="982"/><text x="50.6126%" y="559.50"></text></g><g><title>btrfs_set_token_32 (784 samples, 0.05%)</title><rect x="50.4300%" y="549" width="0.0509%" height="15" fill="rgb(216,173,22)" fg:x="776040" fg:w="784"/><text x="50.6800%" y="559.50"></text></g><g><title>memmove_extent_buffer (464 samples, 0.03%)</title><rect x="50.4940%" y="549" width="0.0302%" height="15" fill="rgb(205,3,22)" fg:x="777025" fg:w="464"/><text x="50.7440%" y="559.50"></text></g><g><title>memmove (381 samples, 0.02%)</title><rect x="50.4994%" y="533" width="0.0248%" height="15" fill="rgb(248,22,20)" fg:x="777108" fg:w="381"/><text x="50.7494%" y="543.50"></text></g><g><title>push_leaf_left (199 samples, 0.01%)</title><rect x="50.5241%" y="549" width="0.0129%" height="15" fill="rgb(233,6,29)" fg:x="777489" fg:w="199"/><text x="50.7741%" y="559.50"></text></g><g><title>push_leaf_right (189 samples, 0.01%)</title><rect x="50.5371%" y="549" width="0.0123%" height="15" fill="rgb(240,22,54)" fg:x="777688" fg:w="189"/><text x="50.7871%" y="559.50"></text></g><g><title>btrfs_del_items (3,733 samples, 0.24%)</title><rect x="50.3081%" y="565" width="0.2426%" height="15" fill="rgb(231,133,32)" fg:x="774165" fg:w="3733"/><text x="50.5581%" y="575.50"></text></g><g><title>alloc_extent_map (246 samples, 0.02%)</title><rect x="50.5558%" y="549" width="0.0160%" height="15" fill="rgb(248,193,4)" fg:x="777976" fg:w="246"/><text x="50.8058%" y="559.50"></text></g><g><title>kmem_cache_alloc (186 samples, 0.01%)</title><rect x="50.5597%" y="533" width="0.0121%" height="15" fill="rgb(211,178,46)" fg:x="778036" fg:w="186"/><text x="50.8097%" y="543.50"></text></g><g><title>btrfs_drop_extent_cache (459 samples, 0.03%)</title><rect x="50.5507%" y="565" width="0.0298%" height="15" fill="rgb(224,5,42)" fg:x="777898" fg:w="459"/><text x="50.8007%" y="575.50"></text></g><g><title>enqueue_task_fair (164 samples, 0.01%)</title><rect x="50.6130%" y="453" width="0.0107%" height="15" fill="rgb(239,176,25)" fg:x="778856" fg:w="164"/><text x="50.8630%" y="463.50"></text></g><g><title>ttwu_do_activate (327 samples, 0.02%)</title><rect x="50.6121%" y="469" width="0.0212%" height="15" fill="rgb(245,187,50)" fg:x="778843" fg:w="327"/><text x="50.8621%" y="479.50"></text></g><g><title>__wake_up_common (904 samples, 0.06%)</title><rect x="50.5823%" y="517" width="0.0587%" height="15" fill="rgb(248,24,15)" fg:x="778384" fg:w="904"/><text x="50.8323%" y="527.50"></text></g><g><title>autoremove_wake_function (877 samples, 0.06%)</title><rect x="50.5840%" y="501" width="0.0570%" height="15" fill="rgb(205,166,13)" fg:x="778411" fg:w="877"/><text x="50.8340%" y="511.50"></text></g><g><title>try_to_wake_up (865 samples, 0.06%)</title><rect x="50.5848%" y="485" width="0.0562%" height="15" fill="rgb(208,114,23)" fg:x="778423" fg:w="865"/><text x="50.8348%" y="495.50"></text></g><g><title>__wake_up_common_lock (924 samples, 0.06%)</title><rect x="50.5823%" y="533" width="0.0600%" height="15" fill="rgb(239,127,18)" fg:x="778384" fg:w="924"/><text x="50.8323%" y="543.50"></text></g><g><title>btrfs_free_path (1,092 samples, 0.07%)</title><rect x="50.5805%" y="565" width="0.0710%" height="15" fill="rgb(219,154,28)" fg:x="778357" fg:w="1092"/><text x="50.8305%" y="575.50"></text></g><g><title>btrfs_release_path (1,088 samples, 0.07%)</title><rect x="50.5808%" y="549" width="0.0707%" height="15" fill="rgb(225,157,23)" fg:x="778361" fg:w="1088"/><text x="50.8308%" y="559.50"></text></g><g><title>_raw_spin_lock (199 samples, 0.01%)</title><rect x="50.6680%" y="517" width="0.0129%" height="15" fill="rgb(219,8,6)" fg:x="779703" fg:w="199"/><text x="50.9180%" y="527.50"></text></g><g><title>btrfs_block_rsv_release (298 samples, 0.02%)</title><rect x="50.6638%" y="533" width="0.0194%" height="15" fill="rgb(212,47,6)" fg:x="779639" fg:w="298"/><text x="50.9138%" y="543.50"></text></g><g><title>finish_one_item (162 samples, 0.01%)</title><rect x="50.6906%" y="517" width="0.0105%" height="15" fill="rgb(224,190,4)" fg:x="780051" fg:w="162"/><text x="50.9406%" y="527.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (413 samples, 0.03%)</title><rect x="50.6832%" y="533" width="0.0268%" height="15" fill="rgb(239,183,29)" fg:x="779937" fg:w="413"/><text x="50.9332%" y="543.50"></text></g><g><title>kfree (252 samples, 0.02%)</title><rect x="50.7100%" y="533" width="0.0164%" height="15" fill="rgb(213,57,7)" fg:x="780350" fg:w="252"/><text x="50.9600%" y="543.50"></text></g><g><title>__btrfs_kill_delayed_node (1,091 samples, 0.07%)</title><rect x="50.6596%" y="549" width="0.0709%" height="15" fill="rgb(216,148,1)" fg:x="779573" fg:w="1091"/><text x="50.9096%" y="559.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,152 samples, 0.07%)</title><rect x="50.6587%" y="565" width="0.0749%" height="15" fill="rgb(236,182,29)" fg:x="779560" fg:w="1152"/><text x="50.9087%" y="575.50"></text></g><g><title>finish_wait (175 samples, 0.01%)</title><rect x="50.7525%" y="517" width="0.0114%" height="15" fill="rgb(244,120,48)" fg:x="781004" fg:w="175"/><text x="51.0025%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (166 samples, 0.01%)</title><rect x="50.7531%" y="501" width="0.0108%" height="15" fill="rgb(206,71,34)" fg:x="781013" fg:w="166"/><text x="51.0031%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (159 samples, 0.01%)</title><rect x="50.7536%" y="485" width="0.0103%" height="15" fill="rgb(242,32,6)" fg:x="781020" fg:w="159"/><text x="51.0036%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (490 samples, 0.03%)</title><rect x="50.7666%" y="501" width="0.0318%" height="15" fill="rgb(241,35,3)" fg:x="781220" fg:w="490"/><text x="51.0166%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (467 samples, 0.03%)</title><rect x="50.7681%" y="485" width="0.0303%" height="15" fill="rgb(222,62,19)" fg:x="781243" fg:w="467"/><text x="51.0181%" y="495.50"></text></g><g><title>prepare_to_wait_event (539 samples, 0.04%)</title><rect x="50.7639%" y="517" width="0.0350%" height="15" fill="rgb(223,110,41)" fg:x="781179" fg:w="539"/><text x="51.0139%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (609 samples, 0.04%)</title><rect x="50.7989%" y="517" width="0.0396%" height="15" fill="rgb(208,224,4)" fg:x="781718" fg:w="609"/><text x="51.0489%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (403 samples, 0.03%)</title><rect x="50.8123%" y="501" width="0.0262%" height="15" fill="rgb(241,137,19)" fg:x="781924" fg:w="403"/><text x="51.0623%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (587 samples, 0.04%)</title><rect x="50.8487%" y="469" width="0.0381%" height="15" fill="rgb(244,24,17)" fg:x="782483" fg:w="587"/><text x="51.0987%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (572 samples, 0.04%)</title><rect x="50.8496%" y="453" width="0.0372%" height="15" fill="rgb(245,178,49)" fg:x="782498" fg:w="572"/><text x="51.0996%" y="463.50"></text></g><g><title>native_write_msr (560 samples, 0.04%)</title><rect x="50.8504%" y="437" width="0.0364%" height="15" fill="rgb(219,160,38)" fg:x="782510" fg:w="560"/><text x="51.1004%" y="447.50"></text></g><g><title>finish_task_switch (635 samples, 0.04%)</title><rect x="50.8468%" y="485" width="0.0413%" height="15" fill="rgb(228,137,14)" fg:x="782455" fg:w="635"/><text x="51.0968%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (2,242 samples, 0.15%)</title><rect x="50.7486%" y="533" width="0.1457%" height="15" fill="rgb(237,134,11)" fg:x="780943" fg:w="2242"/><text x="50.9986%" y="543.50"></text></g><g><title>schedule (858 samples, 0.06%)</title><rect x="50.8385%" y="517" width="0.0558%" height="15" fill="rgb(211,126,44)" fg:x="782327" fg:w="858"/><text x="51.0885%" y="527.50"></text></g><g><title>__schedule (857 samples, 0.06%)</title><rect x="50.8386%" y="501" width="0.0557%" height="15" fill="rgb(226,171,33)" fg:x="782328" fg:w="857"/><text x="51.0886%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (2,330 samples, 0.15%)</title><rect x="50.7479%" y="549" width="0.1514%" height="15" fill="rgb(253,99,13)" fg:x="780932" fg:w="2330"/><text x="50.9979%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (376 samples, 0.02%)</title><rect x="50.9080%" y="485" width="0.0244%" height="15" fill="rgb(244,48,7)" fg:x="783397" fg:w="376"/><text x="51.1580%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (372 samples, 0.02%)</title><rect x="50.9083%" y="469" width="0.0242%" height="15" fill="rgb(244,217,54)" fg:x="783401" fg:w="372"/><text x="51.1583%" y="479.50"></text></g><g><title>native_write_msr (368 samples, 0.02%)</title><rect x="50.9086%" y="453" width="0.0239%" height="15" fill="rgb(224,15,18)" fg:x="783405" fg:w="368"/><text x="51.1586%" y="463.50"></text></g><g><title>finish_task_switch (400 samples, 0.03%)</title><rect x="50.9071%" y="501" width="0.0260%" height="15" fill="rgb(244,99,12)" fg:x="783382" fg:w="400"/><text x="51.1571%" y="511.50"></text></g><g><title>__btrfs_tree_lock (586 samples, 0.04%)</title><rect x="50.8993%" y="549" width="0.0381%" height="15" fill="rgb(233,226,8)" fg:x="783262" fg:w="586"/><text x="51.1493%" y="559.50"></text></g><g><title>schedule (547 samples, 0.04%)</title><rect x="50.9018%" y="533" width="0.0355%" height="15" fill="rgb(229,211,3)" fg:x="783301" fg:w="547"/><text x="51.1518%" y="543.50"></text></g><g><title>__schedule (545 samples, 0.04%)</title><rect x="50.9019%" y="517" width="0.0354%" height="15" fill="rgb(216,140,21)" fg:x="783303" fg:w="545"/><text x="51.1519%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (290 samples, 0.02%)</title><rect x="50.9567%" y="501" width="0.0188%" height="15" fill="rgb(234,122,30)" fg:x="784145" fg:w="290"/><text x="51.2067%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (269 samples, 0.02%)</title><rect x="50.9580%" y="485" width="0.0175%" height="15" fill="rgb(236,25,46)" fg:x="784166" fg:w="269"/><text x="51.2080%" y="495.50"></text></g><g><title>prepare_to_wait_event (327 samples, 0.02%)</title><rect x="50.9548%" y="517" width="0.0212%" height="15" fill="rgb(217,52,54)" fg:x="784116" fg:w="327"/><text x="51.2048%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (658 samples, 0.04%)</title><rect x="50.9760%" y="517" width="0.0428%" height="15" fill="rgb(222,29,26)" fg:x="784443" fg:w="658"/><text x="51.2260%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (251 samples, 0.02%)</title><rect x="51.0025%" y="501" width="0.0163%" height="15" fill="rgb(216,177,29)" fg:x="784850" fg:w="251"/><text x="51.2525%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (554 samples, 0.04%)</title><rect x="51.0290%" y="469" width="0.0360%" height="15" fill="rgb(247,136,51)" fg:x="785258" fg:w="554"/><text x="51.2790%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (531 samples, 0.03%)</title><rect x="51.0305%" y="453" width="0.0345%" height="15" fill="rgb(231,47,47)" fg:x="785281" fg:w="531"/><text x="51.2805%" y="463.50"></text></g><g><title>native_write_msr (525 samples, 0.03%)</title><rect x="51.0309%" y="437" width="0.0341%" height="15" fill="rgb(211,192,36)" fg:x="785287" fg:w="525"/><text x="51.2809%" y="447.50"></text></g><g><title>finish_task_switch (595 samples, 0.04%)</title><rect x="51.0274%" y="485" width="0.0387%" height="15" fill="rgb(229,156,32)" fg:x="785234" fg:w="595"/><text x="51.2774%" y="495.50"></text></g><g><title>__btrfs_tree_lock (2,029 samples, 0.13%)</title><rect x="50.9428%" y="533" width="0.1319%" height="15" fill="rgb(248,213,20)" fg:x="783932" fg:w="2029"/><text x="51.1928%" y="543.50"></text></g><g><title>schedule (860 samples, 0.06%)</title><rect x="51.0188%" y="517" width="0.0559%" height="15" fill="rgb(217,64,7)" fg:x="785101" fg:w="860"/><text x="51.2688%" y="527.50"></text></g><g><title>__schedule (856 samples, 0.06%)</title><rect x="51.0190%" y="501" width="0.0556%" height="15" fill="rgb(232,142,8)" fg:x="785105" fg:w="856"/><text x="51.2690%" y="511.50"></text></g><g><title>btrfs_lock_root_node (2,065 samples, 0.13%)</title><rect x="50.9428%" y="549" width="0.1342%" height="15" fill="rgb(224,92,44)" fg:x="783931" fg:w="2065"/><text x="51.1928%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (383 samples, 0.02%)</title><rect x="51.0849%" y="549" width="0.0249%" height="15" fill="rgb(214,169,17)" fg:x="786119" fg:w="383"/><text x="51.3349%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (343 samples, 0.02%)</title><rect x="51.0875%" y="533" width="0.0223%" height="15" fill="rgb(210,59,37)" fg:x="786159" fg:w="343"/><text x="51.3375%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (313 samples, 0.02%)</title><rect x="51.1119%" y="549" width="0.0203%" height="15" fill="rgb(214,116,48)" fg:x="786534" fg:w="313"/><text x="51.3619%" y="559.50"></text></g><g><title>__radix_tree_lookup (168 samples, 0.01%)</title><rect x="51.1484%" y="517" width="0.0109%" height="15" fill="rgb(244,191,6)" fg:x="787096" fg:w="168"/><text x="51.3984%" y="527.50"></text></g><g><title>find_extent_buffer (318 samples, 0.02%)</title><rect x="51.1439%" y="533" width="0.0207%" height="15" fill="rgb(241,50,52)" fg:x="787026" fg:w="318"/><text x="51.3939%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (564 samples, 0.04%)</title><rect x="51.1322%" y="549" width="0.0367%" height="15" fill="rgb(236,75,39)" fg:x="786847" fg:w="564"/><text x="51.3822%" y="559.50"></text></g><g><title>reada_for_balance (209 samples, 0.01%)</title><rect x="51.1689%" y="549" width="0.0136%" height="15" fill="rgb(236,99,0)" fg:x="787411" fg:w="209"/><text x="51.4189%" y="559.50"></text></g><g><title>select_task_rq_fair (213 samples, 0.01%)</title><rect x="51.2219%" y="469" width="0.0138%" height="15" fill="rgb(207,202,15)" fg:x="788226" fg:w="213"/><text x="51.4719%" y="479.50"></text></g><g><title>enqueue_entity (198 samples, 0.01%)</title><rect x="51.2403%" y="437" width="0.0129%" height="15" fill="rgb(233,207,14)" fg:x="788510" fg:w="198"/><text x="51.4903%" y="447.50"></text></g><g><title>enqueue_task_fair (243 samples, 0.02%)</title><rect x="51.2384%" y="453" width="0.0158%" height="15" fill="rgb(226,27,51)" fg:x="788481" fg:w="243"/><text x="51.4884%" y="463.50"></text></g><g><title>ttwu_do_activate (493 samples, 0.03%)</title><rect x="51.2373%" y="469" width="0.0320%" height="15" fill="rgb(206,104,42)" fg:x="788463" fg:w="493"/><text x="51.4873%" y="479.50"></text></g><g><title>psi_task_change (232 samples, 0.02%)</title><rect x="51.2542%" y="453" width="0.0151%" height="15" fill="rgb(212,225,4)" fg:x="788724" fg:w="232"/><text x="51.5042%" y="463.50"></text></g><g><title>psi_group_change (203 samples, 0.01%)</title><rect x="51.2561%" y="437" width="0.0132%" height="15" fill="rgb(233,96,42)" fg:x="788753" fg:w="203"/><text x="51.5061%" y="447.50"></text></g><g><title>__wake_up_common (1,369 samples, 0.09%)</title><rect x="51.1880%" y="517" width="0.0890%" height="15" fill="rgb(229,21,32)" fg:x="787705" fg:w="1369"/><text x="51.4380%" y="527.50"></text></g><g><title>autoremove_wake_function (1,345 samples, 0.09%)</title><rect x="51.1896%" y="501" width="0.0874%" height="15" fill="rgb(226,216,24)" fg:x="787729" fg:w="1345"/><text x="51.4396%" y="511.50"></text></g><g><title>try_to_wake_up (1,322 samples, 0.09%)</title><rect x="51.1911%" y="485" width="0.0859%" height="15" fill="rgb(221,163,17)" fg:x="787752" fg:w="1322"/><text x="51.4411%" y="495.50"></text></g><g><title>__wake_up_common_lock (1,467 samples, 0.10%)</title><rect x="51.1879%" y="533" width="0.0953%" height="15" fill="rgb(216,216,42)" fg:x="787703" fg:w="1467"/><text x="51.4379%" y="543.50"></text></g><g><title>btrfs_search_slot (8,440 samples, 0.55%)</title><rect x="50.7371%" y="565" width="0.5485%" height="15" fill="rgb(240,118,7)" fg:x="780766" fg:w="8440"/><text x="50.9871%" y="575.50"></text></g><g><title>unlock_up (1,576 samples, 0.10%)</title><rect x="51.1831%" y="549" width="0.1024%" height="15" fill="rgb(221,67,37)" fg:x="787630" fg:w="1576"/><text x="51.4331%" y="559.50"></text></g><g><title>alloc_extent_state (155 samples, 0.01%)</title><rect x="51.3003%" y="533" width="0.0101%" height="15" fill="rgb(241,32,44)" fg:x="789433" fg:w="155"/><text x="51.5503%" y="543.50"></text></g><g><title>lock_extent_bits (436 samples, 0.03%)</title><rect x="51.2915%" y="565" width="0.0283%" height="15" fill="rgb(235,204,43)" fg:x="789298" fg:w="436"/><text x="51.5415%" y="575.50"></text></g><g><title>__set_extent_bit (408 samples, 0.03%)</title><rect x="51.2933%" y="549" width="0.0265%" height="15" fill="rgb(213,116,10)" fg:x="789326" fg:w="408"/><text x="51.5433%" y="559.50"></text></g><g><title>btrfs_truncate_inode_items (16,579 samples, 1.08%)</title><rect x="50.2520%" y="581" width="1.0774%" height="15" fill="rgb(239,15,48)" fg:x="773302" fg:w="16579"/><text x="50.5020%" y="591.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (263 samples, 0.02%)</title><rect x="51.3578%" y="517" width="0.0171%" height="15" fill="rgb(207,123,36)" fg:x="790318" fg:w="263"/><text x="51.6078%" y="527.50"></text></g><g><title>btrfs_block_rsv_refill (757 samples, 0.05%)</title><rect x="51.3376%" y="565" width="0.0492%" height="15" fill="rgb(209,103,30)" fg:x="790007" fg:w="757"/><text x="51.5876%" y="575.50"></text></g><g><title>btrfs_reserve_metadata_bytes (648 samples, 0.04%)</title><rect x="51.3447%" y="549" width="0.0421%" height="15" fill="rgb(238,100,19)" fg:x="790116" fg:w="648"/><text x="51.5947%" y="559.50"></text></g><g><title>__reserve_bytes (623 samples, 0.04%)</title><rect x="51.3463%" y="533" width="0.0405%" height="15" fill="rgb(244,30,14)" fg:x="790141" fg:w="623"/><text x="51.5963%" y="543.50"></text></g><g><title>calc_available_free_space.isra.0 (183 samples, 0.01%)</title><rect x="51.3749%" y="517" width="0.0119%" height="15" fill="rgb(249,174,6)" fg:x="790581" fg:w="183"/><text x="51.6249%" y="527.50"></text></g><g><title>evict_refill_and_join (1,253 samples, 0.08%)</title><rect x="51.3294%" y="581" width="0.0814%" height="15" fill="rgb(235,213,41)" fg:x="789881" fg:w="1253"/><text x="51.5794%" y="591.50"></text></g><g><title>start_transaction (356 samples, 0.02%)</title><rect x="51.3877%" y="565" width="0.0231%" height="15" fill="rgb(213,118,6)" fg:x="790778" fg:w="356"/><text x="51.6377%" y="575.50"></text></g><g><title>btrfs_evict_inode (41,486 samples, 2.70%)</title><rect x="48.7338%" y="597" width="2.6959%" height="15" fill="rgb(235,44,51)" fg:x="749938" fg:w="41486"/><text x="48.9838%" y="607.50">bt..</text></g><g><title>evict (41,799 samples, 2.72%)</title><rect x="48.7193%" y="613" width="2.7163%" height="15" fill="rgb(217,9,53)" fg:x="749716" fg:w="41799"/><text x="48.9693%" y="623.50">ev..</text></g><g><title>iput.part.0 (158 samples, 0.01%)</title><rect x="51.4386%" y="613" width="0.0103%" height="15" fill="rgb(237,172,34)" fg:x="791562" fg:w="158"/><text x="51.6886%" y="623.50"></text></g><g><title>_raw_spin_lock (283 samples, 0.02%)</title><rect x="51.4764%" y="581" width="0.0184%" height="15" fill="rgb(206,206,11)" fg:x="792143" fg:w="283"/><text x="51.7264%" y="591.50"></text></g><g><title>__list_del_entry_valid (580 samples, 0.04%)</title><rect x="51.5228%" y="533" width="0.0377%" height="15" fill="rgb(214,149,29)" fg:x="792857" fg:w="580"/><text x="51.7728%" y="543.50"></text></g><g><title>_raw_spin_lock (213 samples, 0.01%)</title><rect x="51.5605%" y="533" width="0.0138%" height="15" fill="rgb(208,123,3)" fg:x="793437" fg:w="213"/><text x="51.8105%" y="543.50"></text></g><g><title>d_lru_del (1,584 samples, 0.10%)</title><rect x="51.4997%" y="565" width="0.1029%" height="15" fill="rgb(229,126,4)" fg:x="792501" fg:w="1584"/><text x="51.7497%" y="575.50"></text></g><g><title>list_lru_del (1,542 samples, 0.10%)</title><rect x="51.5024%" y="549" width="0.1002%" height="15" fill="rgb(222,92,36)" fg:x="792543" fg:w="1542"/><text x="51.7524%" y="559.50"></text></g><g><title>mem_cgroup_from_obj (435 samples, 0.03%)</title><rect x="51.5743%" y="533" width="0.0283%" height="15" fill="rgb(216,39,41)" fg:x="793650" fg:w="435"/><text x="51.8243%" y="543.50"></text></g><g><title>d_walk (2,336 samples, 0.15%)</title><rect x="51.4531%" y="597" width="0.1518%" height="15" fill="rgb(253,127,28)" fg:x="791785" fg:w="2336"/><text x="51.7031%" y="607.50"></text></g><g><title>select_collect (1,690 samples, 0.11%)</title><rect x="51.4951%" y="581" width="0.1098%" height="15" fill="rgb(249,152,51)" fg:x="792431" fg:w="1690"/><text x="51.7451%" y="591.50"></text></g><g><title>___d_drop (1,000 samples, 0.06%)</title><rect x="51.6159%" y="565" width="0.0650%" height="15" fill="rgb(209,123,42)" fg:x="794290" fg:w="1000"/><text x="51.8659%" y="575.50"></text></g><g><title>call_rcu (653 samples, 0.04%)</title><rect x="51.6893%" y="565" width="0.0424%" height="15" fill="rgb(241,118,22)" fg:x="795420" fg:w="653"/><text x="51.9393%" y="575.50"></text></g><g><title>rcu_segcblist_enqueue (337 samples, 0.02%)</title><rect x="51.7099%" y="549" width="0.0219%" height="15" fill="rgb(208,25,7)" fg:x="795736" fg:w="337"/><text x="51.9599%" y="559.50"></text></g><g><title>__dentry_kill (1,922 samples, 0.12%)</title><rect x="51.6093%" y="581" width="0.1249%" height="15" fill="rgb(243,144,39)" fg:x="794188" fg:w="1922"/><text x="51.8593%" y="591.50"></text></g><g><title>__dput_to_list (194 samples, 0.01%)</title><rect x="51.7342%" y="581" width="0.0126%" height="15" fill="rgb(250,50,5)" fg:x="796110" fg:w="194"/><text x="51.9842%" y="591.50"></text></g><g><title>d_lru_del (155 samples, 0.01%)</title><rect x="51.7367%" y="565" width="0.0101%" height="15" fill="rgb(207,67,11)" fg:x="796149" fg:w="155"/><text x="51.9867%" y="575.50"></text></g><g><title>_raw_spin_lock (177 samples, 0.01%)</title><rect x="51.7518%" y="581" width="0.0115%" height="15" fill="rgb(245,204,40)" fg:x="796381" fg:w="177"/><text x="52.0018%" y="591.50"></text></g><g><title>shrink_dcache_parent (5,103 samples, 0.33%)</title><rect x="51.4504%" y="613" width="0.3316%" height="15" fill="rgb(238,228,24)" fg:x="791743" fg:w="5103"/><text x="51.7004%" y="623.50"></text></g><g><title>shrink_dentry_list (2,725 samples, 0.18%)</title><rect x="51.6049%" y="597" width="0.1771%" height="15" fill="rgb(217,116,22)" fg:x="794121" fg:w="2725"/><text x="51.8549%" y="607.50"></text></g><g><title>shrink_lock_dentry.part.0 (180 samples, 0.01%)</title><rect x="51.7703%" y="581" width="0.0117%" height="15" fill="rgb(234,98,12)" fg:x="796666" fg:w="180"/><text x="52.0203%" y="591.50"></text></g><g><title>do_rmdir (77,562 samples, 5.04%)</title><rect x="46.7430%" y="645" width="5.0403%" height="15" fill="rgb(242,170,50)" fg:x="719304" fg:w="77562"/><text x="46.9930%" y="655.50">do_rmd..</text></g><g><title>vfs_rmdir.part.0 (76,006 samples, 4.94%)</title><rect x="46.8442%" y="629" width="4.9392%" height="15" fill="rgb(235,7,5)" fg:x="720860" fg:w="76006"/><text x="47.0942%" y="639.50">vfs_rm..</text></g><g><title>_raw_spin_lock (249 samples, 0.02%)</title><rect x="51.9653%" y="565" width="0.0162%" height="15" fill="rgb(241,114,28)" fg:x="799667" fg:w="249"/><text x="52.2153%" y="575.50"></text></g><g><title>__d_lookup (2,294 samples, 0.15%)</title><rect x="51.8337%" y="581" width="0.1491%" height="15" fill="rgb(246,112,42)" fg:x="797642" fg:w="2294"/><text x="52.0837%" y="591.50"></text></g><g><title>__lookup_hash (2,551 samples, 0.17%)</title><rect x="51.8171%" y="629" width="0.1658%" height="15" fill="rgb(248,228,14)" fg:x="797386" fg:w="2551"/><text x="52.0671%" y="639.50"></text></g><g><title>lookup_dcache (2,462 samples, 0.16%)</title><rect x="51.8229%" y="613" width="0.1600%" height="15" fill="rgb(208,133,18)" fg:x="797475" fg:w="2462"/><text x="52.0729%" y="623.50"></text></g><g><title>d_lookup (2,416 samples, 0.16%)</title><rect x="51.8259%" y="597" width="0.1570%" height="15" fill="rgb(207,35,49)" fg:x="797521" fg:w="2416"/><text x="52.0759%" y="607.50"></text></g><g><title>down_write (246 samples, 0.02%)</title><rect x="51.9835%" y="629" width="0.0160%" height="15" fill="rgb(205,68,36)" fg:x="799946" fg:w="246"/><text x="52.2335%" y="639.50"></text></g><g><title>pick_next_task_fair (165 samples, 0.01%)</title><rect x="52.0284%" y="581" width="0.0107%" height="15" fill="rgb(245,62,40)" fg:x="800637" fg:w="165"/><text x="52.2784%" y="591.50"></text></g><g><title>__schedule (354 samples, 0.02%)</title><rect x="52.0216%" y="597" width="0.0230%" height="15" fill="rgb(228,27,24)" fg:x="800533" fg:w="354"/><text x="52.2716%" y="607.50"></text></g><g><title>_cond_resched (428 samples, 0.03%)</title><rect x="52.0184%" y="613" width="0.0278%" height="15" fill="rgb(253,19,12)" fg:x="800483" fg:w="428"/><text x="52.2684%" y="623.50"></text></g><g><title>btrfs_dentry_delete (459 samples, 0.03%)</title><rect x="52.0463%" y="613" width="0.0298%" height="15" fill="rgb(232,28,20)" fg:x="800913" fg:w="459"/><text x="52.2963%" y="623.50"></text></g><g><title>lockref_put_or_lock (462 samples, 0.03%)</title><rect x="52.0761%" y="613" width="0.0300%" height="15" fill="rgb(218,35,51)" fg:x="801372" fg:w="462"/><text x="52.3261%" y="623.50"></text></g><g><title>dput (1,668 samples, 0.11%)</title><rect x="51.9995%" y="629" width="0.1084%" height="15" fill="rgb(212,90,40)" fg:x="800192" fg:w="1668"/><text x="52.2495%" y="639.50"></text></g><g><title>__legitimize_mnt (305 samples, 0.02%)</title><rect x="52.1814%" y="549" width="0.0198%" height="15" fill="rgb(220,172,12)" fg:x="802992" fg:w="305"/><text x="52.4314%" y="559.50"></text></g><g><title>__legitimize_path (599 samples, 0.04%)</title><rect x="52.1722%" y="565" width="0.0389%" height="15" fill="rgb(226,159,20)" fg:x="802850" fg:w="599"/><text x="52.4222%" y="575.50"></text></g><g><title>legitimize_links (182 samples, 0.01%)</title><rect x="52.2111%" y="565" width="0.0118%" height="15" fill="rgb(234,205,16)" fg:x="803449" fg:w="182"/><text x="52.4611%" y="575.50"></text></g><g><title>complete_walk (1,109 samples, 0.07%)</title><rect x="52.1520%" y="597" width="0.0721%" height="15" fill="rgb(207,9,39)" fg:x="802540" fg:w="1109"/><text x="52.4020%" y="607.50"></text></g><g><title>try_to_unlazy (985 samples, 0.06%)</title><rect x="52.1601%" y="581" width="0.0640%" height="15" fill="rgb(249,143,15)" fg:x="802664" fg:w="985"/><text x="52.4101%" y="591.50"></text></g><g><title>inode_permission.part.0 (521 samples, 0.03%)</title><rect x="52.2467%" y="581" width="0.0339%" height="15" fill="rgb(253,133,29)" fg:x="803997" fg:w="521"/><text x="52.4967%" y="591.50"></text></g><g><title>generic_permission (314 samples, 0.02%)</title><rect x="52.2602%" y="565" width="0.0204%" height="15" fill="rgb(221,187,0)" fg:x="804204" fg:w="314"/><text x="52.5102%" y="575.50"></text></g><g><title>link_path_walk.part.0 (913 samples, 0.06%)</title><rect x="52.2241%" y="597" width="0.0593%" height="15" fill="rgb(205,204,26)" fg:x="803649" fg:w="913"/><text x="52.4741%" y="607.50"></text></g><g><title>__fget_files (808 samples, 0.05%)</title><rect x="52.3355%" y="565" width="0.0525%" height="15" fill="rgb(224,68,54)" fg:x="805364" fg:w="808"/><text x="52.5855%" y="575.50"></text></g><g><title>__fget_light (1,189 samples, 0.08%)</title><rect x="52.3109%" y="581" width="0.0773%" height="15" fill="rgb(209,67,4)" fg:x="804985" fg:w="1189"/><text x="52.5609%" y="591.50"></text></g><g><title>path_init (1,731 samples, 0.11%)</title><rect x="52.2834%" y="597" width="0.1125%" height="15" fill="rgb(228,229,18)" fg:x="804562" fg:w="1731"/><text x="52.5334%" y="607.50"></text></g><g><title>filename_parentat (4,816 samples, 0.31%)</title><rect x="52.1143%" y="629" width="0.3130%" height="15" fill="rgb(231,89,13)" fg:x="801960" fg:w="4816"/><text x="52.3643%" y="639.50"></text></g><g><title>path_parentat (4,363 samples, 0.28%)</title><rect x="52.1438%" y="613" width="0.2835%" height="15" fill="rgb(210,182,18)" fg:x="802413" fg:w="4363"/><text x="52.3938%" y="623.50"></text></g><g><title>terminate_walk (483 samples, 0.03%)</title><rect x="52.3959%" y="597" width="0.0314%" height="15" fill="rgb(240,105,2)" fg:x="806293" fg:w="483"/><text x="52.6459%" y="607.50"></text></g><g><title>ihold (1,070 samples, 0.07%)</title><rect x="52.4273%" y="629" width="0.0695%" height="15" fill="rgb(207,170,50)" fg:x="806776" fg:w="1070"/><text x="52.6773%" y="639.50"></text></g><g><title>iput.part.0 (178 samples, 0.01%)</title><rect x="52.4971%" y="629" width="0.0116%" height="15" fill="rgb(232,133,24)" fg:x="807850" fg:w="178"/><text x="52.7471%" y="639.50"></text></g><g><title>_atomic_dec_and_lock (156 samples, 0.01%)</title><rect x="52.4985%" y="613" width="0.0101%" height="15" fill="rgb(235,166,27)" fg:x="807872" fg:w="156"/><text x="52.7485%" y="623.50"></text></g><g><title>kmem_cache_free (759 samples, 0.05%)</title><rect x="52.5087%" y="629" width="0.0493%" height="15" fill="rgb(209,19,13)" fg:x="808028" fg:w="759"/><text x="52.7587%" y="639.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (247 samples, 0.02%)</title><rect x="52.5419%" y="613" width="0.0161%" height="15" fill="rgb(226,79,39)" fg:x="808540" fg:w="247"/><text x="52.7919%" y="623.50"></text></g><g><title>mnt_drop_write (283 samples, 0.02%)</title><rect x="52.5580%" y="629" width="0.0184%" height="15" fill="rgb(222,163,10)" fg:x="808787" fg:w="283"/><text x="52.8080%" y="639.50"></text></g><g><title>__mnt_want_write (293 samples, 0.02%)</title><rect x="52.5883%" y="613" width="0.0190%" height="15" fill="rgb(214,44,19)" fg:x="809254" fg:w="293"/><text x="52.8383%" y="623.50"></text></g><g><title>mnt_want_write (592 samples, 0.04%)</title><rect x="52.5764%" y="629" width="0.0385%" height="15" fill="rgb(210,217,13)" fg:x="809070" fg:w="592"/><text x="52.8264%" y="639.50"></text></g><g><title>putname (400 samples, 0.03%)</title><rect x="52.6252%" y="629" width="0.0260%" height="15" fill="rgb(237,61,54)" fg:x="809822" fg:w="400"/><text x="52.8752%" y="639.50"></text></g><g><title>apparmor_path_unlink (199 samples, 0.01%)</title><rect x="52.6547%" y="613" width="0.0129%" height="15" fill="rgb(226,184,24)" fg:x="810276" fg:w="199"/><text x="52.9047%" y="623.50"></text></g><g><title>security_path_unlink (1,239 samples, 0.08%)</title><rect x="52.6512%" y="629" width="0.0805%" height="15" fill="rgb(223,226,4)" fg:x="810222" fg:w="1239"/><text x="52.9012%" y="639.50"></text></g><g><title>tomoyo_path_unlink (986 samples, 0.06%)</title><rect x="52.6677%" y="613" width="0.0641%" height="15" fill="rgb(210,26,41)" fg:x="810475" fg:w="986"/><text x="52.9177%" y="623.50"></text></g><g><title>tomoyo_path_perm (955 samples, 0.06%)</title><rect x="52.6697%" y="597" width="0.0621%" height="15" fill="rgb(220,221,6)" fg:x="810506" fg:w="955"/><text x="52.9197%" y="607.50"></text></g><g><title>tomoyo_init_request_info (682 samples, 0.04%)</title><rect x="52.6874%" y="581" width="0.0443%" height="15" fill="rgb(225,89,49)" fg:x="810779" fg:w="682"/><text x="52.9374%" y="591.50"></text></g><g><title>tomoyo_domain (393 samples, 0.03%)</title><rect x="52.7062%" y="565" width="0.0255%" height="15" fill="rgb(218,70,45)" fg:x="811068" fg:w="393"/><text x="52.9562%" y="575.50"></text></g><g><title>up_write (156 samples, 0.01%)</title><rect x="52.7318%" y="629" width="0.0101%" height="15" fill="rgb(238,166,21)" fg:x="811461" fg:w="156"/><text x="52.9818%" y="639.50"></text></g><g><title>_raw_spin_lock (189 samples, 0.01%)</title><rect x="52.7659%" y="613" width="0.0123%" height="15" fill="rgb(224,141,44)" fg:x="811987" fg:w="189"/><text x="53.0159%" y="623.50"></text></g><g><title>btrfs_create_pending_block_groups (218 samples, 0.01%)</title><rect x="52.8620%" y="581" width="0.0142%" height="15" fill="rgb(230,12,49)" fg:x="813465" fg:w="218"/><text x="53.1120%" y="591.50"></text></g><g><title>btrfs_put_transaction (160 samples, 0.01%)</title><rect x="52.8761%" y="581" width="0.0104%" height="15" fill="rgb(212,174,12)" fg:x="813683" fg:w="160"/><text x="53.1261%" y="591.50"></text></g><g><title>_raw_spin_lock (1,028 samples, 0.07%)</title><rect x="52.9136%" y="549" width="0.0668%" height="15" fill="rgb(246,67,9)" fg:x="814259" fg:w="1028"/><text x="53.1636%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (329 samples, 0.02%)</title><rect x="52.9590%" y="533" width="0.0214%" height="15" fill="rgb(239,35,23)" fg:x="814958" fg:w="329"/><text x="53.2090%" y="543.50"></text></g><g><title>btrfs_trans_release_metadata (1,495 samples, 0.10%)</title><rect x="52.8938%" y="581" width="0.0972%" height="15" fill="rgb(211,167,0)" fg:x="813954" fg:w="1495"/><text x="53.1438%" y="591.50"></text></g><g><title>btrfs_block_rsv_release (1,429 samples, 0.09%)</title><rect x="52.8980%" y="565" width="0.0929%" height="15" fill="rgb(225,119,45)" fg:x="814020" fg:w="1429"/><text x="53.1480%" y="575.50"></text></g><g><title>__btrfs_end_transaction (3,695 samples, 0.24%)</title><rect x="52.7943%" y="597" width="0.2401%" height="15" fill="rgb(210,162,6)" fg:x="812423" fg:w="3695"/><text x="53.0443%" y="607.50"></text></g><g><title>kmem_cache_free (669 samples, 0.04%)</title><rect x="52.9909%" y="581" width="0.0435%" height="15" fill="rgb(208,118,35)" fg:x="815449" fg:w="669"/><text x="53.2409%" y="591.50"></text></g><g><title>btrfs_end_log_trans (281 samples, 0.02%)</title><rect x="53.1684%" y="565" width="0.0183%" height="15" fill="rgb(239,4,53)" fg:x="818180" fg:w="281"/><text x="53.4184%" y="575.50"></text></g><g><title>select_task_rq_fair (416 samples, 0.03%)</title><rect x="53.4013%" y="469" width="0.0270%" height="15" fill="rgb(213,130,21)" fg:x="821765" fg:w="416"/><text x="53.6513%" y="479.50"></text></g><g><title>enqueue_entity (503 samples, 0.03%)</title><rect x="53.4381%" y="437" width="0.0327%" height="15" fill="rgb(235,148,0)" fg:x="822331" fg:w="503"/><text x="53.6881%" y="447.50"></text></g><g><title>update_load_avg (160 samples, 0.01%)</title><rect x="53.4604%" y="421" width="0.0104%" height="15" fill="rgb(244,224,18)" fg:x="822674" fg:w="160"/><text x="53.7104%" y="431.50"></text></g><g><title>enqueue_task_fair (626 samples, 0.04%)</title><rect x="53.4314%" y="453" width="0.0407%" height="15" fill="rgb(211,214,4)" fg:x="822228" fg:w="626"/><text x="53.6814%" y="463.50"></text></g><g><title>ttwu_do_activate (1,405 samples, 0.09%)</title><rect x="53.4290%" y="469" width="0.0913%" height="15" fill="rgb(206,119,25)" fg:x="822191" fg:w="1405"/><text x="53.6790%" y="479.50"></text></g><g><title>psi_task_change (741 samples, 0.05%)</title><rect x="53.4722%" y="453" width="0.0482%" height="15" fill="rgb(243,93,47)" fg:x="822855" fg:w="741"/><text x="53.7222%" y="463.50"></text></g><g><title>psi_group_change (681 samples, 0.04%)</title><rect x="53.4761%" y="437" width="0.0443%" height="15" fill="rgb(224,194,6)" fg:x="822915" fg:w="681"/><text x="53.7261%" y="447.50"></text></g><g><title>__wake_up_common (5,301 samples, 0.34%)</title><rect x="53.2032%" y="517" width="0.3445%" height="15" fill="rgb(243,229,6)" fg:x="818716" fg:w="5301"/><text x="53.4532%" y="527.50"></text></g><g><title>autoremove_wake_function (5,156 samples, 0.34%)</title><rect x="53.2126%" y="501" width="0.3351%" height="15" fill="rgb(207,23,50)" fg:x="818861" fg:w="5156"/><text x="53.4626%" y="511.50"></text></g><g><title>try_to_wake_up (5,068 samples, 0.33%)</title><rect x="53.2184%" y="485" width="0.3293%" height="15" fill="rgb(253,192,32)" fg:x="818949" fg:w="5068"/><text x="53.4684%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (1,000 samples, 0.06%)</title><rect x="53.5477%" y="517" width="0.0650%" height="15" fill="rgb(213,21,6)" fg:x="824017" fg:w="1000"/><text x="53.7977%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (923 samples, 0.06%)</title><rect x="53.5527%" y="501" width="0.0600%" height="15" fill="rgb(243,151,13)" fg:x="824094" fg:w="923"/><text x="53.8027%" y="511.50"></text></g><g><title>__wake_up_common_lock (6,361 samples, 0.41%)</title><rect x="53.2018%" y="533" width="0.4134%" height="15" fill="rgb(233,165,41)" fg:x="818694" fg:w="6361"/><text x="53.4518%" y="543.50"></text></g><g><title>btrfs_tree_unlock (465 samples, 0.03%)</title><rect x="53.6152%" y="533" width="0.0302%" height="15" fill="rgb(246,176,45)" fg:x="825056" fg:w="465"/><text x="53.8652%" y="543.50"></text></g><g><title>_raw_spin_lock (163 samples, 0.01%)</title><rect x="53.6565%" y="517" width="0.0106%" height="15" fill="rgb(217,170,52)" fg:x="825692" fg:w="163"/><text x="53.9065%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (328 samples, 0.02%)</title><rect x="53.6459%" y="533" width="0.0213%" height="15" fill="rgb(214,203,54)" fg:x="825528" fg:w="328"/><text x="53.8959%" y="543.50"></text></g><g><title>btrfs_free_path (7,577 samples, 0.49%)</title><rect x="53.1866%" y="565" width="0.4924%" height="15" fill="rgb(248,215,49)" fg:x="818461" fg:w="7577"/><text x="53.4366%" y="575.50"></text></g><g><title>btrfs_release_path (7,510 samples, 0.49%)</title><rect x="53.1910%" y="549" width="0.4880%" height="15" fill="rgb(208,46,10)" fg:x="818528" fg:w="7510"/><text x="53.4410%" y="559.50"></text></g><g><title>release_extent_buffer (182 samples, 0.01%)</title><rect x="53.6672%" y="533" width="0.0118%" height="15" fill="rgb(254,5,31)" fg:x="825856" fg:w="182"/><text x="53.9172%" y="543.50"></text></g><g><title>_raw_read_lock (234 samples, 0.02%)</title><rect x="53.7567%" y="501" width="0.0152%" height="15" fill="rgb(222,104,33)" fg:x="827234" fg:w="234"/><text x="54.0067%" y="511.50"></text></g><g><title>finish_wait (641 samples, 0.04%)</title><rect x="53.7721%" y="501" width="0.0417%" height="15" fill="rgb(248,49,16)" fg:x="827471" fg:w="641"/><text x="54.0221%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (614 samples, 0.04%)</title><rect x="53.7739%" y="485" width="0.0399%" height="15" fill="rgb(232,198,41)" fg:x="827498" fg:w="614"/><text x="54.0239%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (584 samples, 0.04%)</title><rect x="53.7758%" y="469" width="0.0380%" height="15" fill="rgb(214,125,3)" fg:x="827528" fg:w="584"/><text x="54.0258%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,136 samples, 0.07%)</title><rect x="53.8204%" y="485" width="0.0738%" height="15" fill="rgb(229,220,28)" fg:x="828214" fg:w="1136"/><text x="54.0704%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,079 samples, 0.07%)</title><rect x="53.8241%" y="469" width="0.0701%" height="15" fill="rgb(222,64,37)" fg:x="828271" fg:w="1079"/><text x="54.0741%" y="479.50"></text></g><g><title>prepare_to_wait_event (1,255 samples, 0.08%)</title><rect x="53.8139%" y="501" width="0.0816%" height="15" fill="rgb(249,184,13)" fg:x="828114" fg:w="1255"/><text x="54.0639%" y="511.50"></text></g><g><title>dequeue_task_fair (170 samples, 0.01%)</title><rect x="53.9111%" y="469" width="0.0110%" height="15" fill="rgb(252,176,6)" fg:x="829610" fg:w="170"/><text x="54.1611%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (218 samples, 0.01%)</title><rect x="53.9245%" y="453" width="0.0142%" height="15" fill="rgb(228,153,7)" fg:x="829815" fg:w="218"/><text x="54.1745%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (207 samples, 0.01%)</title><rect x="53.9252%" y="437" width="0.0135%" height="15" fill="rgb(242,193,5)" fg:x="829826" fg:w="207"/><text x="54.1752%" y="447.50"></text></g><g><title>native_write_msr (205 samples, 0.01%)</title><rect x="53.9253%" y="421" width="0.0133%" height="15" fill="rgb(232,140,9)" fg:x="829828" fg:w="205"/><text x="54.1753%" y="431.50"></text></g><g><title>finish_task_switch (261 samples, 0.02%)</title><rect x="53.9222%" y="469" width="0.0170%" height="15" fill="rgb(213,222,16)" fg:x="829780" fg:w="261"/><text x="54.1722%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (3,248 samples, 0.21%)</title><rect x="53.7435%" y="517" width="0.2111%" height="15" fill="rgb(222,75,50)" fg:x="827030" fg:w="3248"/><text x="53.9935%" y="527.50"></text></g><g><title>schedule (764 samples, 0.05%)</title><rect x="53.9049%" y="501" width="0.0496%" height="15" fill="rgb(205,180,2)" fg:x="829514" fg:w="764"/><text x="54.1549%" y="511.50"></text></g><g><title>__schedule (739 samples, 0.05%)</title><rect x="53.9065%" y="485" width="0.0480%" height="15" fill="rgb(216,34,7)" fg:x="829539" fg:w="739"/><text x="54.1565%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (3,546 samples, 0.23%)</title><rect x="53.7410%" y="533" width="0.2304%" height="15" fill="rgb(253,16,32)" fg:x="826991" fg:w="3546"/><text x="53.9910%" y="543.50"></text></g><g><title>btrfs_root_node (259 samples, 0.02%)</title><rect x="53.9546%" y="517" width="0.0168%" height="15" fill="rgb(208,97,28)" fg:x="830278" fg:w="259"/><text x="54.2046%" y="527.50"></text></g><g><title>balance_level (336 samples, 0.02%)</title><rect x="53.9748%" y="533" width="0.0218%" height="15" fill="rgb(225,92,11)" fg:x="830589" fg:w="336"/><text x="54.2248%" y="543.50"></text></g><g><title>_raw_write_lock (235 samples, 0.02%)</title><rect x="54.0293%" y="501" width="0.0153%" height="15" fill="rgb(243,38,12)" fg:x="831428" fg:w="235"/><text x="54.2793%" y="511.50"></text></g><g><title>finish_wait (688 samples, 0.04%)</title><rect x="54.0447%" y="501" width="0.0447%" height="15" fill="rgb(208,139,16)" fg:x="831666" fg:w="688"/><text x="54.2947%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (662 samples, 0.04%)</title><rect x="54.0464%" y="485" width="0.0430%" height="15" fill="rgb(227,24,9)" fg:x="831692" fg:w="662"/><text x="54.2964%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (621 samples, 0.04%)</title><rect x="54.0491%" y="469" width="0.0404%" height="15" fill="rgb(206,62,11)" fg:x="831733" fg:w="621"/><text x="54.2991%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,843 samples, 0.12%)</title><rect x="54.1001%" y="485" width="0.1198%" height="15" fill="rgb(228,134,27)" fg:x="832518" fg:w="1843"/><text x="54.3501%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,725 samples, 0.11%)</title><rect x="54.1078%" y="469" width="0.1121%" height="15" fill="rgb(205,55,33)" fg:x="832636" fg:w="1725"/><text x="54.3578%" y="479.50"></text></g><g><title>prepare_to_wait_event (2,030 samples, 0.13%)</title><rect x="54.0899%" y="501" width="0.1319%" height="15" fill="rgb(243,75,43)" fg:x="832361" fg:w="2030"/><text x="54.3399%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (415 samples, 0.03%)</title><rect x="54.2218%" y="501" width="0.0270%" height="15" fill="rgb(223,27,42)" fg:x="834391" fg:w="415"/><text x="54.4718%" y="511.50"></text></g><g><title>dequeue_entity (288 samples, 0.02%)</title><rect x="54.2620%" y="453" width="0.0187%" height="15" fill="rgb(232,189,33)" fg:x="835009" fg:w="288"/><text x="54.5120%" y="463.50"></text></g><g><title>dequeue_task_fair (330 samples, 0.02%)</title><rect x="54.2598%" y="469" width="0.0214%" height="15" fill="rgb(210,9,39)" fg:x="834975" fg:w="330"/><text x="54.5098%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (296 samples, 0.02%)</title><rect x="54.2847%" y="453" width="0.0192%" height="15" fill="rgb(242,85,26)" fg:x="835359" fg:w="296"/><text x="54.5347%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (286 samples, 0.02%)</title><rect x="54.2854%" y="437" width="0.0186%" height="15" fill="rgb(248,44,4)" fg:x="835369" fg:w="286"/><text x="54.5354%" y="447.50"></text></g><g><title>native_write_msr (282 samples, 0.02%)</title><rect x="54.2856%" y="421" width="0.0183%" height="15" fill="rgb(250,96,46)" fg:x="835373" fg:w="282"/><text x="54.5356%" y="431.50"></text></g><g><title>finish_task_switch (359 samples, 0.02%)</title><rect x="54.2812%" y="469" width="0.0233%" height="15" fill="rgb(229,116,26)" fg:x="835305" fg:w="359"/><text x="54.5312%" y="479.50"></text></g><g><title>psi_task_change (248 samples, 0.02%)</title><rect x="54.3115%" y="469" width="0.0161%" height="15" fill="rgb(246,94,34)" fg:x="835771" fg:w="248"/><text x="54.5615%" y="479.50"></text></g><g><title>psi_group_change (218 samples, 0.01%)</title><rect x="54.3135%" y="453" width="0.0142%" height="15" fill="rgb(251,73,21)" fg:x="835801" fg:w="218"/><text x="54.5635%" y="463.50"></text></g><g><title>__btrfs_tree_lock (5,022 samples, 0.33%)</title><rect x="54.0043%" y="517" width="0.3263%" height="15" fill="rgb(254,121,25)" fg:x="831043" fg:w="5022"/><text x="54.2543%" y="527.50"></text></g><g><title>schedule (1,259 samples, 0.08%)</title><rect x="54.2488%" y="501" width="0.0818%" height="15" fill="rgb(215,161,49)" fg:x="834806" fg:w="1259"/><text x="54.4988%" y="511.50"></text></g><g><title>__schedule (1,243 samples, 0.08%)</title><rect x="54.2498%" y="485" width="0.0808%" height="15" fill="rgb(221,43,13)" fg:x="834822" fg:w="1243"/><text x="54.4998%" y="495.50"></text></g><g><title>btrfs_lock_root_node (5,260 samples, 0.34%)</title><rect x="54.0026%" y="533" width="0.3418%" height="15" fill="rgb(249,5,37)" fg:x="831018" fg:w="5260"/><text x="54.2526%" y="543.50"></text></g><g><title>btrfs_root_node (213 samples, 0.01%)</title><rect x="54.3306%" y="517" width="0.0138%" height="15" fill="rgb(226,25,44)" fg:x="836065" fg:w="213"/><text x="54.5806%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (518 samples, 0.03%)</title><rect x="54.3445%" y="533" width="0.0337%" height="15" fill="rgb(238,189,16)" fg:x="836278" fg:w="518"/><text x="54.5945%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (184 samples, 0.01%)</title><rect x="54.3781%" y="533" width="0.0120%" height="15" fill="rgb(251,186,8)" fg:x="836796" fg:w="184"/><text x="54.6281%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (223 samples, 0.01%)</title><rect x="54.3993%" y="533" width="0.0145%" height="15" fill="rgb(254,34,31)" fg:x="837122" fg:w="223"/><text x="54.6493%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (871 samples, 0.06%)</title><rect x="54.4138%" y="533" width="0.0566%" height="15" fill="rgb(225,215,27)" fg:x="837345" fg:w="871"/><text x="54.6638%" y="543.50"></text></g><g><title>btrfs_get_64 (237 samples, 0.02%)</title><rect x="54.4939%" y="517" width="0.0154%" height="15" fill="rgb(221,192,48)" fg:x="838577" fg:w="237"/><text x="54.7439%" y="527.50"></text></g><g><title>__radix_tree_lookup (437 samples, 0.03%)</title><rect x="54.5299%" y="501" width="0.0284%" height="15" fill="rgb(219,137,20)" fg:x="839132" fg:w="437"/><text x="54.7799%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (345 samples, 0.02%)</title><rect x="54.5584%" y="501" width="0.0224%" height="15" fill="rgb(219,84,11)" fg:x="839570" fg:w="345"/><text x="54.8084%" y="511.50"></text></g><g><title>mark_page_accessed (235 samples, 0.02%)</title><rect x="54.5655%" y="485" width="0.0153%" height="15" fill="rgb(224,10,23)" fg:x="839680" fg:w="235"/><text x="54.8155%" y="495.50"></text></g><g><title>find_extent_buffer (974 samples, 0.06%)</title><rect x="54.5183%" y="517" width="0.0633%" height="15" fill="rgb(248,22,39)" fg:x="838953" fg:w="974"/><text x="54.7683%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (1,967 samples, 0.13%)</title><rect x="54.4704%" y="533" width="0.1278%" height="15" fill="rgb(212,154,20)" fg:x="838216" fg:w="1967"/><text x="54.7204%" y="543.50"></text></g><g><title>read_extent_buffer (256 samples, 0.02%)</title><rect x="54.5816%" y="517" width="0.0166%" height="15" fill="rgb(236,199,50)" fg:x="839927" fg:w="256"/><text x="54.8316%" y="527.50"></text></g><g><title>btrfs_lookup_dir_index_item (14,540 samples, 0.94%)</title><rect x="53.6791%" y="565" width="0.9449%" height="15" fill="rgb(211,9,17)" fg:x="826039" fg:w="14540"/><text x="53.9291%" y="575.50"></text></g><g><title>btrfs_search_slot (14,424 samples, 0.94%)</title><rect x="53.6866%" y="549" width="0.9373%" height="15" fill="rgb(243,216,36)" fg:x="826155" fg:w="14424"/><text x="53.9366%" y="559.50"></text></g><g><title>unlock_up (266 samples, 0.02%)</title><rect x="54.6067%" y="533" width="0.0173%" height="15" fill="rgb(250,2,10)" fg:x="840313" fg:w="266"/><text x="54.8567%" y="543.50"></text></g><g><title>_raw_read_lock (276 samples, 0.02%)</title><rect x="54.7251%" y="501" width="0.0179%" height="15" fill="rgb(226,50,48)" fg:x="842135" fg:w="276"/><text x="54.9751%" y="511.50"></text></g><g><title>finish_wait (1,159 samples, 0.08%)</title><rect x="54.7440%" y="501" width="0.0753%" height="15" fill="rgb(243,81,16)" fg:x="842426" fg:w="1159"/><text x="54.9940%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,098 samples, 0.07%)</title><rect x="54.7479%" y="485" width="0.0714%" height="15" fill="rgb(250,14,2)" fg:x="842487" fg:w="1098"/><text x="54.9979%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,041 samples, 0.07%)</title><rect x="54.7516%" y="469" width="0.0676%" height="15" fill="rgb(233,135,29)" fg:x="842544" fg:w="1041"/><text x="55.0016%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (3,108 samples, 0.20%)</title><rect x="54.8387%" y="485" width="0.2020%" height="15" fill="rgb(224,64,43)" fg:x="843884" fg:w="3108"/><text x="55.0887%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,929 samples, 0.19%)</title><rect x="54.8504%" y="469" width="0.1903%" height="15" fill="rgb(238,84,13)" fg:x="844063" fg:w="2929"/><text x="55.1004%" y="479.50"></text></g><g><title>prepare_to_wait_event (3,457 samples, 0.22%)</title><rect x="54.8197%" y="501" width="0.2246%" height="15" fill="rgb(253,48,26)" fg:x="843591" fg:w="3457"/><text x="55.0697%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (384 samples, 0.02%)</title><rect x="55.0443%" y="501" width="0.0250%" height="15" fill="rgb(205,223,31)" fg:x="847048" fg:w="384"/><text x="55.2943%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (169 samples, 0.01%)</title><rect x="55.0583%" y="485" width="0.0110%" height="15" fill="rgb(221,41,32)" fg:x="847263" fg:w="169"/><text x="55.3083%" y="495.50"></text></g><g><title>update_curr (226 samples, 0.01%)</title><rect x="55.1094%" y="437" width="0.0147%" height="15" fill="rgb(213,158,31)" fg:x="848049" fg:w="226"/><text x="55.3594%" y="447.50"></text></g><g><title>dequeue_entity (580 samples, 0.04%)</title><rect x="55.0977%" y="453" width="0.0377%" height="15" fill="rgb(245,126,43)" fg:x="847869" fg:w="580"/><text x="55.3477%" y="463.50"></text></g><g><title>update_load_avg (174 samples, 0.01%)</title><rect x="55.1241%" y="437" width="0.0113%" height="15" fill="rgb(227,7,22)" fg:x="848275" fg:w="174"/><text x="55.3741%" y="447.50"></text></g><g><title>dequeue_task_fair (706 samples, 0.05%)</title><rect x="55.0925%" y="469" width="0.0459%" height="15" fill="rgb(252,90,44)" fg:x="847790" fg:w="706"/><text x="55.3425%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (1,194 samples, 0.08%)</title><rect x="55.1462%" y="453" width="0.0776%" height="15" fill="rgb(253,91,0)" fg:x="848616" fg:w="1194"/><text x="55.3962%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,152 samples, 0.07%)</title><rect x="55.1490%" y="437" width="0.0749%" height="15" fill="rgb(252,175,49)" fg:x="848658" fg:w="1152"/><text x="55.3990%" y="447.50"></text></g><g><title>native_write_msr (1,136 samples, 0.07%)</title><rect x="55.1500%" y="421" width="0.0738%" height="15" fill="rgb(246,150,1)" fg:x="848674" fg:w="1136"/><text x="55.4000%" y="431.50"></text></g><g><title>finish_task_switch (1,365 samples, 0.09%)</title><rect x="55.1384%" y="469" width="0.0887%" height="15" fill="rgb(241,192,25)" fg:x="848496" fg:w="1365"/><text x="55.3884%" y="479.50"></text></g><g><title>psi_task_change (529 samples, 0.03%)</title><rect x="55.2424%" y="469" width="0.0344%" height="15" fill="rgb(239,187,11)" fg:x="850096" fg:w="529"/><text x="55.4924%" y="479.50"></text></g><g><title>psi_group_change (439 samples, 0.03%)</title><rect x="55.2482%" y="453" width="0.0285%" height="15" fill="rgb(218,202,51)" fg:x="850186" fg:w="439"/><text x="55.4982%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (8,991 samples, 0.58%)</title><rect x="54.7024%" y="517" width="0.5843%" height="15" fill="rgb(225,176,8)" fg:x="841787" fg:w="8991"/><text x="54.9524%" y="527.50"></text></g><g><title>schedule (3,346 samples, 0.22%)</title><rect x="55.0693%" y="501" width="0.2174%" height="15" fill="rgb(219,122,41)" fg:x="847432" fg:w="3346"/><text x="55.3193%" y="511.50"></text></g><g><title>__schedule (3,294 samples, 0.21%)</title><rect x="55.0727%" y="485" width="0.2141%" height="15" fill="rgb(248,140,20)" fg:x="847484" fg:w="3294"/><text x="55.3227%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (9,571 samples, 0.62%)</title><rect x="54.6987%" y="533" width="0.6220%" height="15" fill="rgb(245,41,37)" fg:x="841729" fg:w="9571"/><text x="54.9487%" y="543.50"></text></g><g><title>btrfs_root_node (521 samples, 0.03%)</title><rect x="55.2868%" y="517" width="0.0339%" height="15" fill="rgb(235,82,39)" fg:x="850779" fg:w="521"/><text x="55.5368%" y="527.50"></text></g><g><title>balance_level (397 samples, 0.03%)</title><rect x="55.3254%" y="533" width="0.0258%" height="15" fill="rgb(230,108,42)" fg:x="851374" fg:w="397"/><text x="55.5754%" y="543.50"></text></g><g><title>_raw_write_lock (199 samples, 0.01%)</title><rect x="55.3785%" y="501" width="0.0129%" height="15" fill="rgb(215,150,50)" fg:x="852191" fg:w="199"/><text x="55.6285%" y="511.50"></text></g><g><title>finish_wait (719 samples, 0.05%)</title><rect x="55.3917%" y="501" width="0.0467%" height="15" fill="rgb(233,212,5)" fg:x="852394" fg:w="719"/><text x="55.6417%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (689 samples, 0.04%)</title><rect x="55.3937%" y="485" width="0.0448%" height="15" fill="rgb(245,80,22)" fg:x="852424" fg:w="689"/><text x="55.6437%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (663 samples, 0.04%)</title><rect x="55.3954%" y="469" width="0.0431%" height="15" fill="rgb(238,129,16)" fg:x="852450" fg:w="663"/><text x="55.6454%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,767 samples, 0.11%)</title><rect x="55.4486%" y="485" width="0.1148%" height="15" fill="rgb(240,19,0)" fg:x="853269" fg:w="1767"/><text x="55.6986%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,670 samples, 0.11%)</title><rect x="55.4549%" y="469" width="0.1085%" height="15" fill="rgb(232,42,35)" fg:x="853366" fg:w="1670"/><text x="55.7049%" y="479.50"></text></g><g><title>prepare_to_wait_event (1,942 samples, 0.13%)</title><rect x="55.4388%" y="501" width="0.1262%" height="15" fill="rgb(223,130,24)" fg:x="853118" fg:w="1942"/><text x="55.6888%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (368 samples, 0.02%)</title><rect x="55.5650%" y="501" width="0.0239%" height="15" fill="rgb(237,16,22)" fg:x="855060" fg:w="368"/><text x="55.8150%" y="511.50"></text></g><g><title>dequeue_entity (256 samples, 0.02%)</title><rect x="55.6007%" y="453" width="0.0166%" height="15" fill="rgb(248,192,20)" fg:x="855609" fg:w="256"/><text x="55.8507%" y="463.50"></text></g><g><title>dequeue_task_fair (296 samples, 0.02%)</title><rect x="55.5988%" y="469" width="0.0192%" height="15" fill="rgb(233,167,2)" fg:x="855580" fg:w="296"/><text x="55.8488%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (382 samples, 0.02%)</title><rect x="55.6213%" y="453" width="0.0248%" height="15" fill="rgb(252,71,44)" fg:x="855926" fg:w="382"/><text x="55.8713%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (373 samples, 0.02%)</title><rect x="55.6218%" y="437" width="0.0242%" height="15" fill="rgb(238,37,47)" fg:x="855935" fg:w="373"/><text x="55.8718%" y="447.50"></text></g><g><title>native_write_msr (364 samples, 0.02%)</title><rect x="55.6224%" y="421" width="0.0237%" height="15" fill="rgb(214,202,54)" fg:x="855944" fg:w="364"/><text x="55.8724%" y="431.50"></text></g><g><title>finish_task_switch (450 samples, 0.03%)</title><rect x="55.6180%" y="469" width="0.0292%" height="15" fill="rgb(254,165,40)" fg:x="855876" fg:w="450"/><text x="55.8680%" y="479.50"></text></g><g><title>psi_task_change (239 samples, 0.02%)</title><rect x="55.6538%" y="469" width="0.0155%" height="15" fill="rgb(246,173,38)" fg:x="856427" fg:w="239"/><text x="55.9038%" y="479.50"></text></g><g><title>psi_group_change (196 samples, 0.01%)</title><rect x="55.6566%" y="453" width="0.0127%" height="15" fill="rgb(215,3,27)" fg:x="856470" fg:w="196"/><text x="55.9066%" y="463.50"></text></g><g><title>__btrfs_tree_lock (4,850 samples, 0.32%)</title><rect x="55.3577%" y="517" width="0.3152%" height="15" fill="rgb(239,169,51)" fg:x="851870" fg:w="4850"/><text x="55.6077%" y="527.50"></text></g><g><title>schedule (1,292 samples, 0.08%)</title><rect x="55.5889%" y="501" width="0.0840%" height="15" fill="rgb(212,5,25)" fg:x="855428" fg:w="1292"/><text x="55.8389%" y="511.50"></text></g><g><title>__schedule (1,249 samples, 0.08%)</title><rect x="55.5917%" y="485" width="0.0812%" height="15" fill="rgb(243,45,17)" fg:x="855471" fg:w="1249"/><text x="55.8417%" y="495.50"></text></g><g><title>btrfs_lock_root_node (5,088 samples, 0.33%)</title><rect x="55.3560%" y="533" width="0.3306%" height="15" fill="rgb(242,97,9)" fg:x="851844" fg:w="5088"/><text x="55.6060%" y="543.50"></text></g><g><title>btrfs_root_node (211 samples, 0.01%)</title><rect x="55.6729%" y="517" width="0.0137%" height="15" fill="rgb(228,71,31)" fg:x="856721" fg:w="211"/><text x="55.9229%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (585 samples, 0.04%)</title><rect x="55.6866%" y="533" width="0.0380%" height="15" fill="rgb(252,184,16)" fg:x="856932" fg:w="585"/><text x="55.9366%" y="543.50"></text></g><g><title>btrfs_set_lock_blocking_write (167 samples, 0.01%)</title><rect x="55.7138%" y="517" width="0.0109%" height="15" fill="rgb(236,169,46)" fg:x="857350" fg:w="167"/><text x="55.9638%" y="527.50"></text></g><g><title>btrfs_tree_read_unlock (217 samples, 0.01%)</title><rect x="55.7246%" y="533" width="0.0141%" height="15" fill="rgb(207,17,47)" fg:x="857517" fg:w="217"/><text x="55.9746%" y="543.50"></text></g><g><title>_raw_write_lock (193 samples, 0.01%)</title><rect x="55.7421%" y="517" width="0.0125%" height="15" fill="rgb(206,201,28)" fg:x="857785" fg:w="193"/><text x="55.9921%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (250 samples, 0.02%)</title><rect x="55.7387%" y="533" width="0.0162%" height="15" fill="rgb(224,184,23)" fg:x="857734" fg:w="250"/><text x="55.9887%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (257 samples, 0.02%)</title><rect x="55.7556%" y="533" width="0.0167%" height="15" fill="rgb(208,139,48)" fg:x="857993" fg:w="257"/><text x="56.0056%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (1,169 samples, 0.08%)</title><rect x="55.7723%" y="533" width="0.0760%" height="15" fill="rgb(208,130,10)" fg:x="858250" fg:w="1169"/><text x="56.0223%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (219 samples, 0.01%)</title><rect x="55.8627%" y="517" width="0.0142%" height="15" fill="rgb(211,213,45)" fg:x="859641" fg:w="219"/><text x="56.1127%" y="527.50"></text></g><g><title>verify_parent_transid (185 samples, 0.01%)</title><rect x="55.8649%" y="501" width="0.0120%" height="15" fill="rgb(235,100,30)" fg:x="859675" fg:w="185"/><text x="56.1149%" y="511.50"></text></g><g><title>btrfs_get_64 (219 samples, 0.01%)</title><rect x="55.8769%" y="517" width="0.0142%" height="15" fill="rgb(206,144,31)" fg:x="859860" fg:w="219"/><text x="56.1269%" y="527.50"></text></g><g><title>__radix_tree_lookup (657 samples, 0.04%)</title><rect x="55.9350%" y="501" width="0.0427%" height="15" fill="rgb(224,200,26)" fg:x="860754" fg:w="657"/><text x="56.1850%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (400 samples, 0.03%)</title><rect x="55.9778%" y="501" width="0.0260%" height="15" fill="rgb(247,104,53)" fg:x="861412" fg:w="400"/><text x="56.2278%" y="511.50"></text></g><g><title>mark_page_accessed (280 samples, 0.02%)</title><rect x="55.9856%" y="485" width="0.0182%" height="15" fill="rgb(220,14,17)" fg:x="861532" fg:w="280"/><text x="56.2356%" y="495.50"></text></g><g><title>find_extent_buffer (1,643 samples, 0.11%)</title><rect x="55.8980%" y="517" width="0.1068%" height="15" fill="rgb(230,140,40)" fg:x="860184" fg:w="1643"/><text x="56.1480%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (2,678 samples, 0.17%)</title><rect x="55.8482%" y="533" width="0.1740%" height="15" fill="rgb(229,2,41)" fg:x="859419" fg:w="2678"/><text x="56.0982%" y="543.50"></text></g><g><title>read_extent_buffer (270 samples, 0.02%)</title><rect x="56.0047%" y="517" width="0.0175%" height="15" fill="rgb(232,89,16)" fg:x="861827" fg:w="270"/><text x="56.2547%" y="527.50"></text></g><g><title>btrfs_search_slot (21,675 samples, 1.41%)</title><rect x="54.6391%" y="549" width="1.4085%" height="15" fill="rgb(247,59,52)" fg:x="840812" fg:w="21675"/><text x="54.8891%" y="559.50"></text></g><g><title>unlock_up (240 samples, 0.02%)</title><rect x="56.0320%" y="533" width="0.0156%" height="15" fill="rgb(226,110,21)" fg:x="862247" fg:w="240"/><text x="56.2820%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (22,242 samples, 1.45%)</title><rect x="54.6239%" y="565" width="1.4454%" height="15" fill="rgb(224,176,43)" fg:x="840579" fg:w="22242"/><text x="54.8739%" y="575.50"></text></g><g><title>crc32c (334 samples, 0.02%)</title><rect x="56.0476%" y="549" width="0.0217%" height="15" fill="rgb(221,73,6)" fg:x="862487" fg:w="334"/><text x="56.2976%" y="559.50"></text></g><g><title>crypto_shash_update (168 samples, 0.01%)</title><rect x="56.0584%" y="533" width="0.0109%" height="15" fill="rgb(232,78,19)" fg:x="862653" fg:w="168"/><text x="56.3084%" y="543.50"></text></g><g><title>select_task_rq_fair (424 samples, 0.03%)</title><rect x="56.2651%" y="485" width="0.0276%" height="15" fill="rgb(233,112,48)" fg:x="865834" fg:w="424"/><text x="56.5151%" y="495.50"></text></g><g><title>enqueue_entity (526 samples, 0.03%)</title><rect x="56.3043%" y="453" width="0.0342%" height="15" fill="rgb(243,131,47)" fg:x="866437" fg:w="526"/><text x="56.5543%" y="463.50"></text></g><g><title>update_load_avg (186 samples, 0.01%)</title><rect x="56.3264%" y="437" width="0.0121%" height="15" fill="rgb(226,51,1)" fg:x="866777" fg:w="186"/><text x="56.5764%" y="447.50"></text></g><g><title>enqueue_task_fair (681 samples, 0.04%)</title><rect x="56.2963%" y="469" width="0.0443%" height="15" fill="rgb(247,58,7)" fg:x="866314" fg:w="681"/><text x="56.5463%" y="479.50"></text></g><g><title>ttwu_do_activate (1,439 samples, 0.09%)</title><rect x="56.2935%" y="485" width="0.0935%" height="15" fill="rgb(209,7,32)" fg:x="866271" fg:w="1439"/><text x="56.5435%" y="495.50"></text></g><g><title>psi_task_change (710 samples, 0.05%)</title><rect x="56.3409%" y="469" width="0.0461%" height="15" fill="rgb(209,39,41)" fg:x="867000" fg:w="710"/><text x="56.5909%" y="479.50"></text></g><g><title>psi_group_change (632 samples, 0.04%)</title><rect x="56.3460%" y="453" width="0.0411%" height="15" fill="rgb(226,182,46)" fg:x="867078" fg:w="632"/><text x="56.5960%" y="463.50"></text></g><g><title>ttwu_queue_wakelist (168 samples, 0.01%)</title><rect x="56.3966%" y="485" width="0.0109%" height="15" fill="rgb(230,219,10)" fg:x="867858" fg:w="168"/><text x="56.6466%" y="495.50"></text></g><g><title>__wake_up_common (5,076 samples, 0.33%)</title><rect x="56.0858%" y="533" width="0.3299%" height="15" fill="rgb(227,175,30)" fg:x="863074" fg:w="5076"/><text x="56.3358%" y="543.50"></text></g><g><title>autoremove_wake_function (4,934 samples, 0.32%)</title><rect x="56.0950%" y="517" width="0.3206%" height="15" fill="rgb(217,2,50)" fg:x="863216" fg:w="4934"/><text x="56.3450%" y="527.50"></text></g><g><title>try_to_wake_up (4,846 samples, 0.31%)</title><rect x="56.1007%" y="501" width="0.3149%" height="15" fill="rgb(229,160,0)" fg:x="863304" fg:w="4846"/><text x="56.3507%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,831 samples, 0.12%)</title><rect x="56.4156%" y="533" width="0.1190%" height="15" fill="rgb(207,78,37)" fg:x="868150" fg:w="1831"/><text x="56.6656%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,767 samples, 0.11%)</title><rect x="56.4198%" y="517" width="0.1148%" height="15" fill="rgb(225,57,0)" fg:x="868214" fg:w="1767"/><text x="56.6698%" y="527.50"></text></g><g><title>__wake_up_common_lock (6,990 samples, 0.45%)</title><rect x="56.0836%" y="549" width="0.4542%" height="15" fill="rgb(232,154,2)" fg:x="863041" fg:w="6990"/><text x="56.3336%" y="559.50"></text></g><g><title>btrfs_tree_unlock (469 samples, 0.03%)</title><rect x="56.5380%" y="549" width="0.0305%" height="15" fill="rgb(241,212,25)" fg:x="870033" fg:w="469"/><text x="56.7880%" y="559.50"></text></g><g><title>free_extent_buffer.part.0 (343 samples, 0.02%)</title><rect x="56.5689%" y="549" width="0.0223%" height="15" fill="rgb(226,69,20)" fg:x="870509" fg:w="343"/><text x="56.8189%" y="559.50"></text></g><g><title>_raw_spin_lock (170 samples, 0.01%)</title><rect x="56.5802%" y="533" width="0.0110%" height="15" fill="rgb(247,184,54)" fg:x="870682" fg:w="170"/><text x="56.8302%" y="543.50"></text></g><g><title>btrfs_release_path (8,214 samples, 0.53%)</title><rect x="56.0693%" y="565" width="0.5338%" height="15" fill="rgb(210,145,0)" fg:x="862821" fg:w="8214"/><text x="56.3193%" y="575.50"></text></g><g><title>release_extent_buffer (183 samples, 0.01%)</title><rect x="56.5912%" y="549" width="0.0119%" height="15" fill="rgb(253,82,12)" fg:x="870852" fg:w="183"/><text x="56.8412%" y="559.50"></text></g><g><title>kmem_cache_alloc (404 samples, 0.03%)</title><rect x="56.6036%" y="565" width="0.0263%" height="15" fill="rgb(245,42,11)" fg:x="871043" fg:w="404"/><text x="56.8536%" y="575.50"></text></g><g><title>kmem_cache_free (477 samples, 0.03%)</title><rect x="56.6299%" y="565" width="0.0310%" height="15" fill="rgb(219,147,32)" fg:x="871447" fg:w="477"/><text x="56.8799%" y="575.50"></text></g><g><title>mutex_lock (509 samples, 0.03%)</title><rect x="56.6609%" y="565" width="0.0331%" height="15" fill="rgb(246,12,7)" fg:x="871924" fg:w="509"/><text x="56.9109%" y="575.50"></text></g><g><title>btrfs_del_dir_entries_in_log (55,348 samples, 3.60%)</title><rect x="53.1176%" y="581" width="3.5967%" height="15" fill="rgb(243,50,9)" fg:x="817399" fg:w="55348"/><text x="53.3676%" y="591.50">btrf..</text></g><g><title>mutex_unlock (314 samples, 0.02%)</title><rect x="56.6939%" y="565" width="0.0204%" height="15" fill="rgb(219,149,6)" fg:x="872433" fg:w="314"/><text x="56.9439%" y="575.50"></text></g><g><title>btrfs_get_32 (475 samples, 0.03%)</title><rect x="56.8690%" y="549" width="0.0309%" height="15" fill="rgb(241,51,42)" fg:x="875127" fg:w="475"/><text x="57.1190%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (1,077 samples, 0.07%)</title><rect x="57.3502%" y="533" width="0.0700%" height="15" fill="rgb(226,128,27)" fg:x="882532" fg:w="1077"/><text x="57.6002%" y="543.50"></text></g><g><title>btrfs_get_token_32 (8,009 samples, 0.52%)</title><rect x="56.8999%" y="549" width="0.5205%" height="15" fill="rgb(244,144,4)" fg:x="875602" fg:w="8009"/><text x="57.1499%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (533 samples, 0.03%)</title><rect x="57.4203%" y="549" width="0.0346%" height="15" fill="rgb(221,4,13)" fg:x="883611" fg:w="533"/><text x="57.6703%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (218 samples, 0.01%)</title><rect x="57.4408%" y="533" width="0.0142%" height="15" fill="rgb(208,170,28)" fg:x="883926" fg:w="218"/><text x="57.6908%" y="543.50"></text></g><g><title>btrfs_set_token_32 (5,503 samples, 0.36%)</title><rect x="57.4550%" y="549" width="0.3576%" height="15" fill="rgb(226,131,13)" fg:x="884144" fg:w="5503"/><text x="57.7050%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (828 samples, 0.05%)</title><rect x="57.7588%" y="533" width="0.0538%" height="15" fill="rgb(215,72,41)" fg:x="888819" fg:w="828"/><text x="58.0088%" y="543.50"></text></g><g><title>leaf_space_used (429 samples, 0.03%)</title><rect x="57.8126%" y="549" width="0.0279%" height="15" fill="rgb(243,108,20)" fg:x="889648" fg:w="429"/><text x="58.0626%" y="559.50"></text></g><g><title>btrfs_get_32 (324 samples, 0.02%)</title><rect x="57.8195%" y="533" width="0.0211%" height="15" fill="rgb(230,189,17)" fg:x="889753" fg:w="324"/><text x="58.0695%" y="543.50"></text></g><g><title>memcpy_extent_buffer (1,015 samples, 0.07%)</title><rect x="57.8405%" y="549" width="0.0660%" height="15" fill="rgb(220,50,17)" fg:x="890077" fg:w="1015"/><text x="58.0905%" y="559.50"></text></g><g><title>memmove (772 samples, 0.05%)</title><rect x="57.8563%" y="533" width="0.0502%" height="15" fill="rgb(248,152,48)" fg:x="890320" fg:w="772"/><text x="58.1063%" y="543.50"></text></g><g><title>copy_pages (948 samples, 0.06%)</title><rect x="57.9345%" y="533" width="0.0616%" height="15" fill="rgb(244,91,11)" fg:x="891524" fg:w="948"/><text x="58.1845%" y="543.50"></text></g><g><title>memmove (7,313 samples, 0.48%)</title><rect x="57.9961%" y="533" width="0.4752%" height="15" fill="rgb(220,157,5)" fg:x="892472" fg:w="7313"/><text x="58.2461%" y="543.50"></text></g><g><title>btrfs_del_items (26,658 samples, 1.73%)</title><rect x="56.7391%" y="565" width="1.7323%" height="15" fill="rgb(253,137,8)" fg:x="873128" fg:w="26658"/><text x="56.9891%" y="575.50"></text></g><g><title>memmove_extent_buffer (8,694 samples, 0.56%)</title><rect x="57.9065%" y="549" width="0.5650%" height="15" fill="rgb(217,137,51)" fg:x="891092" fg:w="8694"/><text x="58.1565%" y="559.50"></text></g><g><title>btrfs_get_16 (780 samples, 0.05%)</title><rect x="58.4874%" y="549" width="0.0507%" height="15" fill="rgb(218,209,53)" fg:x="900031" fg:w="780"/><text x="58.7374%" y="559.50"></text></g><g><title>btrfs_get_32 (316 samples, 0.02%)</title><rect x="58.5380%" y="549" width="0.0205%" height="15" fill="rgb(249,137,25)" fg:x="900811" fg:w="316"/><text x="58.7880%" y="559.50"></text></g><g><title>btrfs_find_name_in_backref (1,707 samples, 0.11%)</title><rect x="58.4714%" y="565" width="0.1109%" height="15" fill="rgb(239,155,26)" fg:x="899786" fg:w="1707"/><text x="58.7214%" y="575.50"></text></g><g><title>memcmp_extent_buffer (366 samples, 0.02%)</title><rect x="58.5586%" y="549" width="0.0238%" height="15" fill="rgb(227,85,46)" fg:x="901127" fg:w="366"/><text x="58.8086%" y="559.50"></text></g><g><title>memcmp (233 samples, 0.02%)</title><rect x="58.5672%" y="533" width="0.0151%" height="15" fill="rgb(251,107,43)" fg:x="901260" fg:w="233"/><text x="58.8172%" y="543.50"></text></g><g><title>_raw_spin_lock (402 samples, 0.03%)</title><rect x="58.6494%" y="517" width="0.0261%" height="15" fill="rgb(234,170,33)" fg:x="902525" fg:w="402"/><text x="58.8994%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (1,052 samples, 0.07%)</title><rect x="58.6073%" y="533" width="0.0684%" height="15" fill="rgb(206,29,35)" fg:x="901876" fg:w="1052"/><text x="58.8573%" y="543.50"></text></g><g><title>btrfs_free_path (1,762 samples, 0.11%)</title><rect x="58.5824%" y="565" width="0.1145%" height="15" fill="rgb(227,138,25)" fg:x="901493" fg:w="1762"/><text x="58.8324%" y="575.50"></text></g><g><title>btrfs_release_path (1,743 samples, 0.11%)</title><rect x="58.5836%" y="549" width="0.1133%" height="15" fill="rgb(249,131,35)" fg:x="901512" fg:w="1743"/><text x="58.8336%" y="559.50"></text></g><g><title>release_extent_buffer (327 samples, 0.02%)</title><rect x="58.6756%" y="533" width="0.0212%" height="15" fill="rgb(239,6,40)" fg:x="902928" fg:w="327"/><text x="58.9256%" y="543.50"></text></g><g><title>btrfs_get_64 (184 samples, 0.01%)</title><rect x="58.7051%" y="565" width="0.0120%" height="15" fill="rgb(246,136,47)" fg:x="903381" fg:w="184"/><text x="58.9551%" y="575.50"></text></g><g><title>_raw_read_lock (396 samples, 0.03%)</title><rect x="58.8582%" y="517" width="0.0257%" height="15" fill="rgb(253,58,26)" fg:x="905738" fg:w="396"/><text x="59.1082%" y="527.50"></text></g><g><title>finish_wait (1,807 samples, 0.12%)</title><rect x="58.8857%" y="517" width="0.1174%" height="15" fill="rgb(237,141,10)" fg:x="906161" fg:w="1807"/><text x="59.1357%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (1,724 samples, 0.11%)</title><rect x="58.8911%" y="501" width="0.1120%" height="15" fill="rgb(234,156,12)" fg:x="906244" fg:w="1724"/><text x="59.1411%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,648 samples, 0.11%)</title><rect x="58.8960%" y="485" width="0.1071%" height="15" fill="rgb(243,224,36)" fg:x="906320" fg:w="1648"/><text x="59.1460%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (5,857 samples, 0.38%)</title><rect x="59.0349%" y="501" width="0.3806%" height="15" fill="rgb(205,229,51)" fg:x="908457" fg:w="5857"/><text x="59.2849%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,604 samples, 0.36%)</title><rect x="59.0514%" y="485" width="0.3642%" height="15" fill="rgb(223,189,4)" fg:x="908710" fg:w="5604"/><text x="59.3014%" y="495.50"></text></g><g><title>prepare_to_wait_event (6,469 samples, 0.42%)</title><rect x="59.0043%" y="517" width="0.4204%" height="15" fill="rgb(249,167,54)" fg:x="907986" fg:w="6469"/><text x="59.2543%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (7,198 samples, 0.47%)</title><rect x="59.4247%" y="517" width="0.4678%" height="15" fill="rgb(218,34,28)" fg:x="914455" fg:w="7198"/><text x="59.6747%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,978 samples, 0.32%)</title><rect x="59.5689%" y="501" width="0.3235%" height="15" fill="rgb(232,109,42)" fg:x="916675" fg:w="4978"/><text x="59.8189%" y="511.50"></text></g><g><title>__perf_event_task_sched_out (188 samples, 0.01%)</title><rect x="59.9139%" y="485" width="0.0122%" height="15" fill="rgb(248,214,46)" fg:x="921983" fg:w="188"/><text x="60.1639%" y="495.50"></text></g><g><title>update_curr (306 samples, 0.02%)</title><rect x="59.9535%" y="453" width="0.0199%" height="15" fill="rgb(244,216,40)" fg:x="922593" fg:w="306"/><text x="60.2035%" y="463.50"></text></g><g><title>dequeue_entity (829 samples, 0.05%)</title><rect x="59.9370%" y="469" width="0.0539%" height="15" fill="rgb(231,226,31)" fg:x="922339" fg:w="829"/><text x="60.1870%" y="479.50"></text></g><g><title>update_load_avg (269 samples, 0.02%)</title><rect x="59.9734%" y="453" width="0.0175%" height="15" fill="rgb(238,38,43)" fg:x="922899" fg:w="269"/><text x="60.2234%" y="463.50"></text></g><g><title>dequeue_task_fair (1,020 samples, 0.07%)</title><rect x="59.9296%" y="485" width="0.0663%" height="15" fill="rgb(208,88,43)" fg:x="922225" fg:w="1020"/><text x="60.1796%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (4,988 samples, 0.32%)</title><rect x="60.0164%" y="469" width="0.3241%" height="15" fill="rgb(205,136,37)" fg:x="923561" fg:w="4988"/><text x="60.2664%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,833 samples, 0.31%)</title><rect x="60.0265%" y="453" width="0.3141%" height="15" fill="rgb(237,34,14)" fg:x="923716" fg:w="4833"/><text x="60.2765%" y="463.50"></text></g><g><title>native_write_msr (4,770 samples, 0.31%)</title><rect x="60.0306%" y="437" width="0.3100%" height="15" fill="rgb(236,193,44)" fg:x="923779" fg:w="4770"/><text x="60.2806%" y="447.50"></text></g><g><title>finish_task_switch (5,474 samples, 0.36%)</title><rect x="59.9959%" y="485" width="0.3557%" height="15" fill="rgb(231,48,10)" fg:x="923245" fg:w="5474"/><text x="60.2459%" y="495.50"></text></g><g><title>pick_next_task_fair (249 samples, 0.02%)</title><rect x="60.3516%" y="485" width="0.0162%" height="15" fill="rgb(213,141,34)" fg:x="928719" fg:w="249"/><text x="60.6016%" y="495.50"></text></g><g><title>pick_next_task_idle (185 samples, 0.01%)</title><rect x="60.3678%" y="485" width="0.0120%" height="15" fill="rgb(249,130,34)" fg:x="928968" fg:w="185"/><text x="60.6178%" y="495.50"></text></g><g><title>psi_task_change (767 samples, 0.05%)</title><rect x="60.3798%" y="485" width="0.0498%" height="15" fill="rgb(219,42,41)" fg:x="929153" fg:w="767"/><text x="60.6298%" y="495.50"></text></g><g><title>psi_group_change (660 samples, 0.04%)</title><rect x="60.3868%" y="469" width="0.0429%" height="15" fill="rgb(224,100,54)" fg:x="929260" fg:w="660"/><text x="60.6368%" y="479.50"></text></g><g><title>record_times (161 samples, 0.01%)</title><rect x="60.4192%" y="453" width="0.0105%" height="15" fill="rgb(229,200,27)" fg:x="929759" fg:w="161"/><text x="60.6692%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (24,888 samples, 1.62%)</title><rect x="58.8290%" y="533" width="1.6173%" height="15" fill="rgb(217,118,10)" fg:x="905288" fg:w="24888"/><text x="59.0790%" y="543.50"></text></g><g><title>schedule (8,523 samples, 0.55%)</title><rect x="59.8924%" y="517" width="0.5539%" height="15" fill="rgb(206,22,3)" fg:x="921653" fg:w="8523"/><text x="60.1424%" y="527.50"></text></g><g><title>__schedule (8,435 samples, 0.55%)</title><rect x="59.8982%" y="501" width="0.5481%" height="15" fill="rgb(232,163,46)" fg:x="921741" fg:w="8435"/><text x="60.1482%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (25,501 samples, 1.66%)</title><rect x="58.8227%" y="549" width="1.6571%" height="15" fill="rgb(206,95,13)" fg:x="905192" fg:w="25501"/><text x="59.0727%" y="559.50"></text></g><g><title>btrfs_root_node (513 samples, 0.03%)</title><rect x="60.4466%" y="533" width="0.0333%" height="15" fill="rgb(253,154,18)" fg:x="930180" fg:w="513"/><text x="60.6966%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (168 samples, 0.01%)</title><rect x="60.4844%" y="485" width="0.0109%" height="15" fill="rgb(219,32,23)" fg:x="930763" fg:w="168"/><text x="60.7344%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (166 samples, 0.01%)</title><rect x="60.4846%" y="469" width="0.0108%" height="15" fill="rgb(230,191,45)" fg:x="930765" fg:w="166"/><text x="60.7346%" y="479.50"></text></g><g><title>native_write_msr (166 samples, 0.01%)</title><rect x="60.4846%" y="453" width="0.0108%" height="15" fill="rgb(229,64,36)" fg:x="930765" fg:w="166"/><text x="60.7346%" y="463.50"></text></g><g><title>finish_task_switch (185 samples, 0.01%)</title><rect x="60.4841%" y="501" width="0.0120%" height="15" fill="rgb(205,129,25)" fg:x="930757" fg:w="185"/><text x="60.7341%" y="511.50"></text></g><g><title>__btrfs_tree_lock (274 samples, 0.02%)</title><rect x="60.4799%" y="549" width="0.0178%" height="15" fill="rgb(254,112,7)" fg:x="930693" fg:w="274"/><text x="60.7299%" y="559.50"></text></g><g><title>schedule (258 samples, 0.02%)</title><rect x="60.4809%" y="533" width="0.0168%" height="15" fill="rgb(226,53,48)" fg:x="930709" fg:w="258"/><text x="60.7309%" y="543.50"></text></g><g><title>__schedule (255 samples, 0.02%)</title><rect x="60.4811%" y="517" width="0.0166%" height="15" fill="rgb(214,153,38)" fg:x="930712" fg:w="255"/><text x="60.7311%" y="527.50"></text></g><g><title>btrfs_alloc_from_cluster (183 samples, 0.01%)</title><rect x="60.5341%" y="453" width="0.0119%" height="15" fill="rgb(243,101,7)" fg:x="931527" fg:w="183"/><text x="60.7841%" y="463.50"></text></g><g><title>btrfs_reserve_extent (309 samples, 0.02%)</title><rect x="60.5268%" y="485" width="0.0201%" height="15" fill="rgb(240,140,22)" fg:x="931415" fg:w="309"/><text x="60.7768%" y="495.50"></text></g><g><title>find_free_extent (284 samples, 0.02%)</title><rect x="60.5284%" y="469" width="0.0185%" height="15" fill="rgb(235,114,2)" fg:x="931440" fg:w="284"/><text x="60.7784%" y="479.50"></text></g><g><title>alloc_tree_block_no_bg_flush (726 samples, 0.05%)</title><rect x="60.5085%" y="517" width="0.0472%" height="15" fill="rgb(242,59,12)" fg:x="931134" fg:w="726"/><text x="60.7585%" y="527.50"></text></g><g><title>btrfs_alloc_tree_block (726 samples, 0.05%)</title><rect x="60.5085%" y="501" width="0.0472%" height="15" fill="rgb(252,134,9)" fg:x="931134" fg:w="726"/><text x="60.7585%" y="511.50"></text></g><g><title>btrfs_free_tree_block (195 samples, 0.01%)</title><rect x="60.5557%" y="517" width="0.0127%" height="15" fill="rgb(236,4,44)" fg:x="931860" fg:w="195"/><text x="60.8057%" y="527.50"></text></g><g><title>copy_extent_buffer_full (173 samples, 0.01%)</title><rect x="60.5786%" y="517" width="0.0112%" height="15" fill="rgb(254,172,41)" fg:x="932212" fg:w="173"/><text x="60.8286%" y="527.50"></text></g><g><title>copy_page (167 samples, 0.01%)</title><rect x="60.5790%" y="501" width="0.0109%" height="15" fill="rgb(244,63,20)" fg:x="932218" fg:w="167"/><text x="60.8290%" y="511.50"></text></g><g><title>__btrfs_cow_block (1,361 samples, 0.09%)</title><rect x="60.5071%" y="533" width="0.0884%" height="15" fill="rgb(250,73,31)" fg:x="931112" fg:w="1361"/><text x="60.7571%" y="543.50"></text></g><g><title>btrfs_cow_block (1,373 samples, 0.09%)</title><rect x="60.5067%" y="549" width="0.0892%" height="15" fill="rgb(241,38,36)" fg:x="931106" fg:w="1373"/><text x="60.7567%" y="559.50"></text></g><g><title>__schedule (170 samples, 0.01%)</title><rect x="60.6343%" y="501" width="0.0110%" height="15" fill="rgb(245,211,2)" fg:x="933069" fg:w="170"/><text x="60.8843%" y="511.50"></text></g><g><title>_cond_resched (232 samples, 0.02%)</title><rect x="60.6314%" y="517" width="0.0151%" height="15" fill="rgb(206,120,28)" fg:x="933024" fg:w="232"/><text x="60.8814%" y="527.50"></text></g><g><title>_raw_write_lock (356 samples, 0.02%)</title><rect x="60.6477%" y="517" width="0.0231%" height="15" fill="rgb(211,59,34)" fg:x="933275" fg:w="356"/><text x="60.8977%" y="527.50"></text></g><g><title>finish_wait (1,234 samples, 0.08%)</title><rect x="60.6709%" y="517" width="0.0802%" height="15" fill="rgb(233,168,5)" fg:x="933632" fg:w="1234"/><text x="60.9209%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (1,164 samples, 0.08%)</title><rect x="60.6754%" y="501" width="0.0756%" height="15" fill="rgb(234,33,13)" fg:x="933702" fg:w="1164"/><text x="60.9254%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,087 samples, 0.07%)</title><rect x="60.6804%" y="485" width="0.0706%" height="15" fill="rgb(231,150,26)" fg:x="933779" fg:w="1087"/><text x="60.9304%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (3,647 samples, 0.24%)</title><rect x="60.7782%" y="501" width="0.2370%" height="15" fill="rgb(217,191,4)" fg:x="935284" fg:w="3647"/><text x="61.0282%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,417 samples, 0.22%)</title><rect x="60.7932%" y="485" width="0.2220%" height="15" fill="rgb(246,198,38)" fg:x="935514" fg:w="3417"/><text x="61.0432%" y="495.50"></text></g><g><title>prepare_to_wait_event (4,141 samples, 0.27%)</title><rect x="60.7522%" y="517" width="0.2691%" height="15" fill="rgb(245,64,37)" fg:x="934883" fg:w="4141"/><text x="61.0022%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (9,439 samples, 0.61%)</title><rect x="61.0213%" y="517" width="0.6134%" height="15" fill="rgb(250,30,36)" fg:x="939024" fg:w="9439"/><text x="61.2713%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,647 samples, 0.24%)</title><rect x="61.3977%" y="501" width="0.2370%" height="15" fill="rgb(217,86,53)" fg:x="944816" fg:w="3647"/><text x="61.6477%" y="511.50"></text></g><g><title>__perf_event_task_sched_out (164 samples, 0.01%)</title><rect x="61.6552%" y="485" width="0.0107%" height="15" fill="rgb(228,157,16)" fg:x="948779" fg:w="164"/><text x="61.9052%" y="495.50"></text></g><g><title>update_curr (279 samples, 0.02%)</title><rect x="61.6944%" y="453" width="0.0181%" height="15" fill="rgb(217,59,31)" fg:x="949383" fg:w="279"/><text x="61.9444%" y="463.50"></text></g><g><title>dequeue_entity (812 samples, 0.05%)</title><rect x="61.6764%" y="469" width="0.0528%" height="15" fill="rgb(237,138,41)" fg:x="949106" fg:w="812"/><text x="61.9264%" y="479.50"></text></g><g><title>update_load_avg (256 samples, 0.02%)</title><rect x="61.7126%" y="453" width="0.0166%" height="15" fill="rgb(227,91,49)" fg:x="949662" fg:w="256"/><text x="61.9626%" y="463.50"></text></g><g><title>dequeue_task_fair (999 samples, 0.06%)</title><rect x="61.6697%" y="485" width="0.0649%" height="15" fill="rgb(247,21,44)" fg:x="949002" fg:w="999"/><text x="61.9197%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (6,089 samples, 0.40%)</title><rect x="61.7538%" y="469" width="0.3957%" height="15" fill="rgb(219,210,51)" fg:x="950297" fg:w="6089"/><text x="62.0038%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,915 samples, 0.38%)</title><rect x="61.7651%" y="453" width="0.3844%" height="15" fill="rgb(209,140,6)" fg:x="950471" fg:w="5915"/><text x="62.0151%" y="463.50"></text></g><g><title>native_write_msr (5,820 samples, 0.38%)</title><rect x="61.7713%" y="437" width="0.3782%" height="15" fill="rgb(221,188,24)" fg:x="950566" fg:w="5820"/><text x="62.0213%" y="447.50"></text></g><g><title>finish_task_switch (6,602 samples, 0.43%)</title><rect x="61.7346%" y="485" width="0.4290%" height="15" fill="rgb(232,154,20)" fg:x="950001" fg:w="6602"/><text x="61.9846%" y="495.50"></text></g><g><title>pick_next_task_fair (202 samples, 0.01%)</title><rect x="62.1637%" y="485" width="0.0131%" height="15" fill="rgb(244,137,50)" fg:x="956605" fg:w="202"/><text x="62.4137%" y="495.50"></text></g><g><title>pick_next_task_idle (202 samples, 0.01%)</title><rect x="62.1769%" y="485" width="0.0131%" height="15" fill="rgb(225,185,43)" fg:x="956807" fg:w="202"/><text x="62.4269%" y="495.50"></text></g><g><title>__update_idle_core (176 samples, 0.01%)</title><rect x="62.1786%" y="469" width="0.0114%" height="15" fill="rgb(213,205,38)" fg:x="956833" fg:w="176"/><text x="62.4286%" y="479.50"></text></g><g><title>psi_task_change (829 samples, 0.05%)</title><rect x="62.1900%" y="485" width="0.0539%" height="15" fill="rgb(236,73,12)" fg:x="957009" fg:w="829"/><text x="62.4400%" y="495.50"></text></g><g><title>psi_group_change (716 samples, 0.05%)</title><rect x="62.1973%" y="469" width="0.0465%" height="15" fill="rgb(235,219,13)" fg:x="957122" fg:w="716"/><text x="62.4473%" y="479.50"></text></g><g><title>record_times (183 samples, 0.01%)</title><rect x="62.2320%" y="453" width="0.0119%" height="15" fill="rgb(218,59,36)" fg:x="957655" fg:w="183"/><text x="62.4820%" y="463.50"></text></g><g><title>__btrfs_tree_lock (25,568 samples, 1.66%)</title><rect x="60.5982%" y="533" width="1.6615%" height="15" fill="rgb(205,110,39)" fg:x="932514" fg:w="25568"/><text x="60.8482%" y="543.50"></text></g><g><title>schedule (9,618 samples, 0.63%)</title><rect x="61.6347%" y="517" width="0.6250%" height="15" fill="rgb(218,206,42)" fg:x="948464" fg:w="9618"/><text x="61.8847%" y="527.50"></text></g><g><title>__schedule (9,563 samples, 0.62%)</title><rect x="61.6383%" y="501" width="0.6214%" height="15" fill="rgb(248,125,24)" fg:x="948519" fg:w="9563"/><text x="61.8883%" y="511.50"></text></g><g><title>btrfs_lock_root_node (25,941 samples, 1.69%)</title><rect x="60.5960%" y="549" width="1.6857%" height="15" fill="rgb(242,28,27)" fg:x="932479" fg:w="25941"/><text x="60.8460%" y="559.50"></text></g><g><title>btrfs_root_node (338 samples, 0.02%)</title><rect x="62.2597%" y="533" width="0.0220%" height="15" fill="rgb(216,228,15)" fg:x="958082" fg:w="338"/><text x="62.5097%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (321 samples, 0.02%)</title><rect x="62.2825%" y="549" width="0.0209%" height="15" fill="rgb(235,116,46)" fg:x="958432" fg:w="321"/><text x="62.5325%" y="559.50"></text></g><g><title>_raw_write_lock (328 samples, 0.02%)</title><rect x="62.3089%" y="533" width="0.0213%" height="15" fill="rgb(224,18,32)" fg:x="958839" fg:w="328"/><text x="62.5589%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (3,018 samples, 0.20%)</title><rect x="62.3033%" y="549" width="0.1961%" height="15" fill="rgb(252,5,12)" fg:x="958753" fg:w="3018"/><text x="62.5533%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (2,604 samples, 0.17%)</title><rect x="62.3302%" y="533" width="0.1692%" height="15" fill="rgb(251,36,5)" fg:x="959167" fg:w="2604"/><text x="62.5802%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (352 samples, 0.02%)</title><rect x="62.5000%" y="549" width="0.0229%" height="15" fill="rgb(217,53,14)" fg:x="961779" fg:w="352"/><text x="62.7500%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (4,647 samples, 0.30%)</title><rect x="62.5228%" y="549" width="0.3020%" height="15" fill="rgb(215,86,45)" fg:x="962131" fg:w="4647"/><text x="62.7728%" y="559.50"></text></g><g><title>btrfs_buffer_uptodate (734 samples, 0.05%)</title><rect x="62.8554%" y="533" width="0.0477%" height="15" fill="rgb(242,169,11)" fg:x="967249" fg:w="734"/><text x="63.1054%" y="543.50"></text></g><g><title>verify_parent_transid (667 samples, 0.04%)</title><rect x="62.8598%" y="517" width="0.0433%" height="15" fill="rgb(211,213,45)" fg:x="967316" fg:w="667"/><text x="63.1098%" y="527.50"></text></g><g><title>btrfs_get_64 (630 samples, 0.04%)</title><rect x="62.9031%" y="533" width="0.0409%" height="15" fill="rgb(205,88,11)" fg:x="967983" fg:w="630"/><text x="63.1531%" y="543.50"></text></g><g><title>check_setget_bounds.isra.0 (188 samples, 0.01%)</title><rect x="62.9319%" y="517" width="0.0122%" height="15" fill="rgb(252,69,26)" fg:x="968425" fg:w="188"/><text x="63.1819%" y="527.50"></text></g><g><title>btrfs_verify_level_key (162 samples, 0.01%)</title><rect x="62.9477%" y="533" width="0.0105%" height="15" fill="rgb(246,123,37)" fg:x="968669" fg:w="162"/><text x="63.1977%" y="543.50"></text></g><g><title>__radix_tree_lookup (2,117 samples, 0.14%)</title><rect x="63.0476%" y="517" width="0.1376%" height="15" fill="rgb(212,205,5)" fg:x="970206" fg:w="2117"/><text x="63.2976%" y="527.50"></text></g><g><title>mark_extent_buffer_accessed (1,237 samples, 0.08%)</title><rect x="63.1856%" y="517" width="0.0804%" height="15" fill="rgb(253,148,0)" fg:x="972329" fg:w="1237"/><text x="63.4356%" y="527.50"></text></g><g><title>mark_page_accessed (991 samples, 0.06%)</title><rect x="63.2015%" y="501" width="0.0644%" height="15" fill="rgb(239,22,4)" fg:x="972575" fg:w="991"/><text x="63.4515%" y="511.50"></text></g><g><title>find_extent_buffer (4,772 samples, 0.31%)</title><rect x="62.9582%" y="533" width="0.3101%" height="15" fill="rgb(226,26,53)" fg:x="968831" fg:w="4772"/><text x="63.2082%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (7,456 samples, 0.48%)</title><rect x="62.8248%" y="549" width="0.4845%" height="15" fill="rgb(225,229,45)" fg:x="966778" fg:w="7456"/><text x="63.0748%" y="559.50"></text></g><g><title>read_extent_buffer (631 samples, 0.04%)</title><rect x="63.2683%" y="533" width="0.0410%" height="15" fill="rgb(220,60,37)" fg:x="973603" fg:w="631"/><text x="63.5183%" y="543.50"></text></g><g><title>__wake_up_common (298 samples, 0.02%)</title><rect x="63.3544%" y="517" width="0.0194%" height="15" fill="rgb(217,180,35)" fg:x="974927" fg:w="298"/><text x="63.6044%" y="527.50"></text></g><g><title>autoremove_wake_function (295 samples, 0.02%)</title><rect x="63.3546%" y="501" width="0.0192%" height="15" fill="rgb(229,7,53)" fg:x="974930" fg:w="295"/><text x="63.6046%" y="511.50"></text></g><g><title>try_to_wake_up (286 samples, 0.02%)</title><rect x="63.3552%" y="485" width="0.0186%" height="15" fill="rgb(254,137,3)" fg:x="974939" fg:w="286"/><text x="63.6052%" y="495.50"></text></g><g><title>__wake_up_common_lock (304 samples, 0.02%)</title><rect x="63.3544%" y="533" width="0.0198%" height="15" fill="rgb(215,140,41)" fg:x="974927" fg:w="304"/><text x="63.6044%" y="543.50"></text></g><g><title>btrfs_search_slot (71,850 samples, 4.67%)</title><rect x="58.7170%" y="565" width="4.6691%" height="15" fill="rgb(250,80,15)" fg:x="903565" fg:w="71850"/><text x="58.9670%" y="575.50">btrfs..</text></g><g><title>unlock_up (1,173 samples, 0.08%)</title><rect x="63.3099%" y="549" width="0.0762%" height="15" fill="rgb(252,191,6)" fg:x="974242" fg:w="1173"/><text x="63.5599%" y="559.50"></text></g><g><title>btrfs_tree_unlock (183 samples, 0.01%)</title><rect x="63.3742%" y="533" width="0.0119%" height="15" fill="rgb(246,217,18)" fg:x="975232" fg:w="183"/><text x="63.6242%" y="543.50"></text></g><g><title>pick_next_task_fair (171 samples, 0.01%)</title><rect x="63.4459%" y="501" width="0.0111%" height="15" fill="rgb(223,93,7)" fg:x="976336" fg:w="171"/><text x="63.6959%" y="511.50"></text></g><g><title>__schedule (470 samples, 0.03%)</title><rect x="63.4317%" y="517" width="0.0305%" height="15" fill="rgb(225,55,52)" fg:x="976117" fg:w="470"/><text x="63.6817%" y="527.50"></text></g><g><title>_cond_resched (559 samples, 0.04%)</title><rect x="63.4287%" y="533" width="0.0363%" height="15" fill="rgb(240,31,24)" fg:x="976070" fg:w="559"/><text x="63.6787%" y="543.50"></text></g><g><title>kmem_cache_alloc (1,215 samples, 0.08%)</title><rect x="63.3864%" y="565" width="0.0790%" height="15" fill="rgb(205,56,52)" fg:x="975420" fg:w="1215"/><text x="63.6364%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (693 samples, 0.05%)</title><rect x="63.4203%" y="549" width="0.0450%" height="15" fill="rgb(246,146,12)" fg:x="975942" fg:w="693"/><text x="63.6703%" y="559.50"></text></g><g><title>btrfs_del_inode_ref (104,466 samples, 6.79%)</title><rect x="56.7143%" y="581" width="6.7886%" height="15" fill="rgb(239,84,36)" fg:x="872747" fg:w="104466"/><text x="56.9643%" y="591.50">btrfs_del..</text></g><g><title>kmem_cache_free (578 samples, 0.04%)</title><rect x="63.4654%" y="565" width="0.0376%" height="15" fill="rgb(207,41,40)" fg:x="976635" fg:w="578"/><text x="63.7154%" y="575.50"></text></g><g><title>select_task_rq_fair (552 samples, 0.04%)</title><rect x="63.8306%" y="453" width="0.0359%" height="15" fill="rgb(241,179,25)" fg:x="982256" fg:w="552"/><text x="64.0806%" y="463.50"></text></g><g><title>update_cfs_rq_h_load (170 samples, 0.01%)</title><rect x="63.8555%" y="437" width="0.0110%" height="15" fill="rgb(210,0,34)" fg:x="982638" fg:w="170"/><text x="64.1055%" y="447.50"></text></g><g><title>enqueue_entity (724 samples, 0.05%)</title><rect x="63.8809%" y="421" width="0.0470%" height="15" fill="rgb(225,217,29)" fg:x="983029" fg:w="724"/><text x="64.1309%" y="431.50"></text></g><g><title>update_load_avg (261 samples, 0.02%)</title><rect x="63.9110%" y="405" width="0.0170%" height="15" fill="rgb(216,191,38)" fg:x="983492" fg:w="261"/><text x="64.1610%" y="415.50"></text></g><g><title>enqueue_task_fair (904 samples, 0.06%)</title><rect x="63.8716%" y="437" width="0.0587%" height="15" fill="rgb(232,140,52)" fg:x="982886" fg:w="904"/><text x="64.1216%" y="447.50"></text></g><g><title>ttwu_do_activate (1,881 samples, 0.12%)</title><rect x="63.8683%" y="453" width="0.1222%" height="15" fill="rgb(223,158,51)" fg:x="982835" fg:w="1881"/><text x="64.1183%" y="463.50"></text></g><g><title>psi_task_change (924 samples, 0.06%)</title><rect x="63.9305%" y="437" width="0.0600%" height="15" fill="rgb(235,29,51)" fg:x="983792" fg:w="924"/><text x="64.1805%" y="447.50"></text></g><g><title>psi_group_change (831 samples, 0.05%)</title><rect x="63.9365%" y="421" width="0.0540%" height="15" fill="rgb(215,181,18)" fg:x="983885" fg:w="831"/><text x="64.1865%" y="431.50"></text></g><g><title>ttwu_do_wakeup (202 samples, 0.01%)</title><rect x="63.9905%" y="453" width="0.0131%" height="15" fill="rgb(227,125,34)" fg:x="984716" fg:w="202"/><text x="64.2405%" y="463.50"></text></g><g><title>check_preempt_curr (178 samples, 0.01%)</title><rect x="63.9921%" y="437" width="0.0116%" height="15" fill="rgb(230,197,49)" fg:x="984740" fg:w="178"/><text x="64.2421%" y="447.50"></text></g><g><title>ttwu_queue_wakelist (203 samples, 0.01%)</title><rect x="64.0036%" y="453" width="0.0132%" height="15" fill="rgb(239,141,16)" fg:x="984918" fg:w="203"/><text x="64.2536%" y="463.50"></text></g><g><title>__wake_up_common (7,163 samples, 0.47%)</title><rect x="63.5621%" y="501" width="0.4655%" height="15" fill="rgb(225,105,43)" fg:x="978124" fg:w="7163"/><text x="63.8121%" y="511.50"></text></g><g><title>autoremove_wake_function (6,951 samples, 0.45%)</title><rect x="63.5759%" y="485" width="0.4517%" height="15" fill="rgb(214,131,14)" fg:x="978336" fg:w="6951"/><text x="63.8259%" y="495.50"></text></g><g><title>try_to_wake_up (6,866 samples, 0.45%)</title><rect x="63.5814%" y="469" width="0.4462%" height="15" fill="rgb(229,177,11)" fg:x="978421" fg:w="6866"/><text x="63.8314%" y="479.50"></text></g><g><title>update_rq_clock (166 samples, 0.01%)</title><rect x="64.0168%" y="453" width="0.0108%" height="15" fill="rgb(231,180,14)" fg:x="985121" fg:w="166"/><text x="64.2668%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (3,118 samples, 0.20%)</title><rect x="64.0276%" y="501" width="0.2026%" height="15" fill="rgb(232,88,2)" fg:x="985287" fg:w="3118"/><text x="64.2776%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,031 samples, 0.20%)</title><rect x="64.0333%" y="485" width="0.1970%" height="15" fill="rgb(205,220,8)" fg:x="985374" fg:w="3031"/><text x="64.2833%" y="495.50"></text></g><g><title>__wake_up_common_lock (10,411 samples, 0.68%)</title><rect x="63.5589%" y="517" width="0.6765%" height="15" fill="rgb(225,23,53)" fg:x="978074" fg:w="10411"/><text x="63.8089%" y="527.50"></text></g><g><title>btrfs_tree_unlock (506 samples, 0.03%)</title><rect x="64.2355%" y="517" width="0.0329%" height="15" fill="rgb(213,62,29)" fg:x="988486" fg:w="506"/><text x="64.4855%" y="527.50"></text></g><g><title>_raw_spin_lock (238 samples, 0.02%)</title><rect x="64.2893%" y="501" width="0.0155%" height="15" fill="rgb(227,75,7)" fg:x="989314" fg:w="238"/><text x="64.5393%" y="511.50"></text></g><g><title>free_extent_buffer.part.0 (540 samples, 0.04%)</title><rect x="64.2698%" y="517" width="0.0351%" height="15" fill="rgb(207,105,14)" fg:x="989014" fg:w="540"/><text x="64.5198%" y="527.50"></text></g><g><title>btrfs_free_path (12,121 samples, 0.79%)</title><rect x="63.5354%" y="549" width="0.7877%" height="15" fill="rgb(245,62,29)" fg:x="977713" fg:w="12121"/><text x="63.7854%" y="559.50"></text></g><g><title>btrfs_release_path (12,030 samples, 0.78%)</title><rect x="63.5413%" y="533" width="0.7818%" height="15" fill="rgb(236,202,4)" fg:x="977804" fg:w="12030"/><text x="63.7913%" y="543.50"></text></g><g><title>release_extent_buffer (280 samples, 0.02%)</title><rect x="64.3049%" y="517" width="0.0182%" height="15" fill="rgb(250,67,1)" fg:x="989554" fg:w="280"/><text x="64.5549%" y="527.50"></text></g><g><title>_raw_read_lock (432 samples, 0.03%)</title><rect x="64.4373%" y="501" width="0.0281%" height="15" fill="rgb(253,115,44)" fg:x="991591" fg:w="432"/><text x="64.6873%" y="511.50"></text></g><g><title>finish_wait (1,403 samples, 0.09%)</title><rect x="64.4668%" y="501" width="0.0912%" height="15" fill="rgb(251,139,18)" fg:x="992045" fg:w="1403"/><text x="64.7168%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,322 samples, 0.09%)</title><rect x="64.4720%" y="485" width="0.0859%" height="15" fill="rgb(218,22,32)" fg:x="992126" fg:w="1322"/><text x="64.7220%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,256 samples, 0.08%)</title><rect x="64.4763%" y="469" width="0.0816%" height="15" fill="rgb(243,53,5)" fg:x="992192" fg:w="1256"/><text x="64.7263%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (3,607 samples, 0.23%)</title><rect x="64.5792%" y="485" width="0.2344%" height="15" fill="rgb(227,56,16)" fg:x="993775" fg:w="3607"/><text x="64.8292%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,396 samples, 0.22%)</title><rect x="64.5929%" y="469" width="0.2207%" height="15" fill="rgb(245,53,0)" fg:x="993986" fg:w="3396"/><text x="64.8429%" y="479.50"></text></g><g><title>prepare_to_wait_event (4,012 samples, 0.26%)</title><rect x="64.5579%" y="501" width="0.2607%" height="15" fill="rgb(216,170,35)" fg:x="993448" fg:w="4012"/><text x="64.8079%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (418 samples, 0.03%)</title><rect x="64.8187%" y="501" width="0.0272%" height="15" fill="rgb(211,200,8)" fg:x="997460" fg:w="418"/><text x="65.0687%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (182 samples, 0.01%)</title><rect x="64.8340%" y="485" width="0.0118%" height="15" fill="rgb(228,204,44)" fg:x="997696" fg:w="182"/><text x="65.0840%" y="495.50"></text></g><g><title>update_curr (260 samples, 0.02%)</title><rect x="64.9012%" y="437" width="0.0169%" height="15" fill="rgb(214,121,17)" fg:x="998730" fg:w="260"/><text x="65.1512%" y="447.50"></text></g><g><title>dequeue_entity (719 samples, 0.05%)</title><rect x="64.8855%" y="453" width="0.0467%" height="15" fill="rgb(233,64,38)" fg:x="998488" fg:w="719"/><text x="65.1355%" y="463.50"></text></g><g><title>update_load_avg (217 samples, 0.01%)</title><rect x="64.9181%" y="437" width="0.0141%" height="15" fill="rgb(253,54,19)" fg:x="998990" fg:w="217"/><text x="65.1681%" y="447.50"></text></g><g><title>dequeue_task_fair (873 samples, 0.06%)</title><rect x="64.8787%" y="469" width="0.0567%" height="15" fill="rgb(253,94,18)" fg:x="998384" fg:w="873"/><text x="65.1287%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (1,496 samples, 0.10%)</title><rect x="64.9437%" y="453" width="0.0972%" height="15" fill="rgb(227,57,52)" fg:x="999384" fg:w="1496"/><text x="65.1937%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,445 samples, 0.09%)</title><rect x="64.9470%" y="437" width="0.0939%" height="15" fill="rgb(230,228,50)" fg:x="999435" fg:w="1445"/><text x="65.1970%" y="447.50"></text></g><g><title>native_write_msr (1,423 samples, 0.09%)</title><rect x="64.9484%" y="421" width="0.0925%" height="15" fill="rgb(217,205,27)" fg:x="999457" fg:w="1423"/><text x="65.1984%" y="431.50"></text></g><g><title>finish_task_switch (1,701 samples, 0.11%)</title><rect x="64.9354%" y="469" width="0.1105%" height="15" fill="rgb(252,71,50)" fg:x="999257" fg:w="1701"/><text x="65.1854%" y="479.50"></text></g><g><title>psi_task_change (648 samples, 0.04%)</title><rect x="65.0655%" y="469" width="0.0421%" height="15" fill="rgb(209,86,4)" fg:x="1001259" fg:w="648"/><text x="65.3155%" y="479.50"></text></g><g><title>psi_group_change (547 samples, 0.04%)</title><rect x="65.0721%" y="453" width="0.0355%" height="15" fill="rgb(229,94,0)" fg:x="1001360" fg:w="547"/><text x="65.3221%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (10,942 samples, 0.71%)</title><rect x="64.4104%" y="517" width="0.7111%" height="15" fill="rgb(252,223,21)" fg:x="991177" fg:w="10942"/><text x="64.6604%" y="527.50"></text></g><g><title>schedule (4,241 samples, 0.28%)</title><rect x="64.8458%" y="501" width="0.2756%" height="15" fill="rgb(230,210,4)" fg:x="997878" fg:w="4241"/><text x="65.0958%" y="511.50"></text></g><g><title>__schedule (4,167 samples, 0.27%)</title><rect x="64.8506%" y="485" width="0.2708%" height="15" fill="rgb(240,149,38)" fg:x="997952" fg:w="4167"/><text x="65.1006%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (11,818 samples, 0.77%)</title><rect x="64.4041%" y="533" width="0.7680%" height="15" fill="rgb(254,105,20)" fg:x="991080" fg:w="11818"/><text x="64.6541%" y="543.50"></text></g><g><title>btrfs_root_node (779 samples, 0.05%)</title><rect x="65.1214%" y="517" width="0.0506%" height="15" fill="rgb(253,87,46)" fg:x="1002119" fg:w="779"/><text x="65.3714%" y="527.50"></text></g><g><title>btrfs_get_64 (223 samples, 0.01%)</title><rect x="65.1993%" y="517" width="0.0145%" height="15" fill="rgb(253,116,33)" fg:x="1003318" fg:w="223"/><text x="65.4493%" y="527.50"></text></g><g><title>balance_level (615 samples, 0.04%)</title><rect x="65.1739%" y="533" width="0.0400%" height="15" fill="rgb(229,198,5)" fg:x="1002927" fg:w="615"/><text x="65.4239%" y="543.50"></text></g><g><title>_raw_write_lock (324 samples, 0.02%)</title><rect x="65.2518%" y="501" width="0.0211%" height="15" fill="rgb(242,38,37)" fg:x="1004125" fg:w="324"/><text x="65.5018%" y="511.50"></text></g><g><title>finish_wait (1,025 samples, 0.07%)</title><rect x="65.2730%" y="501" width="0.0666%" height="15" fill="rgb(242,69,53)" fg:x="1004451" fg:w="1025"/><text x="65.5230%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (967 samples, 0.06%)</title><rect x="65.2767%" y="485" width="0.0628%" height="15" fill="rgb(249,80,16)" fg:x="1004509" fg:w="967"/><text x="65.5267%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (914 samples, 0.06%)</title><rect x="65.2802%" y="469" width="0.0594%" height="15" fill="rgb(206,128,11)" fg:x="1004562" fg:w="914"/><text x="65.5302%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (2,543 samples, 0.17%)</title><rect x="65.3547%" y="485" width="0.1653%" height="15" fill="rgb(212,35,20)" fg:x="1005709" fg:w="2543"/><text x="65.6047%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,395 samples, 0.16%)</title><rect x="65.3643%" y="469" width="0.1556%" height="15" fill="rgb(236,79,13)" fg:x="1005857" fg:w="2395"/><text x="65.6143%" y="479.50"></text></g><g><title>prepare_to_wait_event (2,807 samples, 0.18%)</title><rect x="65.3402%" y="501" width="0.1824%" height="15" fill="rgb(233,123,3)" fg:x="1005485" fg:w="2807"/><text x="65.5902%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (538 samples, 0.03%)</title><rect x="65.5226%" y="501" width="0.0350%" height="15" fill="rgb(214,93,52)" fg:x="1008292" fg:w="538"/><text x="65.7726%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (163 samples, 0.01%)</title><rect x="65.5469%" y="485" width="0.0106%" height="15" fill="rgb(251,37,40)" fg:x="1008667" fg:w="163"/><text x="65.7969%" y="495.50"></text></g><g><title>dequeue_entity (395 samples, 0.03%)</title><rect x="65.5743%" y="453" width="0.0257%" height="15" fill="rgb(227,80,54)" fg:x="1009088" fg:w="395"/><text x="65.8243%" y="463.50"></text></g><g><title>dequeue_task_fair (450 samples, 0.03%)</title><rect x="65.5718%" y="469" width="0.0292%" height="15" fill="rgb(254,48,11)" fg:x="1009049" fg:w="450"/><text x="65.8218%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (586 samples, 0.04%)</title><rect x="65.6057%" y="453" width="0.0381%" height="15" fill="rgb(235,193,26)" fg:x="1009572" fg:w="586"/><text x="65.8557%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (553 samples, 0.04%)</title><rect x="65.6079%" y="437" width="0.0359%" height="15" fill="rgb(229,99,21)" fg:x="1009605" fg:w="553"/><text x="65.8579%" y="447.50"></text></g><g><title>native_write_msr (542 samples, 0.04%)</title><rect x="65.6086%" y="421" width="0.0352%" height="15" fill="rgb(211,140,41)" fg:x="1009616" fg:w="542"/><text x="65.8586%" y="431.50"></text></g><g><title>finish_task_switch (683 samples, 0.04%)</title><rect x="65.6010%" y="469" width="0.0444%" height="15" fill="rgb(240,227,30)" fg:x="1009499" fg:w="683"/><text x="65.8510%" y="479.50"></text></g><g><title>psi_task_change (360 samples, 0.02%)</title><rect x="65.6549%" y="469" width="0.0234%" height="15" fill="rgb(215,224,45)" fg:x="1010328" fg:w="360"/><text x="65.9049%" y="479.50"></text></g><g><title>psi_group_change (314 samples, 0.02%)</title><rect x="65.6579%" y="453" width="0.0204%" height="15" fill="rgb(206,123,31)" fg:x="1010374" fg:w="314"/><text x="65.9079%" y="463.50"></text></g><g><title>__schedule (1,913 samples, 0.12%)</title><rect x="65.5600%" y="485" width="0.1243%" height="15" fill="rgb(210,138,16)" fg:x="1008868" fg:w="1913"/><text x="65.8100%" y="495.50"></text></g><g><title>__btrfs_tree_lock (7,090 samples, 0.46%)</title><rect x="65.2236%" y="517" width="0.4607%" height="15" fill="rgb(228,57,28)" fg:x="1003692" fg:w="7090"/><text x="65.4736%" y="527.50"></text></g><g><title>schedule (1,952 samples, 0.13%)</title><rect x="65.5575%" y="501" width="0.1268%" height="15" fill="rgb(242,170,10)" fg:x="1008830" fg:w="1952"/><text x="65.8075%" y="511.50"></text></g><g><title>btrfs_lock_root_node (7,476 samples, 0.49%)</title><rect x="65.2214%" y="533" width="0.4858%" height="15" fill="rgb(228,214,39)" fg:x="1003657" fg:w="7476"/><text x="65.4714%" y="543.50"></text></g><g><title>btrfs_root_node (351 samples, 0.02%)</title><rect x="65.6844%" y="517" width="0.0228%" height="15" fill="rgb(218,179,33)" fg:x="1010782" fg:w="351"/><text x="65.9344%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (487 samples, 0.03%)</title><rect x="65.7072%" y="533" width="0.0316%" height="15" fill="rgb(235,193,39)" fg:x="1011133" fg:w="487"/><text x="65.9572%" y="543.50"></text></g><g><title>btrfs_set_lock_blocking_write (177 samples, 0.01%)</title><rect x="65.7273%" y="517" width="0.0115%" height="15" fill="rgb(219,221,36)" fg:x="1011443" fg:w="177"/><text x="65.9773%" y="527.50"></text></g><g><title>btrfs_tree_read_unlock (260 samples, 0.02%)</title><rect x="65.7388%" y="533" width="0.0169%" height="15" fill="rgb(248,218,19)" fg:x="1011620" fg:w="260"/><text x="65.9888%" y="543.50"></text></g><g><title>_raw_write_lock (205 samples, 0.01%)</title><rect x="65.7585%" y="517" width="0.0133%" height="15" fill="rgb(205,50,9)" fg:x="1011923" fg:w="205"/><text x="66.0085%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (249 samples, 0.02%)</title><rect x="65.7557%" y="533" width="0.0162%" height="15" fill="rgb(238,81,28)" fg:x="1011880" fg:w="249"/><text x="66.0057%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (358 samples, 0.02%)</title><rect x="65.7723%" y="533" width="0.0233%" height="15" fill="rgb(235,110,19)" fg:x="1012135" fg:w="358"/><text x="66.0223%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (1,669 samples, 0.11%)</title><rect x="65.7956%" y="533" width="0.1085%" height="15" fill="rgb(214,7,14)" fg:x="1012493" fg:w="1669"/><text x="66.0456%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (241 samples, 0.02%)</title><rect x="65.9246%" y="517" width="0.0157%" height="15" fill="rgb(211,77,3)" fg:x="1014478" fg:w="241"/><text x="66.1746%" y="527.50"></text></g><g><title>verify_parent_transid (185 samples, 0.01%)</title><rect x="65.9282%" y="501" width="0.0120%" height="15" fill="rgb(229,5,9)" fg:x="1014534" fg:w="185"/><text x="66.1782%" y="511.50"></text></g><g><title>btrfs_get_64 (329 samples, 0.02%)</title><rect x="65.9402%" y="517" width="0.0214%" height="15" fill="rgb(225,90,11)" fg:x="1014719" fg:w="329"/><text x="66.1902%" y="527.50"></text></g><g><title>__radix_tree_lookup (928 samples, 0.06%)</title><rect x="66.0051%" y="501" width="0.0603%" height="15" fill="rgb(242,56,8)" fg:x="1015718" fg:w="928"/><text x="66.2551%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (596 samples, 0.04%)</title><rect x="66.0659%" y="501" width="0.0387%" height="15" fill="rgb(249,212,39)" fg:x="1016653" fg:w="596"/><text x="66.3159%" y="511.50"></text></g><g><title>mark_page_accessed (425 samples, 0.03%)</title><rect x="66.0770%" y="485" width="0.0276%" height="15" fill="rgb(236,90,9)" fg:x="1016824" fg:w="425"/><text x="66.3270%" y="495.50"></text></g><g><title>find_extent_buffer (2,059 samples, 0.13%)</title><rect x="65.9723%" y="517" width="0.1338%" height="15" fill="rgb(206,88,35)" fg:x="1015212" fg:w="2059"/><text x="66.2223%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (3,447 samples, 0.22%)</title><rect x="65.9040%" y="533" width="0.2240%" height="15" fill="rgb(205,126,30)" fg:x="1014162" fg:w="3447"/><text x="66.1540%" y="543.50"></text></g><g><title>read_extent_buffer (338 samples, 0.02%)</title><rect x="66.1061%" y="517" width="0.0220%" height="15" fill="rgb(230,176,12)" fg:x="1017271" fg:w="338"/><text x="66.3561%" y="527.50"></text></g><g><title>btrfs_search_slot (28,335 samples, 1.84%)</title><rect x="64.3232%" y="549" width="1.8413%" height="15" fill="rgb(243,19,9)" fg:x="989836" fg:w="28335"/><text x="64.5732%" y="559.50">b..</text></g><g><title>unlock_up (342 samples, 0.02%)</title><rect x="66.1423%" y="533" width="0.0222%" height="15" fill="rgb(245,171,17)" fg:x="1017829" fg:w="342"/><text x="66.3923%" y="543.50"></text></g><g><title>crc32c (359 samples, 0.02%)</title><rect x="66.1645%" y="549" width="0.0233%" height="15" fill="rgb(227,52,21)" fg:x="1018171" fg:w="359"/><text x="66.4145%" y="559.50"></text></g><g><title>crypto_shash_update (204 samples, 0.01%)</title><rect x="66.1746%" y="533" width="0.0133%" height="15" fill="rgb(238,69,14)" fg:x="1018326" fg:w="204"/><text x="66.4246%" y="543.50"></text></g><g><title>memset_erms (177 samples, 0.01%)</title><rect x="66.2157%" y="533" width="0.0115%" height="15" fill="rgb(241,156,39)" fg:x="1018959" fg:w="177"/><text x="66.4657%" y="543.50"></text></g><g><title>kmem_cache_alloc (852 samples, 0.06%)</title><rect x="66.1879%" y="549" width="0.0554%" height="15" fill="rgb(212,227,28)" fg:x="1018530" fg:w="852"/><text x="66.4379%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (246 samples, 0.02%)</title><rect x="66.2272%" y="533" width="0.0160%" height="15" fill="rgb(209,118,27)" fg:x="1019136" fg:w="246"/><text x="66.4772%" y="543.50"></text></g><g><title>btrfs_del_inode_ref (42,490 samples, 2.76%)</title><rect x="63.5213%" y="565" width="2.7612%" height="15" fill="rgb(226,102,5)" fg:x="977496" fg:w="42490"/><text x="63.7713%" y="575.50">bt..</text></g><g><title>kmem_cache_free (604 samples, 0.04%)</title><rect x="66.2432%" y="549" width="0.0393%" height="15" fill="rgb(223,34,3)" fg:x="1019382" fg:w="604"/><text x="66.4932%" y="559.50"></text></g><g><title>btrfs_end_log_trans (259 samples, 0.02%)</title><rect x="66.2825%" y="565" width="0.0168%" height="15" fill="rgb(221,81,38)" fg:x="1019986" fg:w="259"/><text x="66.5325%" y="575.50"></text></g><g><title>mutex_lock (394 samples, 0.03%)</title><rect x="66.2993%" y="565" width="0.0256%" height="15" fill="rgb(236,219,28)" fg:x="1020245" fg:w="394"/><text x="66.5493%" y="575.50"></text></g><g><title>btrfs_del_inode_ref_in_log (43,664 samples, 2.84%)</title><rect x="63.5029%" y="581" width="2.8374%" height="15" fill="rgb(213,200,14)" fg:x="977213" fg:w="43664"/><text x="63.7529%" y="591.50">bt..</text></g><g><title>mutex_unlock (238 samples, 0.02%)</title><rect x="66.3249%" y="565" width="0.0155%" height="15" fill="rgb(240,33,19)" fg:x="1020639" fg:w="238"/><text x="66.5749%" y="575.50"></text></g><g><title>_find_next_bit.constprop.0 (298 samples, 0.02%)</title><rect x="66.5565%" y="501" width="0.0194%" height="15" fill="rgb(233,113,27)" fg:x="1024203" fg:w="298"/><text x="66.8065%" y="511.50"></text></g><g><title>steal_from_bitmap.part.0 (355 samples, 0.02%)</title><rect x="66.5542%" y="517" width="0.0231%" height="15" fill="rgb(220,221,18)" fg:x="1024167" fg:w="355"/><text x="66.8042%" y="527.50"></text></g><g><title>__btrfs_add_free_space (486 samples, 0.03%)</title><rect x="66.5496%" y="533" width="0.0316%" height="15" fill="rgb(238,92,8)" fg:x="1024096" fg:w="486"/><text x="66.7996%" y="543.50"></text></g><g><title>btrfs_free_tree_block (693 samples, 0.05%)</title><rect x="66.5494%" y="549" width="0.0450%" height="15" fill="rgb(222,164,16)" fg:x="1024093" fg:w="693"/><text x="66.7994%" y="559.50"></text></g><g><title>btrfs_del_leaf (801 samples, 0.05%)</title><rect x="66.5487%" y="565" width="0.0521%" height="15" fill="rgb(241,119,3)" fg:x="1024082" fg:w="801"/><text x="66.7987%" y="575.50"></text></g><g><title>btrfs_get_32 (499 samples, 0.03%)</title><rect x="66.6007%" y="565" width="0.0324%" height="15" fill="rgb(241,44,8)" fg:x="1024883" fg:w="499"/><text x="66.8507%" y="575.50"></text></g><g><title>btrfs_get_token_32 (12,666 samples, 0.82%)</title><rect x="66.6331%" y="565" width="0.8231%" height="15" fill="rgb(230,36,40)" fg:x="1025382" fg:w="12666"/><text x="66.8831%" y="575.50"></text></g><g><title>check_setget_bounds.isra.0 (1,747 samples, 0.11%)</title><rect x="67.3427%" y="549" width="0.1135%" height="15" fill="rgb(243,16,36)" fg:x="1036301" fg:w="1747"/><text x="67.5927%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (719 samples, 0.05%)</title><rect x="67.4562%" y="565" width="0.0467%" height="15" fill="rgb(231,4,26)" fg:x="1038048" fg:w="719"/><text x="67.7062%" y="575.50"></text></g><g><title>set_extent_buffer_dirty (221 samples, 0.01%)</title><rect x="67.4886%" y="549" width="0.0144%" height="15" fill="rgb(240,9,31)" fg:x="1038546" fg:w="221"/><text x="67.7386%" y="559.50"></text></g><g><title>btrfs_set_token_32 (9,289 samples, 0.60%)</title><rect x="67.5041%" y="565" width="0.6036%" height="15" fill="rgb(207,173,15)" fg:x="1038785" fg:w="9289"/><text x="67.7541%" y="575.50"></text></g><g><title>check_setget_bounds.isra.0 (1,433 samples, 0.09%)</title><rect x="68.0146%" y="549" width="0.0931%" height="15" fill="rgb(224,192,53)" fg:x="1046641" fg:w="1433"/><text x="68.2646%" y="559.50"></text></g><g><title>leaf_space_used (450 samples, 0.03%)</title><rect x="68.1094%" y="565" width="0.0292%" height="15" fill="rgb(223,67,28)" fg:x="1048099" fg:w="450"/><text x="68.3594%" y="575.50"></text></g><g><title>btrfs_get_32 (318 samples, 0.02%)</title><rect x="68.1179%" y="549" width="0.0207%" height="15" fill="rgb(211,20,47)" fg:x="1048231" fg:w="318"/><text x="68.3679%" y="559.50"></text></g><g><title>copy_pages (172 samples, 0.01%)</title><rect x="68.1541%" y="549" width="0.0112%" height="15" fill="rgb(240,228,2)" fg:x="1048787" fg:w="172"/><text x="68.4041%" y="559.50"></text></g><g><title>memcpy_extent_buffer (1,531 samples, 0.10%)</title><rect x="68.1386%" y="565" width="0.0995%" height="15" fill="rgb(248,151,12)" fg:x="1048549" fg:w="1531"/><text x="68.3886%" y="575.50"></text></g><g><title>memmove (1,121 samples, 0.07%)</title><rect x="68.1653%" y="549" width="0.0728%" height="15" fill="rgb(244,8,39)" fg:x="1048959" fg:w="1121"/><text x="68.4153%" y="559.50"></text></g><g><title>copy_pages (565 samples, 0.04%)</title><rect x="68.2669%" y="549" width="0.0367%" height="15" fill="rgb(222,26,8)" fg:x="1050523" fg:w="565"/><text x="68.5169%" y="559.50"></text></g><g><title>memmove_extent_buffer (5,592 samples, 0.36%)</title><rect x="68.2381%" y="565" width="0.3634%" height="15" fill="rgb(213,106,44)" fg:x="1050080" fg:w="5592"/><text x="68.4881%" y="575.50"></text></g><g><title>memmove (4,584 samples, 0.30%)</title><rect x="68.3036%" y="549" width="0.2979%" height="15" fill="rgb(214,129,20)" fg:x="1051088" fg:w="4584"/><text x="68.5536%" y="559.50"></text></g><g><title>__push_leaf_left (370 samples, 0.02%)</title><rect x="68.6036%" y="549" width="0.0240%" height="15" fill="rgb(212,32,13)" fg:x="1055705" fg:w="370"/><text x="68.8536%" y="559.50"></text></g><g><title>push_leaf_left (601 samples, 0.04%)</title><rect x="68.6015%" y="565" width="0.0391%" height="15" fill="rgb(208,168,33)" fg:x="1055672" fg:w="601"/><text x="68.8515%" y="575.50"></text></g><g><title>__push_leaf_right (384 samples, 0.02%)</title><rect x="68.6423%" y="549" width="0.0250%" height="15" fill="rgb(231,207,8)" fg:x="1056300" fg:w="384"/><text x="68.8923%" y="559.50"></text></g><g><title>push_leaf_right (629 samples, 0.04%)</title><rect x="68.6405%" y="565" width="0.0409%" height="15" fill="rgb(235,219,23)" fg:x="1056273" fg:w="629"/><text x="68.8905%" y="575.50"></text></g><g><title>btrfs_del_items (36,068 samples, 2.34%)</title><rect x="66.3404%" y="581" width="2.3438%" height="15" fill="rgb(226,216,26)" fg:x="1020877" fg:w="36068"/><text x="66.5904%" y="591.50">b..</text></g><g><title>btrfs_comp_cpu_keys (501 samples, 0.03%)</title><rect x="68.7515%" y="549" width="0.0326%" height="15" fill="rgb(239,137,16)" fg:x="1057980" fg:w="501"/><text x="69.0015%" y="559.50"></text></g><g><title>__btrfs_add_delayed_item (1,642 samples, 0.11%)</title><rect x="68.7020%" y="565" width="0.1067%" height="15" fill="rgb(207,12,36)" fg:x="1057219" fg:w="1642"/><text x="68.9520%" y="575.50"></text></g><g><title>rb_insert_color (380 samples, 0.02%)</title><rect x="68.7840%" y="549" width="0.0247%" height="15" fill="rgb(210,214,24)" fg:x="1058481" fg:w="380"/><text x="69.0340%" y="559.50"></text></g><g><title>__list_add_valid (248 samples, 0.02%)</title><rect x="68.8231%" y="549" width="0.0161%" height="15" fill="rgb(206,56,30)" fg:x="1059082" fg:w="248"/><text x="69.0731%" y="559.50"></text></g><g><title>__list_del_entry_valid (207 samples, 0.01%)</title><rect x="68.8392%" y="549" width="0.0135%" height="15" fill="rgb(228,143,26)" fg:x="1059330" fg:w="207"/><text x="69.0892%" y="559.50"></text></g><g><title>_raw_spin_lock (267 samples, 0.02%)</title><rect x="68.8527%" y="549" width="0.0174%" height="15" fill="rgb(216,218,46)" fg:x="1059538" fg:w="267"/><text x="69.1027%" y="559.50"></text></g><g><title>mutex_lock (189 samples, 0.01%)</title><rect x="68.8702%" y="549" width="0.0123%" height="15" fill="rgb(206,6,19)" fg:x="1059807" fg:w="189"/><text x="69.1202%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,736 samples, 0.11%)</title><rect x="68.8087%" y="565" width="0.1128%" height="15" fill="rgb(239,177,51)" fg:x="1058861" fg:w="1736"/><text x="69.0587%" y="575.50"></text></g><g><title>mutex_unlock (601 samples, 0.04%)</title><rect x="68.8825%" y="549" width="0.0391%" height="15" fill="rgb(216,55,25)" fg:x="1059996" fg:w="601"/><text x="69.1325%" y="559.50"></text></g><g><title>mutex_spin_on_owner (812 samples, 0.05%)</title><rect x="68.9245%" y="549" width="0.0528%" height="15" fill="rgb(231,163,29)" fg:x="1060642" fg:w="812"/><text x="69.1745%" y="559.50"></text></g><g><title>finish_task_switch (156 samples, 0.01%)</title><rect x="68.9799%" y="501" width="0.0101%" height="15" fill="rgb(232,149,50)" fg:x="1061495" fg:w="156"/><text x="69.2299%" y="511.50"></text></g><g><title>__schedule (235 samples, 0.02%)</title><rect x="68.9778%" y="517" width="0.0153%" height="15" fill="rgb(223,142,48)" fg:x="1061463" fg:w="235"/><text x="69.2278%" y="527.50"></text></g><g><title>__mutex_lock.constprop.0 (1,102 samples, 0.07%)</title><rect x="68.9215%" y="565" width="0.0716%" height="15" fill="rgb(245,83,23)" fg:x="1060597" fg:w="1102"/><text x="69.1715%" y="575.50"></text></g><g><title>schedule_preempt_disabled (238 samples, 0.02%)</title><rect x="68.9777%" y="549" width="0.0155%" height="15" fill="rgb(224,63,2)" fg:x="1061461" fg:w="238"/><text x="69.2277%" y="559.50"></text></g><g><title>schedule (238 samples, 0.02%)</title><rect x="68.9777%" y="533" width="0.0155%" height="15" fill="rgb(218,65,53)" fg:x="1061461" fg:w="238"/><text x="69.2277%" y="543.50"></text></g><g><title>_raw_spin_lock (1,118 samples, 0.07%)</title><rect x="69.0175%" y="533" width="0.0727%" height="15" fill="rgb(221,84,29)" fg:x="1062073" fg:w="1118"/><text x="69.2675%" y="543.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,469 samples, 0.10%)</title><rect x="68.9949%" y="565" width="0.0955%" height="15" fill="rgb(234,0,32)" fg:x="1061726" fg:w="1469"/><text x="69.2449%" y="575.50"></text></g><g><title>btrfs_block_rsv_migrate (1,253 samples, 0.08%)</title><rect x="69.0089%" y="549" width="0.0814%" height="15" fill="rgb(206,20,16)" fg:x="1061942" fg:w="1253"/><text x="69.2589%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (661 samples, 0.04%)</title><rect x="69.0904%" y="565" width="0.0430%" height="15" fill="rgb(244,172,18)" fg:x="1063195" fg:w="661"/><text x="69.3404%" y="575.50"></text></g><g><title>btrfs_get_delayed_node (416 samples, 0.03%)</title><rect x="69.1063%" y="549" width="0.0270%" height="15" fill="rgb(254,133,1)" fg:x="1063440" fg:w="416"/><text x="69.3563%" y="559.50"></text></g><g><title>kmem_cache_alloc_trace (957 samples, 0.06%)</title><rect x="69.1333%" y="565" width="0.0622%" height="15" fill="rgb(222,206,41)" fg:x="1063856" fg:w="957"/><text x="69.3833%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (163 samples, 0.01%)</title><rect x="69.1849%" y="549" width="0.0106%" height="15" fill="rgb(212,3,42)" fg:x="1064650" fg:w="163"/><text x="69.4349%" y="559.50"></text></g><g><title>__schedule (319 samples, 0.02%)</title><rect x="69.2209%" y="533" width="0.0207%" height="15" fill="rgb(241,11,4)" fg:x="1065204" fg:w="319"/><text x="69.4709%" y="543.50"></text></g><g><title>_cond_resched (385 samples, 0.03%)</title><rect x="69.2183%" y="549" width="0.0250%" height="15" fill="rgb(205,19,26)" fg:x="1065164" fg:w="385"/><text x="69.4683%" y="559.50"></text></g><g><title>mutex_lock (740 samples, 0.05%)</title><rect x="69.1955%" y="565" width="0.0481%" height="15" fill="rgb(210,179,32)" fg:x="1064813" fg:w="740"/><text x="69.4455%" y="575.50"></text></g><g><title>btrfs_delete_delayed_dir_index (8,860 samples, 0.58%)</title><rect x="68.6843%" y="581" width="0.5758%" height="15" fill="rgb(227,116,49)" fg:x="1056946" fg:w="8860"/><text x="68.9343%" y="591.50"></text></g><g><title>mutex_unlock (253 samples, 0.02%)</title><rect x="69.2436%" y="565" width="0.0164%" height="15" fill="rgb(211,146,6)" fg:x="1065553" fg:w="253"/><text x="69.4936%" y="575.50"></text></g><g><title>btrfs_get_16 (200 samples, 0.01%)</title><rect x="69.2791%" y="565" width="0.0130%" height="15" fill="rgb(219,44,39)" fg:x="1066100" fg:w="200"/><text x="69.5291%" y="575.50"></text></g><g><title>btrfs_delete_one_dir_name (639 samples, 0.04%)</title><rect x="69.2600%" y="581" width="0.0415%" height="15" fill="rgb(234,128,11)" fg:x="1065806" fg:w="639"/><text x="69.5100%" y="591.50"></text></g><g><title>btrfs_free_path (160 samples, 0.01%)</title><rect x="69.3016%" y="581" width="0.0104%" height="15" fill="rgb(220,183,53)" fg:x="1066445" fg:w="160"/><text x="69.5516%" y="591.50"></text></g><g><title>btrfs_get_16 (503 samples, 0.03%)</title><rect x="69.3573%" y="549" width="0.0327%" height="15" fill="rgb(213,219,32)" fg:x="1067302" fg:w="503"/><text x="69.6073%" y="559.50"></text></g><g><title>btrfs_get_32 (284 samples, 0.02%)</title><rect x="69.3899%" y="549" width="0.0185%" height="15" fill="rgb(232,156,16)" fg:x="1067805" fg:w="284"/><text x="69.6399%" y="559.50"></text></g><g><title>memcmp (445 samples, 0.03%)</title><rect x="69.4293%" y="533" width="0.0289%" height="15" fill="rgb(246,135,34)" fg:x="1068411" fg:w="445"/><text x="69.6793%" y="543.50"></text></g><g><title>btrfs_match_dir_item_name (1,943 samples, 0.13%)</title><rect x="69.3320%" y="565" width="0.1263%" height="15" fill="rgb(241,99,0)" fg:x="1066914" fg:w="1943"/><text x="69.5820%" y="575.50"></text></g><g><title>memcmp_extent_buffer (768 samples, 0.05%)</title><rect x="69.4084%" y="549" width="0.0499%" height="15" fill="rgb(222,103,45)" fg:x="1068089" fg:w="768"/><text x="69.6584%" y="559.50"></text></g><g><title>_raw_read_lock (365 samples, 0.02%)</title><rect x="69.5840%" y="517" width="0.0237%" height="15" fill="rgb(212,57,4)" fg:x="1070792" fg:w="365"/><text x="69.8340%" y="527.50"></text></g><g><title>finish_wait (1,403 samples, 0.09%)</title><rect x="69.6087%" y="517" width="0.0912%" height="15" fill="rgb(215,68,47)" fg:x="1071171" fg:w="1403"/><text x="69.8587%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (1,332 samples, 0.09%)</title><rect x="69.6133%" y="501" width="0.0866%" height="15" fill="rgb(230,84,2)" fg:x="1071242" fg:w="1332"/><text x="69.8633%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,267 samples, 0.08%)</title><rect x="69.6175%" y="485" width="0.0823%" height="15" fill="rgb(220,102,14)" fg:x="1071307" fg:w="1267"/><text x="69.8675%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (4,412 samples, 0.29%)</title><rect x="69.7269%" y="501" width="0.2867%" height="15" fill="rgb(240,10,32)" fg:x="1072991" fg:w="4412"/><text x="69.9769%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,212 samples, 0.27%)</title><rect x="69.7399%" y="485" width="0.2737%" height="15" fill="rgb(215,47,27)" fg:x="1073191" fg:w="4212"/><text x="69.9899%" y="495.50"></text></g><g><title>prepare_to_wait_event (4,920 samples, 0.32%)</title><rect x="69.7008%" y="517" width="0.3197%" height="15" fill="rgb(233,188,43)" fg:x="1072589" fg:w="4920"/><text x="69.9508%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (6,189 samples, 0.40%)</title><rect x="70.0205%" y="517" width="0.4022%" height="15" fill="rgb(253,190,1)" fg:x="1077509" fg:w="6189"/><text x="70.2705%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,201 samples, 0.27%)</title><rect x="70.1497%" y="501" width="0.2730%" height="15" fill="rgb(206,114,52)" fg:x="1079497" fg:w="4201"/><text x="70.3997%" y="511.50"></text></g><g><title>update_curr (236 samples, 0.02%)</title><rect x="70.4753%" y="453" width="0.0153%" height="15" fill="rgb(233,120,37)" fg:x="1084507" fg:w="236"/><text x="70.7253%" y="463.50"></text></g><g><title>dequeue_entity (721 samples, 0.05%)</title><rect x="70.4598%" y="469" width="0.0469%" height="15" fill="rgb(214,52,39)" fg:x="1084269" fg:w="721"/><text x="70.7098%" y="479.50"></text></g><g><title>update_load_avg (247 samples, 0.02%)</title><rect x="70.4906%" y="453" width="0.0161%" height="15" fill="rgb(223,80,29)" fg:x="1084743" fg:w="247"/><text x="70.7406%" y="463.50"></text></g><g><title>dequeue_task_fair (865 samples, 0.06%)</title><rect x="70.4536%" y="485" width="0.0562%" height="15" fill="rgb(230,101,40)" fg:x="1084173" fg:w="865"/><text x="70.7036%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (3,293 samples, 0.21%)</title><rect x="70.5244%" y="469" width="0.2140%" height="15" fill="rgb(219,211,8)" fg:x="1085262" fg:w="3293"/><text x="70.7744%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,185 samples, 0.21%)</title><rect x="70.5314%" y="453" width="0.2070%" height="15" fill="rgb(252,126,28)" fg:x="1085370" fg:w="3185"/><text x="70.7814%" y="463.50"></text></g><g><title>native_write_msr (3,141 samples, 0.20%)</title><rect x="70.5342%" y="437" width="0.2041%" height="15" fill="rgb(215,56,38)" fg:x="1085414" fg:w="3141"/><text x="70.7842%" y="447.50"></text></g><g><title>finish_task_switch (3,613 samples, 0.23%)</title><rect x="70.5098%" y="485" width="0.2348%" height="15" fill="rgb(249,55,44)" fg:x="1085038" fg:w="3613"/><text x="70.7598%" y="495.50"></text></g><g><title>pick_next_task_fair (162 samples, 0.01%)</title><rect x="70.7446%" y="485" width="0.0105%" height="15" fill="rgb(220,221,32)" fg:x="1088651" fg:w="162"/><text x="70.9946%" y="495.50"></text></g><g><title>pick_next_task_idle (165 samples, 0.01%)</title><rect x="70.7551%" y="485" width="0.0107%" height="15" fill="rgb(212,216,41)" fg:x="1088813" fg:w="165"/><text x="71.0051%" y="495.50"></text></g><g><title>psi_task_change (675 samples, 0.04%)</title><rect x="70.7658%" y="485" width="0.0439%" height="15" fill="rgb(228,213,43)" fg:x="1088978" fg:w="675"/><text x="71.0158%" y="495.50"></text></g><g><title>psi_group_change (541 samples, 0.04%)</title><rect x="70.7745%" y="469" width="0.0352%" height="15" fill="rgb(211,31,26)" fg:x="1089112" fg:w="541"/><text x="71.0245%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (19,401 samples, 1.26%)</title><rect x="69.5636%" y="533" width="1.2607%" height="15" fill="rgb(229,202,19)" fg:x="1070477" fg:w="19401"/><text x="69.8136%" y="543.50"></text></g><g><title>schedule (6,180 samples, 0.40%)</title><rect x="70.4227%" y="517" width="0.4016%" height="15" fill="rgb(229,105,46)" fg:x="1083698" fg:w="6180"/><text x="70.6727%" y="527.50"></text></g><g><title>__schedule (6,142 samples, 0.40%)</title><rect x="70.4252%" y="501" width="0.3991%" height="15" fill="rgb(235,108,1)" fg:x="1083736" fg:w="6142"/><text x="70.6752%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (20,426 samples, 1.33%)</title><rect x="69.5584%" y="549" width="1.3274%" height="15" fill="rgb(245,111,35)" fg:x="1070397" fg:w="20426"/><text x="69.8084%" y="559.50"></text></g><g><title>btrfs_root_node (945 samples, 0.06%)</title><rect x="70.8243%" y="533" width="0.0614%" height="15" fill="rgb(219,185,31)" fg:x="1089878" fg:w="945"/><text x="71.0743%" y="543.50"></text></g><g><title>prepare_to_wait_event (235 samples, 0.02%)</title><rect x="70.8986%" y="533" width="0.0153%" height="15" fill="rgb(214,4,43)" fg:x="1091021" fg:w="235"/><text x="71.1486%" y="543.50"></text></g><g><title>update_curr (157 samples, 0.01%)</title><rect x="70.9485%" y="469" width="0.0102%" height="15" fill="rgb(235,227,40)" fg:x="1091789" fg:w="157"/><text x="71.1985%" y="479.50"></text></g><g><title>dequeue_entity (476 samples, 0.03%)</title><rect x="70.9378%" y="485" width="0.0309%" height="15" fill="rgb(230,88,30)" fg:x="1091624" fg:w="476"/><text x="71.1878%" y="495.50"></text></g><g><title>update_load_avg (154 samples, 0.01%)</title><rect x="70.9587%" y="469" width="0.0100%" height="15" fill="rgb(216,217,1)" fg:x="1091946" fg:w="154"/><text x="71.2087%" y="479.50"></text></g><g><title>dequeue_task_fair (593 samples, 0.04%)</title><rect x="70.9333%" y="501" width="0.0385%" height="15" fill="rgb(248,139,50)" fg:x="1091555" fg:w="593"/><text x="71.1833%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (2,939 samples, 0.19%)</title><rect x="70.9800%" y="485" width="0.1910%" height="15" fill="rgb(233,1,21)" fg:x="1092274" fg:w="2939"/><text x="71.2300%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,891 samples, 0.19%)</title><rect x="70.9831%" y="469" width="0.1879%" height="15" fill="rgb(215,183,12)" fg:x="1092322" fg:w="2891"/><text x="71.2331%" y="479.50"></text></g><g><title>native_write_msr (2,871 samples, 0.19%)</title><rect x="70.9844%" y="453" width="0.1866%" height="15" fill="rgb(229,104,42)" fg:x="1092342" fg:w="2871"/><text x="71.2344%" y="463.50"></text></g><g><title>finish_task_switch (3,158 samples, 0.21%)</title><rect x="70.9718%" y="501" width="0.2052%" height="15" fill="rgb(243,34,48)" fg:x="1092148" fg:w="3158"/><text x="71.2218%" y="511.50"></text></g><g><title>psi_task_change (415 samples, 0.03%)</title><rect x="71.1940%" y="501" width="0.0270%" height="15" fill="rgb(239,11,44)" fg:x="1095567" fg:w="415"/><text x="71.4440%" y="511.50"></text></g><g><title>psi_group_change (342 samples, 0.02%)</title><rect x="71.1988%" y="485" width="0.0222%" height="15" fill="rgb(231,98,35)" fg:x="1095640" fg:w="342"/><text x="71.4488%" y="495.50"></text></g><g><title>__btrfs_tree_lock (5,306 samples, 0.34%)</title><rect x="70.8857%" y="549" width="0.3448%" height="15" fill="rgb(233,28,25)" fg:x="1090823" fg:w="5306"/><text x="71.1357%" y="559.50"></text></g><g><title>schedule (4,873 samples, 0.32%)</title><rect x="70.9139%" y="533" width="0.3167%" height="15" fill="rgb(234,123,11)" fg:x="1091256" fg:w="4873"/><text x="71.1639%" y="543.50"></text></g><g><title>__schedule (4,854 samples, 0.32%)</title><rect x="70.9151%" y="517" width="0.3154%" height="15" fill="rgb(220,69,3)" fg:x="1091275" fg:w="4854"/><text x="71.1651%" y="527.50"></text></g><g><title>alloc_tree_block_no_bg_flush (214 samples, 0.01%)</title><rect x="71.2475%" y="517" width="0.0139%" height="15" fill="rgb(214,64,36)" fg:x="1096390" fg:w="214"/><text x="71.4975%" y="527.50"></text></g><g><title>btrfs_alloc_tree_block (214 samples, 0.01%)</title><rect x="71.2475%" y="501" width="0.0139%" height="15" fill="rgb(211,138,32)" fg:x="1096390" fg:w="214"/><text x="71.4975%" y="511.50"></text></g><g><title>__btrfs_cow_block (423 samples, 0.03%)</title><rect x="71.2471%" y="533" width="0.0275%" height="15" fill="rgb(213,118,47)" fg:x="1096384" fg:w="423"/><text x="71.4971%" y="543.50"></text></g><g><title>btrfs_cow_block (428 samples, 0.03%)</title><rect x="71.2469%" y="549" width="0.0278%" height="15" fill="rgb(243,124,49)" fg:x="1096381" fg:w="428"/><text x="71.4969%" y="559.50"></text></g><g><title>_cond_resched (209 samples, 0.01%)</title><rect x="71.3038%" y="517" width="0.0136%" height="15" fill="rgb(221,30,28)" fg:x="1097256" fg:w="209"/><text x="71.5538%" y="527.50"></text></g><g><title>_raw_write_lock (325 samples, 0.02%)</title><rect x="71.3182%" y="517" width="0.0211%" height="15" fill="rgb(246,37,13)" fg:x="1097478" fg:w="325"/><text x="71.5682%" y="527.50"></text></g><g><title>finish_wait (1,045 samples, 0.07%)</title><rect x="71.3396%" y="517" width="0.0679%" height="15" fill="rgb(249,66,14)" fg:x="1097807" fg:w="1045"/><text x="71.5896%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (981 samples, 0.06%)</title><rect x="71.3437%" y="501" width="0.0637%" height="15" fill="rgb(213,166,5)" fg:x="1097871" fg:w="981"/><text x="71.5937%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (925 samples, 0.06%)</title><rect x="71.3474%" y="485" width="0.0601%" height="15" fill="rgb(221,66,24)" fg:x="1097927" fg:w="925"/><text x="71.5974%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (2,991 samples, 0.19%)</title><rect x="71.4318%" y="501" width="0.1944%" height="15" fill="rgb(210,132,17)" fg:x="1099226" fg:w="2991"/><text x="71.6818%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,785 samples, 0.18%)</title><rect x="71.4452%" y="485" width="0.1810%" height="15" fill="rgb(243,202,5)" fg:x="1099432" fg:w="2785"/><text x="71.6952%" y="495.50"></text></g><g><title>prepare_to_wait_event (3,446 samples, 0.22%)</title><rect x="71.4092%" y="517" width="0.2239%" height="15" fill="rgb(233,70,48)" fg:x="1098878" fg:w="3446"/><text x="71.6592%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,805 samples, 0.18%)</title><rect x="71.9597%" y="501" width="0.1823%" height="15" fill="rgb(238,41,26)" fg:x="1107349" fg:w="2805"/><text x="72.2097%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (7,831 samples, 0.51%)</title><rect x="71.6331%" y="517" width="0.5089%" height="15" fill="rgb(241,19,31)" fg:x="1102324" fg:w="7831"/><text x="71.8831%" y="527.50"></text></g><g><title>update_curr (282 samples, 0.02%)</title><rect x="72.1948%" y="453" width="0.0183%" height="15" fill="rgb(214,76,10)" fg:x="1110967" fg:w="282"/><text x="72.4448%" y="463.50"></text></g><g><title>dequeue_entity (773 samples, 0.05%)</title><rect x="72.1809%" y="469" width="0.0502%" height="15" fill="rgb(254,202,22)" fg:x="1110753" fg:w="773"/><text x="72.4309%" y="479.50"></text></g><g><title>update_load_avg (277 samples, 0.02%)</title><rect x="72.2131%" y="453" width="0.0180%" height="15" fill="rgb(214,72,24)" fg:x="1111249" fg:w="277"/><text x="72.4631%" y="463.50"></text></g><g><title>dequeue_task_fair (930 samples, 0.06%)</title><rect x="72.1755%" y="485" width="0.0604%" height="15" fill="rgb(221,92,46)" fg:x="1110670" fg:w="930"/><text x="72.4255%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (5,687 samples, 0.37%)</title><rect x="72.2539%" y="469" width="0.3696%" height="15" fill="rgb(246,13,50)" fg:x="1111877" fg:w="5687"/><text x="72.5039%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,532 samples, 0.36%)</title><rect x="72.2640%" y="453" width="0.3595%" height="15" fill="rgb(240,165,38)" fg:x="1112032" fg:w="5532"/><text x="72.5140%" y="463.50"></text></g><g><title>native_write_msr (5,452 samples, 0.35%)</title><rect x="72.2692%" y="437" width="0.3543%" height="15" fill="rgb(241,24,51)" fg:x="1112112" fg:w="5452"/><text x="72.5192%" y="447.50"></text></g><g><title>finish_task_switch (6,196 samples, 0.40%)</title><rect x="72.2359%" y="485" width="0.4026%" height="15" fill="rgb(227,51,44)" fg:x="1111600" fg:w="6196"/><text x="72.4859%" y="495.50"></text></g><g><title>pick_next_task_fair (163 samples, 0.01%)</title><rect x="72.6385%" y="485" width="0.0106%" height="15" fill="rgb(231,121,3)" fg:x="1117796" fg:w="163"/><text x="72.8885%" y="495.50"></text></g><g><title>pick_next_task_idle (183 samples, 0.01%)</title><rect x="72.6491%" y="485" width="0.0119%" height="15" fill="rgb(245,3,41)" fg:x="1117959" fg:w="183"/><text x="72.8991%" y="495.50"></text></g><g><title>__update_idle_core (154 samples, 0.01%)</title><rect x="72.6510%" y="469" width="0.0100%" height="15" fill="rgb(214,13,26)" fg:x="1117988" fg:w="154"/><text x="72.9010%" y="479.50"></text></g><g><title>psi_task_change (687 samples, 0.04%)</title><rect x="72.6610%" y="485" width="0.0446%" height="15" fill="rgb(252,75,11)" fg:x="1118142" fg:w="687"/><text x="72.9110%" y="495.50"></text></g><g><title>psi_group_change (573 samples, 0.04%)</title><rect x="72.6684%" y="469" width="0.0372%" height="15" fill="rgb(218,226,17)" fg:x="1118256" fg:w="573"/><text x="72.9184%" y="479.50"></text></g><g><title>__schedule (8,832 samples, 0.57%)</title><rect x="72.1467%" y="501" width="0.5739%" height="15" fill="rgb(248,89,38)" fg:x="1110228" fg:w="8832"/><text x="72.3967%" y="511.50"></text></g><g><title>__btrfs_tree_lock (22,209 samples, 1.44%)</title><rect x="71.2775%" y="533" width="1.4432%" height="15" fill="rgb(237,73,46)" fg:x="1096852" fg:w="22209"/><text x="71.5275%" y="543.50"></text></g><g><title>schedule (8,906 samples, 0.58%)</title><rect x="72.1420%" y="517" width="0.5787%" height="15" fill="rgb(242,78,33)" fg:x="1110155" fg:w="8906"/><text x="72.3920%" y="527.50"></text></g><g><title>btrfs_lock_root_node (22,595 samples, 1.47%)</title><rect x="71.2747%" y="549" width="1.4683%" height="15" fill="rgb(235,60,3)" fg:x="1096809" fg:w="22595"/><text x="71.5247%" y="559.50"></text></g><g><title>btrfs_root_node (343 samples, 0.02%)</title><rect x="72.7207%" y="533" width="0.0223%" height="15" fill="rgb(216,172,19)" fg:x="1119061" fg:w="343"/><text x="72.9707%" y="543.50"></text></g><g><title>btrfs_set_path_blocking (390 samples, 0.03%)</title><rect x="72.7430%" y="549" width="0.0253%" height="15" fill="rgb(227,6,42)" fg:x="1119404" fg:w="390"/><text x="72.9930%" y="559.50"></text></g><g><title>btrfs_set_lock_blocking_write (179 samples, 0.01%)</title><rect x="72.7567%" y="533" width="0.0116%" height="15" fill="rgb(223,207,42)" fg:x="1119615" fg:w="179"/><text x="73.0067%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (265 samples, 0.02%)</title><rect x="72.7688%" y="549" width="0.0172%" height="15" fill="rgb(246,138,30)" fg:x="1119800" fg:w="265"/><text x="73.0188%" y="559.50"></text></g><g><title>_raw_write_lock (345 samples, 0.02%)</title><rect x="72.7928%" y="533" width="0.0224%" height="15" fill="rgb(251,199,47)" fg:x="1120170" fg:w="345"/><text x="73.0428%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (3,751 samples, 0.24%)</title><rect x="72.7860%" y="549" width="0.2438%" height="15" fill="rgb(228,218,44)" fg:x="1120065" fg:w="3751"/><text x="73.0360%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (3,300 samples, 0.21%)</title><rect x="72.8153%" y="533" width="0.2144%" height="15" fill="rgb(220,68,6)" fg:x="1120516" fg:w="3300"/><text x="73.0653%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (410 samples, 0.03%)</title><rect x="73.0303%" y="549" width="0.0266%" height="15" fill="rgb(240,60,26)" fg:x="1123824" fg:w="410"/><text x="73.2803%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (3,995 samples, 0.26%)</title><rect x="73.0569%" y="549" width="0.2596%" height="15" fill="rgb(211,200,19)" fg:x="1124234" fg:w="3995"/><text x="73.3069%" y="559.50"></text></g><g><title>btrfs_buffer_uptodate (506 samples, 0.03%)</title><rect x="73.3528%" y="533" width="0.0329%" height="15" fill="rgb(242,145,30)" fg:x="1128787" fg:w="506"/><text x="73.6028%" y="543.50"></text></g><g><title>verify_parent_transid (394 samples, 0.03%)</title><rect x="73.3601%" y="517" width="0.0256%" height="15" fill="rgb(225,64,13)" fg:x="1128899" fg:w="394"/><text x="73.6101%" y="527.50"></text></g><g><title>btrfs_get_64 (654 samples, 0.04%)</title><rect x="73.3857%" y="533" width="0.0425%" height="15" fill="rgb(218,103,35)" fg:x="1129293" fg:w="654"/><text x="73.6357%" y="543.50"></text></g><g><title>check_setget_bounds.isra.0 (178 samples, 0.01%)</title><rect x="73.4166%" y="517" width="0.0116%" height="15" fill="rgb(216,93,46)" fg:x="1129769" fg:w="178"/><text x="73.6666%" y="527.50"></text></g><g><title>btrfs_verify_level_key (183 samples, 0.01%)</title><rect x="73.4337%" y="533" width="0.0119%" height="15" fill="rgb(225,159,27)" fg:x="1130033" fg:w="183"/><text x="73.6837%" y="543.50"></text></g><g><title>__radix_tree_lookup (2,028 samples, 0.13%)</title><rect x="73.5208%" y="517" width="0.1318%" height="15" fill="rgb(225,204,11)" fg:x="1131373" fg:w="2028"/><text x="73.7708%" y="527.50"></text></g><g><title>mark_page_accessed (759 samples, 0.05%)</title><rect x="73.6689%" y="501" width="0.0493%" height="15" fill="rgb(205,56,4)" fg:x="1133651" fg:w="759"/><text x="73.9189%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (1,000 samples, 0.06%)</title><rect x="73.6533%" y="517" width="0.0650%" height="15" fill="rgb(206,6,35)" fg:x="1133411" fg:w="1000"/><text x="73.9033%" y="527.50"></text></g><g><title>find_extent_buffer (4,231 samples, 0.27%)</title><rect x="73.4456%" y="533" width="0.2749%" height="15" fill="rgb(247,73,52)" fg:x="1130216" fg:w="4231"/><text x="73.6956%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (6,859 samples, 0.45%)</title><rect x="73.3165%" y="549" width="0.4457%" height="15" fill="rgb(246,97,4)" fg:x="1128229" fg:w="6859"/><text x="73.5665%" y="559.50"></text></g><g><title>read_extent_buffer (641 samples, 0.04%)</title><rect x="73.7206%" y="533" width="0.0417%" height="15" fill="rgb(212,37,15)" fg:x="1134447" fg:w="641"/><text x="73.9706%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (195 samples, 0.01%)</title><rect x="73.7709%" y="533" width="0.0127%" height="15" fill="rgb(208,130,40)" fg:x="1135221" fg:w="195"/><text x="74.0209%" y="543.50"></text></g><g><title>verify_parent_transid (164 samples, 0.01%)</title><rect x="73.7729%" y="517" width="0.0107%" height="15" fill="rgb(236,55,29)" fg:x="1135252" fg:w="164"/><text x="74.0229%" y="527.50"></text></g><g><title>btrfs_get_64 (267 samples, 0.02%)</title><rect x="73.7836%" y="533" width="0.0174%" height="15" fill="rgb(209,156,45)" fg:x="1135416" fg:w="267"/><text x="74.0336%" y="543.50"></text></g><g><title>__radix_tree_lookup (734 samples, 0.05%)</title><rect x="73.8422%" y="517" width="0.0477%" height="15" fill="rgb(249,107,4)" fg:x="1136318" fg:w="734"/><text x="74.0922%" y="527.50"></text></g><g><title>mark_extent_buffer_accessed (393 samples, 0.03%)</title><rect x="73.8899%" y="517" width="0.0255%" height="15" fill="rgb(227,7,13)" fg:x="1137052" fg:w="393"/><text x="74.1399%" y="527.50"></text></g><g><title>mark_page_accessed (317 samples, 0.02%)</title><rect x="73.8948%" y="501" width="0.0206%" height="15" fill="rgb(250,129,14)" fg:x="1137128" fg:w="317"/><text x="74.1448%" y="511.50"></text></g><g><title>find_extent_buffer (1,778 samples, 0.12%)</title><rect x="73.8009%" y="533" width="0.1155%" height="15" fill="rgb(229,92,13)" fg:x="1135683" fg:w="1778"/><text x="74.0509%" y="543.50"></text></g><g><title>reada_for_balance (2,519 samples, 0.16%)</title><rect x="73.7622%" y="549" width="0.1637%" height="15" fill="rgb(245,98,39)" fg:x="1135088" fg:w="2519"/><text x="74.0122%" y="559.50"></text></g><g><title>__list_del_entry_valid (318 samples, 0.02%)</title><rect x="74.0045%" y="485" width="0.0207%" height="15" fill="rgb(234,135,48)" fg:x="1138816" fg:w="318"/><text x="74.2545%" y="495.50"></text></g><g><title>__task_rq_lock (181 samples, 0.01%)</title><rect x="74.3186%" y="469" width="0.0118%" height="15" fill="rgb(230,98,28)" fg:x="1143649" fg:w="181"/><text x="74.5686%" y="479.50"></text></g><g><title>_raw_spin_lock (172 samples, 0.01%)</title><rect x="74.3191%" y="453" width="0.0112%" height="15" fill="rgb(223,121,0)" fg:x="1143658" fg:w="172"/><text x="74.5691%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (169 samples, 0.01%)</title><rect x="74.3193%" y="437" width="0.0110%" height="15" fill="rgb(234,173,33)" fg:x="1143661" fg:w="169"/><text x="74.5693%" y="447.50"></text></g><g><title>_raw_spin_lock (692 samples, 0.04%)</title><rect x="74.3303%" y="469" width="0.0450%" height="15" fill="rgb(245,47,8)" fg:x="1143830" fg:w="692"/><text x="74.5803%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (489 samples, 0.03%)</title><rect x="74.3435%" y="453" width="0.0318%" height="15" fill="rgb(205,17,20)" fg:x="1144033" fg:w="489"/><text x="74.5935%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (543 samples, 0.04%)</title><rect x="74.3753%" y="469" width="0.0353%" height="15" fill="rgb(232,151,16)" fg:x="1144522" fg:w="543"/><text x="74.6253%" y="479.50"></text></g><g><title>available_idle_cpu (545 samples, 0.04%)</title><rect x="74.4817%" y="453" width="0.0354%" height="15" fill="rgb(208,30,32)" fg:x="1146160" fg:w="545"/><text x="74.7317%" y="463.50"></text></g><g><title>cpumask_next_wrap (182 samples, 0.01%)</title><rect x="74.5240%" y="453" width="0.0118%" height="15" fill="rgb(254,26,3)" fg:x="1146811" fg:w="182"/><text x="74.7740%" y="463.50"></text></g><g><title>select_task_rq_fair (2,444 samples, 0.16%)</title><rect x="74.4143%" y="469" width="0.1588%" height="15" fill="rgb(240,177,30)" fg:x="1145122" fg:w="2444"/><text x="74.6643%" y="479.50"></text></g><g><title>update_cfs_rq_h_load (463 samples, 0.03%)</title><rect x="74.5430%" y="453" width="0.0301%" height="15" fill="rgb(248,76,44)" fg:x="1147103" fg:w="463"/><text x="74.7930%" y="463.50"></text></g><g><title>set_task_cpu (234 samples, 0.02%)</title><rect x="74.5731%" y="469" width="0.0152%" height="15" fill="rgb(241,186,54)" fg:x="1147566" fg:w="234"/><text x="74.8231%" y="479.50"></text></g><g><title>update_cfs_group (188 samples, 0.01%)</title><rect x="74.6846%" y="421" width="0.0122%" height="15" fill="rgb(249,171,29)" fg:x="1149281" fg:w="188"/><text x="74.9346%" y="431.50"></text></g><g><title>update_curr (291 samples, 0.02%)</title><rect x="74.6968%" y="421" width="0.0189%" height="15" fill="rgb(237,151,44)" fg:x="1149469" fg:w="291"/><text x="74.9468%" y="431.50"></text></g><g><title>__update_load_avg_cfs_rq (162 samples, 0.01%)</title><rect x="74.7410%" y="405" width="0.0105%" height="15" fill="rgb(228,174,30)" fg:x="1150149" fg:w="162"/><text x="74.9910%" y="415.50"></text></g><g><title>enqueue_entity (2,102 samples, 0.14%)</title><rect x="74.6269%" y="437" width="0.1366%" height="15" fill="rgb(252,14,37)" fg:x="1148394" fg:w="2102"/><text x="74.8769%" y="447.50"></text></g><g><title>update_load_avg (736 samples, 0.05%)</title><rect x="74.7157%" y="421" width="0.0478%" height="15" fill="rgb(207,111,40)" fg:x="1149760" fg:w="736"/><text x="74.9657%" y="431.50"></text></g><g><title>enqueue_task_fair (2,708 samples, 0.18%)</title><rect x="74.6000%" y="453" width="0.1760%" height="15" fill="rgb(248,171,54)" fg:x="1147980" fg:w="2708"/><text x="74.8500%" y="463.50"></text></g><g><title>ttwu_do_activate (5,232 samples, 0.34%)</title><rect x="74.5883%" y="469" width="0.3400%" height="15" fill="rgb(211,127,2)" fg:x="1147800" fg:w="5232"/><text x="74.8383%" y="479.50"></text></g><g><title>psi_task_change (2,340 samples, 0.15%)</title><rect x="74.7762%" y="453" width="0.1521%" height="15" fill="rgb(236,87,47)" fg:x="1150692" fg:w="2340"/><text x="75.0262%" y="463.50"></text></g><g><title>psi_group_change (2,088 samples, 0.14%)</title><rect x="74.7926%" y="437" width="0.1357%" height="15" fill="rgb(223,190,45)" fg:x="1150944" fg:w="2088"/><text x="75.0426%" y="447.50"></text></g><g><title>record_times (323 samples, 0.02%)</title><rect x="74.9073%" y="421" width="0.0210%" height="15" fill="rgb(215,5,16)" fg:x="1152709" fg:w="323"/><text x="75.1573%" y="431.50"></text></g><g><title>sched_clock_cpu (212 samples, 0.01%)</title><rect x="74.9145%" y="405" width="0.0138%" height="15" fill="rgb(252,82,33)" fg:x="1152820" fg:w="212"/><text x="75.1645%" y="415.50"></text></g><g><title>sched_clock (170 samples, 0.01%)</title><rect x="74.9173%" y="389" width="0.0110%" height="15" fill="rgb(247,213,44)" fg:x="1152862" fg:w="170"/><text x="75.1673%" y="399.50"></text></g><g><title>check_preempt_wakeup (186 samples, 0.01%)</title><rect x="74.9425%" y="437" width="0.0121%" height="15" fill="rgb(205,196,44)" fg:x="1153251" fg:w="186"/><text x="75.1925%" y="447.50"></text></g><g><title>resched_curr (210 samples, 0.01%)</title><rect x="74.9548%" y="437" width="0.0136%" height="15" fill="rgb(237,96,54)" fg:x="1153439" fg:w="210"/><text x="75.2048%" y="447.50"></text></g><g><title>ttwu_do_wakeup (626 samples, 0.04%)</title><rect x="74.9283%" y="469" width="0.0407%" height="15" fill="rgb(230,113,34)" fg:x="1153032" fg:w="626"/><text x="75.1783%" y="479.50"></text></g><g><title>check_preempt_curr (567 samples, 0.04%)</title><rect x="74.9321%" y="453" width="0.0368%" height="15" fill="rgb(221,224,12)" fg:x="1153091" fg:w="567"/><text x="75.1821%" y="463.50"></text></g><g><title>ttwu_queue_wakelist (371 samples, 0.02%)</title><rect x="74.9690%" y="469" width="0.0241%" height="15" fill="rgb(219,112,44)" fg:x="1153658" fg:w="371"/><text x="75.2190%" y="479.50"></text></g><g><title>__wake_up_common (15,993 samples, 1.04%)</title><rect x="73.9850%" y="517" width="1.0393%" height="15" fill="rgb(210,31,13)" fg:x="1138516" fg:w="15993"/><text x="74.2350%" y="527.50"></text></g><g><title>autoremove_wake_function (15,739 samples, 1.02%)</title><rect x="74.0015%" y="501" width="1.0228%" height="15" fill="rgb(230,25,16)" fg:x="1138770" fg:w="15739"/><text x="74.2515%" y="511.50"></text></g><g><title>try_to_wake_up (15,365 samples, 1.00%)</title><rect x="74.0258%" y="485" width="0.9985%" height="15" fill="rgb(246,108,53)" fg:x="1139144" fg:w="15365"/><text x="74.2758%" y="495.50"></text></g><g><title>update_rq_clock (480 samples, 0.03%)</title><rect x="74.9931%" y="469" width="0.0312%" height="15" fill="rgb(241,172,50)" fg:x="1154029" fg:w="480"/><text x="75.2431%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,067 samples, 0.07%)</title><rect x="75.0243%" y="517" width="0.0693%" height="15" fill="rgb(235,141,10)" fg:x="1154509" fg:w="1067"/><text x="75.2743%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (983 samples, 0.06%)</title><rect x="75.0297%" y="501" width="0.0639%" height="15" fill="rgb(220,174,43)" fg:x="1154593" fg:w="983"/><text x="75.2797%" y="511.50"></text></g><g><title>__wake_up_common_lock (17,246 samples, 1.12%)</title><rect x="73.9813%" y="533" width="1.1207%" height="15" fill="rgb(215,181,40)" fg:x="1138459" fg:w="17246"/><text x="74.2313%" y="543.50"></text></g><g><title>btrfs_search_slot (87,221 samples, 5.67%)</title><rect x="69.4583%" y="565" width="5.6679%" height="15" fill="rgb(230,97,2)" fg:x="1068857" fg:w="87221"/><text x="69.7083%" y="575.50">btrfs_s..</text></g><g><title>unlock_up (18,401 samples, 1.20%)</title><rect x="73.9305%" y="549" width="1.1958%" height="15" fill="rgb(211,25,27)" fg:x="1137677" fg:w="18401"/><text x="74.1805%" y="559.50"></text></g><g><title>btrfs_tree_unlock (369 samples, 0.02%)</title><rect x="75.1023%" y="533" width="0.0240%" height="15" fill="rgb(230,87,26)" fg:x="1155709" fg:w="369"/><text x="75.3523%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (90,034 samples, 5.85%)</title><rect x="69.3120%" y="581" width="5.8507%" height="15" fill="rgb(227,160,17)" fg:x="1066605" fg:w="90034"/><text x="69.5620%" y="591.50">btrfs_l..</text></g><g><title>crc32c (561 samples, 0.04%)</title><rect x="75.1262%" y="565" width="0.0365%" height="15" fill="rgb(244,85,34)" fg:x="1156078" fg:w="561"/><text x="75.3762%" y="575.50"></text></g><g><title>crypto_shash_update (318 samples, 0.02%)</title><rect x="75.1420%" y="549" width="0.0207%" height="15" fill="rgb(207,70,0)" fg:x="1156321" fg:w="318"/><text x="75.3920%" y="559.50"></text></g><g><title>_raw_spin_lock (253 samples, 0.02%)</title><rect x="75.2384%" y="501" width="0.0164%" height="15" fill="rgb(223,129,7)" fg:x="1157804" fg:w="253"/><text x="75.4884%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (186 samples, 0.01%)</title><rect x="75.2428%" y="485" width="0.0121%" height="15" fill="rgb(246,105,7)" fg:x="1157871" fg:w="186"/><text x="75.4928%" y="495.50"></text></g><g><title>select_task_rq_fair (561 samples, 0.04%)</title><rect x="75.2653%" y="501" width="0.0365%" height="15" fill="rgb(215,154,42)" fg:x="1158218" fg:w="561"/><text x="75.5153%" y="511.50"></text></g><g><title>enqueue_entity (616 samples, 0.04%)</title><rect x="75.3162%" y="469" width="0.0400%" height="15" fill="rgb(220,215,30)" fg:x="1159001" fg:w="616"/><text x="75.5662%" y="479.50"></text></g><g><title>update_load_avg (188 samples, 0.01%)</title><rect x="75.3440%" y="453" width="0.0122%" height="15" fill="rgb(228,81,51)" fg:x="1159429" fg:w="188"/><text x="75.5940%" y="463.50"></text></g><g><title>enqueue_task_fair (764 samples, 0.05%)</title><rect x="75.3088%" y="485" width="0.0496%" height="15" fill="rgb(247,71,54)" fg:x="1158887" fg:w="764"/><text x="75.5588%" y="495.50"></text></g><g><title>ttwu_do_activate (1,569 samples, 0.10%)</title><rect x="75.3054%" y="501" width="0.1020%" height="15" fill="rgb(234,176,34)" fg:x="1158835" fg:w="1569"/><text x="75.5554%" y="511.50"></text></g><g><title>psi_task_change (750 samples, 0.05%)</title><rect x="75.3586%" y="485" width="0.0487%" height="15" fill="rgb(241,103,54)" fg:x="1159654" fg:w="750"/><text x="75.6086%" y="495.50"></text></g><g><title>psi_group_change (666 samples, 0.04%)</title><rect x="75.3641%" y="469" width="0.0433%" height="15" fill="rgb(228,22,34)" fg:x="1159738" fg:w="666"/><text x="75.6141%" y="479.50"></text></g><g><title>__wake_up_common (3,975 samples, 0.26%)</title><rect x="75.1742%" y="549" width="0.2583%" height="15" fill="rgb(241,179,48)" fg:x="1156816" fg:w="3975"/><text x="75.4242%" y="559.50"></text></g><g><title>autoremove_wake_function (3,874 samples, 0.25%)</title><rect x="75.1808%" y="533" width="0.2517%" height="15" fill="rgb(235,167,37)" fg:x="1156917" fg:w="3874"/><text x="75.4308%" y="543.50"></text></g><g><title>try_to_wake_up (3,792 samples, 0.25%)</title><rect x="75.1861%" y="517" width="0.2464%" height="15" fill="rgb(213,109,30)" fg:x="1156999" fg:w="3792"/><text x="75.4361%" y="527.50"></text></g><g><title>__wake_up_common_lock (4,102 samples, 0.27%)</title><rect x="75.1731%" y="565" width="0.2666%" height="15" fill="rgb(222,172,16)" fg:x="1156799" fg:w="4102"/><text x="75.4231%" y="575.50"></text></g><g><title>btrfs_tree_unlock (283 samples, 0.02%)</title><rect x="75.4397%" y="565" width="0.0184%" height="15" fill="rgb(233,192,5)" fg:x="1160901" fg:w="283"/><text x="75.6897%" y="575.50"></text></g><g><title>_raw_spin_lock (401 samples, 0.03%)</title><rect x="75.5073%" y="549" width="0.0261%" height="15" fill="rgb(247,189,41)" fg:x="1161942" fg:w="401"/><text x="75.7573%" y="559.50"></text></g><g><title>free_extent_buffer.part.0 (1,144 samples, 0.07%)</title><rect x="75.4591%" y="565" width="0.0743%" height="15" fill="rgb(218,134,47)" fg:x="1161200" fg:w="1144"/><text x="75.7091%" y="575.50"></text></g><g><title>btrfs_release_path (5,992 samples, 0.39%)</title><rect x="75.1627%" y="581" width="0.3894%" height="15" fill="rgb(216,29,3)" fg:x="1156639" fg:w="5992"/><text x="75.4127%" y="591.50"></text></g><g><title>release_extent_buffer (287 samples, 0.02%)</title><rect x="75.5334%" y="565" width="0.0187%" height="15" fill="rgb(246,140,12)" fg:x="1162344" fg:w="287"/><text x="75.7834%" y="575.50"></text></g><g><title>__list_add_valid (189 samples, 0.01%)</title><rect x="75.6059%" y="533" width="0.0123%" height="15" fill="rgb(230,136,11)" fg:x="1163459" fg:w="189"/><text x="75.8559%" y="543.50"></text></g><g><title>_raw_spin_lock (309 samples, 0.02%)</title><rect x="75.6256%" y="533" width="0.0201%" height="15" fill="rgb(247,22,47)" fg:x="1163762" fg:w="309"/><text x="75.8756%" y="543.50"></text></g><g><title>mutex_lock (283 samples, 0.02%)</title><rect x="75.6458%" y="533" width="0.0184%" height="15" fill="rgb(218,84,22)" fg:x="1164073" fg:w="283"/><text x="75.8958%" y="543.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,614 samples, 0.10%)</title><rect x="75.5861%" y="549" width="0.1049%" height="15" fill="rgb(216,87,39)" fg:x="1163155" fg:w="1614"/><text x="75.8361%" y="559.50"></text></g><g><title>mutex_unlock (413 samples, 0.03%)</title><rect x="75.6642%" y="533" width="0.0268%" height="15" fill="rgb(221,178,8)" fg:x="1164356" fg:w="413"/><text x="75.9142%" y="543.50"></text></g><g><title>mutex_spin_on_owner (269 samples, 0.02%)</title><rect x="75.6921%" y="533" width="0.0175%" height="15" fill="rgb(230,42,11)" fg:x="1164786" fg:w="269"/><text x="75.9421%" y="543.50"></text></g><g><title>__mutex_lock.constprop.0 (375 samples, 0.02%)</title><rect x="75.6910%" y="549" width="0.0244%" height="15" fill="rgb(237,229,4)" fg:x="1164769" fg:w="375"/><text x="75.9410%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (409 samples, 0.03%)</title><rect x="75.7181%" y="549" width="0.0266%" height="15" fill="rgb(222,31,33)" fg:x="1165185" fg:w="409"/><text x="75.9681%" y="559.50"></text></g><g><title>btrfs_get_delayed_node (369 samples, 0.02%)</title><rect x="75.7207%" y="533" width="0.0240%" height="15" fill="rgb(210,17,39)" fg:x="1165225" fg:w="369"/><text x="75.9707%" y="543.50"></text></g><g><title>inode_get_bytes (219 samples, 0.01%)</title><rect x="75.7555%" y="533" width="0.0142%" height="15" fill="rgb(244,93,20)" fg:x="1165761" fg:w="219"/><text x="76.0055%" y="543.50"></text></g><g><title>_raw_spin_lock (171 samples, 0.01%)</title><rect x="75.7586%" y="517" width="0.0111%" height="15" fill="rgb(210,40,47)" fg:x="1165809" fg:w="171"/><text x="76.0086%" y="527.50"></text></g><g><title>fill_stack_inode_item (553 samples, 0.04%)</title><rect x="75.7446%" y="549" width="0.0359%" height="15" fill="rgb(239,211,47)" fg:x="1165594" fg:w="553"/><text x="75.9946%" y="559.50"></text></g><g><title>map_id_up (167 samples, 0.01%)</title><rect x="75.7697%" y="533" width="0.0109%" height="15" fill="rgb(251,223,49)" fg:x="1165980" fg:w="167"/><text x="76.0197%" y="543.50"></text></g><g><title>mutex_lock (216 samples, 0.01%)</title><rect x="75.7806%" y="549" width="0.0140%" height="15" fill="rgb(221,149,5)" fg:x="1166147" fg:w="216"/><text x="76.0306%" y="559.50"></text></g><g><title>btrfs_delayed_update_inode (3,493 samples, 0.23%)</title><rect x="75.5807%" y="565" width="0.2270%" height="15" fill="rgb(219,224,51)" fg:x="1163071" fg:w="3493"/><text x="75.8307%" y="575.50"></text></g><g><title>mutex_unlock (201 samples, 0.01%)</title><rect x="75.7946%" y="549" width="0.0131%" height="15" fill="rgb(223,7,8)" fg:x="1166363" fg:w="201"/><text x="76.0446%" y="559.50"></text></g><g><title>_raw_spin_lock (488 samples, 0.03%)</title><rect x="75.8136%" y="549" width="0.0317%" height="15" fill="rgb(241,217,22)" fg:x="1166656" fg:w="488"/><text x="76.0636%" y="559.50"></text></g><g><title>btrfs_update_inode (4,913 samples, 0.32%)</title><rect x="75.5521%" y="581" width="0.3193%" height="15" fill="rgb(248,209,0)" fg:x="1162631" fg:w="4913"/><text x="75.8021%" y="591.50"></text></g><g><title>btrfs_update_root_times (980 samples, 0.06%)</title><rect x="75.8077%" y="565" width="0.0637%" height="15" fill="rgb(217,205,4)" fg:x="1166564" fg:w="980"/><text x="76.0577%" y="575.50"></text></g><g><title>ktime_get_real_ts64 (400 samples, 0.03%)</title><rect x="75.8454%" y="549" width="0.0260%" height="15" fill="rgb(228,124,39)" fg:x="1167144" fg:w="400"/><text x="76.0954%" y="559.50"></text></g><g><title>read_tsc (166 samples, 0.01%)</title><rect x="75.8606%" y="533" width="0.0108%" height="15" fill="rgb(250,116,42)" fg:x="1167378" fg:w="166"/><text x="76.1106%" y="543.50"></text></g><g><title>kmem_cache_alloc (579 samples, 0.04%)</title><rect x="75.8801%" y="581" width="0.0376%" height="15" fill="rgb(223,202,9)" fg:x="1167679" fg:w="579"/><text x="76.1301%" y="591.50"></text></g><g><title>__btrfs_unlink_inode (352,682 samples, 22.92%)</title><rect x="53.0344%" y="597" width="22.9186%" height="15" fill="rgb(242,222,40)" fg:x="816118" fg:w="352682"/><text x="53.2844%" y="607.50">__btrfs_unlink_inode</text></g><g><title>kmem_cache_free (542 samples, 0.04%)</title><rect x="75.9177%" y="581" width="0.0352%" height="15" fill="rgb(229,99,46)" fg:x="1168258" fg:w="542"/><text x="76.1677%" y="591.50"></text></g><g><title>__radix_tree_lookup (236 samples, 0.02%)</title><rect x="75.9851%" y="581" width="0.0153%" height="15" fill="rgb(225,56,46)" fg:x="1169295" fg:w="236"/><text x="76.2351%" y="591.50"></text></g><g><title>balance_dirty_pages_ratelimited (736 samples, 0.05%)</title><rect x="75.9531%" y="597" width="0.0478%" height="15" fill="rgb(227,94,5)" fg:x="1168802" fg:w="736"/><text x="76.2031%" y="607.50"></text></g><g><title>__percpu_counter_compare (188 samples, 0.01%)</title><rect x="76.0143%" y="581" width="0.0122%" height="15" fill="rgb(205,112,38)" fg:x="1169744" fg:w="188"/><text x="76.2643%" y="591.50"></text></g><g><title>btrfs_balance_delayed_items (527 samples, 0.03%)</title><rect x="76.0266%" y="581" width="0.0342%" height="15" fill="rgb(231,133,46)" fg:x="1169933" fg:w="527"/><text x="76.2766%" y="591.50"></text></g><g><title>_raw_spin_lock (531 samples, 0.03%)</title><rect x="76.0837%" y="549" width="0.0345%" height="15" fill="rgb(217,16,9)" fg:x="1170812" fg:w="531"/><text x="76.3337%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (416 samples, 0.03%)</title><rect x="76.0912%" y="533" width="0.0270%" height="15" fill="rgb(249,173,9)" fg:x="1170927" fg:w="416"/><text x="76.3412%" y="543.50"></text></g><g><title>insert_work (167 samples, 0.01%)</title><rect x="76.1182%" y="549" width="0.0109%" height="15" fill="rgb(205,163,53)" fg:x="1171343" fg:w="167"/><text x="76.3682%" y="559.50"></text></g><g><title>_raw_spin_lock (182 samples, 0.01%)</title><rect x="76.1513%" y="533" width="0.0118%" height="15" fill="rgb(217,54,41)" fg:x="1171852" fg:w="182"/><text x="76.4013%" y="543.50"></text></g><g><title>select_task_rq_fair (550 samples, 0.04%)</title><rect x="76.1714%" y="533" width="0.0357%" height="15" fill="rgb(228,216,12)" fg:x="1172162" fg:w="550"/><text x="76.4214%" y="543.50"></text></g><g><title>enqueue_task_fair (415 samples, 0.03%)</title><rect x="76.2134%" y="517" width="0.0270%" height="15" fill="rgb(244,228,15)" fg:x="1172808" fg:w="415"/><text x="76.4634%" y="527.50"></text></g><g><title>enqueue_entity (341 samples, 0.02%)</title><rect x="76.2182%" y="501" width="0.0222%" height="15" fill="rgb(221,176,53)" fg:x="1172882" fg:w="341"/><text x="76.4682%" y="511.50"></text></g><g><title>ttwu_do_activate (660 samples, 0.04%)</title><rect x="76.2102%" y="533" width="0.0429%" height="15" fill="rgb(205,94,34)" fg:x="1172758" fg:w="660"/><text x="76.4602%" y="543.50"></text></g><g><title>psi_task_change (193 samples, 0.01%)</title><rect x="76.2405%" y="517" width="0.0125%" height="15" fill="rgb(213,110,48)" fg:x="1173225" fg:w="193"/><text x="76.4905%" y="527.50"></text></g><g><title>check_preempt_wakeup (178 samples, 0.01%)</title><rect x="76.2551%" y="501" width="0.0116%" height="15" fill="rgb(236,142,28)" fg:x="1173449" fg:w="178"/><text x="76.5051%" y="511.50"></text></g><g><title>ttwu_do_wakeup (225 samples, 0.01%)</title><rect x="76.2531%" y="533" width="0.0146%" height="15" fill="rgb(225,135,29)" fg:x="1173418" fg:w="225"/><text x="76.5031%" y="543.50"></text></g><g><title>check_preempt_curr (215 samples, 0.01%)</title><rect x="76.2537%" y="517" width="0.0140%" height="15" fill="rgb(252,45,31)" fg:x="1173428" fg:w="215"/><text x="76.5037%" y="527.50"></text></g><g><title>try_to_wake_up (2,246 samples, 0.15%)</title><rect x="76.1291%" y="549" width="0.1460%" height="15" fill="rgb(211,187,50)" fg:x="1171510" fg:w="2246"/><text x="76.3791%" y="559.50"></text></g><g><title>__queue_work (3,114 samples, 0.20%)</title><rect x="76.0727%" y="565" width="0.2024%" height="15" fill="rgb(229,109,7)" fg:x="1170643" fg:w="3114"/><text x="76.3227%" y="575.50"></text></g><g><title>btrfs_btree_balance_dirty (4,258 samples, 0.28%)</title><rect x="76.0009%" y="597" width="0.2767%" height="15" fill="rgb(251,131,51)" fg:x="1169538" fg:w="4258"/><text x="76.2509%" y="607.50"></text></g><g><title>queue_work_on (3,208 samples, 0.21%)</title><rect x="76.0692%" y="581" width="0.2085%" height="15" fill="rgb(251,180,35)" fg:x="1170588" fg:w="3208"/><text x="76.3192%" y="591.50"></text></g><g><title>mutex_lock (861 samples, 0.06%)</title><rect x="76.2841%" y="581" width="0.0560%" height="15" fill="rgb(211,46,32)" fg:x="1173896" fg:w="861"/><text x="76.5341%" y="591.50"></text></g><g><title>btrfs_record_unlink_dir (1,100 samples, 0.07%)</title><rect x="76.2798%" y="597" width="0.0715%" height="15" fill="rgb(248,123,17)" fg:x="1173829" fg:w="1100"/><text x="76.5298%" y="607.50"></text></g><g><title>mutex_unlock (172 samples, 0.01%)</title><rect x="76.3401%" y="581" width="0.0112%" height="15" fill="rgb(227,141,18)" fg:x="1174757" fg:w="172"/><text x="76.5901%" y="591.50"></text></g><g><title>_raw_spin_lock (231 samples, 0.02%)</title><rect x="76.4476%" y="549" width="0.0150%" height="15" fill="rgb(216,102,9)" fg:x="1176412" fg:w="231"/><text x="76.6976%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,222 samples, 0.08%)</title><rect x="76.4012%" y="565" width="0.0794%" height="15" fill="rgb(253,47,13)" fg:x="1175698" fg:w="1222"/><text x="76.6512%" y="575.50"></text></g><g><title>_raw_spin_lock (605 samples, 0.04%)</title><rect x="76.4853%" y="549" width="0.0393%" height="15" fill="rgb(226,93,23)" fg:x="1176992" fg:w="605"/><text x="76.7353%" y="559.50"></text></g><g><title>btrfs_block_rsv_migrate (675 samples, 0.04%)</title><rect x="76.4809%" y="565" width="0.0439%" height="15" fill="rgb(247,104,17)" fg:x="1176924" fg:w="675"/><text x="76.7309%" y="575.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,212 samples, 0.08%)</title><rect x="76.5248%" y="565" width="0.0788%" height="15" fill="rgb(233,203,26)" fg:x="1177599" fg:w="1212"/><text x="76.7748%" y="575.50"></text></g><g><title>btrfs_get_delayed_node (1,176 samples, 0.08%)</title><rect x="76.5271%" y="549" width="0.0764%" height="15" fill="rgb(244,98,49)" fg:x="1177635" fg:w="1176"/><text x="76.7771%" y="559.50"></text></g><g><title>inode_get_bytes (222 samples, 0.01%)</title><rect x="76.6114%" y="549" width="0.0144%" height="15" fill="rgb(235,134,22)" fg:x="1178932" fg:w="222"/><text x="76.8614%" y="559.50"></text></g><g><title>_raw_spin_lock (189 samples, 0.01%)</title><rect x="76.6135%" y="533" width="0.0123%" height="15" fill="rgb(221,70,32)" fg:x="1178965" fg:w="189"/><text x="76.8635%" y="543.50"></text></g><g><title>fill_stack_inode_item (429 samples, 0.03%)</title><rect x="76.6035%" y="565" width="0.0279%" height="15" fill="rgb(238,15,50)" fg:x="1178811" fg:w="429"/><text x="76.8535%" y="575.50"></text></g><g><title>mutex_lock (440 samples, 0.03%)</title><rect x="76.6314%" y="565" width="0.0286%" height="15" fill="rgb(215,221,48)" fg:x="1179240" fg:w="440"/><text x="76.8814%" y="575.50"></text></g><g><title>btrfs_delayed_update_inode (4,563 samples, 0.30%)</title><rect x="76.3718%" y="581" width="0.2965%" height="15" fill="rgb(236,73,3)" fg:x="1175245" fg:w="4563"/><text x="76.6218%" y="591.50"></text></g><g><title>_raw_spin_lock (182 samples, 0.01%)</title><rect x="76.6714%" y="565" width="0.0118%" height="15" fill="rgb(250,107,11)" fg:x="1179855" fg:w="182"/><text x="76.9214%" y="575.50"></text></g><g><title>btrfs_update_inode (5,326 samples, 0.35%)</title><rect x="76.3520%" y="597" width="0.3461%" height="15" fill="rgb(242,39,14)" fg:x="1174940" fg:w="5326"/><text x="76.6020%" y="607.50"></text></g><g><title>btrfs_update_root_times (458 samples, 0.03%)</title><rect x="76.6683%" y="581" width="0.0298%" height="15" fill="rgb(248,164,37)" fg:x="1179808" fg:w="458"/><text x="76.9183%" y="591.50"></text></g><g><title>ktime_get_real_ts64 (229 samples, 0.01%)</title><rect x="76.6832%" y="565" width="0.0149%" height="15" fill="rgb(217,60,12)" fg:x="1180037" fg:w="229"/><text x="76.9332%" y="575.50"></text></g><g><title>read_tsc (160 samples, 0.01%)</title><rect x="76.6877%" y="549" width="0.0104%" height="15" fill="rgb(240,125,29)" fg:x="1180106" fg:w="160"/><text x="76.9377%" y="559.50"></text></g><g><title>_raw_spin_lock (371 samples, 0.02%)</title><rect x="76.7690%" y="565" width="0.0241%" height="15" fill="rgb(208,207,28)" fg:x="1181358" fg:w="371"/><text x="77.0190%" y="575.50"></text></g><g><title>_raw_spin_lock (676 samples, 0.04%)</title><rect x="76.8386%" y="533" width="0.0439%" height="15" fill="rgb(209,159,27)" fg:x="1182429" fg:w="676"/><text x="77.0886%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (192 samples, 0.01%)</title><rect x="76.8701%" y="517" width="0.0125%" height="15" fill="rgb(251,176,53)" fg:x="1182913" fg:w="192"/><text x="77.1201%" y="527.50"></text></g><g><title>_raw_spin_lock (259 samples, 0.02%)</title><rect x="76.9659%" y="501" width="0.0168%" height="15" fill="rgb(211,85,7)" fg:x="1184388" fg:w="259"/><text x="77.2159%" y="511.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,542 samples, 0.10%)</title><rect x="76.8828%" y="533" width="0.1002%" height="15" fill="rgb(216,64,54)" fg:x="1183108" fg:w="1542"/><text x="77.1328%" y="543.50"></text></g><g><title>btrfs_reduce_alloc_profile (706 samples, 0.05%)</title><rect x="76.9371%" y="517" width="0.0459%" height="15" fill="rgb(217,54,24)" fg:x="1183944" fg:w="706"/><text x="77.1871%" y="527.50"></text></g><g><title>btrfs_get_alloc_profile (221 samples, 0.01%)</title><rect x="77.0035%" y="517" width="0.0144%" height="15" fill="rgb(208,206,53)" fg:x="1184966" fg:w="221"/><text x="77.2535%" y="527.50"></text></g><g><title>_raw_spin_lock (235 samples, 0.02%)</title><rect x="77.0334%" y="501" width="0.0153%" height="15" fill="rgb(251,74,39)" fg:x="1185426" fg:w="235"/><text x="77.2834%" y="511.50"></text></g><g><title>__reserve_bytes (3,620 samples, 0.24%)</title><rect x="76.8135%" y="549" width="0.2352%" height="15" fill="rgb(226,47,5)" fg:x="1182042" fg:w="3620"/><text x="77.0635%" y="559.50"></text></g><g><title>calc_available_free_space.isra.0 (1,012 samples, 0.07%)</title><rect x="76.9830%" y="533" width="0.0658%" height="15" fill="rgb(234,111,33)" fg:x="1184650" fg:w="1012"/><text x="77.2330%" y="543.50"></text></g><g><title>btrfs_reduce_alloc_profile (475 samples, 0.03%)</title><rect x="77.0179%" y="517" width="0.0309%" height="15" fill="rgb(251,14,10)" fg:x="1185187" fg:w="475"/><text x="77.2679%" y="527.50"></text></g><g><title>btrfs_block_rsv_add (4,397 samples, 0.29%)</title><rect x="76.7632%" y="581" width="0.2857%" height="15" fill="rgb(232,43,0)" fg:x="1181268" fg:w="4397"/><text x="77.0132%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (3,936 samples, 0.26%)</title><rect x="76.7931%" y="565" width="0.2558%" height="15" fill="rgb(222,68,43)" fg:x="1181729" fg:w="3936"/><text x="77.0431%" y="575.50"></text></g><g><title>_raw_spin_lock (318 samples, 0.02%)</title><rect x="77.0821%" y="565" width="0.0207%" height="15" fill="rgb(217,24,23)" fg:x="1186175" fg:w="318"/><text x="77.3321%" y="575.50"></text></g><g><title>join_transaction (776 samples, 0.05%)</title><rect x="77.0529%" y="581" width="0.0504%" height="15" fill="rgb(229,209,14)" fg:x="1185727" fg:w="776"/><text x="77.3029%" y="591.50"></text></g><g><title>kmem_cache_alloc (620 samples, 0.04%)</title><rect x="77.1034%" y="581" width="0.0403%" height="15" fill="rgb(250,149,48)" fg:x="1186503" fg:w="620"/><text x="77.3534%" y="591.50"></text></g><g><title>_raw_spin_lock (471 samples, 0.03%)</title><rect x="77.1567%" y="565" width="0.0306%" height="15" fill="rgb(210,120,37)" fg:x="1187324" fg:w="471"/><text x="77.4067%" y="575.50"></text></g><g><title>btrfs_unlink (375,638 samples, 24.41%)</title><rect x="52.7782%" y="613" width="24.4104%" height="15" fill="rgb(210,21,8)" fg:x="812176" fg:w="375638"/><text x="53.0282%" y="623.50">btrfs_unlink</text></g><g><title>start_transaction (7,449 samples, 0.48%)</title><rect x="76.7045%" y="597" width="0.4841%" height="15" fill="rgb(243,145,7)" fg:x="1180365" fg:w="7449"/><text x="76.9545%" y="607.50"></text></g><g><title>wait_current_trans (691 samples, 0.04%)</title><rect x="77.1437%" y="581" width="0.0449%" height="15" fill="rgb(238,178,32)" fg:x="1187123" fg:w="691"/><text x="77.3937%" y="591.50"></text></g><g><title>_raw_spin_lock (230 samples, 0.01%)</title><rect x="77.1961%" y="597" width="0.0149%" height="15" fill="rgb(222,4,10)" fg:x="1187930" fg:w="230"/><text x="77.4461%" y="607.50"></text></g><g><title>d_delete (347 samples, 0.02%)</title><rect x="77.1886%" y="613" width="0.0225%" height="15" fill="rgb(239,7,37)" fg:x="1187814" fg:w="347"/><text x="77.4386%" y="623.50"></text></g><g><title>dentry_unlink_inode (382 samples, 0.02%)</title><rect x="77.2111%" y="613" width="0.0248%" height="15" fill="rgb(215,31,37)" fg:x="1188161" fg:w="382"/><text x="77.4611%" y="623.50"></text></g><g><title>down_write (940 samples, 0.06%)</title><rect x="77.2359%" y="613" width="0.0611%" height="15" fill="rgb(224,83,33)" fg:x="1188543" fg:w="940"/><text x="77.4859%" y="623.50"></text></g><g><title>fsnotify (684 samples, 0.04%)</title><rect x="77.2970%" y="613" width="0.0444%" height="15" fill="rgb(239,55,3)" fg:x="1189483" fg:w="684"/><text x="77.5470%" y="623.50"></text></g><g><title>ihold (225 samples, 0.01%)</title><rect x="77.3415%" y="613" width="0.0146%" height="15" fill="rgb(247,92,11)" fg:x="1190167" fg:w="225"/><text x="77.5915%" y="623.50"></text></g><g><title>iput.part.0 (491 samples, 0.03%)</title><rect x="77.3587%" y="613" width="0.0319%" height="15" fill="rgb(239,200,7)" fg:x="1190432" fg:w="491"/><text x="77.6087%" y="623.50"></text></g><g><title>_atomic_dec_and_lock (425 samples, 0.03%)</title><rect x="77.3630%" y="597" width="0.0276%" height="15" fill="rgb(227,115,8)" fg:x="1190498" fg:w="425"/><text x="77.6130%" y="607.50"></text></g><g><title>btrfs_permission (199 samples, 0.01%)</title><rect x="77.4106%" y="581" width="0.0129%" height="15" fill="rgb(215,189,27)" fg:x="1191230" fg:w="199"/><text x="77.6606%" y="591.50"></text></g><g><title>inode_permission.part.0 (361 samples, 0.02%)</title><rect x="77.4024%" y="597" width="0.0235%" height="15" fill="rgb(251,216,39)" fg:x="1191104" fg:w="361"/><text x="77.6524%" y="607.50"></text></g><g><title>may_delete (560 samples, 0.04%)</title><rect x="77.3906%" y="613" width="0.0364%" height="15" fill="rgb(207,29,47)" fg:x="1190923" fg:w="560"/><text x="77.6406%" y="623.50"></text></g><g><title>do_unlinkat (395,033 samples, 25.67%)</title><rect x="51.7833%" y="645" width="25.6707%" height="15" fill="rgb(210,71,34)" fg:x="796866" fg:w="395033"/><text x="52.0333%" y="655.50">do_unlinkat</text></g><g><title>vfs_unlink (380,282 samples, 24.71%)</title><rect x="52.7419%" y="629" width="24.7121%" height="15" fill="rgb(253,217,51)" fg:x="811617" fg:w="380282"/><text x="52.9919%" y="639.50">vfs_unlink</text></g><g><title>up_write (273 samples, 0.02%)</title><rect x="77.4363%" y="613" width="0.0177%" height="15" fill="rgb(222,117,46)" fg:x="1191626" fg:w="273"/><text x="77.6863%" y="623.50"></text></g><g><title>do_syscall_64 (477,912 samples, 31.06%)</title><rect x="46.4061%" y="661" width="31.0565%" height="15" fill="rgb(226,132,6)" fg:x="714119" fg:w="477912"/><text x="46.6561%" y="671.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (479,194 samples, 31.14%)</title><rect x="46.3881%" y="677" width="31.1398%" height="15" fill="rgb(254,145,51)" fg:x="713842" fg:w="479194"/><text x="46.6381%" y="687.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (1,005 samples, 0.07%)</title><rect x="77.4626%" y="661" width="0.0653%" height="15" fill="rgb(231,199,27)" fg:x="1192031" fg:w="1005"/><text x="77.7126%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (905 samples, 0.06%)</title><rect x="77.4691%" y="645" width="0.0588%" height="15" fill="rgb(245,158,14)" fg:x="1192131" fg:w="905"/><text x="77.7191%" y="655.50"></text></g><g><title>switch_fpu_return (620 samples, 0.04%)</title><rect x="77.4876%" y="629" width="0.0403%" height="15" fill="rgb(240,113,14)" fg:x="1192416" fg:w="620"/><text x="77.7376%" y="639.50"></text></g><g><title>copy_kernel_to_fpregs (251 samples, 0.02%)</title><rect x="77.5116%" y="613" width="0.0163%" height="15" fill="rgb(210,20,13)" fg:x="1192785" fg:w="251"/><text x="77.7616%" y="623.50"></text></g><g><title>syscall_return_via_sysret (271 samples, 0.02%)</title><rect x="77.5312%" y="677" width="0.0176%" height="15" fill="rgb(241,144,13)" fg:x="1193086" fg:w="271"/><text x="77.7812%" y="687.50"></text></g><g><title>__GI_unlinkat (480,973 samples, 31.26%)</title><rect x="46.2934%" y="693" width="31.2554%" height="15" fill="rgb(235,43,34)" fg:x="712385" fg:w="480973"/><text x="46.5434%" y="703.50">__GI_unlinkat</text></g><g><title>_int_free (230 samples, 0.01%)</title><rect x="77.5562%" y="677" width="0.0149%" height="15" fill="rgb(208,36,20)" fg:x="1193472" fg:w="230"/><text x="77.8062%" y="687.50"></text></g><g><title>__closedir (325 samples, 0.02%)</title><rect x="77.5501%" y="693" width="0.0211%" height="15" fill="rgb(239,204,10)" fg:x="1193378" fg:w="325"/><text x="77.8001%" y="703.50"></text></g><g><title>__dirfd (227 samples, 0.01%)</title><rect x="77.5714%" y="693" width="0.0148%" height="15" fill="rgb(217,84,43)" fg:x="1193705" fg:w="227"/><text x="77.8214%" y="703.50"></text></g><g><title>__errno_location (249 samples, 0.02%)</title><rect x="77.5861%" y="693" width="0.0162%" height="15" fill="rgb(241,170,50)" fg:x="1193932" fg:w="249"/><text x="77.8361%" y="703.50"></text></g><g><title>__x64_sys_fcntl (168 samples, 0.01%)</title><rect x="77.6064%" y="613" width="0.0109%" height="15" fill="rgb(226,205,29)" fg:x="1194244" fg:w="168"/><text x="77.8564%" y="623.50"></text></g><g><title>do_syscall_64 (177 samples, 0.01%)</title><rect x="77.6059%" y="629" width="0.0115%" height="15" fill="rgb(233,113,1)" fg:x="1194236" fg:w="177"/><text x="77.8559%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (201 samples, 0.01%)</title><rect x="77.6053%" y="645" width="0.0131%" height="15" fill="rgb(253,98,13)" fg:x="1194227" fg:w="201"/><text x="77.8553%" y="655.50"></text></g><g><title>__GI___fcntl64_nocancel (246 samples, 0.02%)</title><rect x="77.6027%" y="677" width="0.0160%" height="15" fill="rgb(211,115,12)" fg:x="1194187" fg:w="246"/><text x="77.8527%" y="687.50"></text></g><g><title>__fcntl64_nocancel_adjusted (240 samples, 0.02%)</title><rect x="77.6031%" y="661" width="0.0156%" height="15" fill="rgb(208,12,16)" fg:x="1194193" fg:w="240"/><text x="77.8531%" y="671.50"></text></g><g><title>btrfs_getattr (171 samples, 0.01%)</title><rect x="77.6347%" y="597" width="0.0111%" height="15" fill="rgb(237,193,54)" fg:x="1194679" fg:w="171"/><text x="77.8847%" y="607.50"></text></g><g><title>__do_sys_newfstat (485 samples, 0.03%)</title><rect x="77.6240%" y="629" width="0.0315%" height="15" fill="rgb(243,22,42)" fg:x="1194514" fg:w="485"/><text x="77.8740%" y="639.50"></text></g><g><title>vfs_fstat (365 samples, 0.02%)</title><rect x="77.6318%" y="613" width="0.0237%" height="15" fill="rgb(233,151,36)" fg:x="1194634" fg:w="365"/><text x="77.8818%" y="623.50"></text></g><g><title>do_syscall_64 (499 samples, 0.03%)</title><rect x="77.6234%" y="645" width="0.0324%" height="15" fill="rgb(237,57,45)" fg:x="1194506" fg:w="499"/><text x="77.8734%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (520 samples, 0.03%)</title><rect x="77.6230%" y="661" width="0.0338%" height="15" fill="rgb(221,88,17)" fg:x="1194499" fg:w="520"/><text x="77.8730%" y="671.50"></text></g><g><title>__GI___fxstat (604 samples, 0.04%)</title><rect x="77.6187%" y="677" width="0.0393%" height="15" fill="rgb(230,79,15)" fg:x="1194433" fg:w="604"/><text x="77.8687%" y="687.50"></text></g><g><title>__GI___fcntl64_nocancel (186 samples, 0.01%)</title><rect x="77.6592%" y="661" width="0.0121%" height="15" fill="rgb(213,57,13)" fg:x="1195056" fg:w="186"/><text x="77.9092%" y="671.50"></text></g><g><title>__fcntl64_nocancel_adjusted (181 samples, 0.01%)</title><rect x="77.6595%" y="645" width="0.0118%" height="15" fill="rgb(222,116,39)" fg:x="1195061" fg:w="181"/><text x="77.9095%" y="655.50"></text></g><g><title>malloc_consolidate (199 samples, 0.01%)</title><rect x="77.6986%" y="629" width="0.0129%" height="15" fill="rgb(245,107,2)" fg:x="1195663" fg:w="199"/><text x="77.9486%" y="639.50"></text></g><g><title>_int_malloc (487 samples, 0.03%)</title><rect x="77.6824%" y="645" width="0.0316%" height="15" fill="rgb(238,1,10)" fg:x="1195413" fg:w="487"/><text x="77.9324%" y="655.50"></text></g><g><title>__GI___libc_malloc (659 samples, 0.04%)</title><rect x="77.6713%" y="661" width="0.0428%" height="15" fill="rgb(249,4,48)" fg:x="1195242" fg:w="659"/><text x="77.9213%" y="671.50"></text></g><g><title>__fdopendir (1,759 samples, 0.11%)</title><rect x="77.6023%" y="693" width="0.1143%" height="15" fill="rgb(223,151,18)" fg:x="1194181" fg:w="1759"/><text x="77.8523%" y="703.50"></text></g><g><title>__alloc_dir (903 samples, 0.06%)</title><rect x="77.6579%" y="677" width="0.0587%" height="15" fill="rgb(227,65,43)" fg:x="1195037" fg:w="903"/><text x="77.9079%" y="687.50"></text></g><g><title>__alloc_fd (171 samples, 0.01%)</title><rect x="77.7371%" y="613" width="0.0111%" height="15" fill="rgb(218,40,45)" fg:x="1196255" fg:w="171"/><text x="77.9871%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (197 samples, 0.01%)</title><rect x="77.7758%" y="533" width="0.0128%" height="15" fill="rgb(252,121,31)" fg:x="1196850" fg:w="197"/><text x="78.0258%" y="543.50"></text></g><g><title>kmem_cache_alloc (591 samples, 0.04%)</title><rect x="77.7683%" y="549" width="0.0384%" height="15" fill="rgb(219,158,43)" fg:x="1196735" fg:w="591"/><text x="78.0183%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (273 samples, 0.02%)</title><rect x="77.7890%" y="533" width="0.0177%" height="15" fill="rgb(231,162,42)" fg:x="1197053" fg:w="273"/><text x="78.0390%" y="543.50"></text></g><g><title>__alloc_file (842 samples, 0.05%)</title><rect x="77.7641%" y="565" width="0.0547%" height="15" fill="rgb(217,179,25)" fg:x="1196670" fg:w="842"/><text x="78.0141%" y="575.50"></text></g><g><title>security_file_alloc (186 samples, 0.01%)</title><rect x="77.8067%" y="549" width="0.0121%" height="15" fill="rgb(206,212,31)" fg:x="1197326" fg:w="186"/><text x="78.0567%" y="559.50"></text></g><g><title>alloc_empty_file (889 samples, 0.06%)</title><rect x="77.7621%" y="581" width="0.0578%" height="15" fill="rgb(235,144,12)" fg:x="1196640" fg:w="889"/><text x="78.0121%" y="591.50"></text></g><g><title>memset_erms (155 samples, 0.01%)</title><rect x="77.8497%" y="533" width="0.0101%" height="15" fill="rgb(213,51,10)" fg:x="1197988" fg:w="155"/><text x="78.0997%" y="543.50"></text></g><g><title>btrfs_opendir (438 samples, 0.03%)</title><rect x="77.8340%" y="565" width="0.0285%" height="15" fill="rgb(231,145,14)" fg:x="1197746" fg:w="438"/><text x="78.0840%" y="575.50"></text></g><g><title>kmem_cache_alloc_trace (384 samples, 0.02%)</title><rect x="77.8375%" y="549" width="0.0250%" height="15" fill="rgb(235,15,28)" fg:x="1197800" fg:w="384"/><text x="78.0875%" y="559.50"></text></g><g><title>do_dentry_open (1,050 samples, 0.07%)</title><rect x="77.8257%" y="581" width="0.0682%" height="15" fill="rgb(237,206,10)" fg:x="1197618" fg:w="1050"/><text x="78.0757%" y="591.50"></text></g><g><title>security_file_open (328 samples, 0.02%)</title><rect x="77.8726%" y="565" width="0.0213%" height="15" fill="rgb(236,227,27)" fg:x="1198340" fg:w="328"/><text x="78.1226%" y="575.50"></text></g><g><title>lookup_fast (168 samples, 0.01%)</title><rect x="77.9016%" y="581" width="0.0109%" height="15" fill="rgb(246,83,35)" fg:x="1198786" fg:w="168"/><text x="78.1516%" y="591.50"></text></g><g><title>do_filp_open (2,785 samples, 0.18%)</title><rect x="77.7524%" y="613" width="0.1810%" height="15" fill="rgb(220,136,24)" fg:x="1196491" fg:w="2785"/><text x="78.0024%" y="623.50"></text></g><g><title>path_openat (2,743 samples, 0.18%)</title><rect x="77.7552%" y="597" width="0.1783%" height="15" fill="rgb(217,3,25)" fg:x="1196533" fg:w="2743"/><text x="78.0052%" y="607.50"></text></g><g><title>kmem_cache_alloc (174 samples, 0.01%)</title><rect x="77.9428%" y="597" width="0.0113%" height="15" fill="rgb(239,24,14)" fg:x="1199421" fg:w="174"/><text x="78.1928%" y="607.50"></text></g><g><title>getname_flags.part.0 (380 samples, 0.02%)</title><rect x="77.9420%" y="613" width="0.0247%" height="15" fill="rgb(244,16,53)" fg:x="1199408" fg:w="380"/><text x="78.1920%" y="623.50"></text></g><g><title>strncpy_from_user (193 samples, 0.01%)</title><rect x="77.9541%" y="597" width="0.0125%" height="15" fill="rgb(208,175,44)" fg:x="1199595" fg:w="193"/><text x="78.2041%" y="607.50"></text></g><g><title>__x64_sys_openat (3,690 samples, 0.24%)</title><rect x="77.7309%" y="645" width="0.2398%" height="15" fill="rgb(252,18,48)" fg:x="1196159" fg:w="3690"/><text x="77.9809%" y="655.50"></text></g><g><title>do_sys_openat2 (3,648 samples, 0.24%)</title><rect x="77.7336%" y="629" width="0.2371%" height="15" fill="rgb(234,199,32)" fg:x="1196201" fg:w="3648"/><text x="77.9836%" y="639.50"></text></g><g><title>do_syscall_64 (3,729 samples, 0.24%)</title><rect x="77.7289%" y="661" width="0.2423%" height="15" fill="rgb(225,77,54)" fg:x="1196129" fg:w="3729"/><text x="77.9789%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,761 samples, 0.24%)</title><rect x="77.7283%" y="677" width="0.2444%" height="15" fill="rgb(225,42,25)" fg:x="1196119" fg:w="3761"/><text x="77.9783%" y="687.50"></text></g><g><title>__libc_openat64 (3,927 samples, 0.26%)</title><rect x="77.7188%" y="693" width="0.2552%" height="15" fill="rgb(242,227,46)" fg:x="1195974" fg:w="3927"/><text x="77.9688%" y="703.50"></text></g><g><title>_int_free (916 samples, 0.06%)</title><rect x="77.9788%" y="693" width="0.0595%" height="15" fill="rgb(246,197,35)" fg:x="1199975" fg:w="916"/><text x="78.2288%" y="703.50"></text></g><g><title>free@plt (296 samples, 0.02%)</title><rect x="78.0438%" y="693" width="0.0192%" height="15" fill="rgb(215,159,26)" fg:x="1200975" fg:w="296"/><text x="78.2938%" y="703.50"></text></g><g><title>ThreadStateTransition::transition_from_native (232 samples, 0.02%)</title><rect x="78.0801%" y="677" width="0.0151%" height="15" fill="rgb(212,194,50)" fg:x="1201533" fg:w="232"/><text x="78.3301%" y="687.50"></text></g><g><title>jni_ExceptionOccurred (496 samples, 0.03%)</title><rect x="78.0631%" y="693" width="0.0322%" height="15" fill="rgb(246,132,1)" fg:x="1201271" fg:w="496"/><text x="78.3131%" y="703.50"></text></g><g><title>HandleMark::pop_and_restore (209 samples, 0.01%)</title><rect x="78.1543%" y="677" width="0.0136%" height="15" fill="rgb(217,71,7)" fg:x="1202675" fg:w="209"/><text x="78.4043%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (1,261 samples, 0.08%)</title><rect x="78.1693%" y="677" width="0.0819%" height="15" fill="rgb(252,59,32)" fg:x="1202906" fg:w="1261"/><text x="78.4193%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,001 samples, 0.07%)</title><rect x="78.2512%" y="677" width="0.0650%" height="15" fill="rgb(253,204,25)" fg:x="1204167" fg:w="1001"/><text x="78.5012%" y="687.50"></text></g><g><title>[libc-2.31.so] (729 samples, 0.05%)</title><rect x="78.3163%" y="677" width="0.0474%" height="15" fill="rgb(232,21,16)" fg:x="1205168" fg:w="729"/><text x="78.5663%" y="687.50"></text></g><g><title>check_bounds (874 samples, 0.06%)</title><rect x="78.3646%" y="677" width="0.0568%" height="15" fill="rgb(248,90,29)" fg:x="1205912" fg:w="874"/><text x="78.6146%" y="687.50"></text></g><g><title>jni_GetByteArrayRegion (5,580 samples, 0.36%)</title><rect x="78.0954%" y="693" width="0.3626%" height="15" fill="rgb(249,223,7)" fg:x="1201768" fg:w="5580"/><text x="78.3454%" y="703.50"></text></g><g><title>memmove@plt (562 samples, 0.04%)</title><rect x="78.4214%" y="677" width="0.0365%" height="15" fill="rgb(231,119,42)" fg:x="1206786" fg:w="562"/><text x="78.6714%" y="687.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (1,737 samples, 0.11%)</title><rect x="78.5321%" y="661" width="0.1129%" height="15" fill="rgb(215,41,35)" fg:x="1208489" fg:w="1737"/><text x="78.7821%" y="671.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (1,586 samples, 0.10%)</title><rect x="78.5419%" y="645" width="0.1031%" height="15" fill="rgb(220,44,45)" fg:x="1208640" fg:w="1586"/><text x="78.7919%" y="655.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (1,963 samples, 0.13%)</title><rect x="78.5176%" y="677" width="0.1276%" height="15" fill="rgb(253,197,36)" fg:x="1208266" fg:w="1963"/><text x="78.7676%" y="687.50"></text></g><g><title>HandleMark::pop_and_restore (715 samples, 0.05%)</title><rect x="78.6452%" y="677" width="0.0465%" height="15" fill="rgb(245,225,54)" fg:x="1210229" fg:w="715"/><text x="78.8952%" y="687.50"></text></g><g><title>JNIHandles::make_local (845 samples, 0.05%)</title><rect x="78.6916%" y="677" width="0.0549%" height="15" fill="rgb(239,94,37)" fg:x="1210944" fg:w="845"/><text x="78.9416%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (926 samples, 0.06%)</title><rect x="78.7484%" y="677" width="0.0602%" height="15" fill="rgb(242,217,10)" fg:x="1211818" fg:w="926"/><text x="78.9984%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,071 samples, 0.07%)</title><rect x="78.8086%" y="677" width="0.0696%" height="15" fill="rgb(250,193,7)" fg:x="1212744" fg:w="1071"/><text x="79.0586%" y="687.50"></text></g><g><title>jni_GetObjectField (6,479 samples, 0.42%)</title><rect x="78.4580%" y="693" width="0.4210%" height="15" fill="rgb(230,104,19)" fg:x="1207349" fg:w="6479"/><text x="78.7080%" y="703.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 573558ul&gt;::oop_access_barrier (376 samples, 0.02%)</title><rect x="78.9602%" y="677" width="0.0244%" height="15" fill="rgb(230,181,4)" fg:x="1215076" fg:w="376"/><text x="79.2102%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (901 samples, 0.06%)</title><rect x="78.9864%" y="677" width="0.0586%" height="15" fill="rgb(216,219,49)" fg:x="1215480" fg:w="901"/><text x="79.2364%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,179 samples, 0.08%)</title><rect x="79.0450%" y="677" width="0.0766%" height="15" fill="rgb(254,144,0)" fg:x="1216381" fg:w="1179"/><text x="79.2950%" y="687.50"></text></g><g><title>jni_GetStringLength (3,744 samples, 0.24%)</title><rect x="78.8791%" y="693" width="0.2433%" height="15" fill="rgb(205,209,38)" fg:x="1213828" fg:w="3744"/><text x="79.1291%" y="703.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (539 samples, 0.04%)</title><rect x="79.4148%" y="629" width="0.0350%" height="15" fill="rgb(240,21,42)" fg:x="1222072" fg:w="539"/><text x="79.6648%" y="639.50"></text></g><g><title>ThreadHeapSampler::enabled (211 samples, 0.01%)</title><rect x="79.4774%" y="613" width="0.0137%" height="15" fill="rgb(241,132,3)" fg:x="1223035" fg:w="211"/><text x="79.7274%" y="623.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (642 samples, 0.04%)</title><rect x="79.4498%" y="629" width="0.0417%" height="15" fill="rgb(225,14,2)" fg:x="1222611" fg:w="642"/><text x="79.6998%" y="639.50"></text></g><g><title>[libc-2.31.so] (313 samples, 0.02%)</title><rect x="79.5186%" y="613" width="0.0203%" height="15" fill="rgb(210,141,35)" fg:x="1223670" fg:w="313"/><text x="79.7686%" y="623.50"></text></g><g><title>ObjAllocator::initialize (823 samples, 0.05%)</title><rect x="79.4921%" y="629" width="0.0535%" height="15" fill="rgb(251,14,44)" fg:x="1223262" fg:w="823"/><text x="79.7421%" y="639.50"></text></g><g><title>__tls_get_addr (842 samples, 0.05%)</title><rect x="79.5457%" y="629" width="0.0547%" height="15" fill="rgb(247,48,18)" fg:x="1224086" fg:w="842"/><text x="79.7957%" y="639.50"></text></g><g><title>MemAllocator::allocate (3,775 samples, 0.25%)</title><rect x="79.3647%" y="645" width="0.2453%" height="15" fill="rgb(225,0,40)" fg:x="1221302" fg:w="3775"/><text x="79.6147%" y="655.50"></text></g><g><title>CollectedHeap::obj_allocate (3,943 samples, 0.26%)</title><rect x="79.3548%" y="661" width="0.2562%" height="15" fill="rgb(221,31,33)" fg:x="1221149" fg:w="3943"/><text x="79.6048%" y="671.50"></text></g><g><title>InstanceKlass::allocate_instance (4,960 samples, 0.32%)</title><rect x="79.2890%" y="677" width="0.3223%" height="15" fill="rgb(237,42,40)" fg:x="1220136" fg:w="4960"/><text x="79.5390%" y="687.50"></text></g><g><title>JNIHandles::make_local (831 samples, 0.05%)</title><rect x="79.6117%" y="677" width="0.0540%" height="15" fill="rgb(233,51,29)" fg:x="1225103" fg:w="831"/><text x="79.8617%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (645 samples, 0.04%)</title><rect x="79.6718%" y="677" width="0.0419%" height="15" fill="rgb(226,58,20)" fg:x="1226027" fg:w="645"/><text x="79.9218%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,255 samples, 0.08%)</title><rect x="79.7137%" y="677" width="0.0816%" height="15" fill="rgb(208,98,7)" fg:x="1226672" fg:w="1255"/><text x="79.9637%" y="687.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (282 samples, 0.02%)</title><rect x="79.8767%" y="661" width="0.0183%" height="15" fill="rgb(228,143,44)" fg:x="1229180" fg:w="282"/><text x="80.1267%" y="671.50"></text></g><g><title>InstanceKlass::check_valid_for_instantiation (256 samples, 0.02%)</title><rect x="79.8950%" y="661" width="0.0166%" height="15" fill="rgb(246,55,38)" fg:x="1229462" fg:w="256"/><text x="80.1450%" y="671.50"></text></g><g><title>InstanceKlass::initialize (178 samples, 0.01%)</title><rect x="79.9116%" y="661" width="0.0116%" height="15" fill="rgb(247,87,16)" fg:x="1229718" fg:w="178"/><text x="80.1616%" y="671.50"></text></g><g><title>alloc_object (2,850 samples, 0.19%)</title><rect x="79.7953%" y="677" width="0.1852%" height="15" fill="rgb(234,129,42)" fg:x="1227928" fg:w="2850"/><text x="80.0453%" y="687.50"></text></g><g><title>oopDesc::metadata_field (748 samples, 0.05%)</title><rect x="79.9319%" y="661" width="0.0486%" height="15" fill="rgb(220,82,16)" fg:x="1230030" fg:w="748"/><text x="80.1819%" y="671.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (3,245 samples, 0.21%)</title><rect x="80.1414%" y="661" width="0.2109%" height="15" fill="rgb(211,88,4)" fg:x="1233253" fg:w="3245"/><text x="80.3914%" y="671.50"></text></g><g><title>CompilationPolicy::compile_if_required (176 samples, 0.01%)</title><rect x="80.5191%" y="645" width="0.0114%" height="15" fill="rgb(248,151,21)" fg:x="1239066" fg:w="176"/><text x="80.7691%" y="655.50"></text></g><g><title>HandleMark::initialize (203 samples, 0.01%)</title><rect x="80.5306%" y="645" width="0.0132%" height="15" fill="rgb(238,163,6)" fg:x="1239242" fg:w="203"/><text x="80.7806%" y="655.50"></text></g><g><title>HandleMark::~HandleMark (181 samples, 0.01%)</title><rect x="80.5437%" y="645" width="0.0118%" height="15" fill="rgb(209,183,11)" fg:x="1239445" fg:w="181"/><text x="80.7937%" y="655.50"></text></g><g><title>JNIHandleBlock::release_block (436 samples, 0.03%)</title><rect x="80.5561%" y="645" width="0.0283%" height="15" fill="rgb(219,37,20)" fg:x="1239635" fg:w="436"/><text x="80.8061%" y="655.50"></text></g><g><title>JavaCallArguments::parameters (770 samples, 0.05%)</title><rect x="80.5844%" y="645" width="0.0500%" height="15" fill="rgb(210,158,4)" fg:x="1240071" fg:w="770"/><text x="80.8344%" y="655.50"></text></g><g><title>JNIHandleBlock::allocate_block (545 samples, 0.04%)</title><rect x="80.7282%" y="629" width="0.0354%" height="15" fill="rgb(221,167,53)" fg:x="1242284" fg:w="545"/><text x="80.9782%" y="639.50"></text></g><g><title>ThreadShadow::clear_pending_exception (411 samples, 0.03%)</title><rect x="80.7654%" y="629" width="0.0267%" height="15" fill="rgb(237,151,45)" fg:x="1242856" fg:w="411"/><text x="81.0154%" y="639.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (2,443 samples, 0.16%)</title><rect x="80.6345%" y="645" width="0.1588%" height="15" fill="rgb(231,39,3)" fg:x="1240841" fg:w="2443"/><text x="80.8845%" y="655.50"></text></g><g><title>AbstractInterpreter::size_top_interpreter_activation (184 samples, 0.01%)</title><rect x="80.8519%" y="629" width="0.0120%" height="15" fill="rgb(212,167,28)" fg:x="1244187" fg:w="184"/><text x="81.1019%" y="639.50"></text></g><g><title>JavaCalls::call_helper (7,863 samples, 0.51%)</title><rect x="80.3552%" y="661" width="0.5110%" height="15" fill="rgb(232,178,8)" fg:x="1236543" fg:w="7863"/><text x="80.6052%" y="671.50"></text></g><g><title>os::stack_shadow_pages_available (1,036 samples, 0.07%)</title><rect x="80.7988%" y="645" width="0.0673%" height="15" fill="rgb(225,151,20)" fg:x="1243370" fg:w="1036"/><text x="81.0488%" y="655.50"></text></g><g><title>methodHandle::operator= (336 samples, 0.02%)</title><rect x="80.8693%" y="661" width="0.0218%" height="15" fill="rgb(238,3,37)" fg:x="1244455" fg:w="336"/><text x="81.1193%" y="671.50"></text></g><g><title>methodHandle::~methodHandle (676 samples, 0.04%)</title><rect x="80.8911%" y="661" width="0.0439%" height="15" fill="rgb(251,147,42)" fg:x="1244791" fg:w="676"/><text x="81.1411%" y="671.50"></text></g><g><title>jni_invoke_nonstatic (15,268 samples, 0.99%)</title><rect x="79.9823%" y="677" width="0.9922%" height="15" fill="rgb(208,173,10)" fg:x="1230805" fg:w="15268"/><text x="80.2323%" y="687.50"></text></g><g><title>resource_allocate_bytes (575 samples, 0.04%)</title><rect x="80.9371%" y="661" width="0.0374%" height="15" fill="rgb(246,225,4)" fg:x="1245498" fg:w="575"/><text x="81.1871%" y="671.50"></text></g><g><title>jni_NewObjectV (28,520 samples, 1.85%)</title><rect x="79.1226%" y="693" width="1.8533%" height="15" fill="rgb(248,102,6)" fg:x="1217576" fg:w="28520"/><text x="79.3726%" y="703.50">j..</text></g><g><title>operator delete@plt (627 samples, 0.04%)</title><rect x="80.9891%" y="693" width="0.0407%" height="15" fill="rgb(232,6,21)" fg:x="1246298" fg:w="627"/><text x="81.2391%" y="703.50"></text></g><g><title>operator delete[] (209 samples, 0.01%)</title><rect x="81.0298%" y="693" width="0.0136%" height="15" fill="rgb(221,179,22)" fg:x="1246925" fg:w="209"/><text x="81.2798%" y="703.50"></text></g><g><title>__GI___libc_malloc (1,836 samples, 0.12%)</title><rect x="81.0452%" y="677" width="0.1193%" height="15" fill="rgb(252,50,20)" fg:x="1247162" fg:w="1836"/><text x="81.2952%" y="687.50"></text></g><g><title>tcache_get (765 samples, 0.05%)</title><rect x="81.1148%" y="661" width="0.0497%" height="15" fill="rgb(222,56,38)" fg:x="1248233" fg:w="765"/><text x="81.3648%" y="671.50"></text></g><g><title>operator new (2,252 samples, 0.15%)</title><rect x="81.0434%" y="693" width="0.1463%" height="15" fill="rgb(206,193,29)" fg:x="1247134" fg:w="2252"/><text x="81.2934%" y="703.50"></text></g><g><title>malloc@plt (387 samples, 0.03%)</title><rect x="81.1646%" y="677" width="0.0251%" height="15" fill="rgb(239,192,45)" fg:x="1248999" fg:w="387"/><text x="81.4146%" y="687.50"></text></g><g><title>operator new@plt (505 samples, 0.03%)</title><rect x="81.1897%" y="693" width="0.0328%" height="15" fill="rgb(254,18,36)" fg:x="1249386" fg:w="505"/><text x="81.4397%" y="703.50"></text></g><g><title>operator new[] (186 samples, 0.01%)</title><rect x="81.2226%" y="693" width="0.0121%" height="15" fill="rgb(221,127,11)" fg:x="1249891" fg:w="186"/><text x="81.4726%" y="703.50"></text></g><g><title>_int_malloc (367 samples, 0.02%)</title><rect x="81.2684%" y="645" width="0.0238%" height="15" fill="rgb(234,146,35)" fg:x="1250597" fg:w="367"/><text x="81.5184%" y="655.50"></text></g><g><title>__GI___libc_malloc (752 samples, 0.05%)</title><rect x="81.2484%" y="661" width="0.0489%" height="15" fill="rgb(254,201,37)" fg:x="1250288" fg:w="752"/><text x="81.4984%" y="671.50"></text></g><g><title>operator new (785 samples, 0.05%)</title><rect x="81.2479%" y="677" width="0.0510%" height="15" fill="rgb(211,202,23)" fg:x="1250281" fg:w="785"/><text x="81.4979%" y="687.50"></text></g><g><title>std::string::_Rep::_S_create (890 samples, 0.06%)</title><rect x="81.2441%" y="693" width="0.0578%" height="15" fill="rgb(237,91,2)" fg:x="1250222" fg:w="890"/><text x="81.4941%" y="703.50"></text></g><g><title>[libunix_jni.so] (1,046,001 samples, 67.97%)</title><rect x="13.3289%" y="709" width="67.9730%" height="15" fill="rgb(226,228,36)" fg:x="205112" fg:w="1046001"/><text x="13.5789%" y="719.50">[libunix_jni.so]</text></g><g><title>TieredThresholdPolicy::event (198 samples, 0.01%)</title><rect x="89.9351%" y="661" width="0.0129%" height="15" fill="rgb(213,63,50)" fg:x="1383963" fg:w="198"/><text x="90.1851%" y="671.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (180 samples, 0.01%)</title><rect x="89.9362%" y="645" width="0.0117%" height="15" fill="rgb(235,194,19)" fg:x="1383981" fg:w="180"/><text x="90.1862%" y="655.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (252 samples, 0.02%)</title><rect x="89.9317%" y="693" width="0.0164%" height="15" fill="rgb(207,204,18)" fg:x="1383911" fg:w="252"/><text x="90.1817%" y="703.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (252 samples, 0.02%)</title><rect x="89.9317%" y="677" width="0.0164%" height="15" fill="rgb(248,8,7)" fg:x="1383911" fg:w="252"/><text x="90.1817%" y="687.50"></text></g><g><title>LinkResolver::resolve_invoke (239 samples, 0.02%)</title><rect x="89.9695%" y="661" width="0.0155%" height="15" fill="rgb(223,145,47)" fg:x="1384493" fg:w="239"/><text x="90.2195%" y="671.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (327 samples, 0.02%)</title><rect x="89.9654%" y="677" width="0.0212%" height="15" fill="rgb(228,84,11)" fg:x="1384430" fg:w="327"/><text x="90.2154%" y="687.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (487 samples, 0.03%)</title><rect x="89.9623%" y="693" width="0.0316%" height="15" fill="rgb(218,76,45)" fg:x="1384382" fg:w="487"/><text x="90.2123%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (190 samples, 0.01%)</title><rect x="90.0325%" y="437" width="0.0123%" height="15" fill="rgb(223,80,15)" fg:x="1385463" fg:w="190"/><text x="90.2825%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (188 samples, 0.01%)</title><rect x="90.0327%" y="421" width="0.0122%" height="15" fill="rgb(219,218,33)" fg:x="1385465" fg:w="188"/><text x="90.2827%" y="431.50"></text></g><g><title>native_write_msr (188 samples, 0.01%)</title><rect x="90.0327%" y="405" width="0.0122%" height="15" fill="rgb(208,51,11)" fg:x="1385465" fg:w="188"/><text x="90.2827%" y="415.50"></text></g><g><title>finish_task_switch (205 samples, 0.01%)</title><rect x="90.0321%" y="453" width="0.0133%" height="15" fill="rgb(229,165,39)" fg:x="1385456" fg:w="205"/><text x="90.2821%" y="463.50"></text></g><g><title>futex_wait_queue_me (212 samples, 0.01%)</title><rect x="90.0318%" y="501" width="0.0138%" height="15" fill="rgb(241,100,24)" fg:x="1385452" fg:w="212"/><text x="90.2818%" y="511.50"></text></g><g><title>schedule (210 samples, 0.01%)</title><rect x="90.0320%" y="485" width="0.0136%" height="15" fill="rgb(228,14,23)" fg:x="1385454" fg:w="210"/><text x="90.2820%" y="495.50"></text></g><g><title>__schedule (210 samples, 0.01%)</title><rect x="90.0320%" y="469" width="0.0136%" height="15" fill="rgb(247,116,52)" fg:x="1385454" fg:w="210"/><text x="90.2820%" y="479.50"></text></g><g><title>do_syscall_64 (217 samples, 0.01%)</title><rect x="90.0316%" y="565" width="0.0141%" height="15" fill="rgb(216,149,33)" fg:x="1385448" fg:w="217"/><text x="90.2816%" y="575.50"></text></g><g><title>__x64_sys_futex (217 samples, 0.01%)</title><rect x="90.0316%" y="549" width="0.0141%" height="15" fill="rgb(238,142,29)" fg:x="1385448" fg:w="217"/><text x="90.2816%" y="559.50"></text></g><g><title>do_futex (215 samples, 0.01%)</title><rect x="90.0317%" y="533" width="0.0140%" height="15" fill="rgb(224,83,40)" fg:x="1385450" fg:w="215"/><text x="90.2817%" y="543.50"></text></g><g><title>futex_wait (214 samples, 0.01%)</title><rect x="90.0318%" y="517" width="0.0139%" height="15" fill="rgb(234,165,11)" fg:x="1385451" fg:w="214"/><text x="90.2818%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (222 samples, 0.01%)</title><rect x="90.0316%" y="581" width="0.0144%" height="15" fill="rgb(215,96,23)" fg:x="1385448" fg:w="222"/><text x="90.2816%" y="591.50"></text></g><g><title>__pthread_cond_wait (226 samples, 0.01%)</title><rect x="90.0314%" y="629" width="0.0147%" height="15" fill="rgb(233,179,26)" fg:x="1385445" fg:w="226"/><text x="90.2814%" y="639.50"></text></g><g><title>__pthread_cond_wait_common (226 samples, 0.01%)</title><rect x="90.0314%" y="613" width="0.0147%" height="15" fill="rgb(225,129,33)" fg:x="1385445" fg:w="226"/><text x="90.2814%" y="623.50"></text></g><g><title>futex_wait_cancelable (225 samples, 0.01%)</title><rect x="90.0314%" y="597" width="0.0146%" height="15" fill="rgb(237,49,13)" fg:x="1385446" fg:w="225"/><text x="90.2814%" y="607.50"></text></g><g><title>ObjectMonitor::wait (261 samples, 0.02%)</title><rect x="90.0292%" y="661" width="0.0170%" height="15" fill="rgb(211,3,31)" fg:x="1385411" fg:w="261"/><text x="90.2792%" y="671.50"></text></g><g><title>os::PlatformEvent::park (248 samples, 0.02%)</title><rect x="90.0300%" y="645" width="0.0161%" height="15" fill="rgb(216,152,19)" fg:x="1385424" fg:w="248"/><text x="90.2800%" y="655.50"></text></g><g><title>JVM_MonitorWait (264 samples, 0.02%)</title><rect x="90.0291%" y="693" width="0.0172%" height="15" fill="rgb(251,121,35)" fg:x="1385410" fg:w="264"/><text x="90.2791%" y="703.50"></text></g><g><title>ObjectSynchronizer::wait (263 samples, 0.02%)</title><rect x="90.0292%" y="677" width="0.0171%" height="15" fill="rgb(210,217,47)" fg:x="1385411" fg:w="263"/><text x="90.2792%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (337 samples, 0.02%)</title><rect x="90.0572%" y="565" width="0.0219%" height="15" fill="rgb(244,116,22)" fg:x="1385842" fg:w="337"/><text x="90.3072%" y="575.50"></text></g><g><title>SymbolTable::lookup_only (308 samples, 0.02%)</title><rect x="90.0591%" y="549" width="0.0200%" height="15" fill="rgb(228,17,21)" fg:x="1385871" fg:w="308"/><text x="90.3091%" y="559.50"></text></g><g><title>ClassFileParser::parse_constant_pool (345 samples, 0.02%)</title><rect x="90.0568%" y="581" width="0.0224%" height="15" fill="rgb(240,149,34)" fg:x="1385836" fg:w="345"/><text x="90.3068%" y="591.50"></text></g><g><title>ClassFileParser::ClassFileParser (447 samples, 0.03%)</title><rect x="90.0566%" y="613" width="0.0290%" height="15" fill="rgb(208,125,47)" fg:x="1385833" fg:w="447"/><text x="90.3066%" y="623.50"></text></g><g><title>ClassFileParser::parse_stream (447 samples, 0.03%)</title><rect x="90.0566%" y="597" width="0.0290%" height="15" fill="rgb(249,186,39)" fg:x="1385833" fg:w="447"/><text x="90.3066%" y="607.50"></text></g><g><title>KlassFactory::create_from_stream (552 samples, 0.04%)</title><rect x="90.0565%" y="629" width="0.0359%" height="15" fill="rgb(240,220,33)" fg:x="1385832" fg:w="552"/><text x="90.3065%" y="639.50"></text></g><g><title>JVM_DefineClassWithSource (580 samples, 0.04%)</title><rect x="90.0561%" y="677" width="0.0377%" height="15" fill="rgb(243,110,23)" fg:x="1385826" fg:w="580"/><text x="90.3061%" y="687.50"></text></g><g><title>jvm_define_class_common (580 samples, 0.04%)</title><rect x="90.0561%" y="661" width="0.0377%" height="15" fill="rgb(219,163,46)" fg:x="1385826" fg:w="580"/><text x="90.3061%" y="671.50"></text></g><g><title>SystemDictionary::resolve_from_stream (575 samples, 0.04%)</title><rect x="90.0565%" y="645" width="0.0374%" height="15" fill="rgb(216,126,30)" fg:x="1385831" fg:w="575"/><text x="90.3065%" y="655.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (601 samples, 0.04%)</title><rect x="90.0560%" y="693" width="0.0391%" height="15" fill="rgb(208,139,11)" fg:x="1385824" fg:w="601"/><text x="90.3060%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (187 samples, 0.01%)</title><rect x="90.1089%" y="645" width="0.0122%" height="15" fill="rgb(213,118,36)" fg:x="1386638" fg:w="187"/><text x="90.3589%" y="655.50"></text></g><g><title>do_syscall_64 (187 samples, 0.01%)</title><rect x="90.1089%" y="629" width="0.0122%" height="15" fill="rgb(226,43,17)" fg:x="1386638" fg:w="187"/><text x="90.3589%" y="639.50"></text></g><g><title>__x64_sys_vfork (187 samples, 0.01%)</title><rect x="90.1089%" y="613" width="0.0122%" height="15" fill="rgb(254,217,4)" fg:x="1386638" fg:w="187"/><text x="90.3589%" y="623.50"></text></g><g><title>kernel_clone (187 samples, 0.01%)</title><rect x="90.1089%" y="597" width="0.0122%" height="15" fill="rgb(210,134,47)" fg:x="1386638" fg:w="187"/><text x="90.3589%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (526 samples, 0.03%)</title><rect x="90.1225%" y="597" width="0.0342%" height="15" fill="rgb(237,24,49)" fg:x="1386848" fg:w="526"/><text x="90.3725%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (520 samples, 0.03%)</title><rect x="90.1229%" y="581" width="0.0338%" height="15" fill="rgb(251,39,46)" fg:x="1386854" fg:w="520"/><text x="90.3729%" y="591.50"></text></g><g><title>native_write_msr (519 samples, 0.03%)</title><rect x="90.1230%" y="565" width="0.0337%" height="15" fill="rgb(251,220,3)" fg:x="1386855" fg:w="519"/><text x="90.3730%" y="575.50"></text></g><g><title>schedule_tail (549 samples, 0.04%)</title><rect x="90.1220%" y="629" width="0.0357%" height="15" fill="rgb(228,105,12)" fg:x="1386839" fg:w="549"/><text x="90.3720%" y="639.50"></text></g><g><title>finish_task_switch (547 samples, 0.04%)</title><rect x="90.1221%" y="613" width="0.0355%" height="15" fill="rgb(215,196,1)" fg:x="1386841" fg:w="547"/><text x="90.3721%" y="623.50"></text></g><g><title>__libc_vfork (760 samples, 0.05%)</title><rect x="90.1088%" y="661" width="0.0494%" height="15" fill="rgb(214,33,39)" fg:x="1386636" fg:w="760"/><text x="90.3588%" y="671.50"></text></g><g><title>ret_from_fork (571 samples, 0.04%)</title><rect x="90.1210%" y="645" width="0.0371%" height="15" fill="rgb(220,19,52)" fg:x="1386825" fg:w="571"/><text x="90.3710%" y="655.50"></text></g><g><title>closeDescriptors (155 samples, 0.01%)</title><rect x="90.1691%" y="645" width="0.0101%" height="15" fill="rgb(221,78,38)" fg:x="1387565" fg:w="155"/><text x="90.4191%" y="655.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,204 samples, 0.08%)</title><rect x="90.1023%" y="693" width="0.0782%" height="15" fill="rgb(253,30,16)" fg:x="1386537" fg:w="1204"/><text x="90.3523%" y="703.50"></text></g><g><title>vforkChild (1,109 samples, 0.07%)</title><rect x="90.1085%" y="677" width="0.0721%" height="15" fill="rgb(242,65,0)" fg:x="1386632" fg:w="1109"/><text x="90.3585%" y="687.50"></text></g><g><title>childProcess (345 samples, 0.02%)</title><rect x="90.1582%" y="661" width="0.0224%" height="15" fill="rgb(235,201,12)" fg:x="1387396" fg:w="345"/><text x="90.4082%" y="671.50"></text></g><g><title>OptoRuntime::new_array_C (294 samples, 0.02%)</title><rect x="90.1847%" y="693" width="0.0191%" height="15" fill="rgb(233,161,9)" fg:x="1387805" fg:w="294"/><text x="90.4347%" y="703.50"></text></g><g><title>TypeArrayKlass::allocate_common (185 samples, 0.01%)</title><rect x="90.1918%" y="677" width="0.0120%" height="15" fill="rgb(241,207,41)" fg:x="1387914" fg:w="185"/><text x="90.4418%" y="687.50"></text></g><g><title>CollectedHeap::array_allocate (182 samples, 0.01%)</title><rect x="90.1920%" y="661" width="0.0118%" height="15" fill="rgb(212,69,46)" fg:x="1387917" fg:w="182"/><text x="90.4420%" y="671.50"></text></g><g><title>MemAllocator::allocate (182 samples, 0.01%)</title><rect x="90.1920%" y="645" width="0.0118%" height="15" fill="rgb(239,69,45)" fg:x="1387917" fg:w="182"/><text x="90.4420%" y="655.50"></text></g><g><title>ObjAllocator::initialize (263 samples, 0.02%)</title><rect x="90.2107%" y="629" width="0.0171%" height="15" fill="rgb(242,117,48)" fg:x="1388205" fg:w="263"/><text x="90.4607%" y="639.50"></text></g><g><title>asm_exc_page_fault (262 samples, 0.02%)</title><rect x="90.2108%" y="613" width="0.0170%" height="15" fill="rgb(228,41,36)" fg:x="1388206" fg:w="262"/><text x="90.4608%" y="623.50"></text></g><g><title>exc_page_fault (262 samples, 0.02%)</title><rect x="90.2108%" y="597" width="0.0170%" height="15" fill="rgb(212,3,32)" fg:x="1388206" fg:w="262"/><text x="90.4608%" y="607.50"></text></g><g><title>do_user_addr_fault (262 samples, 0.02%)</title><rect x="90.2108%" y="581" width="0.0170%" height="15" fill="rgb(233,41,49)" fg:x="1388206" fg:w="262"/><text x="90.4608%" y="591.50"></text></g><g><title>handle_mm_fault (259 samples, 0.02%)</title><rect x="90.2110%" y="565" width="0.0168%" height="15" fill="rgb(252,170,49)" fg:x="1388209" fg:w="259"/><text x="90.4610%" y="575.50"></text></g><g><title>do_huge_pmd_anonymous_page (258 samples, 0.02%)</title><rect x="90.2110%" y="549" width="0.0168%" height="15" fill="rgb(229,53,26)" fg:x="1388210" fg:w="258"/><text x="90.4610%" y="559.50"></text></g><g><title>InstanceKlass::allocate_instance (316 samples, 0.02%)</title><rect x="90.2074%" y="677" width="0.0205%" height="15" fill="rgb(217,157,12)" fg:x="1388154" fg:w="316"/><text x="90.4574%" y="687.50"></text></g><g><title>CollectedHeap::obj_allocate (315 samples, 0.02%)</title><rect x="90.2075%" y="661" width="0.0205%" height="15" fill="rgb(227,17,9)" fg:x="1388155" fg:w="315"/><text x="90.4575%" y="671.50"></text></g><g><title>MemAllocator::allocate (314 samples, 0.02%)</title><rect x="90.2075%" y="645" width="0.0204%" height="15" fill="rgb(218,84,12)" fg:x="1388156" fg:w="314"/><text x="90.4575%" y="655.50"></text></g><g><title>OptoRuntime::new_instance_C (328 samples, 0.02%)</title><rect x="90.2068%" y="693" width="0.0213%" height="15" fill="rgb(212,79,24)" fg:x="1388145" fg:w="328"/><text x="90.4568%" y="703.50"></text></g><g><title>Runtime1::counter_overflow (168 samples, 0.01%)</title><rect x="90.2281%" y="693" width="0.0109%" height="15" fill="rgb(217,222,37)" fg:x="1388473" fg:w="168"/><text x="90.4781%" y="703.50"></text></g><g><title>ObjectMonitor::enter (169 samples, 0.01%)</title><rect x="90.2555%" y="677" width="0.0110%" height="15" fill="rgb(246,208,8)" fg:x="1388894" fg:w="169"/><text x="90.5055%" y="687.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (187 samples, 0.01%)</title><rect x="90.2550%" y="693" width="0.0122%" height="15" fill="rgb(244,133,10)" fg:x="1388886" fg:w="187"/><text x="90.5050%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (532 samples, 0.03%)</title><rect x="90.2919%" y="469" width="0.0346%" height="15" fill="rgb(209,219,41)" fg:x="1389454" fg:w="532"/><text x="90.5419%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (524 samples, 0.03%)</title><rect x="90.2924%" y="453" width="0.0341%" height="15" fill="rgb(253,175,45)" fg:x="1389462" fg:w="524"/><text x="90.5424%" y="463.50"></text></g><g><title>native_write_msr (520 samples, 0.03%)</title><rect x="90.2927%" y="437" width="0.0338%" height="15" fill="rgb(235,100,37)" fg:x="1389466" fg:w="520"/><text x="90.5427%" y="447.50"></text></g><g><title>finish_task_switch (557 samples, 0.04%)</title><rect x="90.2914%" y="485" width="0.0362%" height="15" fill="rgb(225,87,19)" fg:x="1389446" fg:w="557"/><text x="90.5414%" y="495.50"></text></g><g><title>futex_wait_queue_me (642 samples, 0.04%)</title><rect x="90.2884%" y="533" width="0.0417%" height="15" fill="rgb(217,152,17)" fg:x="1389401" fg:w="642"/><text x="90.5384%" y="543.50"></text></g><g><title>schedule (637 samples, 0.04%)</title><rect x="90.2888%" y="517" width="0.0414%" height="15" fill="rgb(235,72,13)" fg:x="1389406" fg:w="637"/><text x="90.5388%" y="527.50"></text></g><g><title>__schedule (635 samples, 0.04%)</title><rect x="90.2889%" y="501" width="0.0413%" height="15" fill="rgb(233,140,18)" fg:x="1389408" fg:w="635"/><text x="90.5389%" y="511.50"></text></g><g><title>__x64_sys_futex (657 samples, 0.04%)</title><rect x="90.2877%" y="581" width="0.0427%" height="15" fill="rgb(207,212,28)" fg:x="1389390" fg:w="657"/><text x="90.5377%" y="591.50"></text></g><g><title>do_futex (653 samples, 0.04%)</title><rect x="90.2880%" y="565" width="0.0424%" height="15" fill="rgb(220,130,25)" fg:x="1389394" fg:w="653"/><text x="90.5380%" y="575.50"></text></g><g><title>futex_wait (649 samples, 0.04%)</title><rect x="90.2882%" y="549" width="0.0422%" height="15" fill="rgb(205,55,34)" fg:x="1389398" fg:w="649"/><text x="90.5382%" y="559.50"></text></g><g><title>do_syscall_64 (663 samples, 0.04%)</title><rect x="90.2875%" y="597" width="0.0431%" height="15" fill="rgb(237,54,35)" fg:x="1389386" fg:w="663"/><text x="90.5375%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (679 samples, 0.04%)</title><rect x="90.2874%" y="613" width="0.0441%" height="15" fill="rgb(208,67,23)" fg:x="1389385" fg:w="679"/><text x="90.5374%" y="623.50"></text></g><g><title>__pthread_cond_wait (701 samples, 0.05%)</title><rect x="90.2862%" y="661" width="0.0456%" height="15" fill="rgb(206,207,50)" fg:x="1389366" fg:w="701"/><text x="90.5362%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (701 samples, 0.05%)</title><rect x="90.2862%" y="645" width="0.0456%" height="15" fill="rgb(213,211,42)" fg:x="1389366" fg:w="701"/><text x="90.5362%" y="655.50"></text></g><g><title>futex_wait_cancelable (690 samples, 0.04%)</title><rect x="90.2869%" y="629" width="0.0448%" height="15" fill="rgb(252,197,50)" fg:x="1389377" fg:w="690"/><text x="90.5369%" y="639.50"></text></g><g><title>Parker::park (773 samples, 0.05%)</title><rect x="90.2832%" y="677" width="0.0502%" height="15" fill="rgb(251,211,41)" fg:x="1389320" fg:w="773"/><text x="90.5332%" y="687.50"></text></g><g><title>Unsafe_Park (779 samples, 0.05%)</title><rect x="90.2830%" y="693" width="0.0506%" height="15" fill="rgb(229,211,5)" fg:x="1389317" fg:w="779"/><text x="90.5330%" y="703.50"></text></g><g><title>__x64_sys_futex (261 samples, 0.02%)</title><rect x="90.3403%" y="613" width="0.0170%" height="15" fill="rgb(239,36,31)" fg:x="1390199" fg:w="261"/><text x="90.5903%" y="623.50"></text></g><g><title>do_futex (256 samples, 0.02%)</title><rect x="90.3406%" y="597" width="0.0166%" height="15" fill="rgb(248,67,31)" fg:x="1390204" fg:w="256"/><text x="90.5906%" y="607.50"></text></g><g><title>futex_wake (252 samples, 0.02%)</title><rect x="90.3409%" y="581" width="0.0164%" height="15" fill="rgb(249,55,44)" fg:x="1390208" fg:w="252"/><text x="90.5909%" y="591.50"></text></g><g><title>wake_up_q (205 samples, 0.01%)</title><rect x="90.3439%" y="565" width="0.0133%" height="15" fill="rgb(216,82,12)" fg:x="1390255" fg:w="205"/><text x="90.5939%" y="575.50"></text></g><g><title>try_to_wake_up (204 samples, 0.01%)</title><rect x="90.3440%" y="549" width="0.0133%" height="15" fill="rgb(242,174,1)" fg:x="1390256" fg:w="204"/><text x="90.5940%" y="559.50"></text></g><g><title>do_syscall_64 (265 samples, 0.02%)</title><rect x="90.3402%" y="629" width="0.0172%" height="15" fill="rgb(208,120,29)" fg:x="1390198" fg:w="265"/><text x="90.5902%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (304 samples, 0.02%)</title><rect x="90.3402%" y="645" width="0.0198%" height="15" fill="rgb(221,105,43)" fg:x="1390197" fg:w="304"/><text x="90.5902%" y="655.50"></text></g><g><title>__pthread_cond_signal (325 samples, 0.02%)</title><rect x="90.3389%" y="677" width="0.0211%" height="15" fill="rgb(234,124,22)" fg:x="1390178" fg:w="325"/><text x="90.5889%" y="687.50"></text></g><g><title>futex_wake (314 samples, 0.02%)</title><rect x="90.3397%" y="661" width="0.0204%" height="15" fill="rgb(212,23,30)" fg:x="1390189" fg:w="314"/><text x="90.5897%" y="671.50"></text></g><g><title>Unsafe_Unpark (413 samples, 0.03%)</title><rect x="90.3337%" y="693" width="0.0268%" height="15" fill="rgb(219,122,53)" fg:x="1390098" fg:w="413"/><text x="90.5837%" y="703.50"></text></g><g><title>blk_mq_end_request (160 samples, 0.01%)</title><rect x="90.3700%" y="581" width="0.0104%" height="15" fill="rgb(248,84,24)" fg:x="1390656" fg:w="160"/><text x="90.6200%" y="591.50"></text></g><g><title>blk_update_request (160 samples, 0.01%)</title><rect x="90.3700%" y="565" width="0.0104%" height="15" fill="rgb(245,115,18)" fg:x="1390656" fg:w="160"/><text x="90.6200%" y="575.50"></text></g><g><title>handle_irq_event (171 samples, 0.01%)</title><rect x="90.3699%" y="645" width="0.0111%" height="15" fill="rgb(227,176,51)" fg:x="1390655" fg:w="171"/><text x="90.6199%" y="655.50"></text></g><g><title>__handle_irq_event_percpu (171 samples, 0.01%)</title><rect x="90.3699%" y="629" width="0.0111%" height="15" fill="rgb(229,63,42)" fg:x="1390655" fg:w="171"/><text x="90.6199%" y="639.50"></text></g><g><title>nvme_irq (170 samples, 0.01%)</title><rect x="90.3700%" y="613" width="0.0110%" height="15" fill="rgb(247,202,24)" fg:x="1390656" fg:w="170"/><text x="90.6200%" y="623.50"></text></g><g><title>nvme_process_cq (170 samples, 0.01%)</title><rect x="90.3700%" y="597" width="0.0110%" height="15" fill="rgb(244,173,20)" fg:x="1390656" fg:w="170"/><text x="90.6200%" y="607.50"></text></g><g><title>handle_edge_irq (175 samples, 0.01%)</title><rect x="90.3698%" y="661" width="0.0114%" height="15" fill="rgb(242,81,47)" fg:x="1390653" fg:w="175"/><text x="90.6198%" y="671.50"></text></g><g><title>common_interrupt (206 samples, 0.01%)</title><rect x="90.3697%" y="677" width="0.0134%" height="15" fill="rgb(231,185,54)" fg:x="1390652" fg:w="206"/><text x="90.6197%" y="687.50"></text></g><g><title>asm_common_interrupt (209 samples, 0.01%)</title><rect x="90.3697%" y="693" width="0.0136%" height="15" fill="rgb(243,55,32)" fg:x="1390652" fg:w="209"/><text x="90.6197%" y="703.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (318 samples, 0.02%)</title><rect x="90.3844%" y="693" width="0.0207%" height="15" fill="rgb(208,167,19)" fg:x="1390877" fg:w="318"/><text x="90.6344%" y="703.50"></text></g><g><title>sysvec_apic_timer_interrupt (287 samples, 0.02%)</title><rect x="90.3864%" y="677" width="0.0187%" height="15" fill="rgb(231,72,35)" fg:x="1390908" fg:w="287"/><text x="90.6364%" y="687.50"></text></g><g><title>schedule (216 samples, 0.01%)</title><rect x="90.4063%" y="645" width="0.0140%" height="15" fill="rgb(250,173,51)" fg:x="1391214" fg:w="216"/><text x="90.6563%" y="655.50"></text></g><g><title>__schedule (205 samples, 0.01%)</title><rect x="90.4070%" y="629" width="0.0133%" height="15" fill="rgb(209,5,22)" fg:x="1391225" fg:w="205"/><text x="90.6570%" y="639.50"></text></g><g><title>irqentry_exit_to_user_mode (237 samples, 0.02%)</title><rect x="90.4056%" y="677" width="0.0154%" height="15" fill="rgb(250,174,19)" fg:x="1391204" fg:w="237"/><text x="90.6556%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (235 samples, 0.02%)</title><rect x="90.4057%" y="661" width="0.0153%" height="15" fill="rgb(217,3,49)" fg:x="1391206" fg:w="235"/><text x="90.6557%" y="671.50"></text></g><g><title>asm_sysvec_reschedule_ipi (250 samples, 0.02%)</title><rect x="90.4056%" y="693" width="0.0162%" height="15" fill="rgb(218,225,5)" fg:x="1391204" fg:w="250"/><text x="90.6556%" y="703.50"></text></g><g><title>do_filp_open (259 samples, 0.02%)</title><rect x="90.4434%" y="597" width="0.0168%" height="15" fill="rgb(236,89,11)" fg:x="1391786" fg:w="259"/><text x="90.6934%" y="607.50"></text></g><g><title>path_openat (257 samples, 0.02%)</title><rect x="90.4436%" y="581" width="0.0167%" height="15" fill="rgb(206,33,28)" fg:x="1391788" fg:w="257"/><text x="90.6936%" y="591.50"></text></g><g><title>do_syscall_64 (317 samples, 0.02%)</title><rect x="90.4421%" y="645" width="0.0206%" height="15" fill="rgb(241,56,42)" fg:x="1391765" fg:w="317"/><text x="90.6921%" y="655.50"></text></g><g><title>__x64_sys_openat (316 samples, 0.02%)</title><rect x="90.4421%" y="629" width="0.0205%" height="15" fill="rgb(222,44,11)" fg:x="1391766" fg:w="316"/><text x="90.6921%" y="639.50"></text></g><g><title>do_sys_openat2 (313 samples, 0.02%)</title><rect x="90.4423%" y="613" width="0.0203%" height="15" fill="rgb(234,111,20)" fg:x="1391769" fg:w="313"/><text x="90.6923%" y="623.50"></text></g><g><title>__libc_open64 (328 samples, 0.02%)</title><rect x="90.4415%" y="677" width="0.0213%" height="15" fill="rgb(237,77,6)" fg:x="1391756" fg:w="328"/><text x="90.6915%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (320 samples, 0.02%)</title><rect x="90.4420%" y="661" width="0.0208%" height="15" fill="rgb(235,111,23)" fg:x="1391764" fg:w="320"/><text x="90.6920%" y="671.50"></text></g><g><title>fileOpen (478 samples, 0.03%)</title><rect x="90.4334%" y="693" width="0.0311%" height="15" fill="rgb(251,135,29)" fg:x="1391632" fg:w="478"/><text x="90.6834%" y="703.50"></text></g><g><title>[[vdso]] (1,257 samples, 0.08%)</title><rect x="90.6010%" y="645" width="0.0817%" height="15" fill="rgb(217,57,1)" fg:x="1394211" fg:w="1257"/><text x="90.8510%" y="655.50"></text></g><g><title>__vdso_clock_gettime (2,169 samples, 0.14%)</title><rect x="90.5425%" y="661" width="0.1409%" height="15" fill="rgb(249,119,31)" fg:x="1393311" fg:w="2169"/><text x="90.7925%" y="671.50"></text></g><g><title>__GI___clock_gettime (2,875 samples, 0.19%)</title><rect x="90.4978%" y="677" width="0.1868%" height="15" fill="rgb(233,164,33)" fg:x="1392622" fg:w="2875"/><text x="90.7478%" y="687.50"></text></g><g><title>os::javaTimeNanos (3,302 samples, 0.21%)</title><rect x="90.4705%" y="693" width="0.2146%" height="15" fill="rgb(250,217,43)" fg:x="1392202" fg:w="3302"/><text x="90.7205%" y="703.50"></text></g><g><title>[perf-934749.map] (144,393 samples, 9.38%)</title><rect x="81.3020%" y="709" width="9.3832%" height="15" fill="rgb(232,154,50)" fg:x="1251113" fg:w="144393"/><text x="81.5520%" y="719.50">[perf-934749...</text></g><g><title>SharedRuntime::find_callee_info_helper (204 samples, 0.01%)</title><rect x="90.7045%" y="677" width="0.0133%" height="15" fill="rgb(227,190,8)" fg:x="1395803" fg:w="204"/><text x="90.9545%" y="687.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (315 samples, 0.02%)</title><rect x="90.6989%" y="693" width="0.0205%" height="15" fill="rgb(209,217,32)" fg:x="1395717" fg:w="315"/><text x="90.9489%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (183 samples, 0.01%)</title><rect x="90.7219%" y="421" width="0.0119%" height="15" fill="rgb(243,203,50)" fg:x="1396072" fg:w="183"/><text x="90.9719%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (179 samples, 0.01%)</title><rect x="90.7222%" y="405" width="0.0116%" height="15" fill="rgb(232,152,27)" fg:x="1396076" fg:w="179"/><text x="90.9722%" y="415.50"></text></g><g><title>native_write_msr (179 samples, 0.01%)</title><rect x="90.7222%" y="389" width="0.0116%" height="15" fill="rgb(240,34,29)" fg:x="1396076" fg:w="179"/><text x="90.9722%" y="399.50"></text></g><g><title>finish_task_switch (198 samples, 0.01%)</title><rect x="90.7213%" y="437" width="0.0129%" height="15" fill="rgb(215,185,52)" fg:x="1396062" fg:w="198"/><text x="90.9713%" y="447.50"></text></g><g><title>futex_wait_queue_me (212 samples, 0.01%)</title><rect x="90.7208%" y="485" width="0.0138%" height="15" fill="rgb(240,89,49)" fg:x="1396055" fg:w="212"/><text x="90.9708%" y="495.50"></text></g><g><title>schedule (211 samples, 0.01%)</title><rect x="90.7209%" y="469" width="0.0137%" height="15" fill="rgb(225,12,52)" fg:x="1396056" fg:w="211"/><text x="90.9709%" y="479.50"></text></g><g><title>__schedule (210 samples, 0.01%)</title><rect x="90.7210%" y="453" width="0.0136%" height="15" fill="rgb(239,128,45)" fg:x="1396057" fg:w="210"/><text x="90.9710%" y="463.50"></text></g><g><title>do_syscall_64 (218 samples, 0.01%)</title><rect x="90.7205%" y="549" width="0.0142%" height="15" fill="rgb(211,78,47)" fg:x="1396050" fg:w="218"/><text x="90.9705%" y="559.50"></text></g><g><title>__x64_sys_futex (218 samples, 0.01%)</title><rect x="90.7205%" y="533" width="0.0142%" height="15" fill="rgb(232,31,21)" fg:x="1396050" fg:w="218"/><text x="90.9705%" y="543.50"></text></g><g><title>do_futex (218 samples, 0.01%)</title><rect x="90.7205%" y="517" width="0.0142%" height="15" fill="rgb(222,168,14)" fg:x="1396050" fg:w="218"/><text x="90.9705%" y="527.50"></text></g><g><title>futex_wait (216 samples, 0.01%)</title><rect x="90.7206%" y="501" width="0.0140%" height="15" fill="rgb(209,128,24)" fg:x="1396052" fg:w="216"/><text x="90.9706%" y="511.50"></text></g><g><title>__pthread_cond_wait (226 samples, 0.01%)</title><rect x="90.7203%" y="613" width="0.0147%" height="15" fill="rgb(249,35,13)" fg:x="1396046" fg:w="226"/><text x="90.9703%" y="623.50"></text></g><g><title>__pthread_cond_wait_common (226 samples, 0.01%)</title><rect x="90.7203%" y="597" width="0.0147%" height="15" fill="rgb(218,7,2)" fg:x="1396046" fg:w="226"/><text x="90.9703%" y="607.50"></text></g><g><title>futex_wait_cancelable (224 samples, 0.01%)</title><rect x="90.7204%" y="581" width="0.0146%" height="15" fill="rgb(238,107,27)" fg:x="1396048" fg:w="224"/><text x="90.9704%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (222 samples, 0.01%)</title><rect x="90.7205%" y="565" width="0.0144%" height="15" fill="rgb(217,88,38)" fg:x="1396050" fg:w="222"/><text x="90.9705%" y="575.50"></text></g><g><title>Monitor::lock_without_safepoint_check (238 samples, 0.02%)</title><rect x="90.7196%" y="661" width="0.0155%" height="15" fill="rgb(230,207,0)" fg:x="1396036" fg:w="238"/><text x="90.9696%" y="671.50"></text></g><g><title>Monitor::ILock (237 samples, 0.02%)</title><rect x="90.7197%" y="645" width="0.0154%" height="15" fill="rgb(249,64,54)" fg:x="1396037" fg:w="237"/><text x="90.9697%" y="655.50"></text></g><g><title>os::PlatformEvent::park (230 samples, 0.01%)</title><rect x="90.7201%" y="629" width="0.0149%" height="15" fill="rgb(231,7,11)" fg:x="1396044" fg:w="230"/><text x="90.9701%" y="639.50"></text></g><g><title>SafepointSynchronize::block (267 samples, 0.02%)</title><rect x="90.7196%" y="677" width="0.0174%" height="15" fill="rgb(205,149,21)" fg:x="1396036" fg:w="267"/><text x="90.9696%" y="687.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (271 samples, 0.02%)</title><rect x="90.7194%" y="693" width="0.0176%" height="15" fill="rgb(215,126,34)" fg:x="1396033" fg:w="271"/><text x="90.9694%" y="703.50"></text></g><g><title>__GI___clock_gettime (364 samples, 0.02%)</title><rect x="90.7382%" y="693" width="0.0237%" height="15" fill="rgb(241,132,45)" fg:x="1396322" fg:w="364"/><text x="90.9882%" y="703.50"></text></g><g><title>touch_atime (188 samples, 0.01%)</title><rect x="90.8267%" y="533" width="0.0122%" height="15" fill="rgb(252,69,32)" fg:x="1397684" fg:w="188"/><text x="91.0767%" y="543.50"></text></g><g><title>generic_file_buffered_read (447 samples, 0.03%)</title><rect x="90.8099%" y="549" width="0.0290%" height="15" fill="rgb(232,204,19)" fg:x="1397426" fg:w="447"/><text x="91.0599%" y="559.50"></text></g><g><title>new_sync_read (462 samples, 0.03%)</title><rect x="90.8090%" y="565" width="0.0300%" height="15" fill="rgb(249,15,47)" fg:x="1397412" fg:w="462"/><text x="91.0590%" y="575.50"></text></g><g><title>ksys_read (553 samples, 0.04%)</title><rect x="90.8050%" y="597" width="0.0359%" height="15" fill="rgb(209,227,23)" fg:x="1397350" fg:w="553"/><text x="91.0550%" y="607.50"></text></g><g><title>vfs_read (515 samples, 0.03%)</title><rect x="90.8075%" y="581" width="0.0335%" height="15" fill="rgb(248,92,24)" fg:x="1397388" fg:w="515"/><text x="91.0575%" y="591.50"></text></g><g><title>do_syscall_64 (560 samples, 0.04%)</title><rect x="90.8048%" y="613" width="0.0364%" height="15" fill="rgb(247,59,2)" fg:x="1397347" fg:w="560"/><text x="91.0548%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (567 samples, 0.04%)</title><rect x="90.8047%" y="629" width="0.0368%" height="15" fill="rgb(221,30,5)" fg:x="1397345" fg:w="567"/><text x="91.0547%" y="639.50"></text></g><g><title>__libc_read (595 samples, 0.04%)</title><rect x="90.8030%" y="661" width="0.0387%" height="15" fill="rgb(208,108,53)" fg:x="1397319" fg:w="595"/><text x="91.0530%" y="671.50"></text></g><g><title>__libc_read (594 samples, 0.04%)</title><rect x="90.8030%" y="645" width="0.0386%" height="15" fill="rgb(211,183,26)" fg:x="1397320" fg:w="594"/><text x="91.0530%" y="655.50"></text></g><g><title>handleRead (597 samples, 0.04%)</title><rect x="90.8030%" y="677" width="0.0388%" height="15" fill="rgb(232,132,4)" fg:x="1397319" fg:w="597"/><text x="91.0530%" y="687.50"></text></g><g><title>readBytes (774 samples, 0.05%)</title><rect x="90.8018%" y="693" width="0.0503%" height="15" fill="rgb(253,128,37)" fg:x="1397301" fg:w="774"/><text x="91.0518%" y="703.50"></text></g><g><title>[unknown] (2,594 samples, 0.17%)</title><rect x="90.6852%" y="709" width="0.1686%" height="15" fill="rgb(221,58,24)" fg:x="1395506" fg:w="2594"/><text x="90.9352%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (206 samples, 0.01%)</title><rect x="90.8551%" y="645" width="0.0134%" height="15" fill="rgb(230,54,45)" fg:x="1398121" fg:w="206"/><text x="91.1051%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (206 samples, 0.01%)</title><rect x="90.8551%" y="629" width="0.0134%" height="15" fill="rgb(254,21,18)" fg:x="1398121" fg:w="206"/><text x="91.1051%" y="639.50"></text></g><g><title>native_write_msr (205 samples, 0.01%)</title><rect x="90.8552%" y="613" width="0.0133%" height="15" fill="rgb(221,108,0)" fg:x="1398122" fg:w="205"/><text x="91.1052%" y="623.50"></text></g><g><title>schedule_tail (219 samples, 0.01%)</title><rect x="90.8547%" y="677" width="0.0142%" height="15" fill="rgb(206,95,1)" fg:x="1398115" fg:w="219"/><text x="91.1047%" y="687.50"></text></g><g><title>finish_task_switch (215 samples, 0.01%)</title><rect x="90.8550%" y="661" width="0.0140%" height="15" fill="rgb(237,52,5)" fg:x="1398119" fg:w="215"/><text x="91.1050%" y="671.50"></text></g><g><title>ret_from_fork (226 samples, 0.01%)</title><rect x="90.8544%" y="693" width="0.0147%" height="15" fill="rgb(218,150,34)" fg:x="1398110" fg:w="226"/><text x="91.1044%" y="703.50"></text></g><g><title>__GI___clone (337 samples, 0.02%)</title><rect x="90.8537%" y="709" width="0.0219%" height="15" fill="rgb(235,194,28)" fg:x="1398100" fg:w="337"/><text x="91.1037%" y="719.50"></text></g><g><title>__vdso_clock_gettime (298 samples, 0.02%)</title><rect x="90.8765%" y="709" width="0.0194%" height="15" fill="rgb(245,92,18)" fg:x="1398450" fg:w="298"/><text x="91.1265%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (251 samples, 0.02%)</title><rect x="90.9027%" y="709" width="0.0163%" height="15" fill="rgb(253,203,53)" fg:x="1398854" fg:w="251"/><text x="91.1527%" y="719.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (684 samples, 0.04%)</title><rect x="90.9190%" y="709" width="0.0444%" height="15" fill="rgb(249,185,47)" fg:x="1399105" fg:w="684"/><text x="91.1690%" y="719.50"></text></g><g><title>jni_GetStringLength (240 samples, 0.02%)</title><rect x="90.9638%" y="709" width="0.0156%" height="15" fill="rgb(252,194,52)" fg:x="1399794" fg:w="240"/><text x="91.2138%" y="719.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 573558ul&gt;::oop_access_barrier (190 samples, 0.01%)</title><rect x="90.9671%" y="693" width="0.0123%" height="15" fill="rgb(210,53,36)" fg:x="1399844" fg:w="190"/><text x="91.2171%" y="703.50"></text></g><g><title>skyframe-evalua (1,204,688 samples, 78.29%)</title><rect x="12.7052%" y="725" width="78.2851%" height="15" fill="rgb(237,37,25)" fg:x="195514" fg:w="1204688"/><text x="12.9552%" y="735.50">skyframe-evalua</text></g><g><title>[perf-934749.map] (213 samples, 0.01%)</title><rect x="90.9905%" y="709" width="0.0138%" height="15" fill="rgb(242,116,27)" fg:x="1400205" fg:w="213"/><text x="91.2405%" y="719.50"></text></g><g><title>skyframe-invali (235 samples, 0.02%)</title><rect x="90.9903%" y="725" width="0.0153%" height="15" fill="rgb(213,185,26)" fg:x="1400202" fg:w="235"/><text x="91.2403%" y="735.50"></text></g><g><title>kernel_init_free_pages (445 samples, 0.03%)</title><rect x="94.5240%" y="565" width="0.0289%" height="15" fill="rgb(225,204,8)" fg:x="1454579" fg:w="445"/><text x="94.7740%" y="575.50"></text></g><g><title>clear_page_erms (418 samples, 0.03%)</title><rect x="94.5257%" y="549" width="0.0272%" height="15" fill="rgb(254,111,37)" fg:x="1454606" fg:w="418"/><text x="94.7757%" y="559.50"></text></g><g><title>get_page_from_freelist (773 samples, 0.05%)</title><rect x="94.5032%" y="597" width="0.0502%" height="15" fill="rgb(242,35,9)" fg:x="1454260" fg:w="773"/><text x="94.7532%" y="607.50"></text></g><g><title>prep_new_page (478 samples, 0.03%)</title><rect x="94.5224%" y="581" width="0.0311%" height="15" fill="rgb(232,138,49)" fg:x="1454555" fg:w="478"/><text x="94.7724%" y="591.50"></text></g><g><title>__alloc_pages_nodemask (917 samples, 0.06%)</title><rect x="94.4942%" y="613" width="0.0596%" height="15" fill="rgb(247,56,4)" fg:x="1454121" fg:w="917"/><text x="94.7442%" y="623.50"></text></g><g><title>alloc_pages_vma (994 samples, 0.06%)</title><rect x="94.4906%" y="629" width="0.0646%" height="15" fill="rgb(226,179,17)" fg:x="1454065" fg:w="994"/><text x="94.7406%" y="639.50"></text></g><g><title>do_page_mkwrite (157 samples, 0.01%)</title><rect x="94.5692%" y="629" width="0.0102%" height="15" fill="rgb(216,163,45)" fg:x="1455275" fg:w="157"/><text x="94.8192%" y="639.50"></text></g><g><title>btrfs_page_mkwrite (157 samples, 0.01%)</title><rect x="94.5692%" y="613" width="0.0102%" height="15" fill="rgb(211,157,3)" fg:x="1455275" fg:w="157"/><text x="94.8192%" y="623.50"></text></g><g><title>page_add_file_rmap (316 samples, 0.02%)</title><rect x="94.6459%" y="597" width="0.0205%" height="15" fill="rgb(234,44,20)" fg:x="1456455" fg:w="316"/><text x="94.8959%" y="607.50"></text></g><g><title>alloc_set_pte (496 samples, 0.03%)</title><rect x="94.6353%" y="613" width="0.0322%" height="15" fill="rgb(254,138,23)" fg:x="1456293" fg:w="496"/><text x="94.8853%" y="623.50"></text></g><g><title>filemap_map_pages (1,525 samples, 0.10%)</title><rect x="94.5813%" y="629" width="0.0991%" height="15" fill="rgb(206,119,39)" fg:x="1455462" fg:w="1525"/><text x="94.8313%" y="639.50"></text></g><g><title>__pagevec_lru_add_fn (171 samples, 0.01%)</title><rect x="94.6839%" y="597" width="0.0111%" height="15" fill="rgb(231,105,52)" fg:x="1457041" fg:w="171"/><text x="94.9339%" y="607.50"></text></g><g><title>lru_cache_add (252 samples, 0.02%)</title><rect x="94.6807%" y="629" width="0.0164%" height="15" fill="rgb(250,20,5)" fg:x="1456991" fg:w="252"/><text x="94.9307%" y="639.50"></text></g><g><title>pagevec_lru_move_fn (222 samples, 0.01%)</title><rect x="94.6826%" y="613" width="0.0144%" height="15" fill="rgb(215,198,30)" fg:x="1457021" fg:w="222"/><text x="94.9326%" y="623.50"></text></g><g><title>mem_cgroup_charge (277 samples, 0.02%)</title><rect x="94.6974%" y="629" width="0.0180%" height="15" fill="rgb(246,142,8)" fg:x="1457248" fg:w="277"/><text x="94.9474%" y="639.50"></text></g><g><title>handle_mm_fault (4,401 samples, 0.29%)</title><rect x="94.4474%" y="645" width="0.2860%" height="15" fill="rgb(243,26,38)" fg:x="1453401" fg:w="4401"/><text x="94.6974%" y="655.50"></text></g><g><title>do_user_addr_fault (4,745 samples, 0.31%)</title><rect x="94.4313%" y="661" width="0.3083%" height="15" fill="rgb(205,133,28)" fg:x="1453153" fg:w="4745"/><text x="94.6813%" y="671.50"></text></g><g><title>exc_page_fault (4,778 samples, 0.31%)</title><rect x="94.4295%" y="677" width="0.3105%" height="15" fill="rgb(212,34,0)" fg:x="1453126" fg:w="4778"/><text x="94.6795%" y="687.50"></text></g><g><title>asm_exc_page_fault (4,856 samples, 0.32%)</title><rect x="94.4272%" y="693" width="0.3156%" height="15" fill="rgb(251,226,22)" fg:x="1453090" fg:w="4856"/><text x="94.6772%" y="703.50"></text></g><g><title>do_softirq_own_stack (159 samples, 0.01%)</title><rect x="94.7493%" y="645" width="0.0103%" height="15" fill="rgb(252,119,9)" fg:x="1458047" fg:w="159"/><text x="94.9993%" y="655.50"></text></g><g><title>asm_call_sysvec_on_stack (159 samples, 0.01%)</title><rect x="94.7493%" y="629" width="0.0103%" height="15" fill="rgb(213,150,50)" fg:x="1458047" fg:w="159"/><text x="94.9993%" y="639.50"></text></g><g><title>__softirqentry_text_start (159 samples, 0.01%)</title><rect x="94.7493%" y="613" width="0.0103%" height="15" fill="rgb(212,24,39)" fg:x="1458047" fg:w="159"/><text x="94.9993%" y="623.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (261 samples, 0.02%)</title><rect x="94.7428%" y="693" width="0.0170%" height="15" fill="rgb(213,46,39)" fg:x="1457946" fg:w="261"/><text x="94.9928%" y="703.50"></text></g><g><title>sysvec_apic_timer_interrupt (220 samples, 0.01%)</title><rect x="94.7454%" y="677" width="0.0143%" height="15" fill="rgb(239,106,12)" fg:x="1457987" fg:w="220"/><text x="94.9954%" y="687.50"></text></g><g><title>irq_exit_rcu (161 samples, 0.01%)</title><rect x="94.7493%" y="661" width="0.0105%" height="15" fill="rgb(249,229,21)" fg:x="1458046" fg:w="161"/><text x="94.9993%" y="671.50"></text></g><g><title>entry_SYSCALL_64 (2,186 samples, 0.14%)</title><rect x="94.7676%" y="693" width="0.1421%" height="15" fill="rgb(212,158,3)" fg:x="1458329" fg:w="2186"/><text x="95.0176%" y="703.50"></text></g><g><title>copy_process (160 samples, 0.01%)</title><rect x="94.9749%" y="629" width="0.0104%" height="15" fill="rgb(253,26,48)" fg:x="1461518" fg:w="160"/><text x="95.2249%" y="639.50"></text></g><g><title>__do_sys_clone (188 samples, 0.01%)</title><rect x="94.9748%" y="661" width="0.0122%" height="15" fill="rgb(238,178,20)" fg:x="1461517" fg:w="188"/><text x="95.2248%" y="671.50"></text></g><g><title>kernel_clone (188 samples, 0.01%)</title><rect x="94.9748%" y="645" width="0.0122%" height="15" fill="rgb(208,86,15)" fg:x="1461517" fg:w="188"/><text x="95.2248%" y="655.50"></text></g><g><title>_copy_to_user (381 samples, 0.02%)</title><rect x="94.9957%" y="629" width="0.0248%" height="15" fill="rgb(239,42,53)" fg:x="1461839" fg:w="381"/><text x="95.2457%" y="639.50"></text></g><g><title>copy_user_enhanced_fast_string (332 samples, 0.02%)</title><rect x="94.9989%" y="613" width="0.0216%" height="15" fill="rgb(245,226,8)" fg:x="1461888" fg:w="332"/><text x="95.2489%" y="623.50"></text></g><g><title>cp_new_stat (619 samples, 0.04%)</title><rect x="94.9887%" y="645" width="0.0402%" height="15" fill="rgb(216,176,32)" fg:x="1461731" fg:w="619"/><text x="95.2387%" y="655.50"></text></g><g><title>__fget_light (191 samples, 0.01%)</title><rect x="95.0318%" y="629" width="0.0124%" height="15" fill="rgb(231,186,21)" fg:x="1462394" fg:w="191"/><text x="95.2818%" y="639.50"></text></g><g><title>__fget_files (166 samples, 0.01%)</title><rect x="95.0334%" y="613" width="0.0108%" height="15" fill="rgb(205,95,49)" fg:x="1462419" fg:w="166"/><text x="95.2834%" y="623.50"></text></g><g><title>btrfs_getattr (1,203 samples, 0.08%)</title><rect x="95.0442%" y="629" width="0.0782%" height="15" fill="rgb(217,145,8)" fg:x="1462585" fg:w="1203"/><text x="95.2942%" y="639.50"></text></g><g><title>security_inode_getattr (567 samples, 0.04%)</title><rect x="95.1287%" y="629" width="0.0368%" height="15" fill="rgb(239,144,48)" fg:x="1463885" fg:w="567"/><text x="95.3787%" y="639.50"></text></g><g><title>tomoyo_path_perm (362 samples, 0.02%)</title><rect x="95.1420%" y="613" width="0.0235%" height="15" fill="rgb(214,189,23)" fg:x="1464090" fg:w="362"/><text x="95.3920%" y="623.50"></text></g><g><title>tomoyo_init_request_info (172 samples, 0.01%)</title><rect x="95.1544%" y="597" width="0.0112%" height="15" fill="rgb(229,157,17)" fg:x="1464280" fg:w="172"/><text x="95.4044%" y="607.50"></text></g><g><title>__do_sys_newfstat (2,970 samples, 0.19%)</title><rect x="94.9870%" y="661" width="0.1930%" height="15" fill="rgb(230,5,48)" fg:x="1461705" fg:w="2970"/><text x="95.2370%" y="671.50"></text></g><g><title>vfs_fstat (2,325 samples, 0.15%)</title><rect x="95.0289%" y="645" width="0.1511%" height="15" fill="rgb(224,156,48)" fg:x="1462350" fg:w="2325"/><text x="95.2789%" y="655.50"></text></g><g><title>vfs_getattr_nosec (223 samples, 0.01%)</title><rect x="95.1655%" y="629" width="0.0145%" height="15" fill="rgb(223,14,29)" fg:x="1464452" fg:w="223"/><text x="95.4155%" y="639.50"></text></g><g><title>__close_fd (213 samples, 0.01%)</title><rect x="95.1874%" y="645" width="0.0138%" height="15" fill="rgb(229,96,36)" fg:x="1464788" fg:w="213"/><text x="95.4374%" y="655.50"></text></g><g><title>pick_file (199 samples, 0.01%)</title><rect x="95.1883%" y="629" width="0.0129%" height="15" fill="rgb(231,102,53)" fg:x="1464802" fg:w="199"/><text x="95.4383%" y="639.50"></text></g><g><title>fput_many (351 samples, 0.02%)</title><rect x="95.2062%" y="629" width="0.0228%" height="15" fill="rgb(210,77,38)" fg:x="1465078" fg:w="351"/><text x="95.4562%" y="639.50"></text></g><g><title>task_work_add (249 samples, 0.02%)</title><rect x="95.2128%" y="613" width="0.0162%" height="15" fill="rgb(235,131,6)" fg:x="1465180" fg:w="249"/><text x="95.4628%" y="623.50"></text></g><g><title>__x64_sys_close (741 samples, 0.05%)</title><rect x="95.1859%" y="661" width="0.0482%" height="15" fill="rgb(252,55,38)" fg:x="1464766" fg:w="741"/><text x="95.4359%" y="671.50"></text></g><g><title>filp_close (506 samples, 0.03%)</title><rect x="95.2012%" y="645" width="0.0329%" height="15" fill="rgb(246,38,14)" fg:x="1465001" fg:w="506"/><text x="95.4512%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (240 samples, 0.02%)</title><rect x="95.2370%" y="533" width="0.0156%" height="15" fill="rgb(242,27,5)" fg:x="1465551" fg:w="240"/><text x="95.4870%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (238 samples, 0.02%)</title><rect x="95.2371%" y="517" width="0.0155%" height="15" fill="rgb(228,65,35)" fg:x="1465553" fg:w="238"/><text x="95.4871%" y="527.50"></text></g><g><title>native_write_msr (236 samples, 0.02%)</title><rect x="95.2372%" y="501" width="0.0153%" height="15" fill="rgb(245,93,11)" fg:x="1465555" fg:w="236"/><text x="95.4872%" y="511.50"></text></g><g><title>finish_task_switch (252 samples, 0.02%)</title><rect x="95.2367%" y="549" width="0.0164%" height="15" fill="rgb(213,1,31)" fg:x="1465547" fg:w="252"/><text x="95.4867%" y="559.50"></text></g><g><title>schedule (256 samples, 0.02%)</title><rect x="95.2366%" y="581" width="0.0166%" height="15" fill="rgb(237,205,14)" fg:x="1465546" fg:w="256"/><text x="95.4866%" y="591.50"></text></g><g><title>__schedule (256 samples, 0.02%)</title><rect x="95.2366%" y="565" width="0.0166%" height="15" fill="rgb(232,118,45)" fg:x="1465546" fg:w="256"/><text x="95.4866%" y="575.50"></text></g><g><title>begin_new_exec (292 samples, 0.02%)</title><rect x="95.2353%" y="597" width="0.0190%" height="15" fill="rgb(218,5,6)" fg:x="1465526" fg:w="292"/><text x="95.4853%" y="607.50"></text></g><g><title>load_elf_binary (294 samples, 0.02%)</title><rect x="95.2353%" y="613" width="0.0191%" height="15" fill="rgb(251,87,51)" fg:x="1465526" fg:w="294"/><text x="95.4853%" y="623.50"></text></g><g><title>bprm_execve (399 samples, 0.03%)</title><rect x="95.2347%" y="629" width="0.0259%" height="15" fill="rgb(207,225,20)" fg:x="1465516" fg:w="399"/><text x="95.4847%" y="639.50"></text></g><g><title>__x64_sys_execve (444 samples, 0.03%)</title><rect x="95.2342%" y="661" width="0.0289%" height="15" fill="rgb(222,78,54)" fg:x="1465509" fg:w="444"/><text x="95.4842%" y="671.50"></text></g><g><title>do_execveat_common (444 samples, 0.03%)</title><rect x="95.2342%" y="645" width="0.0289%" height="15" fill="rgb(232,85,16)" fg:x="1465509" fg:w="444"/><text x="95.4842%" y="655.50"></text></g><g><title>dequeue_task_fair (193 samples, 0.01%)</title><rect x="95.3021%" y="565" width="0.0125%" height="15" fill="rgb(244,25,33)" fg:x="1466554" fg:w="193"/><text x="95.5521%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (7,970 samples, 0.52%)</title><rect x="95.3230%" y="549" width="0.5179%" height="15" fill="rgb(233,24,36)" fg:x="1466875" fg:w="7970"/><text x="95.5730%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (7,884 samples, 0.51%)</title><rect x="95.3286%" y="533" width="0.5123%" height="15" fill="rgb(253,49,54)" fg:x="1466961" fg:w="7884"/><text x="95.5786%" y="543.50"></text></g><g><title>native_write_msr (7,855 samples, 0.51%)</title><rect x="95.3305%" y="517" width="0.5104%" height="15" fill="rgb(245,12,22)" fg:x="1466990" fg:w="7855"/><text x="95.5805%" y="527.50"></text></g><g><title>asm_sysvec_irq_work (175 samples, 0.01%)</title><rect x="95.8449%" y="549" width="0.0114%" height="15" fill="rgb(253,141,28)" fg:x="1474907" fg:w="175"/><text x="96.0949%" y="559.50"></text></g><g><title>finish_task_switch (8,483 samples, 0.55%)</title><rect x="95.3147%" y="565" width="0.5513%" height="15" fill="rgb(225,207,27)" fg:x="1466747" fg:w="8483"/><text x="95.5647%" y="575.50"></text></g><g><title>psi_task_change (182 samples, 0.01%)</title><rect x="95.8719%" y="565" width="0.0118%" height="15" fill="rgb(220,84,2)" fg:x="1475322" fg:w="182"/><text x="96.1219%" y="575.50"></text></g><g><title>psi_group_change (157 samples, 0.01%)</title><rect x="95.8735%" y="549" width="0.0102%" height="15" fill="rgb(224,37,37)" fg:x="1475347" fg:w="157"/><text x="96.1235%" y="559.50"></text></g><g><title>futex_wait_queue_me (9,318 samples, 0.61%)</title><rect x="95.2833%" y="613" width="0.6055%" height="15" fill="rgb(220,143,18)" fg:x="1466264" fg:w="9318"/><text x="95.5333%" y="623.50"></text></g><g><title>schedule (9,222 samples, 0.60%)</title><rect x="95.2895%" y="597" width="0.5993%" height="15" fill="rgb(210,88,33)" fg:x="1466360" fg:w="9222"/><text x="95.5395%" y="607.50"></text></g><g><title>__schedule (9,198 samples, 0.60%)</title><rect x="95.2911%" y="581" width="0.5977%" height="15" fill="rgb(219,87,51)" fg:x="1466384" fg:w="9198"/><text x="95.5411%" y="591.50"></text></g><g><title>futex_wait (9,456 samples, 0.61%)</title><rect x="95.2785%" y="629" width="0.6145%" height="15" fill="rgb(211,7,35)" fg:x="1466190" fg:w="9456"/><text x="95.5285%" y="639.50"></text></g><g><title>__x64_sys_futex (10,027 samples, 0.65%)</title><rect x="95.2741%" y="661" width="0.6516%" height="15" fill="rgb(232,77,2)" fg:x="1466122" fg:w="10027"/><text x="95.5241%" y="671.50"></text></g><g><title>do_futex (9,997 samples, 0.65%)</title><rect x="95.2760%" y="645" width="0.6496%" height="15" fill="rgb(249,94,25)" fg:x="1466152" fg:w="9997"/><text x="95.5260%" y="655.50"></text></g><g><title>futex_wake (503 samples, 0.03%)</title><rect x="95.8930%" y="629" width="0.0327%" height="15" fill="rgb(215,112,2)" fg:x="1475646" fg:w="503"/><text x="96.1430%" y="639.50"></text></g><g><title>wake_up_q (438 samples, 0.03%)</title><rect x="95.8972%" y="613" width="0.0285%" height="15" fill="rgb(226,115,48)" fg:x="1475711" fg:w="438"/><text x="96.1472%" y="623.50"></text></g><g><title>try_to_wake_up (433 samples, 0.03%)</title><rect x="95.8975%" y="597" width="0.0281%" height="15" fill="rgb(249,196,10)" fg:x="1475716" fg:w="433"/><text x="96.1475%" y="607.50"></text></g><g><title>__split_vma (175 samples, 0.01%)</title><rect x="95.9321%" y="613" width="0.0114%" height="15" fill="rgb(237,109,14)" fg:x="1476248" fg:w="175"/><text x="96.1821%" y="623.50"></text></g><g><title>tlb_finish_mmu (474 samples, 0.03%)</title><rect x="95.9540%" y="597" width="0.0308%" height="15" fill="rgb(217,103,53)" fg:x="1476586" fg:w="474"/><text x="96.2040%" y="607.50"></text></g><g><title>release_pages (365 samples, 0.02%)</title><rect x="95.9611%" y="581" width="0.0237%" height="15" fill="rgb(244,137,9)" fg:x="1476695" fg:w="365"/><text x="96.2111%" y="591.50"></text></g><g><title>unmap_page_range (264 samples, 0.02%)</title><rect x="95.9852%" y="581" width="0.0172%" height="15" fill="rgb(227,201,3)" fg:x="1477065" fg:w="264"/><text x="96.2352%" y="591.50"></text></g><g><title>unmap_region (860 samples, 0.06%)</title><rect x="95.9466%" y="613" width="0.0559%" height="15" fill="rgb(243,94,6)" fg:x="1476471" fg:w="860"/><text x="96.1966%" y="623.50"></text></g><g><title>unmap_vmas (269 samples, 0.02%)</title><rect x="95.9850%" y="597" width="0.0175%" height="15" fill="rgb(235,118,5)" fg:x="1477062" fg:w="269"/><text x="96.2350%" y="607.50"></text></g><g><title>__do_munmap (1,115 samples, 0.07%)</title><rect x="95.9307%" y="629" width="0.0725%" height="15" fill="rgb(247,10,30)" fg:x="1476226" fg:w="1115"/><text x="96.1807%" y="639.50"></text></g><g><title>__vm_munmap (1,136 samples, 0.07%)</title><rect x="95.9305%" y="645" width="0.0738%" height="15" fill="rgb(205,26,28)" fg:x="1476223" fg:w="1136"/><text x="96.1805%" y="655.50"></text></g><g><title>__x64_sys_munmap (1,139 samples, 0.07%)</title><rect x="95.9304%" y="661" width="0.0740%" height="15" fill="rgb(206,99,35)" fg:x="1476222" fg:w="1139"/><text x="96.1804%" y="671.50"></text></g><g><title>do_filp_open (259 samples, 0.02%)</title><rect x="96.0051%" y="629" width="0.0168%" height="15" fill="rgb(238,130,40)" fg:x="1477372" fg:w="259"/><text x="96.2551%" y="639.50"></text></g><g><title>path_openat (256 samples, 0.02%)</title><rect x="96.0053%" y="613" width="0.0166%" height="15" fill="rgb(224,126,31)" fg:x="1477375" fg:w="256"/><text x="96.2553%" y="623.50"></text></g><g><title>__x64_sys_open (283 samples, 0.02%)</title><rect x="96.0047%" y="661" width="0.0184%" height="15" fill="rgb(254,105,17)" fg:x="1477365" fg:w="283"/><text x="96.2547%" y="671.50"></text></g><g><title>do_sys_openat2 (283 samples, 0.02%)</title><rect x="96.0047%" y="645" width="0.0184%" height="15" fill="rgb(216,87,36)" fg:x="1477365" fg:w="283"/><text x="96.2547%" y="655.50"></text></g><g><title>__alloc_fd (482 samples, 0.03%)</title><rect x="96.0359%" y="629" width="0.0313%" height="15" fill="rgb(240,21,12)" fg:x="1477846" fg:w="482"/><text x="96.2859%" y="639.50"></text></g><g><title>___slab_alloc (331 samples, 0.02%)</title><rect x="96.1569%" y="533" width="0.0215%" height="15" fill="rgb(245,192,34)" fg:x="1479708" fg:w="331"/><text x="96.4069%" y="543.50"></text></g><g><title>__slab_alloc (349 samples, 0.02%)</title><rect x="96.1559%" y="549" width="0.0227%" height="15" fill="rgb(226,100,49)" fg:x="1479692" fg:w="349"/><text x="96.4059%" y="559.50"></text></g><g><title>__mod_memcg_lruvec_state (160 samples, 0.01%)</title><rect x="96.2176%" y="533" width="0.0104%" height="15" fill="rgb(245,188,27)" fg:x="1480641" fg:w="160"/><text x="96.4676%" y="543.50"></text></g><g><title>memcg_slab_post_alloc_hook (810 samples, 0.05%)</title><rect x="96.1787%" y="549" width="0.0526%" height="15" fill="rgb(212,170,8)" fg:x="1480043" fg:w="810"/><text x="96.4287%" y="559.50"></text></g><g><title>get_obj_cgroup_from_current (521 samples, 0.03%)</title><rect x="96.2489%" y="533" width="0.0339%" height="15" fill="rgb(217,113,29)" fg:x="1481123" fg:w="521"/><text x="96.4989%" y="543.50"></text></g><g><title>obj_cgroup_charge (237 samples, 0.02%)</title><rect x="96.2827%" y="533" width="0.0154%" height="15" fill="rgb(237,30,3)" fg:x="1481644" fg:w="237"/><text x="96.5327%" y="543.50"></text></g><g><title>kmem_cache_alloc (2,532 samples, 0.16%)</title><rect x="96.1342%" y="565" width="0.1645%" height="15" fill="rgb(227,19,28)" fg:x="1479358" fg:w="2532"/><text x="96.3842%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (915 samples, 0.06%)</title><rect x="96.2393%" y="549" width="0.0595%" height="15" fill="rgb(239,172,45)" fg:x="1480975" fg:w="915"/><text x="96.4893%" y="559.50"></text></g><g><title>apparmor_file_alloc_security (472 samples, 0.03%)</title><rect x="96.3041%" y="549" width="0.0307%" height="15" fill="rgb(254,55,39)" fg:x="1481972" fg:w="472"/><text x="96.5541%" y="559.50"></text></g><g><title>__alloc_file (3,695 samples, 0.24%)</title><rect x="96.1190%" y="581" width="0.2401%" height="15" fill="rgb(249,208,12)" fg:x="1479124" fg:w="3695"/><text x="96.3690%" y="591.50"></text></g><g><title>security_file_alloc (929 samples, 0.06%)</title><rect x="96.2987%" y="565" width="0.0604%" height="15" fill="rgb(240,52,13)" fg:x="1481890" fg:w="929"/><text x="96.5487%" y="575.50"></text></g><g><title>kmem_cache_alloc (374 samples, 0.02%)</title><rect x="96.3348%" y="549" width="0.0243%" height="15" fill="rgb(252,149,13)" fg:x="1482445" fg:w="374"/><text x="96.5848%" y="559.50"></text></g><g><title>alloc_empty_file (3,775 samples, 0.25%)</title><rect x="96.1155%" y="597" width="0.2453%" height="15" fill="rgb(232,81,48)" fg:x="1479071" fg:w="3775"/><text x="96.3655%" y="607.50"></text></g><g><title>__legitimize_mnt (240 samples, 0.02%)</title><rect x="96.3666%" y="549" width="0.0156%" height="15" fill="rgb(222,144,2)" fg:x="1482935" fg:w="240"/><text x="96.6166%" y="559.50"></text></g><g><title>__legitimize_path (410 samples, 0.03%)</title><rect x="96.3645%" y="565" width="0.0266%" height="15" fill="rgb(216,81,32)" fg:x="1482902" fg:w="410"/><text x="96.6145%" y="575.50"></text></g><g><title>complete_walk (511 samples, 0.03%)</title><rect x="96.3609%" y="597" width="0.0332%" height="15" fill="rgb(244,78,51)" fg:x="1482847" fg:w="511"/><text x="96.6109%" y="607.50"></text></g><g><title>try_to_unlazy (492 samples, 0.03%)</title><rect x="96.3621%" y="581" width="0.0320%" height="15" fill="rgb(217,66,21)" fg:x="1482866" fg:w="492"/><text x="96.6121%" y="591.50"></text></g><g><title>errseq_sample (398 samples, 0.03%)</title><rect x="96.4265%" y="581" width="0.0259%" height="15" fill="rgb(247,101,42)" fg:x="1483856" fg:w="398"/><text x="96.6765%" y="591.50"></text></g><g><title>apparmor_file_open (323 samples, 0.02%)</title><rect x="96.4758%" y="565" width="0.0210%" height="15" fill="rgb(227,81,39)" fg:x="1484615" fg:w="323"/><text x="96.7258%" y="575.50"></text></g><g><title>__srcu_read_lock (173 samples, 0.01%)</title><rect x="96.5086%" y="549" width="0.0112%" height="15" fill="rgb(220,223,44)" fg:x="1485119" fg:w="173"/><text x="96.7586%" y="559.50"></text></g><g><title>tomoyo_check_open_permission (668 samples, 0.04%)</title><rect x="96.4969%" y="565" width="0.0434%" height="15" fill="rgb(205,218,2)" fg:x="1484939" fg:w="668"/><text x="96.7469%" y="575.50"></text></g><g><title>tomoyo_init_request_info (161 samples, 0.01%)</title><rect x="96.5298%" y="549" width="0.0105%" height="15" fill="rgb(212,207,28)" fg:x="1485446" fg:w="161"/><text x="96.7798%" y="559.50"></text></g><g><title>security_file_open (1,101 samples, 0.07%)</title><rect x="96.4707%" y="581" width="0.0715%" height="15" fill="rgb(224,12,41)" fg:x="1484536" fg:w="1101"/><text x="96.7207%" y="591.50"></text></g><g><title>do_dentry_open (2,282 samples, 0.15%)</title><rect x="96.3942%" y="597" width="0.1483%" height="15" fill="rgb(216,118,12)" fg:x="1483360" fg:w="2282"/><text x="96.6442%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (157 samples, 0.01%)</title><rect x="96.5536%" y="437" width="0.0102%" height="15" fill="rgb(252,97,46)" fg:x="1485812" fg:w="157"/><text x="96.8036%" y="447.50"></text></g><g><title>finish_task_switch (164 samples, 0.01%)</title><rect x="96.5535%" y="453" width="0.0107%" height="15" fill="rgb(244,206,19)" fg:x="1485810" fg:w="164"/><text x="96.8035%" y="463.50"></text></g><g><title>__btrfs_tree_lock (175 samples, 0.01%)</title><rect x="96.5529%" y="501" width="0.0114%" height="15" fill="rgb(231,84,31)" fg:x="1485801" fg:w="175"/><text x="96.8029%" y="511.50"></text></g><g><title>schedule (167 samples, 0.01%)</title><rect x="96.5534%" y="485" width="0.0109%" height="15" fill="rgb(244,133,0)" fg:x="1485809" fg:w="167"/><text x="96.8034%" y="495.50"></text></g><g><title>__schedule (167 samples, 0.01%)</title><rect x="96.5534%" y="469" width="0.0109%" height="15" fill="rgb(223,15,50)" fg:x="1485809" fg:w="167"/><text x="96.8034%" y="479.50"></text></g><g><title>btrfs_lock_root_node (176 samples, 0.01%)</title><rect x="96.5529%" y="517" width="0.0114%" height="15" fill="rgb(250,118,49)" fg:x="1485801" fg:w="176"/><text x="96.8029%" y="527.50"></text></g><g><title>btrfs_truncate_inode_items (253 samples, 0.02%)</title><rect x="96.5488%" y="549" width="0.0164%" height="15" fill="rgb(248,25,38)" fg:x="1485739" fg:w="253"/><text x="96.7988%" y="559.50"></text></g><g><title>btrfs_search_slot (249 samples, 0.02%)</title><rect x="96.5491%" y="533" width="0.0162%" height="15" fill="rgb(215,70,14)" fg:x="1485743" fg:w="249"/><text x="96.7991%" y="543.50"></text></g><g><title>notify_change (279 samples, 0.02%)</title><rect x="96.5476%" y="581" width="0.0181%" height="15" fill="rgb(215,28,15)" fg:x="1485720" fg:w="279"/><text x="96.7976%" y="591.50"></text></g><g><title>btrfs_setattr (279 samples, 0.02%)</title><rect x="96.5476%" y="565" width="0.0181%" height="15" fill="rgb(243,6,28)" fg:x="1485720" fg:w="279"/><text x="96.7976%" y="575.50"></text></g><g><title>do_truncate (365 samples, 0.02%)</title><rect x="96.5425%" y="597" width="0.0237%" height="15" fill="rgb(222,130,1)" fg:x="1485642" fg:w="365"/><text x="96.7925%" y="607.50"></text></g><g><title>inode_permission.part.0 (686 samples, 0.04%)</title><rect x="96.6164%" y="581" width="0.0446%" height="15" fill="rgb(236,166,44)" fg:x="1486779" fg:w="686"/><text x="96.8664%" y="591.50"></text></g><g><title>lookup_fast (1,070 samples, 0.07%)</title><rect x="96.6803%" y="565" width="0.0695%" height="15" fill="rgb(221,108,14)" fg:x="1487762" fg:w="1070"/><text x="96.9303%" y="575.50"></text></g><g><title>__d_lookup_rcu (905 samples, 0.06%)</title><rect x="96.6910%" y="549" width="0.0588%" height="15" fill="rgb(252,3,45)" fg:x="1487927" fg:w="905"/><text x="96.9410%" y="559.50"></text></g><g><title>link_path_walk.part.0 (2,984 samples, 0.19%)</title><rect x="96.5663%" y="597" width="0.1939%" height="15" fill="rgb(237,68,30)" fg:x="1486007" fg:w="2984"/><text x="96.8163%" y="607.50"></text></g><g><title>walk_component (1,450 samples, 0.09%)</title><rect x="96.6659%" y="581" width="0.0942%" height="15" fill="rgb(211,79,22)" fg:x="1487541" fg:w="1450"/><text x="96.9159%" y="591.50"></text></g><g><title>step_into (159 samples, 0.01%)</title><rect x="96.7498%" y="565" width="0.0103%" height="15" fill="rgb(252,185,21)" fg:x="1488832" fg:w="159"/><text x="96.9998%" y="575.50"></text></g><g><title>lookup_fast (1,742 samples, 0.11%)</title><rect x="96.7602%" y="597" width="0.1132%" height="15" fill="rgb(225,189,26)" fg:x="1488991" fg:w="1742"/><text x="97.0102%" y="607.50"></text></g><g><title>__d_lookup_rcu (1,670 samples, 0.11%)</title><rect x="96.7649%" y="581" width="0.1085%" height="15" fill="rgb(241,30,40)" fg:x="1489063" fg:w="1670"/><text x="97.0149%" y="591.50"></text></g><g><title>inode_permission.part.0 (199 samples, 0.01%)</title><rect x="96.9113%" y="581" width="0.0129%" height="15" fill="rgb(235,215,44)" fg:x="1491316" fg:w="199"/><text x="97.1613%" y="591.50"></text></g><g><title>may_open (793 samples, 0.05%)</title><rect x="96.8734%" y="597" width="0.0515%" height="15" fill="rgb(205,8,29)" fg:x="1490733" fg:w="793"/><text x="97.1234%" y="607.50"></text></g><g><title>__fget_light (289 samples, 0.02%)</title><rect x="96.9365%" y="581" width="0.0188%" height="15" fill="rgb(241,137,42)" fg:x="1491705" fg:w="289"/><text x="97.1865%" y="591.50"></text></g><g><title>__fget_files (253 samples, 0.02%)</title><rect x="96.9389%" y="565" width="0.0164%" height="15" fill="rgb(237,155,2)" fg:x="1491741" fg:w="253"/><text x="97.1889%" y="575.50"></text></g><g><title>path_init (573 samples, 0.04%)</title><rect x="96.9250%" y="597" width="0.0372%" height="15" fill="rgb(245,29,42)" fg:x="1491527" fg:w="573"/><text x="97.1750%" y="607.50"></text></g><g><title>dput (244 samples, 0.02%)</title><rect x="96.9695%" y="581" width="0.0159%" height="15" fill="rgb(234,101,35)" fg:x="1492213" fg:w="244"/><text x="97.2195%" y="591.50"></text></g><g><title>terminate_walk (402 samples, 0.03%)</title><rect x="96.9661%" y="597" width="0.0261%" height="15" fill="rgb(228,64,37)" fg:x="1492160" fg:w="402"/><text x="97.2161%" y="607.50"></text></g><g><title>do_filp_open (13,950 samples, 0.91%)</title><rect x="96.0870%" y="629" width="0.9065%" height="15" fill="rgb(217,214,36)" fg:x="1478632" fg:w="13950"/><text x="96.3370%" y="639.50"></text></g><g><title>path_openat (13,747 samples, 0.89%)</title><rect x="96.1002%" y="613" width="0.8933%" height="15" fill="rgb(243,70,3)" fg:x="1478835" fg:w="13747"/><text x="96.3502%" y="623.50"></text></g><g><title>memset_erms (1,025 samples, 0.07%)</title><rect x="97.0403%" y="597" width="0.0666%" height="15" fill="rgb(253,158,52)" fg:x="1493302" fg:w="1025"/><text x="97.2903%" y="607.50"></text></g><g><title>kmem_cache_alloc (1,597 samples, 0.10%)</title><rect x="97.0184%" y="613" width="0.1038%" height="15" fill="rgb(234,111,54)" fg:x="1492964" fg:w="1597"/><text x="97.2684%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (234 samples, 0.02%)</title><rect x="97.1069%" y="597" width="0.0152%" height="15" fill="rgb(217,70,32)" fg:x="1494327" fg:w="234"/><text x="97.3569%" y="607.50"></text></g><g><title>__virt_addr_valid (286 samples, 0.02%)</title><rect x="97.1664%" y="581" width="0.0186%" height="15" fill="rgb(234,18,33)" fg:x="1495242" fg:w="286"/><text x="97.4164%" y="591.50"></text></g><g><title>__check_object_size (563 samples, 0.04%)</title><rect x="97.1502%" y="597" width="0.0366%" height="15" fill="rgb(234,12,49)" fg:x="1494993" fg:w="563"/><text x="97.4002%" y="607.50"></text></g><g><title>getname_flags.part.0 (2,692 samples, 0.17%)</title><rect x="97.0120%" y="629" width="0.1749%" height="15" fill="rgb(236,10,21)" fg:x="1492866" fg:w="2692"/><text x="97.2620%" y="639.50"></text></g><g><title>strncpy_from_user (997 samples, 0.06%)</title><rect x="97.1221%" y="613" width="0.0648%" height="15" fill="rgb(248,182,45)" fg:x="1494561" fg:w="997"/><text x="97.3721%" y="623.50"></text></g><g><title>kmem_cache_free (430 samples, 0.03%)</title><rect x="97.1869%" y="629" width="0.0279%" height="15" fill="rgb(217,95,36)" fg:x="1495558" fg:w="430"/><text x="97.4369%" y="639.50"></text></g><g><title>__x64_sys_openat (18,394 samples, 1.20%)</title><rect x="96.0231%" y="661" width="1.1953%" height="15" fill="rgb(212,110,31)" fg:x="1477648" fg:w="18394"/><text x="96.2731%" y="671.50"></text></g><g><title>do_sys_openat2 (18,321 samples, 1.19%)</title><rect x="96.0278%" y="645" width="1.1906%" height="15" fill="rgb(206,32,53)" fg:x="1477721" fg:w="18321"/><text x="96.2778%" y="655.50"></text></g><g><title>__fget_files (1,066 samples, 0.07%)</title><rect x="97.3125%" y="613" width="0.0693%" height="15" fill="rgb(246,141,37)" fg:x="1497490" fg:w="1066"/><text x="97.5625%" y="623.50"></text></g><g><title>__fget_light (1,293 samples, 0.08%)</title><rect x="97.2978%" y="629" width="0.0840%" height="15" fill="rgb(219,16,7)" fg:x="1497265" fg:w="1293"/><text x="97.5478%" y="639.50"></text></g><g><title>__fdget_pos (2,339 samples, 0.15%)</title><rect x="97.2764%" y="645" width="0.1520%" height="15" fill="rgb(230,205,45)" fg:x="1496935" fg:w="2339"/><text x="97.5264%" y="655.50"></text></g><g><title>mutex_lock (716 samples, 0.05%)</title><rect x="97.3819%" y="629" width="0.0465%" height="15" fill="rgb(231,43,49)" fg:x="1498558" fg:w="716"/><text x="97.6319%" y="639.50"></text></g><g><title>fput_many (549 samples, 0.04%)</title><rect x="97.4296%" y="645" width="0.0357%" height="15" fill="rgb(212,106,34)" fg:x="1499292" fg:w="549"/><text x="97.6796%" y="655.50"></text></g><g><title>mutex_unlock (578 samples, 0.04%)</title><rect x="97.4652%" y="645" width="0.0376%" height="15" fill="rgb(206,83,17)" fg:x="1499841" fg:w="578"/><text x="97.7152%" y="655.50"></text></g><g><title>__fsnotify_parent (1,155 samples, 0.08%)</title><rect x="97.5824%" y="629" width="0.0751%" height="15" fill="rgb(244,154,49)" fg:x="1501644" fg:w="1155"/><text x="97.8324%" y="639.50"></text></g><g><title>btrfs_file_read_iter (209 samples, 0.01%)</title><rect x="97.7254%" y="613" width="0.0136%" height="15" fill="rgb(244,149,49)" fg:x="1503844" fg:w="209"/><text x="97.9754%" y="623.50"></text></g><g><title>_cond_resched (217 samples, 0.01%)</title><rect x="97.9092%" y="597" width="0.0141%" height="15" fill="rgb(227,134,18)" fg:x="1506673" fg:w="217"/><text x="98.1592%" y="607.50"></text></g><g><title>_cond_resched (173 samples, 0.01%)</title><rect x="97.9968%" y="581" width="0.0112%" height="15" fill="rgb(237,116,36)" fg:x="1508021" fg:w="173"/><text x="98.2468%" y="591.50"></text></g><g><title>asm_exc_page_fault (350 samples, 0.02%)</title><rect x="98.4107%" y="565" width="0.0227%" height="15" fill="rgb(205,129,40)" fg:x="1514390" fg:w="350"/><text x="98.6607%" y="575.50"></text></g><g><title>exc_page_fault (158 samples, 0.01%)</title><rect x="98.4232%" y="549" width="0.0103%" height="15" fill="rgb(236,178,4)" fg:x="1514582" fg:w="158"/><text x="98.6732%" y="559.50"></text></g><g><title>do_user_addr_fault (157 samples, 0.01%)</title><rect x="98.4232%" y="533" width="0.0102%" height="15" fill="rgb(251,76,53)" fg:x="1514583" fg:w="157"/><text x="98.6732%" y="543.50"></text></g><g><title>copy_user_enhanced_fast_string (6,563 samples, 0.43%)</title><rect x="98.0086%" y="581" width="0.4265%" height="15" fill="rgb(242,92,40)" fg:x="1508202" fg:w="6563"/><text x="98.2586%" y="591.50"></text></g><g><title>copy_page_to_iter (7,924 samples, 0.51%)</title><rect x="97.9240%" y="597" width="0.5149%" height="15" fill="rgb(209,45,30)" fg:x="1506900" fg:w="7924"/><text x="98.1740%" y="607.50"></text></g><g><title>pagecache_get_page (4,201 samples, 0.27%)</title><rect x="98.4458%" y="597" width="0.2730%" height="15" fill="rgb(218,157,36)" fg:x="1514930" fg:w="4201"/><text x="98.6958%" y="607.50"></text></g><g><title>find_get_entry (3,548 samples, 0.23%)</title><rect x="98.4882%" y="581" width="0.2306%" height="15" fill="rgb(222,186,16)" fg:x="1515583" fg:w="3548"/><text x="98.7382%" y="591.50"></text></g><g><title>xas_load (923 samples, 0.06%)</title><rect x="98.6588%" y="565" width="0.0600%" height="15" fill="rgb(254,72,35)" fg:x="1518208" fg:w="923"/><text x="98.9088%" y="575.50"></text></g><g><title>xas_start (645 samples, 0.04%)</title><rect x="98.6769%" y="549" width="0.0419%" height="15" fill="rgb(224,25,35)" fg:x="1518486" fg:w="645"/><text x="98.9269%" y="559.50"></text></g><g><title>atime_needs_update (1,187 samples, 0.08%)</title><rect x="98.7362%" y="581" width="0.0771%" height="15" fill="rgb(206,135,52)" fg:x="1519399" fg:w="1187"/><text x="98.9862%" y="591.50"></text></g><g><title>current_time (674 samples, 0.04%)</title><rect x="98.7695%" y="565" width="0.0438%" height="15" fill="rgb(229,174,47)" fg:x="1519912" fg:w="674"/><text x="99.0195%" y="575.50"></text></g><g><title>ktime_get_coarse_real_ts64 (272 samples, 0.02%)</title><rect x="98.7957%" y="549" width="0.0177%" height="15" fill="rgb(242,184,21)" fg:x="1520314" fg:w="272"/><text x="99.0457%" y="559.50"></text></g><g><title>btrfs_block_rsv_add (172 samples, 0.01%)</title><rect x="98.8308%" y="533" width="0.0112%" height="15" fill="rgb(213,22,45)" fg:x="1520855" fg:w="172"/><text x="99.0808%" y="543.50"></text></g><g><title>btrfs_delayed_update_inode (375 samples, 0.02%)</title><rect x="98.8223%" y="549" width="0.0244%" height="15" fill="rgb(237,81,54)" fg:x="1520724" fg:w="375"/><text x="99.0723%" y="559.50"></text></g><g><title>btrfs_update_inode (414 samples, 0.03%)</title><rect x="98.8219%" y="565" width="0.0269%" height="15" fill="rgb(248,177,18)" fg:x="1520718" fg:w="414"/><text x="99.0719%" y="575.50"></text></g><g><title>btrfs_dirty_inode (761 samples, 0.05%)</title><rect x="98.8133%" y="581" width="0.0495%" height="15" fill="rgb(254,31,16)" fg:x="1520586" fg:w="761"/><text x="99.0633%" y="591.50"></text></g><g><title>generic_file_buffered_read (17,297 samples, 1.12%)</title><rect x="97.7390%" y="613" width="1.1240%" height="15" fill="rgb(235,20,31)" fg:x="1504053" fg:w="17297"/><text x="97.9890%" y="623.50"></text></g><g><title>touch_atime (2,219 samples, 0.14%)</title><rect x="98.7188%" y="597" width="0.1442%" height="15" fill="rgb(240,56,43)" fg:x="1519131" fg:w="2219"/><text x="98.9688%" y="607.50"></text></g><g><title>new_sync_read (18,692 samples, 1.21%)</title><rect x="97.6579%" y="629" width="1.2147%" height="15" fill="rgb(237,197,51)" fg:x="1502806" fg:w="18692"/><text x="97.9079%" y="639.50"></text></g><g><title>rw_verify_area (246 samples, 0.02%)</title><rect x="98.8726%" y="629" width="0.0160%" height="15" fill="rgb(241,162,44)" fg:x="1521498" fg:w="246"/><text x="99.1226%" y="639.50"></text></g><g><title>aa_file_perm (274 samples, 0.02%)</title><rect x="98.9850%" y="597" width="0.0178%" height="15" fill="rgb(224,23,20)" fg:x="1523228" fg:w="274"/><text x="99.2350%" y="607.50"></text></g><g><title>apparmor_file_permission (1,296 samples, 0.08%)</title><rect x="98.9189%" y="613" width="0.0842%" height="15" fill="rgb(250,109,34)" fg:x="1522211" fg:w="1296"/><text x="99.1689%" y="623.50"></text></g><g><title>security_file_permission (1,768 samples, 0.11%)</title><rect x="98.8886%" y="629" width="0.1149%" height="15" fill="rgb(214,175,50)" fg:x="1521744" fg:w="1768"/><text x="99.1386%" y="639.50"></text></g><g><title>ksys_read (26,970 samples, 1.75%)</title><rect x="97.2510%" y="661" width="1.7526%" height="15" fill="rgb(213,182,5)" fg:x="1496544" fg:w="26970"/><text x="97.5010%" y="671.50"></text></g><g><title>vfs_read (23,095 samples, 1.50%)</title><rect x="97.5028%" y="645" width="1.5008%" height="15" fill="rgb(209,199,19)" fg:x="1500419" fg:w="23095"/><text x="97.7528%" y="655.50"></text></g><g><title>syscall_enter_from_user_mode (235 samples, 0.02%)</title><rect x="99.0045%" y="661" width="0.0153%" height="15" fill="rgb(236,224,42)" fg:x="1523528" fg:w="235"/><text x="99.2545%" y="671.50"></text></g><g><title>perf_iterate_sb (178 samples, 0.01%)</title><rect x="99.0313%" y="597" width="0.0116%" height="15" fill="rgb(246,226,29)" fg:x="1523940" fg:w="178"/><text x="99.2813%" y="607.50"></text></g><g><title>perf_event_mmap (221 samples, 0.01%)</title><rect x="99.0288%" y="613" width="0.0144%" height="15" fill="rgb(227,223,11)" fg:x="1523901" fg:w="221"/><text x="99.2788%" y="623.50"></text></g><g><title>do_mmap (484 samples, 0.03%)</title><rect x="99.0200%" y="645" width="0.0315%" height="15" fill="rgb(219,7,51)" fg:x="1523767" fg:w="484"/><text x="99.2700%" y="655.50"></text></g><g><title>mmap_region (382 samples, 0.02%)</title><rect x="99.0267%" y="629" width="0.0248%" height="15" fill="rgb(245,167,10)" fg:x="1523869" fg:w="382"/><text x="99.2767%" y="639.50"></text></g><g><title>do_syscall_64 (63,194 samples, 4.11%)</title><rect x="94.9501%" y="677" width="4.1066%" height="15" fill="rgb(237,224,16)" fg:x="1461137" fg:w="63194"/><text x="95.2001%" y="687.50">do_s..</text></g><g><title>vm_mmap_pgoff (568 samples, 0.04%)</title><rect x="99.0198%" y="661" width="0.0369%" height="15" fill="rgb(226,132,13)" fg:x="1523763" fg:w="568"/><text x="99.2698%" y="671.50"></text></g><g><title>arch_do_signal (171 samples, 0.01%)</title><rect x="99.1100%" y="645" width="0.0111%" height="15" fill="rgb(214,140,3)" fg:x="1525152" fg:w="171"/><text x="99.3600%" y="655.50"></text></g><g><title>get_signal (168 samples, 0.01%)</title><rect x="99.1102%" y="629" width="0.0109%" height="15" fill="rgb(221,177,4)" fg:x="1525155" fg:w="168"/><text x="99.3602%" y="639.50"></text></g><g><title>fpregs_assert_state_consistent (253 samples, 0.02%)</title><rect x="99.1232%" y="645" width="0.0164%" height="15" fill="rgb(238,139,3)" fg:x="1525355" fg:w="253"/><text x="99.3732%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (156 samples, 0.01%)</title><rect x="99.1458%" y="597" width="0.0101%" height="15" fill="rgb(216,17,39)" fg:x="1525702" fg:w="156"/><text x="99.3958%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (154 samples, 0.01%)</title><rect x="99.1459%" y="581" width="0.0100%" height="15" fill="rgb(238,120,9)" fg:x="1525704" fg:w="154"/><text x="99.3959%" y="591.50"></text></g><g><title>finish_task_switch (170 samples, 0.01%)</title><rect x="99.1456%" y="613" width="0.0110%" height="15" fill="rgb(244,92,53)" fg:x="1525699" fg:w="170"/><text x="99.3956%" y="623.50"></text></g><g><title>schedule (205 samples, 0.01%)</title><rect x="99.1445%" y="645" width="0.0133%" height="15" fill="rgb(224,148,33)" fg:x="1525682" fg:w="205"/><text x="99.3945%" y="655.50"></text></g><g><title>__schedule (203 samples, 0.01%)</title><rect x="99.1446%" y="629" width="0.0132%" height="15" fill="rgb(243,6,36)" fg:x="1525684" fg:w="203"/><text x="99.3946%" y="639.50"></text></g><g><title>btrfs_release_file (485 samples, 0.03%)</title><rect x="99.1982%" y="613" width="0.0315%" height="15" fill="rgb(230,102,11)" fg:x="1526509" fg:w="485"/><text x="99.4482%" y="623.50"></text></g><g><title>lockref_put_or_lock (161 samples, 0.01%)</title><rect x="99.2430%" y="597" width="0.0105%" height="15" fill="rgb(234,148,36)" fg:x="1527198" fg:w="161"/><text x="99.4930%" y="607.50"></text></g><g><title>dput (376 samples, 0.02%)</title><rect x="99.2297%" y="613" width="0.0244%" height="15" fill="rgb(251,153,25)" fg:x="1526994" fg:w="376"/><text x="99.4797%" y="623.50"></text></g><g><title>kmem_cache_free (305 samples, 0.02%)</title><rect x="99.2542%" y="613" width="0.0198%" height="15" fill="rgb(215,129,8)" fg:x="1527370" fg:w="305"/><text x="99.5042%" y="623.50"></text></g><g><title>security_file_free (443 samples, 0.03%)</title><rect x="99.2925%" y="613" width="0.0288%" height="15" fill="rgb(224,128,35)" fg:x="1527960" fg:w="443"/><text x="99.5425%" y="623.50"></text></g><g><title>apparmor_file_free_security (375 samples, 0.02%)</title><rect x="99.2969%" y="597" width="0.0244%" height="15" fill="rgb(237,56,52)" fg:x="1528028" fg:w="375"/><text x="99.5469%" y="607.50"></text></g><g><title>__fput (2,253 samples, 0.15%)</title><rect x="99.1750%" y="629" width="0.1464%" height="15" fill="rgb(234,213,19)" fg:x="1526151" fg:w="2253"/><text x="99.4250%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68,550 samples, 4.45%)</title><rect x="94.9097%" y="693" width="4.4546%" height="15" fill="rgb(252,82,23)" fg:x="1460515" fg:w="68550"/><text x="95.1597%" y="703.50">entry..</text></g><g><title>syscall_exit_to_user_mode (4,734 samples, 0.31%)</title><rect x="99.0567%" y="677" width="0.3076%" height="15" fill="rgb(254,201,21)" fg:x="1524331" fg:w="4734"/><text x="99.3067%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (4,521 samples, 0.29%)</title><rect x="99.0705%" y="661" width="0.2938%" height="15" fill="rgb(250,186,11)" fg:x="1524544" fg:w="4521"/><text x="99.3205%" y="671.50"></text></g><g><title>task_work_run (3,056 samples, 0.20%)</title><rect x="99.1657%" y="645" width="0.1986%" height="15" fill="rgb(211,174,5)" fg:x="1526009" fg:w="3056"/><text x="99.4157%" y="655.50"></text></g><g><title>call_rcu (525 samples, 0.03%)</title><rect x="99.3302%" y="629" width="0.0341%" height="15" fill="rgb(214,121,10)" fg:x="1528540" fg:w="525"/><text x="99.5802%" y="639.50"></text></g><g><title>rcu_segcblist_enqueue (253 samples, 0.02%)</title><rect x="99.3479%" y="613" width="0.0164%" height="15" fill="rgb(241,66,2)" fg:x="1528812" fg:w="253"/><text x="99.5979%" y="623.50"></text></g><g><title>error_entry (370 samples, 0.02%)</title><rect x="99.3643%" y="693" width="0.0240%" height="15" fill="rgb(220,167,19)" fg:x="1529065" fg:w="370"/><text x="99.6143%" y="703.50"></text></g><g><title>sync_regs (328 samples, 0.02%)</title><rect x="99.3671%" y="677" width="0.0213%" height="15" fill="rgb(231,54,50)" fg:x="1529107" fg:w="328"/><text x="99.6171%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (4,306 samples, 0.28%)</title><rect x="99.4055%" y="645" width="0.2798%" height="15" fill="rgb(239,217,53)" fg:x="1529699" fg:w="4306"/><text x="99.6555%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,203 samples, 0.27%)</title><rect x="99.4122%" y="629" width="0.2731%" height="15" fill="rgb(248,8,0)" fg:x="1529802" fg:w="4203"/><text x="99.6622%" y="639.50"></text></g><g><title>native_write_msr (4,167 samples, 0.27%)</title><rect x="99.4146%" y="613" width="0.2708%" height="15" fill="rgb(229,118,37)" fg:x="1529838" fg:w="4167"/><text x="99.6646%" y="623.50"></text></g><g><title>schedule_tail (4,593 samples, 0.30%)</title><rect x="99.3968%" y="677" width="0.2985%" height="15" fill="rgb(253,223,43)" fg:x="1529564" fg:w="4593"/><text x="99.6468%" y="687.50"></text></g><g><title>finish_task_switch (4,568 samples, 0.30%)</title><rect x="99.3984%" y="661" width="0.2968%" height="15" fill="rgb(211,77,36)" fg:x="1529589" fg:w="4568"/><text x="99.6484%" y="671.50"></text></g><g><title>ret_from_fork (4,775 samples, 0.31%)</title><rect x="99.3925%" y="693" width="0.3103%" height="15" fill="rgb(219,3,53)" fg:x="1529498" fg:w="4775"/><text x="99.6425%" y="703.50"></text></g><g><title>syscall_return_via_sysret (865 samples, 0.06%)</title><rect x="99.7028%" y="693" width="0.0562%" height="15" fill="rgb(244,45,42)" fg:x="1534273" fg:w="865"/><text x="99.9528%" y="703.50"></text></g><g><title>[zig] (134,704 samples, 8.75%)</title><rect x="91.0057%" y="709" width="8.7536%" height="15" fill="rgb(225,95,27)" fg:x="1400438" fg:w="134704"/><text x="91.2557%" y="719.50">[zig]</text></g><g><title>asm_exc_page_fault (921 samples, 0.06%)</title><rect x="99.7598%" y="709" width="0.0599%" height="15" fill="rgb(207,74,8)" fg:x="1535151" fg:w="921"/><text x="100.0098%" y="719.50"></text></g><g><title>unmap_page_range (325 samples, 0.02%)</title><rect x="99.8457%" y="549" width="0.0211%" height="15" fill="rgb(243,63,36)" fg:x="1536473" fg:w="325"/><text x="100.0957%" y="559.50"></text></g><g><title>exit_mmap (424 samples, 0.03%)</title><rect x="99.8394%" y="581" width="0.0276%" height="15" fill="rgb(211,180,12)" fg:x="1536375" fg:w="424"/><text x="100.0894%" y="591.50"></text></g><g><title>unmap_vmas (327 samples, 0.02%)</title><rect x="99.8457%" y="565" width="0.0212%" height="15" fill="rgb(254,166,49)" fg:x="1536472" fg:w="327"/><text x="100.0957%" y="575.50"></text></g><g><title>mmput (428 samples, 0.03%)</title><rect x="99.8392%" y="597" width="0.0278%" height="15" fill="rgb(205,19,0)" fg:x="1536372" fg:w="428"/><text x="100.0892%" y="607.50"></text></g><g><title>begin_new_exec (436 samples, 0.03%)</title><rect x="99.8390%" y="613" width="0.0283%" height="15" fill="rgb(224,172,32)" fg:x="1536370" fg:w="436"/><text x="100.0890%" y="623.50"></text></g><g><title>__x64_sys_execve (495 samples, 0.03%)</title><rect x="99.8377%" y="677" width="0.0322%" height="15" fill="rgb(254,136,30)" fg:x="1536350" fg:w="495"/><text x="100.0877%" y="687.50"></text></g><g><title>do_execveat_common (495 samples, 0.03%)</title><rect x="99.8377%" y="661" width="0.0322%" height="15" fill="rgb(246,19,35)" fg:x="1536350" fg:w="495"/><text x="100.0877%" y="671.50"></text></g><g><title>bprm_execve (495 samples, 0.03%)</title><rect x="99.8377%" y="645" width="0.0322%" height="15" fill="rgb(219,24,36)" fg:x="1536350" fg:w="495"/><text x="100.0877%" y="655.50"></text></g><g><title>load_elf_binary (495 samples, 0.03%)</title><rect x="99.8377%" y="629" width="0.0322%" height="15" fill="rgb(251,55,1)" fg:x="1536350" fg:w="495"/><text x="100.0877%" y="639.50"></text></g><g><title>tlb_finish_mmu (172 samples, 0.01%)</title><rect x="99.8746%" y="597" width="0.0112%" height="15" fill="rgb(218,117,39)" fg:x="1536917" fg:w="172"/><text x="100.1246%" y="607.50"></text></g><g><title>page_remove_rmap (170 samples, 0.01%)</title><rect x="99.9114%" y="565" width="0.0110%" height="15" fill="rgb(248,169,11)" fg:x="1537483" fg:w="170"/><text x="100.1614%" y="575.50"></text></g><g><title>mmput (842 samples, 0.05%)</title><rect x="99.8739%" y="629" width="0.0547%" height="15" fill="rgb(244,40,44)" fg:x="1536907" fg:w="842"/><text x="100.1239%" y="639.50"></text></g><g><title>exit_mmap (842 samples, 0.05%)</title><rect x="99.8739%" y="613" width="0.0547%" height="15" fill="rgb(234,62,37)" fg:x="1536907" fg:w="842"/><text x="100.1239%" y="623.50"></text></g><g><title>unmap_vmas (660 samples, 0.04%)</title><rect x="99.8858%" y="597" width="0.0429%" height="15" fill="rgb(207,117,42)" fg:x="1537089" fg:w="660"/><text x="100.1358%" y="607.50"></text></g><g><title>unmap_page_range (659 samples, 0.04%)</title><rect x="99.8858%" y="581" width="0.0428%" height="15" fill="rgb(213,43,2)" fg:x="1537090" fg:w="659"/><text x="100.1358%" y="591.50"></text></g><g><title>__x64_sys_exit_group (854 samples, 0.06%)</title><rect x="99.8733%" y="677" width="0.0555%" height="15" fill="rgb(244,202,51)" fg:x="1536897" fg:w="854"/><text x="100.1233%" y="687.50"></text></g><g><title>do_group_exit (854 samples, 0.06%)</title><rect x="99.8733%" y="661" width="0.0555%" height="15" fill="rgb(253,174,46)" fg:x="1536897" fg:w="854"/><text x="100.1233%" y="671.50"></text></g><g><title>do_exit (854 samples, 0.06%)</title><rect x="99.8733%" y="645" width="0.0555%" height="15" fill="rgb(251,23,1)" fg:x="1536897" fg:w="854"/><text x="100.1233%" y="655.50"></text></g><g><title>do_syscall_64 (1,405 samples, 0.09%)</title><rect x="99.8377%" y="693" width="0.0913%" height="15" fill="rgb(253,26,1)" fg:x="1536350" fg:w="1405"/><text x="100.0877%" y="703.50"></text></g><g><title>unmap_page_range (311 samples, 0.02%)</title><rect x="99.9392%" y="549" width="0.0202%" height="15" fill="rgb(216,89,31)" fg:x="1537912" fg:w="311"/><text x="100.1892%" y="559.50"></text></g><g><title>exit_mmap (396 samples, 0.03%)</title><rect x="99.9338%" y="581" width="0.0257%" height="15" fill="rgb(209,109,5)" fg:x="1537829" fg:w="396"/><text x="100.1838%" y="591.50"></text></g><g><title>unmap_vmas (313 samples, 0.02%)</title><rect x="99.9392%" y="565" width="0.0203%" height="15" fill="rgb(229,63,13)" fg:x="1537912" fg:w="313"/><text x="100.1892%" y="575.50"></text></g><g><title>mmput (399 samples, 0.03%)</title><rect x="99.9338%" y="597" width="0.0259%" height="15" fill="rgb(238,137,54)" fg:x="1537828" fg:w="399"/><text x="100.1838%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,154 samples, 0.14%)</title><rect x="99.8204%" y="709" width="0.1400%" height="15" fill="rgb(228,1,9)" fg:x="1536084" fg:w="2154"/><text x="100.0704%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (483 samples, 0.03%)</title><rect x="99.9290%" y="693" width="0.0314%" height="15" fill="rgb(249,120,48)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (483 samples, 0.03%)</title><rect x="99.9290%" y="677" width="0.0314%" height="15" fill="rgb(209,72,36)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="687.50"></text></g><g><title>arch_do_signal (483 samples, 0.03%)</title><rect x="99.9290%" y="661" width="0.0314%" height="15" fill="rgb(247,98,49)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="671.50"></text></g><g><title>get_signal (483 samples, 0.03%)</title><rect x="99.9290%" y="645" width="0.0314%" height="15" fill="rgb(233,75,36)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="655.50"></text></g><g><title>do_group_exit (483 samples, 0.03%)</title><rect x="99.9290%" y="629" width="0.0314%" height="15" fill="rgb(225,14,24)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="639.50"></text></g><g><title>do_exit (483 samples, 0.03%)</title><rect x="99.9290%" y="613" width="0.0314%" height="15" fill="rgb(237,193,20)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="623.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (422 samples, 0.03%)</title><rect x="99.9604%" y="709" width="0.0274%" height="15" fill="rgb(239,122,19)" fg:x="1538238" fg:w="422"/><text x="100.2104%" y="719.50"></text></g><g><title>syscall_return_via_sysret (158 samples, 0.01%)</title><rect x="99.9897%" y="709" width="0.0103%" height="15" fill="rgb(231,220,10)" fg:x="1538688" fg:w="158"/><text x="100.2397%" y="719.50"></text></g><g><title>all (1,538,847 samples, 100%)</title><rect x="0.0000%" y="741" width="100.0000%" height="15" fill="rgb(220,66,15)" fg:x="0" fg:w="1538847"/><text x="0.2500%" y="751.50"></text></g><g><title>zig (138,409 samples, 8.99%)</title><rect x="91.0057%" y="725" width="8.9943%" height="15" fill="rgb(215,171,52)" fg:x="1400438" fg:w="138409"/><text x="91.2557%" y="735.50">zig</text></g></svg></svg>