491 lines
759 KiB
XML
491 lines
759 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="1292852"><g><title>_dl_update_slotinfo (157 samples, 0.01%)</title><rect x="0.0850%" y="693" width="0.0121%" height="15" fill="rgb(227,0,7)" fg:x="1099" fg:w="157"/><text x="0.3350%" y="703.50"></text></g><g><title>[anon] (1,409 samples, 0.11%)</title><rect x="0.0073%" y="709" width="0.1090%" height="15" fill="rgb(217,0,24)" fg:x="95" fg:w="1409"/><text x="0.2573%" y="719.50"></text></g><g><title>[perf-956514.map] (169 samples, 0.01%)</title><rect x="0.1164%" y="709" width="0.0131%" height="15" fill="rgb(221,193,54)" fg:x="1505" fg:w="169"/><text x="0.3664%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (132 samples, 0.01%)</title><rect x="0.1677%" y="469" width="0.0102%" height="15" fill="rgb(248,212,6)" fg:x="2168" fg:w="132"/><text x="0.4177%" y="479.50"></text></g><g><title>BlockBegin::iterate_preorder (212 samples, 0.02%)</title><rect x="0.1672%" y="485" width="0.0164%" height="15" fill="rgb(208,68,35)" fg:x="2162" fg:w="212"/><text x="0.4172%" y="495.50"></text></g><g><title>BlockBegin::iterate_preorder (218 samples, 0.02%)</title><rect x="0.1671%" y="501" width="0.0169%" height="15" fill="rgb(232,128,0)" fg:x="2160" fg:w="218"/><text x="0.4171%" y="511.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (404 samples, 0.03%)</title><rect x="0.1614%" y="517" width="0.0312%" height="15" fill="rgb(207,160,47)" fg:x="2087" fg:w="404"/><text x="0.4114%" y="527.50"></text></g><g><title>BlockListBuilder::set_leaders (146 samples, 0.01%)</title><rect x="0.2037%" y="469" width="0.0113%" height="15" fill="rgb(228,23,34)" fg:x="2634" fg:w="146"/><text x="0.4537%" y="479.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (168 samples, 0.01%)</title><rect x="0.2023%" y="485" width="0.0130%" height="15" fill="rgb(218,30,26)" fg:x="2616" fg:w="168"/><text x="0.4523%" y="495.50"></text></g><g><title>ciField::ciField (130 samples, 0.01%)</title><rect x="0.2329%" y="405" width="0.0101%" height="15" fill="rgb(220,122,19)" fg:x="3011" fg:w="130"/><text x="0.4829%" y="415.50"></text></g><g><title>ciEnv::get_field_by_index (146 samples, 0.01%)</title><rect x="0.2320%" y="421" width="0.0113%" height="15" fill="rgb(250,228,42)" fg:x="3000" fg:w="146"/><text x="0.4820%" y="431.50"></text></g><g><title>ciBytecodeStream::get_field (165 samples, 0.01%)</title><rect x="0.2319%" y="437" width="0.0128%" height="15" fill="rgb(240,193,28)" fg:x="2998" fg:w="165"/><text x="0.4819%" y="447.50"></text></g><g><title>GraphBuilder::access_field (222 samples, 0.02%)</title><rect x="0.2282%" y="453" width="0.0172%" height="15" fill="rgb(216,20,37)" fg:x="2950" fg:w="222"/><text x="0.4782%" y="463.50"></text></g><g><title>GraphBuilder::access_field (162 samples, 0.01%)</title><rect x="0.2771%" y="373" width="0.0125%" height="15" fill="rgb(206,188,39)" fg:x="3582" fg:w="162"/><text x="0.5271%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (146 samples, 0.01%)</title><rect x="0.3230%" y="197" width="0.0113%" height="15" fill="rgb(217,207,13)" fg:x="4176" fg:w="146"/><text x="0.5730%" y="207.50"></text></g><g><title>GraphBuilder::invoke (228 samples, 0.02%)</title><rect x="0.3224%" y="213" width="0.0176%" height="15" fill="rgb(231,73,38)" fg:x="4168" fg:w="228"/><text x="0.5724%" y="223.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (344 samples, 0.03%)</title><rect x="0.3153%" y="245" width="0.0266%" height="15" fill="rgb(225,20,46)" fg:x="4077" fg:w="344"/><text x="0.5653%" y="255.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (342 samples, 0.03%)</title><rect x="0.3155%" y="229" width="0.0265%" height="15" fill="rgb(210,31,41)" fg:x="4079" fg:w="342"/><text x="0.5655%" y="239.50"></text></g><g><title>GraphBuilder::try_inline_full (444 samples, 0.03%)</title><rect x="0.3142%" y="261" width="0.0343%" height="15" fill="rgb(221,200,47)" fg:x="4062" fg:w="444"/><text x="0.5642%" y="271.50"></text></g><g><title>GraphBuilder::try_inline (494 samples, 0.04%)</title><rect x="0.3139%" y="277" width="0.0382%" height="15" fill="rgb(226,26,5)" fg:x="4058" fg:w="494"/><text x="0.5639%" y="287.50"></text></g><g><title>GraphBuilder::invoke (669 samples, 0.05%)</title><rect x="0.3123%" y="293" width="0.0517%" height="15" fill="rgb(249,33,26)" fg:x="4038" fg:w="669"/><text x="0.5623%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (901 samples, 0.07%)</title><rect x="0.2988%" y="325" width="0.0697%" height="15" fill="rgb(235,183,28)" fg:x="3863" fg:w="901"/><text x="0.5488%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (895 samples, 0.07%)</title><rect x="0.2993%" y="309" width="0.0692%" height="15" fill="rgb(221,5,38)" fg:x="3869" fg:w="895"/><text x="0.5493%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (1,125 samples, 0.09%)</title><rect x="0.2972%" y="341" width="0.0870%" height="15" fill="rgb(247,18,42)" fg:x="3843" fg:w="1125"/><text x="0.5472%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (1,178 samples, 0.09%)</title><rect x="0.2968%" y="357" width="0.0911%" height="15" fill="rgb(241,131,45)" fg:x="3837" fg:w="1178"/><text x="0.5468%" y="367.50"></text></g><g><title>ciBytecodeStream::get_method (215 samples, 0.02%)</title><rect x="0.3908%" y="357" width="0.0166%" height="15" fill="rgb(249,31,29)" fg:x="5052" fg:w="215"/><text x="0.6408%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (203 samples, 0.02%)</title><rect x="0.3917%" y="341" width="0.0157%" height="15" fill="rgb(225,111,53)" fg:x="5064" fg:w="203"/><text x="0.6417%" y="351.50"></text></g><g><title>GraphBuilder::invoke (1,521 samples, 0.12%)</title><rect x="0.2931%" y="373" width="0.1176%" height="15" fill="rgb(238,160,17)" fg:x="3789" fg:w="1521"/><text x="0.5431%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,932 samples, 0.15%)</title><rect x="0.2671%" y="405" width="0.1494%" height="15" fill="rgb(214,148,48)" fg:x="3453" fg:w="1932"/><text x="0.5171%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,911 samples, 0.15%)</title><rect x="0.2687%" y="389" width="0.1478%" height="15" fill="rgb(232,36,49)" fg:x="3474" fg:w="1911"/><text x="0.5187%" y="399.50"></text></g><g><title>GraphBuilder::push_scope (168 samples, 0.01%)</title><rect x="0.4174%" y="405" width="0.0130%" height="15" fill="rgb(209,103,24)" fg:x="5397" fg:w="168"/><text x="0.6674%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (156 samples, 0.01%)</title><rect x="0.4314%" y="405" width="0.0121%" height="15" fill="rgb(229,88,8)" fg:x="5578" fg:w="156"/><text x="0.6814%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (149 samples, 0.01%)</title><rect x="0.4320%" y="389" width="0.0115%" height="15" fill="rgb(213,181,19)" fg:x="5585" fg:w="149"/><text x="0.6820%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (2,364 samples, 0.18%)</title><rect x="0.2619%" y="421" width="0.1829%" height="15" fill="rgb(254,191,54)" fg:x="3386" fg:w="2364"/><text x="0.5119%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (2,386 samples, 0.18%)</title><rect x="0.2613%" y="437" width="0.1846%" height="15" fill="rgb(241,83,37)" fg:x="3378" fg:w="2386"/><text x="0.5113%" y="447.50"></text></g><g><title>ciMethod::ciMethod (194 samples, 0.02%)</title><rect x="0.4643%" y="373" width="0.0150%" height="15" fill="rgb(233,36,39)" fg:x="6003" fg:w="194"/><text x="0.7143%" y="383.50"></text></g><g><title>ciSignature::ciSignature (150 samples, 0.01%)</title><rect x="0.4677%" y="357" width="0.0116%" height="15" fill="rgb(226,3,54)" fg:x="6047" fg:w="150"/><text x="0.7177%" y="367.50"></text></g><g><title>ciObjectFactory::create_new_metadata (206 samples, 0.02%)</title><rect x="0.4636%" y="389" width="0.0159%" height="15" fill="rgb(245,192,40)" fg:x="5994" fg:w="206"/><text x="0.7136%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (224 samples, 0.02%)</title><rect x="0.4623%" y="405" width="0.0173%" height="15" fill="rgb(238,167,29)" fg:x="5977" fg:w="224"/><text x="0.7123%" y="415.50"></text></g><g><title>ciEnv::get_method_by_index_impl (358 samples, 0.03%)</title><rect x="0.4524%" y="421" width="0.0277%" height="15" fill="rgb(232,182,51)" fg:x="5849" fg:w="358"/><text x="0.7024%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (390 samples, 0.03%)</title><rect x="0.4501%" y="437" width="0.0302%" height="15" fill="rgb(231,60,39)" fg:x="5819" fg:w="390"/><text x="0.7001%" y="447.50"></text></g><g><title>GraphBuilder::invoke (3,032 samples, 0.23%)</title><rect x="0.2524%" y="453" width="0.2345%" height="15" fill="rgb(208,69,12)" fg:x="3263" fg:w="3032"/><text x="0.5024%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,509 samples, 0.27%)</title><rect x="0.2199%" y="469" width="0.2714%" height="15" fill="rgb(235,93,37)" fg:x="2843" fg:w="3509"/><text x="0.4699%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,571 samples, 0.28%)</title><rect x="0.2164%" y="485" width="0.2762%" height="15" fill="rgb(213,116,39)" fg:x="2798" fg:w="3571"/><text x="0.4664%" y="495.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,937 samples, 0.30%)</title><rect x="0.1934%" y="501" width="0.3045%" height="15" fill="rgb(222,207,29)" fg:x="2501" fg:w="3937"/><text x="0.4434%" y="511.50"></text></g><g><title>IR::IR (3,959 samples, 0.31%)</title><rect x="0.1928%" y="517" width="0.3062%" height="15" fill="rgb(206,96,30)" fg:x="2493" fg:w="3959"/><text x="0.4428%" y="527.50"></text></g><g><title>NullCheckEliminator::iterate_one (188 samples, 0.01%)</title><rect x="0.5172%" y="485" width="0.0145%" height="15" fill="rgb(218,138,4)" fg:x="6686" fg:w="188"/><text x="0.7672%" y="495.50"></text></g><g><title>IR::eliminate_null_checks (220 samples, 0.02%)</title><rect x="0.5155%" y="517" width="0.0170%" height="15" fill="rgb(250,191,14)" fg:x="6665" fg:w="220"/><text x="0.7655%" y="527.50"></text></g><g><title>Optimizer::eliminate_null_checks (219 samples, 0.02%)</title><rect x="0.5156%" y="501" width="0.0169%" height="15" fill="rgb(239,60,40)" fg:x="6666" fg:w="219"/><text x="0.7656%" y="511.50"></text></g><g><title>Compilation::build_hir (4,965 samples, 0.38%)</title><rect x="0.1611%" y="533" width="0.3840%" height="15" fill="rgb(206,27,48)" fg:x="2083" fg:w="4965"/><text x="0.4111%" y="543.50"></text></g><g><title>LIR_Assembler::emit_call (174 samples, 0.01%)</title><rect x="0.5540%" y="501" width="0.0135%" height="15" fill="rgb(225,35,8)" fg:x="7163" fg:w="174"/><text x="0.8040%" y="511.50"></text></g><g><title>LIR_Assembler::emit_op1 (182 samples, 0.01%)</title><rect x="0.5708%" y="501" width="0.0141%" height="15" fill="rgb(250,213,24)" fg:x="7380" fg:w="182"/><text x="0.8208%" y="511.50"></text></g><g><title>LIR_Assembler::emit_code (717 samples, 0.06%)</title><rect x="0.5470%" y="517" width="0.0555%" height="15" fill="rgb(247,123,22)" fg:x="7072" fg:w="717"/><text x="0.7970%" y="527.50"></text></g><g><title>CodeEmitInfo::record_debug_info (131 samples, 0.01%)</title><rect x="0.6087%" y="469" width="0.0101%" height="15" fill="rgb(231,138,38)" fg:x="7870" fg:w="131"/><text x="0.8587%" y="479.50"></text></g><g><title>LIR_Assembler::add_call_info (133 samples, 0.01%)</title><rect x="0.6087%" y="485" width="0.0103%" height="15" fill="rgb(231,145,46)" fg:x="7869" fg:w="133"/><text x="0.8587%" y="495.50"></text></g><g><title>CounterOverflowStub::emit_code (164 samples, 0.01%)</title><rect x="0.6083%" y="501" width="0.0127%" height="15" fill="rgb(251,118,11)" fg:x="7864" fg:w="164"/><text x="0.8583%" y="511.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (378 samples, 0.03%)</title><rect x="0.6074%" y="517" width="0.0292%" height="15" fill="rgb(217,147,25)" fg:x="7853" fg:w="378"/><text x="0.8574%" y="527.50"></text></g><g><title>Compilation::emit_code_body (1,205 samples, 0.09%)</title><rect x="0.5452%" y="533" width="0.0932%" height="15" fill="rgb(247,81,37)" fg:x="7048" fg:w="1205"/><text x="0.7952%" y="543.50"></text></g><g><title>LIRGenerator::move_to_phi (233 samples, 0.02%)</title><rect x="0.6536%" y="469" width="0.0180%" height="15" fill="rgb(209,12,38)" fg:x="8450" fg:w="233"/><text x="0.9036%" y="479.50"></text></g><g><title>PhiResolverState::reset (162 samples, 0.01%)</title><rect x="0.6591%" y="453" width="0.0125%" height="15" fill="rgb(227,1,9)" fg:x="8521" fg:w="162"/><text x="0.9091%" y="463.50"></text></g><g><title>LIRGenerator::do_Goto (264 samples, 0.02%)</title><rect x="0.6520%" y="485" width="0.0204%" height="15" fill="rgb(248,47,43)" fg:x="8429" fg:w="264"/><text x="0.9020%" y="495.50"></text></g><g><title>LIRGenerator::do_Invoke (142 samples, 0.01%)</title><rect x="0.6786%" y="485" width="0.0110%" height="15" fill="rgb(221,10,30)" fg:x="8773" fg:w="142"/><text x="0.9286%" y="495.50"></text></g><g><title>LIRGenerator::block_do (982 samples, 0.08%)</title><rect x="0.6392%" y="501" width="0.0760%" height="15" fill="rgb(210,229,1)" fg:x="8264" fg:w="982"/><text x="0.8892%" y="511.50"></text></g><g><title>BlockList::iterate_forward (989 samples, 0.08%)</title><rect x="0.6389%" y="517" width="0.0765%" height="15" fill="rgb(222,148,37)" fg:x="8260" fg:w="989"/><text x="0.8889%" y="527.50"></text></g><g><title>IntervalWalker::walk_to (131 samples, 0.01%)</title><rect x="0.7285%" y="469" width="0.0101%" height="15" fill="rgb(234,67,33)" fg:x="9418" fg:w="131"/><text x="0.9785%" y="479.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (167 samples, 0.01%)</title><rect x="0.7588%" y="437" width="0.0129%" height="15" fill="rgb(247,98,35)" fg:x="9810" fg:w="167"/><text x="1.0088%" y="447.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (489 samples, 0.04%)</title><rect x="0.7412%" y="453" width="0.0378%" height="15" fill="rgb(247,138,52)" fg:x="9582" fg:w="489"/><text x="0.9912%" y="463.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (160 samples, 0.01%)</title><rect x="0.7790%" y="453" width="0.0124%" height="15" fill="rgb(213,79,30)" fg:x="10071" fg:w="160"/><text x="1.0290%" y="463.50"></text></g><g><title>LinearScanWalker::activate_current (768 samples, 0.06%)</title><rect x="0.7387%" y="469" width="0.0594%" height="15" fill="rgb(246,177,23)" fg:x="9550" fg:w="768"/><text x="0.9887%" y="479.50"></text></g><g><title>IntervalWalker::walk_to (965 samples, 0.07%)</title><rect x="0.7237%" y="485" width="0.0746%" height="15" fill="rgb(230,62,27)" fg:x="9356" fg:w="965"/><text x="0.9737%" y="495.50"></text></g><g><title>LinearScan::allocate_registers (1,061 samples, 0.08%)</title><rect x="0.7219%" y="501" width="0.0821%" height="15" fill="rgb(216,154,8)" fg:x="9333" fg:w="1061"/><text x="0.9719%" y="511.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (167 samples, 0.01%)</title><rect x="0.8298%" y="469" width="0.0129%" height="15" fill="rgb(244,35,45)" fg:x="10728" fg:w="167"/><text x="1.0798%" y="479.50"></text></g><g><title>LinearScan::compute_oop_map (187 samples, 0.01%)</title><rect x="0.8441%" y="453" width="0.0145%" height="15" fill="rgb(251,115,12)" fg:x="10913" fg:w="187"/><text x="1.0941%" y="463.50"></text></g><g><title>LinearScan::compute_oop_map (206 samples, 0.02%)</title><rect x="0.8427%" y="469" width="0.0159%" height="15" fill="rgb(240,54,50)" fg:x="10895" fg:w="206"/><text x="1.0927%" y="479.50"></text></g><g><title>LinearScan::assign_reg_num (705 samples, 0.05%)</title><rect x="0.8044%" y="485" width="0.0545%" height="15" fill="rgb(233,84,52)" fg:x="10400" fg:w="705"/><text x="1.0544%" y="495.50"></text></g><g><title>LinearScan::assign_reg_num (729 samples, 0.06%)</title><rect x="0.8040%" y="501" width="0.0564%" height="15" fill="rgb(207,117,47)" fg:x="10394" fg:w="729"/><text x="1.0540%" y="511.50"></text></g><g><title>LinearScan::add_use (210 samples, 0.02%)</title><rect x="0.9059%" y="485" width="0.0162%" height="15" fill="rgb(249,43,39)" fg:x="11712" fg:w="210"/><text x="1.1559%" y="495.50"></text></g><g><title>LinearScan::build_intervals (894 samples, 0.07%)</title><rect x="0.8603%" y="501" width="0.0691%" height="15" fill="rgb(209,38,44)" fg:x="11123" fg:w="894"/><text x="1.1103%" y="511.50"></text></g><g><title>LinearScan::compute_local_live_sets (322 samples, 0.02%)</title><rect x="0.9344%" y="501" width="0.0249%" height="15" fill="rgb(236,212,23)" fg:x="12081" fg:w="322"/><text x="1.1844%" y="511.50"></text></g><g><title>LinearScan::resolve_data_flow (144 samples, 0.01%)</title><rect x="0.9686%" y="501" width="0.0111%" height="15" fill="rgb(242,79,21)" fg:x="12523" fg:w="144"/><text x="1.2186%" y="511.50"></text></g><g><title>LinearScan::do_linear_scan (3,528 samples, 0.27%)</title><rect x="0.7192%" y="517" width="0.2729%" height="15" fill="rgb(211,96,35)" fg:x="9298" fg:w="3528"/><text x="0.9692%" y="527.50"></text></g><g><title>Compilation::emit_lir (4,578 samples, 0.35%)</title><rect x="0.6384%" y="533" width="0.3541%" height="15" fill="rgb(253,215,40)" fg:x="8253" fg:w="4578"/><text x="0.8884%" y="543.50"></text></g><g><title>Compilation::compile_java_method (10,917 samples, 0.84%)</title><rect x="0.1605%" y="549" width="0.8444%" height="15" fill="rgb(211,81,21)" fg:x="2075" fg:w="10917"/><text x="0.4105%" y="559.50"></text></g><g><title>ciMethod::ensure_method_data (136 samples, 0.01%)</title><rect x="0.9944%" y="533" width="0.0105%" height="15" fill="rgb(208,190,38)" fg:x="12856" fg:w="136"/><text x="1.2444%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (131 samples, 0.01%)</title><rect x="0.9948%" y="517" width="0.0101%" height="15" fill="rgb(235,213,38)" fg:x="12861" fg:w="131"/><text x="1.2448%" y="527.50"></text></g><g><title>CodeBuffer::relocate_code_to (143 samples, 0.01%)</title><rect x="1.0319%" y="485" width="0.0111%" height="15" fill="rgb(237,122,38)" fg:x="13341" fg:w="143"/><text x="1.2819%" y="495.50"></text></g><g><title>CodeBuffer::copy_code_to (164 samples, 0.01%)</title><rect x="1.0316%" y="501" width="0.0127%" height="15" fill="rgb(244,218,35)" fg:x="13337" fg:w="164"/><text x="1.2816%" y="511.50"></text></g><g><title>nmethod::nmethod (320 samples, 0.02%)</title><rect x="1.0311%" y="517" width="0.0248%" height="15" fill="rgb(240,68,47)" fg:x="13331" fg:w="320"/><text x="1.2811%" y="527.50"></text></g><g><title>Compilation::compile_method (11,581 samples, 0.90%)</title><rect x="0.1603%" y="565" width="0.8958%" height="15" fill="rgb(210,16,53)" fg:x="2072" fg:w="11581"/><text x="0.4103%" y="575.50"></text></g><g><title>ciEnv::register_method (613 samples, 0.05%)</title><rect x="1.0086%" y="549" width="0.0474%" height="15" fill="rgb(235,124,12)" fg:x="13040" fg:w="613"/><text x="1.2586%" y="559.50"></text></g><g><title>nmethod::new_nmethod (550 samples, 0.04%)</title><rect x="1.0135%" y="533" width="0.0425%" height="15" fill="rgb(224,169,11)" fg:x="13103" fg:w="550"/><text x="1.2635%" y="543.50"></text></g><g><title>Compilation::Compilation (11,600 samples, 0.90%)</title><rect x="0.1600%" y="581" width="0.8972%" height="15" fill="rgb(250,166,2)" fg:x="2068" fg:w="11600"/><text x="0.4100%" y="591.50"></text></g><g><title>Compiler::compile_method (11,614 samples, 0.90%)</title><rect x="0.1590%" y="597" width="0.8983%" height="15" fill="rgb(242,216,29)" fg:x="2056" fg:w="11614"/><text x="0.4090%" y="607.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (12,140 samples, 0.94%)</title><rect x="0.1406%" y="613" width="0.9390%" height="15" fill="rgb(230,116,27)" fg:x="1818" fg:w="12140"/><text x="0.3906%" y="623.50"></text></g><g><title>Monitor::IWait (132 samples, 0.01%)</title><rect x="1.0864%" y="581" width="0.0102%" height="15" fill="rgb(228,99,48)" fg:x="14045" fg:w="132"/><text x="1.3364%" y="591.50"></text></g><g><title>Monitor::wait (141 samples, 0.01%)</title><rect x="1.0857%" y="597" width="0.0109%" height="15" fill="rgb(253,11,6)" fg:x="14037" fg:w="141"/><text x="1.3357%" y="607.50"></text></g><g><title>CompileQueue::get (247 samples, 0.02%)</title><rect x="1.0839%" y="613" width="0.0191%" height="15" fill="rgb(247,143,39)" fg:x="14013" fg:w="247"/><text x="1.3339%" y="623.50"></text></g><g><title>CompileBroker::compiler_thread_loop (12,459 samples, 0.96%)</title><rect x="0.1403%" y="629" width="0.9637%" height="15" fill="rgb(236,97,10)" fg:x="1814" fg:w="12459"/><text x="0.3903%" y="639.50"></text></g><g><title>__GI___clone (12,477 samples, 0.97%)</title><rect x="0.1390%" y="709" width="0.9651%" height="15" fill="rgb(233,208,19)" fg:x="1797" fg:w="12477"/><text x="0.3890%" y="719.50"></text></g><g><title>start_thread (12,462 samples, 0.96%)</title><rect x="0.1402%" y="693" width="0.9639%" height="15" fill="rgb(216,164,2)" fg:x="1812" fg:w="12462"/><text x="0.3902%" y="703.50"></text></g><g><title>thread_native_entry (12,462 samples, 0.96%)</title><rect x="0.1402%" y="677" width="0.9639%" height="15" fill="rgb(220,129,5)" fg:x="1812" fg:w="12462"/><text x="0.3902%" y="687.50"></text></g><g><title>Thread::call_run (12,462 samples, 0.96%)</title><rect x="0.1402%" y="661" width="0.9639%" height="15" fill="rgb(242,17,10)" fg:x="1812" fg:w="12462"/><text x="0.3902%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (12,460 samples, 0.96%)</title><rect x="0.1403%" y="645" width="0.9638%" height="15" fill="rgb(242,107,0)" fg:x="1814" fg:w="12460"/><text x="0.3903%" y="655.50"></text></g><g><title>C1_CompilerThre (14,295 samples, 1.11%)</title><rect x="0.0032%" y="725" width="1.1057%" height="15" fill="rgb(251,28,31)" fg:x="41" fg:w="14295"/><text x="0.2532%" y="735.50"></text></g><g><title>_dl_update_slotinfo (203 samples, 0.02%)</title><rect x="1.3765%" y="693" width="0.0157%" height="15" fill="rgb(233,223,10)" fg:x="17796" fg:w="203"/><text x="1.6265%" y="703.50"></text></g><g><title>[anon] (3,940 samples, 0.30%)</title><rect x="1.1420%" y="709" width="0.3048%" height="15" fill="rgb(215,21,27)" fg:x="14764" fg:w="3940"/><text x="1.3920%" y="719.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (143 samples, 0.01%)</title><rect x="1.4601%" y="453" width="0.0111%" height="15" fill="rgb(232,23,21)" fg:x="18877" fg:w="143"/><text x="1.7101%" y="463.50"></text></g><g><title>ciTypeFlow::df_flow_types (165 samples, 0.01%)</title><rect x="1.4585%" y="485" width="0.0128%" height="15" fill="rgb(244,5,23)" fg:x="18856" fg:w="165"/><text x="1.7085%" y="495.50"></text></g><g><title>ciTypeFlow::flow_block (165 samples, 0.01%)</title><rect x="1.4585%" y="469" width="0.0128%" height="15" fill="rgb(226,81,46)" fg:x="18856" fg:w="165"/><text x="1.7085%" y="479.50"></text></g><g><title>InlineTree::ok_to_inline (176 samples, 0.01%)</title><rect x="1.4580%" y="549" width="0.0136%" height="15" fill="rgb(247,70,30)" fg:x="18850" fg:w="176"/><text x="1.7080%" y="559.50"></text></g><g><title>ciMethod::get_flow_analysis (173 samples, 0.01%)</title><rect x="1.4582%" y="533" width="0.0134%" height="15" fill="rgb(212,68,19)" fg:x="18853" fg:w="173"/><text x="1.7082%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (173 samples, 0.01%)</title><rect x="1.4582%" y="517" width="0.0134%" height="15" fill="rgb(240,187,13)" fg:x="18853" fg:w="173"/><text x="1.7082%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (173 samples, 0.01%)</title><rect x="1.4582%" y="501" width="0.0134%" height="15" fill="rgb(223,113,26)" fg:x="18853" fg:w="173"/><text x="1.7082%" y="511.50"></text></g><g><title>Compile::call_generator (256 samples, 0.02%)</title><rect x="1.4522%" y="565" width="0.0198%" height="15" fill="rgb(206,192,2)" fg:x="18775" fg:w="256"/><text x="1.7022%" y="575.50"></text></g><g><title>ciTypeFlow::do_flow (136 samples, 0.01%)</title><rect x="1.4808%" y="421" width="0.0105%" height="15" fill="rgb(241,108,4)" fg:x="19144" fg:w="136"/><text x="1.7308%" y="431.50"></text></g><g><title>ciTypeFlow::flow_types (136 samples, 0.01%)</title><rect x="1.4808%" y="405" width="0.0105%" height="15" fill="rgb(247,173,49)" fg:x="19144" fg:w="136"/><text x="1.7308%" y="415.50"></text></g><g><title>InlineTree::ok_to_inline (175 samples, 0.01%)</title><rect x="1.4780%" y="453" width="0.0135%" height="15" fill="rgb(224,114,35)" fg:x="19108" fg:w="175"/><text x="1.7280%" y="463.50"></text></g><g><title>ciMethod::get_flow_analysis (147 samples, 0.01%)</title><rect x="1.4801%" y="437" width="0.0114%" height="15" fill="rgb(245,159,27)" fg:x="19136" fg:w="147"/><text x="1.7301%" y="447.50"></text></g><g><title>Compile::call_generator (204 samples, 0.02%)</title><rect x="1.4763%" y="469" width="0.0158%" height="15" fill="rgb(245,172,44)" fg:x="19086" fg:w="204"/><text x="1.7263%" y="479.50"></text></g><g><title>Parse::do_call (228 samples, 0.02%)</title><rect x="1.5277%" y="293" width="0.0176%" height="15" fill="rgb(236,23,11)" fg:x="19751" fg:w="228"/><text x="1.7777%" y="303.50"></text></g><g><title>Parse::do_one_block (435 samples, 0.03%)</title><rect x="1.5245%" y="325" width="0.0336%" height="15" fill="rgb(205,117,38)" fg:x="19710" fg:w="435"/><text x="1.7745%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (425 samples, 0.03%)</title><rect x="1.5253%" y="309" width="0.0329%" height="15" fill="rgb(237,72,25)" fg:x="19720" fg:w="425"/><text x="1.7753%" y="319.50"></text></g><g><title>Parse::do_all_blocks (444 samples, 0.03%)</title><rect x="1.5243%" y="341" width="0.0343%" height="15" fill="rgb(244,70,9)" fg:x="19707" fg:w="444"/><text x="1.7743%" y="351.50"></text></g><g><title>ParseGenerator::generate (521 samples, 0.04%)</title><rect x="1.5207%" y="373" width="0.0403%" height="15" fill="rgb(217,125,39)" fg:x="19661" fg:w="521"/><text x="1.7707%" y="383.50"></text></g><g><title>Parse::Parse (520 samples, 0.04%)</title><rect x="1.5208%" y="357" width="0.0402%" height="15" fill="rgb(235,36,10)" fg:x="19662" fg:w="520"/><text x="1.7708%" y="367.50"></text></g><g><title>Parse::do_call (802 samples, 0.06%)</title><rect x="1.5071%" y="389" width="0.0620%" height="15" fill="rgb(251,123,47)" fg:x="19484" fg:w="802"/><text x="1.7571%" y="399.50"></text></g><g><title>Parse::do_one_block (1,099 samples, 0.09%)</title><rect x="1.5034%" y="421" width="0.0850%" height="15" fill="rgb(221,13,13)" fg:x="19437" fg:w="1099"/><text x="1.7534%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (1,087 samples, 0.08%)</title><rect x="1.5043%" y="405" width="0.0841%" height="15" fill="rgb(238,131,9)" fg:x="19449" fg:w="1087"/><text x="1.7543%" y="415.50"></text></g><g><title>Parse::do_all_blocks (1,112 samples, 0.09%)</title><rect x="1.5033%" y="437" width="0.0860%" height="15" fill="rgb(211,50,8)" fg:x="19435" fg:w="1112"/><text x="1.7533%" y="447.50"></text></g><g><title>ParseGenerator::generate (1,205 samples, 0.09%)</title><rect x="1.4989%" y="469" width="0.0932%" height="15" fill="rgb(245,182,24)" fg:x="19379" fg:w="1205"/><text x="1.7489%" y="479.50"></text></g><g><title>Parse::Parse (1,205 samples, 0.09%)</title><rect x="1.4989%" y="453" width="0.0932%" height="15" fill="rgb(242,14,37)" fg:x="19379" fg:w="1205"/><text x="1.7489%" y="463.50"></text></g><g><title>Parse::do_all_blocks (140 samples, 0.01%)</title><rect x="1.5945%" y="421" width="0.0108%" height="15" fill="rgb(246,228,12)" fg:x="20615" fg:w="140"/><text x="1.8445%" y="431.50"></text></g><g><title>Parse::do_one_block (138 samples, 0.01%)</title><rect x="1.5947%" y="405" width="0.0107%" height="15" fill="rgb(213,55,15)" fg:x="20617" fg:w="138"/><text x="1.8447%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (134 samples, 0.01%)</title><rect x="1.5950%" y="389" width="0.0104%" height="15" fill="rgb(209,9,3)" fg:x="20621" fg:w="134"/><text x="1.8450%" y="399.50"></text></g><g><title>ParseGenerator::generate (148 samples, 0.01%)</title><rect x="1.5942%" y="453" width="0.0114%" height="15" fill="rgb(230,59,30)" fg:x="20611" fg:w="148"/><text x="1.8442%" y="463.50"></text></g><g><title>Parse::Parse (148 samples, 0.01%)</title><rect x="1.5942%" y="437" width="0.0114%" height="15" fill="rgb(209,121,21)" fg:x="20611" fg:w="148"/><text x="1.8442%" y="447.50"></text></g><g><title>PredictedCallGenerator::generate (209 samples, 0.02%)</title><rect x="1.5922%" y="469" width="0.0162%" height="15" fill="rgb(220,109,13)" fg:x="20585" fg:w="209"/><text x="1.8422%" y="479.50"></text></g><g><title>Parse::do_call (1,738 samples, 0.13%)</title><rect x="1.4763%" y="485" width="0.1344%" height="15" fill="rgb(232,18,1)" fg:x="19086" fg:w="1738"/><text x="1.7263%" y="495.50"></text></g><g><title>Parse::do_field_access (162 samples, 0.01%)</title><rect x="1.6123%" y="485" width="0.0125%" height="15" fill="rgb(215,41,42)" fg:x="20845" fg:w="162"/><text x="1.8623%" y="495.50"></text></g><g><title>Parse::do_all_blocks (2,007 samples, 0.16%)</title><rect x="1.4741%" y="533" width="0.1552%" height="15" fill="rgb(224,123,36)" fg:x="19058" fg:w="2007"/><text x="1.7241%" y="543.50"></text></g><g><title>Parse::do_one_block (2,007 samples, 0.16%)</title><rect x="1.4741%" y="517" width="0.1552%" height="15" fill="rgb(240,125,3)" fg:x="19058" fg:w="2007"/><text x="1.7241%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (2,000 samples, 0.15%)</title><rect x="1.4746%" y="501" width="0.1547%" height="15" fill="rgb(205,98,50)" fg:x="19065" fg:w="2000"/><text x="1.7246%" y="511.50"></text></g><g><title>ParseGenerator::generate (2,033 samples, 0.16%)</title><rect x="1.4722%" y="565" width="0.1572%" height="15" fill="rgb(205,185,37)" fg:x="19034" fg:w="2033"/><text x="1.7222%" y="575.50"></text></g><g><title>Parse::Parse (2,033 samples, 0.16%)</title><rect x="1.4722%" y="549" width="0.1572%" height="15" fill="rgb(238,207,15)" fg:x="19034" fg:w="2033"/><text x="1.7222%" y="559.50"></text></g><g><title>Parse::do_call (156 samples, 0.01%)</title><rect x="1.6385%" y="373" width="0.0121%" height="15" fill="rgb(213,199,42)" fg:x="21183" fg:w="156"/><text x="1.8885%" y="383.50"></text></g><g><title>Parse::do_one_block (233 samples, 0.02%)</title><rect x="1.6371%" y="405" width="0.0180%" height="15" fill="rgb(235,201,11)" fg:x="21165" fg:w="233"/><text x="1.8871%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (229 samples, 0.02%)</title><rect x="1.6374%" y="389" width="0.0177%" height="15" fill="rgb(207,46,11)" fg:x="21169" fg:w="229"/><text x="1.8874%" y="399.50"></text></g><g><title>Parse::do_all_blocks (237 samples, 0.02%)</title><rect x="1.6371%" y="421" width="0.0183%" height="15" fill="rgb(241,35,35)" fg:x="21165" fg:w="237"/><text x="1.8871%" y="431.50"></text></g><g><title>ParseGenerator::generate (258 samples, 0.02%)</title><rect x="1.6362%" y="453" width="0.0200%" height="15" fill="rgb(243,32,47)" fg:x="21154" fg:w="258"/><text x="1.8862%" y="463.50"></text></g><g><title>Parse::Parse (257 samples, 0.02%)</title><rect x="1.6363%" y="437" width="0.0199%" height="15" fill="rgb(247,202,23)" fg:x="21155" fg:w="257"/><text x="1.8863%" y="447.50"></text></g><g><title>Parse::do_call (379 samples, 0.03%)</title><rect x="1.6306%" y="469" width="0.0293%" height="15" fill="rgb(219,102,11)" fg:x="21081" fg:w="379"/><text x="1.8806%" y="479.50"></text></g><g><title>Parse::do_one_block (455 samples, 0.04%)</title><rect x="1.6300%" y="501" width="0.0352%" height="15" fill="rgb(243,110,44)" fg:x="21073" fg:w="455"/><text x="1.8800%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (452 samples, 0.03%)</title><rect x="1.6302%" y="485" width="0.0350%" height="15" fill="rgb(222,74,54)" fg:x="21076" fg:w="452"/><text x="1.8802%" y="495.50"></text></g><g><title>Parse::do_all_blocks (457 samples, 0.04%)</title><rect x="1.6300%" y="517" width="0.0353%" height="15" fill="rgb(216,99,12)" fg:x="21073" fg:w="457"/><text x="1.8800%" y="527.50"></text></g><g><title>ParseGenerator::generate (462 samples, 0.04%)</title><rect x="1.6297%" y="549" width="0.0357%" height="15" fill="rgb(226,22,26)" fg:x="21070" fg:w="462"/><text x="1.8797%" y="559.50"></text></g><g><title>Parse::Parse (462 samples, 0.04%)</title><rect x="1.6297%" y="533" width="0.0357%" height="15" fill="rgb(217,163,10)" fg:x="21070" fg:w="462"/><text x="1.8797%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (565 samples, 0.04%)</title><rect x="1.6295%" y="565" width="0.0437%" height="15" fill="rgb(213,25,53)" fg:x="21067" fg:w="565"/><text x="1.8795%" y="575.50"></text></g><g><title>Parse::do_call (2,876 samples, 0.22%)</title><rect x="1.4522%" y="581" width="0.2225%" height="15" fill="rgb(252,105,26)" fg:x="18775" fg:w="2876"/><text x="1.7022%" y="591.50"></text></g><g><title>Parse::do_all_blocks (2,890 samples, 0.22%)</title><rect x="1.4521%" y="629" width="0.2235%" height="15" fill="rgb(220,39,43)" fg:x="18773" fg:w="2890"/><text x="1.7021%" y="639.50"></text></g><g><title>Parse::do_one_block (2,890 samples, 0.22%)</title><rect x="1.4521%" y="613" width="0.2235%" height="15" fill="rgb(229,68,48)" fg:x="18773" fg:w="2890"/><text x="1.7021%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (2,890 samples, 0.22%)</title><rect x="1.4521%" y="597" width="0.2235%" height="15" fill="rgb(252,8,32)" fg:x="18773" fg:w="2890"/><text x="1.7021%" y="607.50"></text></g><g><title>C2Compiler::compile_method (2,926 samples, 0.23%)</title><rect x="1.4496%" y="693" width="0.2263%" height="15" fill="rgb(223,20,43)" fg:x="18741" fg:w="2926"/><text x="1.6996%" y="703.50"></text></g><g><title>Compile::Compile (2,926 samples, 0.23%)</title><rect x="1.4496%" y="677" width="0.2263%" height="15" fill="rgb(229,81,49)" fg:x="18741" fg:w="2926"/><text x="1.6996%" y="687.50"></text></g><g><title>ParseGenerator::generate (2,894 samples, 0.22%)</title><rect x="1.4521%" y="661" width="0.2238%" height="15" fill="rgb(236,28,36)" fg:x="18773" fg:w="2894"/><text x="1.7021%" y="671.50"></text></g><g><title>Parse::Parse (2,894 samples, 0.22%)</title><rect x="1.4521%" y="645" width="0.2238%" height="15" fill="rgb(249,185,26)" fg:x="18773" fg:w="2894"/><text x="1.7021%" y="655.50"></text></g><g><title>PhaseCFG::sched_call (237 samples, 0.02%)</title><rect x="1.6890%" y="629" width="0.0183%" height="15" fill="rgb(249,174,33)" fg:x="21836" fg:w="237"/><text x="1.9390%" y="639.50"></text></g><g><title>PhaseCFG::schedule_local (239 samples, 0.02%)</title><rect x="1.6890%" y="645" width="0.0185%" height="15" fill="rgb(233,201,37)" fg:x="21836" fg:w="239"/><text x="1.9390%" y="655.50"></text></g><g><title>PhaseCFG::do_global_code_motion (312 samples, 0.02%)</title><rect x="1.6836%" y="677" width="0.0241%" height="15" fill="rgb(221,78,26)" fg:x="21767" fg:w="312"/><text x="1.9336%" y="687.50"></text></g><g><title>PhaseCFG::global_code_motion (312 samples, 0.02%)</title><rect x="1.6836%" y="661" width="0.0241%" height="15" fill="rgb(250,127,30)" fg:x="21767" fg:w="312"/><text x="1.9336%" y="671.50"></text></g><g><title>Compile::Code_Gen (466 samples, 0.04%)</title><rect x="1.6764%" y="693" width="0.0360%" height="15" fill="rgb(230,49,44)" fg:x="21673" fg:w="466"/><text x="1.9264%" y="703.50"></text></g><g><title>OopFlow::build_oop_map (159 samples, 0.01%)</title><rect x="1.7638%" y="613" width="0.0123%" height="15" fill="rgb(229,67,23)" fg:x="22803" fg:w="159"/><text x="2.0138%" y="623.50"></text></g><g><title>OopFlow::compute_reach (257 samples, 0.02%)</title><rect x="1.7563%" y="629" width="0.0199%" height="15" fill="rgb(249,83,47)" fg:x="22706" fg:w="257"/><text x="2.0063%" y="639.50"></text></g><g><title>Compile::BuildOopMaps (904 samples, 0.07%)</title><rect x="1.7135%" y="645" width="0.0699%" height="15" fill="rgb(215,43,3)" fg:x="22153" fg:w="904"/><text x="1.9635%" y="655.50"></text></g><g><title>Compile::scratch_emit_size (224 samples, 0.02%)</title><rect x="1.8008%" y="613" width="0.0173%" height="15" fill="rgb(238,154,13)" fg:x="23282" fg:w="224"/><text x="2.0508%" y="623.50"></text></g><g><title>Compile::shorten_branches (418 samples, 0.03%)</title><rect x="1.7883%" y="629" width="0.0323%" height="15" fill="rgb(219,56,2)" fg:x="23120" fg:w="418"/><text x="2.0383%" y="639.50"></text></g><g><title>Compile::init_buffer (482 samples, 0.04%)</title><rect x="1.7834%" y="645" width="0.0373%" height="15" fill="rgb(233,0,4)" fg:x="23057" fg:w="482"/><text x="2.0334%" y="655.50"></text></g><g><title>Compile::Output (1,399 samples, 0.11%)</title><rect x="1.7128%" y="661" width="0.1082%" height="15" fill="rgb(235,30,7)" fg:x="22144" fg:w="1399"/><text x="1.9628%" y="671.50"></text></g><g><title>Compile::Process_OopMap_Node (280 samples, 0.02%)</title><rect x="1.8359%" y="645" width="0.0217%" height="15" fill="rgb(250,79,13)" fg:x="23736" fg:w="280"/><text x="2.0859%" y="655.50"></text></g><g><title>Compile::fill_buffer (681 samples, 0.05%)</title><rect x="1.8212%" y="661" width="0.0527%" height="15" fill="rgb(211,146,34)" fg:x="23546" fg:w="681"/><text x="2.0712%" y="671.50"></text></g><g><title>Matcher::find_shared (416 samples, 0.03%)</title><rect x="1.8825%" y="645" width="0.0322%" height="15" fill="rgb(228,22,38)" fg:x="24338" fg:w="416"/><text x="2.1325%" y="655.50"></text></g><g><title>Arena::contains (481 samples, 0.04%)</title><rect x="1.9485%" y="629" width="0.0372%" height="15" fill="rgb(235,168,5)" fg:x="25191" fg:w="481"/><text x="2.1985%" y="639.50"></text></g><g><title>Matcher::match_sfpt (176 samples, 0.01%)</title><rect x="1.9899%" y="629" width="0.0136%" height="15" fill="rgb(221,155,16)" fg:x="25727" fg:w="176"/><text x="2.2399%" y="639.50"></text></g><g><title>Matcher::Label_Root (165 samples, 0.01%)</title><rect x="2.0369%" y="581" width="0.0128%" height="15" fill="rgb(215,215,53)" fg:x="26334" fg:w="165"/><text x="2.2869%" y="591.50"></text></g><g><title>Matcher::Label_Root (391 samples, 0.03%)</title><rect x="2.0287%" y="597" width="0.0302%" height="15" fill="rgb(223,4,10)" fg:x="26228" fg:w="391"/><text x="2.2787%" y="607.50"></text></g><g><title>Matcher::Label_Root (598 samples, 0.05%)</title><rect x="2.0206%" y="613" width="0.0463%" height="15" fill="rgb(234,103,6)" fg:x="26123" fg:w="598"/><text x="2.2706%" y="623.50"></text></g><g><title>Matcher::ReduceInst_Interior (210 samples, 0.02%)</title><rect x="2.0694%" y="597" width="0.0162%" height="15" fill="rgb(227,97,0)" fg:x="26754" fg:w="210"/><text x="2.3194%" y="607.50"></text></g><g><title>Matcher::ReduceInst (382 samples, 0.03%)</title><rect x="2.0668%" y="613" width="0.0295%" height="15" fill="rgb(234,150,53)" fg:x="26721" fg:w="382"/><text x="2.3168%" y="623.50"></text></g><g><title>Matcher::match_tree (1,221 samples, 0.09%)</title><rect x="2.0036%" y="629" width="0.0944%" height="15" fill="rgb(228,201,54)" fg:x="25903" fg:w="1221"/><text x="2.2536%" y="639.50"></text></g><g><title>Matcher::xform (2,499 samples, 0.19%)</title><rect x="1.9162%" y="645" width="0.1933%" height="15" fill="rgb(222,22,37)" fg:x="24773" fg:w="2499"/><text x="2.1662%" y="655.50"></text></g><g><title>Matcher::match (3,043 samples, 0.24%)</title><rect x="1.8750%" y="661" width="0.2354%" height="15" fill="rgb(237,53,32)" fg:x="24241" fg:w="3043"/><text x="2.1250%" y="671.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (208 samples, 0.02%)</title><rect x="2.1105%" y="661" width="0.0161%" height="15" fill="rgb(233,25,53)" fg:x="27285" fg:w="208"/><text x="2.3605%" y="671.50"></text></g><g><title>PhaseCFG::PhaseCFG (177 samples, 0.01%)</title><rect x="2.1265%" y="661" width="0.0137%" height="15" fill="rgb(210,40,34)" fg:x="27493" fg:w="177"/><text x="2.3765%" y="671.50"></text></g><g><title>PhaseCFG::build_cfg (170 samples, 0.01%)</title><rect x="2.1271%" y="645" width="0.0131%" height="15" fill="rgb(241,220,44)" fg:x="27500" fg:w="170"/><text x="2.3771%" y="655.50"></text></g><g><title>Node_Backward_Iterator::next (282 samples, 0.02%)</title><rect x="2.2057%" y="613" width="0.0218%" height="15" fill="rgb(235,28,35)" fg:x="28516" fg:w="282"/><text x="2.4557%" y="623.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (130 samples, 0.01%)</title><rect x="2.2275%" y="613" width="0.0101%" height="15" fill="rgb(210,56,17)" fg:x="28798" fg:w="130"/><text x="2.4775%" y="623.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (177 samples, 0.01%)</title><rect x="2.2375%" y="613" width="0.0137%" height="15" fill="rgb(224,130,29)" fg:x="28928" fg:w="177"/><text x="2.4875%" y="623.50"></text></g><g><title>PhaseCFG::schedule_late (807 samples, 0.06%)</title><rect x="2.1956%" y="629" width="0.0624%" height="15" fill="rgb(235,212,8)" fg:x="28386" fg:w="807"/><text x="2.4456%" y="639.50"></text></g><g><title>PhaseCFG::select (130 samples, 0.01%)</title><rect x="2.2914%" y="613" width="0.0101%" height="15" fill="rgb(223,33,50)" fg:x="29624" fg:w="130"/><text x="2.5414%" y="623.50"></text></g><g><title>PhaseCFG::schedule_local (687 samples, 0.05%)</title><rect x="2.2580%" y="629" width="0.0531%" height="15" fill="rgb(219,149,13)" fg:x="29193" fg:w="687"/><text x="2.5080%" y="639.50"></text></g><g><title>RegMask::Size (131 samples, 0.01%)</title><rect x="2.3405%" y="613" width="0.0101%" height="15" fill="rgb(250,156,29)" fg:x="30259" fg:w="131"/><text x="2.5905%" y="623.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (523 samples, 0.04%)</title><rect x="2.3153%" y="629" width="0.0405%" height="15" fill="rgb(216,193,19)" fg:x="29933" fg:w="523"/><text x="2.5653%" y="639.50"></text></g><g><title>PhaseIFG::init (207 samples, 0.02%)</title><rect x="2.3638%" y="629" width="0.0160%" height="15" fill="rgb(216,135,14)" fg:x="30561" fg:w="207"/><text x="2.6138%" y="639.50"></text></g><g><title>PhaseLive::add_livein (205 samples, 0.02%)</title><rect x="2.4060%" y="613" width="0.0159%" height="15" fill="rgb(241,47,5)" fg:x="31106" fg:w="205"/><text x="2.6560%" y="623.50"></text></g><g><title>PhaseLive::add_liveout (383 samples, 0.03%)</title><rect x="2.4219%" y="613" width="0.0296%" height="15" fill="rgb(233,42,35)" fg:x="31311" fg:w="383"/><text x="2.6719%" y="623.50"></text></g><g><title>PhaseLive::compute (929 samples, 0.07%)</title><rect x="2.3799%" y="629" width="0.0719%" height="15" fill="rgb(231,13,6)" fg:x="30768" fg:w="929"/><text x="2.6299%" y="639.50"></text></g><g><title>PhaseCFG::global_code_motion (3,881 samples, 0.30%)</title><rect x="2.1534%" y="645" width="0.3002%" height="15" fill="rgb(207,181,40)" fg:x="27840" fg:w="3881"/><text x="2.4034%" y="655.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,056 samples, 0.31%)</title><rect x="2.1402%" y="661" width="0.3137%" height="15" fill="rgb(254,173,49)" fg:x="27670" fg:w="4056"/><text x="2.3902%" y="671.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,074 samples, 0.08%)</title><rect x="2.4756%" y="645" width="0.0831%" height="15" fill="rgb(221,1,38)" fg:x="32006" fg:w="1074"/><text x="2.7256%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (306 samples, 0.02%)</title><rect x="2.6057%" y="629" width="0.0237%" height="15" fill="rgb(206,124,46)" fg:x="33688" fg:w="306"/><text x="2.8557%" y="639.50"></text></g><g><title>PhaseChaitin::bias_color (167 samples, 0.01%)</title><rect x="2.6294%" y="629" width="0.0129%" height="15" fill="rgb(249,21,11)" fg:x="33994" fg:w="167"/><text x="2.8794%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (360 samples, 0.03%)</title><rect x="2.6776%" y="613" width="0.0278%" height="15" fill="rgb(222,201,40)" fg:x="34618" fg:w="360"/><text x="2.9276%" y="623.50"></text></g><g><title>PhaseIFG::re_insert (823 samples, 0.06%)</title><rect x="2.6431%" y="629" width="0.0637%" height="15" fill="rgb(235,61,29)" fg:x="34171" fg:w="823"/><text x="2.8931%" y="639.50"></text></g><g><title>RegMask::clear_to_sets (177 samples, 0.01%)</title><rect x="2.7067%" y="629" width="0.0137%" height="15" fill="rgb(219,207,3)" fg:x="34994" fg:w="177"/><text x="2.9567%" y="639.50"></text></g><g><title>PhaseChaitin::Select (2,094 samples, 0.16%)</title><rect x="2.5587%" y="645" width="0.1620%" height="15" fill="rgb(222,56,46)" fg:x="33080" fg:w="2094"/><text x="2.8087%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (305 samples, 0.02%)</title><rect x="2.7434%" y="629" width="0.0236%" height="15" fill="rgb(239,76,54)" fg:x="35468" fg:w="305"/><text x="2.9934%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (381 samples, 0.03%)</title><rect x="2.8067%" y="613" width="0.0295%" height="15" fill="rgb(231,124,27)" fg:x="36287" fg:w="381"/><text x="3.0567%" y="623.50"></text></g><g><title>PhaseIFG::remove_node (898 samples, 0.07%)</title><rect x="2.7670%" y="629" width="0.0695%" height="15" fill="rgb(249,195,6)" fg:x="35773" fg:w="898"/><text x="3.0170%" y="639.50"></text></g><g><title>PhaseChaitin::Simplify (1,498 samples, 0.12%)</title><rect x="2.7207%" y="645" width="0.1159%" height="15" fill="rgb(237,174,47)" fg:x="35174" fg:w="1498"/><text x="2.9707%" y="655.50"></text></g><g><title>MachNode::rematerialize (136 samples, 0.01%)</title><rect x="3.0505%" y="629" width="0.0105%" height="15" fill="rgb(206,201,31)" fg:x="39439" fg:w="136"/><text x="3.3005%" y="639.50"></text></g><g><title>Node::rematerialize (162 samples, 0.01%)</title><rect x="3.0645%" y="629" width="0.0125%" height="15" fill="rgb(231,57,52)" fg:x="39620" fg:w="162"/><text x="3.3145%" y="639.50"></text></g><g><title>PhaseChaitin::split_USE (192 samples, 0.01%)</title><rect x="3.0895%" y="629" width="0.0149%" height="15" fill="rgb(248,177,22)" fg:x="39943" fg:w="192"/><text x="3.3395%" y="639.50"></text></g><g><title>PhaseChaitin::Split (3,556 samples, 0.28%)</title><rect x="2.8365%" y="645" width="0.2751%" height="15" fill="rgb(215,211,37)" fg:x="36672" fg:w="3556"/><text x="3.0865%" y="655.50"></text></g><g><title>IndexSet::IndexSet (258 samples, 0.02%)</title><rect x="3.1844%" y="629" width="0.0200%" height="15" fill="rgb(241,128,51)" fg:x="41170" fg:w="258"/><text x="3.4344%" y="639.50"></text></g><g><title>PhaseChaitin::raise_pressure (150 samples, 0.01%)</title><rect x="3.2622%" y="613" width="0.0116%" height="15" fill="rgb(227,165,31)" fg:x="42176" fg:w="150"/><text x="3.5122%" y="623.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (781 samples, 0.06%)</title><rect x="3.2138%" y="629" width="0.0604%" height="15" fill="rgb(228,167,24)" fg:x="41550" fg:w="781"/><text x="3.4638%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (167 samples, 0.01%)</title><rect x="3.3060%" y="613" width="0.0129%" height="15" fill="rgb(228,143,12)" fg:x="42742" fg:w="167"/><text x="3.5560%" y="623.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (546 samples, 0.04%)</title><rect x="3.2833%" y="629" width="0.0422%" height="15" fill="rgb(249,149,8)" fg:x="42448" fg:w="546"/><text x="3.5333%" y="639.50"></text></g><g><title>IndexSet::alloc_block_containing (148 samples, 0.01%)</title><rect x="3.4835%" y="613" width="0.0114%" height="15" fill="rgb(243,35,44)" fg:x="45037" fg:w="148"/><text x="3.7335%" y="623.50"></text></g><g><title>IndexSetIterator::advance_and_next (879 samples, 0.07%)</title><rect x="3.4961%" y="613" width="0.0680%" height="15" fill="rgb(246,89,9)" fg:x="45200" fg:w="879"/><text x="3.7461%" y="623.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,091 samples, 0.24%)</title><rect x="3.3255%" y="629" width="0.2391%" height="15" fill="rgb(233,213,13)" fg:x="42994" fg:w="3091"/><text x="3.5755%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (196 samples, 0.02%)</title><rect x="3.6147%" y="613" width="0.0152%" height="15" fill="rgb(233,141,41)" fg:x="46733" fg:w="196"/><text x="3.8647%" y="623.50"></text></g><g><title>RegMask::Size (362 samples, 0.03%)</title><rect x="3.6299%" y="613" width="0.0280%" height="15" fill="rgb(239,167,4)" fg:x="46929" fg:w="362"/><text x="3.8799%" y="623.50"></text></g><g><title>RegMask::smear_to_sets (792 samples, 0.06%)</title><rect x="3.6579%" y="613" width="0.0613%" height="15" fill="rgb(209,217,16)" fg:x="47291" fg:w="792"/><text x="3.9079%" y="623.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,900 samples, 0.15%)</title><rect x="3.5728%" y="629" width="0.1470%" height="15" fill="rgb(219,88,35)" fg:x="46191" fg:w="1900"/><text x="3.8228%" y="639.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,961 samples, 0.62%)</title><rect x="3.1116%" y="645" width="0.6158%" height="15" fill="rgb(220,193,23)" fg:x="40228" fg:w="7961"/><text x="3.3616%" y="655.50"></text></g><g><title>PhaseChaitin::interfere_with_live (407 samples, 0.03%)</title><rect x="3.7394%" y="629" width="0.0315%" height="15" fill="rgb(230,90,52)" fg:x="48345" fg:w="407"/><text x="3.9894%" y="639.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (570 samples, 0.04%)</title><rect x="3.7273%" y="645" width="0.0441%" height="15" fill="rgb(252,106,19)" fg:x="48189" fg:w="570"/><text x="3.9773%" y="655.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (134 samples, 0.01%)</title><rect x="3.7714%" y="645" width="0.0104%" height="15" fill="rgb(206,74,20)" fg:x="48759" fg:w="134"/><text x="4.0214%" y="655.50"></text></g><g><title>RegMask::Size (1,386 samples, 0.11%)</title><rect x="3.9759%" y="629" width="0.1072%" height="15" fill="rgb(230,138,44)" fg:x="51403" fg:w="1386"/><text x="4.2259%" y="639.50"></text></g><g><title>RegMask::clear_to_sets (224 samples, 0.02%)</title><rect x="4.0831%" y="629" width="0.0173%" height="15" fill="rgb(235,182,43)" fg:x="52789" fg:w="224"/><text x="4.3331%" y="639.50"></text></g><g><title>RegMask::is_bound1 (177 samples, 0.01%)</title><rect x="4.1096%" y="629" width="0.0137%" height="15" fill="rgb(242,16,51)" fg:x="53131" fg:w="177"/><text x="4.3596%" y="639.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,485 samples, 0.35%)</title><rect x="3.7970%" y="645" width="0.3469%" height="15" fill="rgb(248,9,4)" fg:x="49090" fg:w="4485"/><text x="4.0470%" y="655.50"></text></g><g><title>PhaseChaitin::merge_multidefs (631 samples, 0.05%)</title><rect x="4.1440%" y="645" width="0.0488%" height="15" fill="rgb(210,31,22)" fg:x="53576" fg:w="631"/><text x="4.3940%" y="655.50"></text></g><g><title>PhaseChaitin::elide_copy (2,424 samples, 0.19%)</title><rect x="4.3679%" y="629" width="0.1875%" height="15" fill="rgb(239,54,39)" fg:x="56470" fg:w="2424"/><text x="4.6179%" y="639.50"></text></g><g><title>find_lowest_bit (447 samples, 0.03%)</title><rect x="4.5690%" y="629" width="0.0346%" height="15" fill="rgb(230,99,41)" fg:x="59070" fg:w="447"/><text x="4.8190%" y="639.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,316 samples, 0.41%)</title><rect x="4.1928%" y="645" width="0.4112%" height="15" fill="rgb(253,106,12)" fg:x="54207" fg:w="5316"/><text x="4.4428%" y="655.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (211 samples, 0.02%)</title><rect x="4.6041%" y="645" width="0.0163%" height="15" fill="rgb(213,46,41)" fg:x="59524" fg:w="211"/><text x="4.8541%" y="655.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (168 samples, 0.01%)</title><rect x="4.6211%" y="629" width="0.0130%" height="15" fill="rgb(215,133,35)" fg:x="59744" fg:w="168"/><text x="4.8711%" y="639.50"></text></g><g><title>PhaseCFG::is_uncommon (131 samples, 0.01%)</title><rect x="4.6380%" y="613" width="0.0101%" height="15" fill="rgb(213,28,5)" fg:x="59963" fg:w="131"/><text x="4.8880%" y="623.50"></text></g><g><title>IndexSet::lrg_union (299 samples, 0.02%)</title><rect x="4.6514%" y="597" width="0.0231%" height="15" fill="rgb(215,77,49)" fg:x="60136" fg:w="299"/><text x="4.9014%" y="607.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (323 samples, 0.02%)</title><rect x="4.6756%" y="597" width="0.0250%" height="15" fill="rgb(248,100,22)" fg:x="60448" fg:w="323"/><text x="4.9256%" y="607.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (778 samples, 0.06%)</title><rect x="4.6482%" y="613" width="0.0602%" height="15" fill="rgb(208,67,9)" fg:x="60094" fg:w="778"/><text x="4.8982%" y="623.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,139 samples, 0.09%)</title><rect x="4.6204%" y="645" width="0.0881%" height="15" fill="rgb(219,133,21)" fg:x="59735" fg:w="1139"/><text x="4.8704%" y="655.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (962 samples, 0.07%)</title><rect x="4.6341%" y="629" width="0.0744%" height="15" fill="rgb(246,46,29)" fg:x="59912" fg:w="962"/><text x="4.8841%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (487 samples, 0.04%)</title><rect x="4.7441%" y="629" width="0.0377%" height="15" fill="rgb(246,185,52)" fg:x="61334" fg:w="487"/><text x="4.9941%" y="639.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (947 samples, 0.07%)</title><rect x="4.7086%" y="645" width="0.0732%" height="15" fill="rgb(252,136,11)" fg:x="60875" fg:w="947"/><text x="4.9586%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (397 samples, 0.03%)</title><rect x="4.8183%" y="629" width="0.0307%" height="15" fill="rgb(219,138,53)" fg:x="62294" fg:w="397"/><text x="5.0683%" y="639.50"></text></g><g><title>PhaseIFG::SquareUp (872 samples, 0.07%)</title><rect x="4.7818%" y="645" width="0.0674%" height="15" fill="rgb(211,51,23)" fg:x="61822" fg:w="872"/><text x="5.0318%" y="655.50"></text></g><g><title>IndexSet::initialize (188 samples, 0.01%)</title><rect x="4.8584%" y="629" width="0.0145%" height="15" fill="rgb(247,221,28)" fg:x="62812" fg:w="188"/><text x="5.1084%" y="639.50"></text></g><g><title>PhaseIFG::init (384 samples, 0.03%)</title><rect x="4.8493%" y="645" width="0.0297%" height="15" fill="rgb(251,222,45)" fg:x="62694" fg:w="384"/><text x="5.0993%" y="655.50"></text></g><g><title>IndexSet::alloc_block_containing (190 samples, 0.01%)</title><rect x="5.0520%" y="613" width="0.0147%" height="15" fill="rgb(217,162,53)" fg:x="65315" fg:w="190"/><text x="5.3020%" y="623.50"></text></g><g><title>IndexSetIterator::advance_and_next (326 samples, 0.03%)</title><rect x="5.0698%" y="613" width="0.0252%" height="15" fill="rgb(229,93,14)" fg:x="65545" fg:w="326"/><text x="5.3198%" y="623.50"></text></g><g><title>PhaseLive::add_liveout (1,354 samples, 0.10%)</title><rect x="4.9925%" y="629" width="0.1047%" height="15" fill="rgb(209,67,49)" fg:x="64545" fg:w="1354"/><text x="5.2425%" y="639.50"></text></g><g><title>PhaseLive::compute (2,832 samples, 0.22%)</title><rect x="4.8794%" y="645" width="0.2191%" height="15" fill="rgb(213,87,29)" fg:x="63083" fg:w="2832"/><text x="5.1294%" y="655.50"></text></g><g><title>PhaseChaitin::Register_Allocate (34,248 samples, 2.65%)</title><rect x="2.4639%" y="661" width="2.6490%" height="15" fill="rgb(205,151,52)" fg:x="31855" fg:w="34248"/><text x="2.7139%" y="671.50">Ph..</text></g><g><title>Compile::Code_Gen (44,027 samples, 3.41%)</title><rect x="1.7124%" y="677" width="3.4054%" height="15" fill="rgb(253,215,39)" fg:x="22139" fg:w="44027"/><text x="1.9624%" y="687.50">Com..</text></g><g><title>Parse::do_one_block (203 samples, 0.02%)</title><rect x="5.1437%" y="53" width="0.0157%" height="15" fill="rgb(221,220,41)" fg:x="66501" fg:w="203"/><text x="5.3937%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (200 samples, 0.02%)</title><rect x="5.1440%" y="37" width="0.0155%" height="15" fill="rgb(218,133,21)" fg:x="66504" fg:w="200"/><text x="5.3940%" y="47.50"></text></g><g><title>Parse::do_all_blocks (205 samples, 0.02%)</title><rect x="5.1437%" y="69" width="0.0159%" height="15" fill="rgb(221,193,43)" fg:x="66501" fg:w="205"/><text x="5.3937%" y="79.50"></text></g><g><title>ParseGenerator::generate (237 samples, 0.02%)</title><rect x="5.1421%" y="101" width="0.0183%" height="15" fill="rgb(240,128,52)" fg:x="66480" fg:w="237"/><text x="5.3921%" y="111.50"></text></g><g><title>Parse::Parse (237 samples, 0.02%)</title><rect x="5.1421%" y="85" width="0.0183%" height="15" fill="rgb(253,114,12)" fg:x="66480" fg:w="237"/><text x="5.3921%" y="95.50"></text></g><g><title>Parse::do_call (326 samples, 0.03%)</title><rect x="5.1370%" y="117" width="0.0252%" height="15" fill="rgb(215,223,47)" fg:x="66414" fg:w="326"/><text x="5.3870%" y="127.50"></text></g><g><title>Parse::do_one_block (450 samples, 0.03%)</title><rect x="5.1345%" y="149" width="0.0348%" height="15" fill="rgb(248,225,23)" fg:x="66382" fg:w="450"/><text x="5.3845%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (441 samples, 0.03%)</title><rect x="5.1352%" y="133" width="0.0341%" height="15" fill="rgb(250,108,0)" fg:x="66391" fg:w="441"/><text x="5.3852%" y="143.50"></text></g><g><title>Parse::do_all_blocks (454 samples, 0.04%)</title><rect x="5.1345%" y="165" width="0.0351%" height="15" fill="rgb(228,208,7)" fg:x="66381" fg:w="454"/><text x="5.3845%" y="175.50"></text></g><g><title>ParseGenerator::generate (489 samples, 0.04%)</title><rect x="5.1328%" y="197" width="0.0378%" height="15" fill="rgb(244,45,10)" fg:x="66360" fg:w="489"/><text x="5.3828%" y="207.50"></text></g><g><title>Parse::Parse (489 samples, 0.04%)</title><rect x="5.1328%" y="181" width="0.0378%" height="15" fill="rgb(207,125,25)" fg:x="66360" fg:w="489"/><text x="5.3828%" y="191.50"></text></g><g><title>Parse::do_call (604 samples, 0.05%)</title><rect x="5.1262%" y="213" width="0.0467%" height="15" fill="rgb(210,195,18)" fg:x="66274" fg:w="604"/><text x="5.3762%" y="223.50"></text></g><g><title>Parse::do_one_block (694 samples, 0.05%)</title><rect x="5.1254%" y="245" width="0.0537%" height="15" fill="rgb(249,80,12)" fg:x="66264" fg:w="694"/><text x="5.3754%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (691 samples, 0.05%)</title><rect x="5.1256%" y="229" width="0.0534%" height="15" fill="rgb(221,65,9)" fg:x="66267" fg:w="691"/><text x="5.3756%" y="239.50"></text></g><g><title>ParseGenerator::generate (698 samples, 0.05%)</title><rect x="5.1252%" y="293" width="0.0540%" height="15" fill="rgb(235,49,36)" fg:x="66261" fg:w="698"/><text x="5.3752%" y="303.50"></text></g><g><title>Parse::Parse (698 samples, 0.05%)</title><rect x="5.1252%" y="277" width="0.0540%" height="15" fill="rgb(225,32,20)" fg:x="66261" fg:w="698"/><text x="5.3752%" y="287.50"></text></g><g><title>Parse::do_all_blocks (695 samples, 0.05%)</title><rect x="5.1254%" y="261" width="0.0538%" height="15" fill="rgb(215,141,46)" fg:x="66264" fg:w="695"/><text x="5.3754%" y="271.50"></text></g><g><title>Parse::do_call (817 samples, 0.06%)</title><rect x="5.1215%" y="309" width="0.0632%" height="15" fill="rgb(250,160,47)" fg:x="66213" fg:w="817"/><text x="5.3715%" y="319.50"></text></g><g><title>ParseGenerator::generate (828 samples, 0.06%)</title><rect x="5.1214%" y="389" width="0.0640%" height="15" fill="rgb(216,222,40)" fg:x="66212" fg:w="828"/><text x="5.3714%" y="399.50"></text></g><g><title>Parse::Parse (828 samples, 0.06%)</title><rect x="5.1214%" y="373" width="0.0640%" height="15" fill="rgb(234,217,39)" fg:x="66212" fg:w="828"/><text x="5.3714%" y="383.50"></text></g><g><title>Parse::do_all_blocks (827 samples, 0.06%)</title><rect x="5.1215%" y="357" width="0.0640%" height="15" fill="rgb(207,178,40)" fg:x="66213" fg:w="827"/><text x="5.3715%" y="367.50"></text></g><g><title>Parse::do_one_block (827 samples, 0.06%)</title><rect x="5.1215%" y="341" width="0.0640%" height="15" fill="rgb(221,136,13)" fg:x="66213" fg:w="827"/><text x="5.3715%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (827 samples, 0.06%)</title><rect x="5.1215%" y="325" width="0.0640%" height="15" fill="rgb(249,199,10)" fg:x="66213" fg:w="827"/><text x="5.3715%" y="335.50"></text></g><g><title>Parse::do_call (976 samples, 0.08%)</title><rect x="5.1190%" y="405" width="0.0755%" height="15" fill="rgb(249,222,13)" fg:x="66181" fg:w="976"/><text x="5.3690%" y="415.50"></text></g><g><title>ParseGenerator::generate (978 samples, 0.08%)</title><rect x="5.1190%" y="485" width="0.0756%" height="15" fill="rgb(244,185,38)" fg:x="66181" fg:w="978"/><text x="5.3690%" y="495.50"></text></g><g><title>Parse::Parse (978 samples, 0.08%)</title><rect x="5.1190%" y="469" width="0.0756%" height="15" fill="rgb(236,202,9)" fg:x="66181" fg:w="978"/><text x="5.3690%" y="479.50"></text></g><g><title>Parse::do_all_blocks (978 samples, 0.08%)</title><rect x="5.1190%" y="453" width="0.0756%" height="15" fill="rgb(250,229,37)" fg:x="66181" fg:w="978"/><text x="5.3690%" y="463.50"></text></g><g><title>Parse::do_one_block (978 samples, 0.08%)</title><rect x="5.1190%" y="437" width="0.0756%" height="15" fill="rgb(206,174,23)" fg:x="66181" fg:w="978"/><text x="5.3690%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (978 samples, 0.08%)</title><rect x="5.1190%" y="421" width="0.0756%" height="15" fill="rgb(211,33,43)" fg:x="66181" fg:w="978"/><text x="5.3690%" y="431.50"></text></g><g><title>Parse::do_call (131 samples, 0.01%)</title><rect x="5.1952%" y="293" width="0.0101%" height="15" fill="rgb(245,58,50)" fg:x="67166" fg:w="131"/><text x="5.4452%" y="303.50"></text></g><g><title>ParseGenerator::generate (133 samples, 0.01%)</title><rect x="5.1952%" y="373" width="0.0103%" height="15" fill="rgb(244,68,36)" fg:x="67166" fg:w="133"/><text x="5.4452%" y="383.50"></text></g><g><title>Parse::Parse (133 samples, 0.01%)</title><rect x="5.1952%" y="357" width="0.0103%" height="15" fill="rgb(232,229,15)" fg:x="67166" fg:w="133"/><text x="5.4452%" y="367.50"></text></g><g><title>Parse::do_all_blocks (133 samples, 0.01%)</title><rect x="5.1952%" y="341" width="0.0103%" height="15" fill="rgb(254,30,23)" fg:x="67166" fg:w="133"/><text x="5.4452%" y="351.50"></text></g><g><title>Parse::do_one_block (133 samples, 0.01%)</title><rect x="5.1952%" y="325" width="0.0103%" height="15" fill="rgb(235,160,14)" fg:x="67166" fg:w="133"/><text x="5.4452%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (133 samples, 0.01%)</title><rect x="5.1952%" y="309" width="0.0103%" height="15" fill="rgb(212,155,44)" fg:x="67166" fg:w="133"/><text x="5.4452%" y="319.50"></text></g><g><title>ParseGenerator::generate (147 samples, 0.01%)</title><rect x="5.1946%" y="469" width="0.0114%" height="15" fill="rgb(226,2,50)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="479.50"></text></g><g><title>Parse::Parse (147 samples, 0.01%)</title><rect x="5.1946%" y="453" width="0.0114%" height="15" fill="rgb(234,177,6)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="463.50"></text></g><g><title>Parse::do_all_blocks (147 samples, 0.01%)</title><rect x="5.1946%" y="437" width="0.0114%" height="15" fill="rgb(217,24,9)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="447.50"></text></g><g><title>Parse::do_one_block (147 samples, 0.01%)</title><rect x="5.1946%" y="421" width="0.0114%" height="15" fill="rgb(220,13,46)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (147 samples, 0.01%)</title><rect x="5.1946%" y="405" width="0.0114%" height="15" fill="rgb(239,221,27)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="415.50"></text></g><g><title>Parse::do_call (147 samples, 0.01%)</title><rect x="5.1946%" y="389" width="0.0114%" height="15" fill="rgb(222,198,25)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="399.50"></text></g><g><title>ParseGenerator::generate (1,150 samples, 0.09%)</title><rect x="5.1185%" y="581" width="0.0890%" height="15" fill="rgb(211,99,13)" fg:x="66174" fg:w="1150"/><text x="5.3685%" y="591.50"></text></g><g><title>Parse::Parse (1,150 samples, 0.09%)</title><rect x="5.1185%" y="565" width="0.0890%" height="15" fill="rgb(232,111,31)" fg:x="66174" fg:w="1150"/><text x="5.3685%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,149 samples, 0.09%)</title><rect x="5.1185%" y="549" width="0.0889%" height="15" fill="rgb(245,82,37)" fg:x="66175" fg:w="1149"/><text x="5.3685%" y="559.50"></text></g><g><title>Parse::do_one_block (1,149 samples, 0.09%)</title><rect x="5.1185%" y="533" width="0.0889%" height="15" fill="rgb(227,149,46)" fg:x="66175" fg:w="1149"/><text x="5.3685%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,149 samples, 0.09%)</title><rect x="5.1185%" y="517" width="0.0889%" height="15" fill="rgb(218,36,50)" fg:x="66175" fg:w="1149"/><text x="5.3685%" y="527.50"></text></g><g><title>Parse::do_call (1,149 samples, 0.09%)</title><rect x="5.1185%" y="501" width="0.0889%" height="15" fill="rgb(226,80,48)" fg:x="66175" fg:w="1149"/><text x="5.3685%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (165 samples, 0.01%)</title><rect x="5.1946%" y="485" width="0.0128%" height="15" fill="rgb(238,224,15)" fg:x="67159" fg:w="165"/><text x="5.4446%" y="495.50"></text></g><g><title>ParseGenerator::generate (150 samples, 0.01%)</title><rect x="5.2100%" y="277" width="0.0116%" height="15" fill="rgb(241,136,10)" fg:x="67358" fg:w="150"/><text x="5.4600%" y="287.50"></text></g><g><title>Parse::Parse (150 samples, 0.01%)</title><rect x="5.2100%" y="261" width="0.0116%" height="15" fill="rgb(208,32,45)" fg:x="67358" fg:w="150"/><text x="5.4600%" y="271.50"></text></g><g><title>Parse::do_all_blocks (148 samples, 0.01%)</title><rect x="5.2102%" y="245" width="0.0114%" height="15" fill="rgb(207,135,9)" fg:x="67360" fg:w="148"/><text x="5.4602%" y="255.50"></text></g><g><title>Parse::do_one_block (148 samples, 0.01%)</title><rect x="5.2102%" y="229" width="0.0114%" height="15" fill="rgb(206,86,44)" fg:x="67360" fg:w="148"/><text x="5.4602%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (148 samples, 0.01%)</title><rect x="5.2102%" y="213" width="0.0114%" height="15" fill="rgb(245,177,15)" fg:x="67360" fg:w="148"/><text x="5.4602%" y="223.50"></text></g><g><title>Parse::do_call (204 samples, 0.02%)</title><rect x="5.2084%" y="293" width="0.0158%" height="15" fill="rgb(206,64,50)" fg:x="67337" fg:w="204"/><text x="5.4584%" y="303.50"></text></g><g><title>ParseGenerator::generate (214 samples, 0.02%)</title><rect x="5.2084%" y="373" width="0.0166%" height="15" fill="rgb(234,36,40)" fg:x="67337" fg:w="214"/><text x="5.4584%" y="383.50"></text></g><g><title>Parse::Parse (214 samples, 0.02%)</title><rect x="5.2084%" y="357" width="0.0166%" height="15" fill="rgb(213,64,8)" fg:x="67337" fg:w="214"/><text x="5.4584%" y="367.50"></text></g><g><title>Parse::do_all_blocks (214 samples, 0.02%)</title><rect x="5.2084%" y="341" width="0.0166%" height="15" fill="rgb(210,75,36)" fg:x="67337" fg:w="214"/><text x="5.4584%" y="351.50"></text></g><g><title>Parse::do_one_block (214 samples, 0.02%)</title><rect x="5.2084%" y="325" width="0.0166%" height="15" fill="rgb(229,88,21)" fg:x="67337" fg:w="214"/><text x="5.4584%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (214 samples, 0.02%)</title><rect x="5.2084%" y="309" width="0.0166%" height="15" fill="rgb(252,204,47)" fg:x="67337" fg:w="214"/><text x="5.4584%" y="319.50"></text></g><g><title>ParseGenerator::generate (245 samples, 0.02%)</title><rect x="5.2077%" y="469" width="0.0190%" height="15" fill="rgb(208,77,27)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="479.50"></text></g><g><title>Parse::Parse (245 samples, 0.02%)</title><rect x="5.2077%" y="453" width="0.0190%" height="15" fill="rgb(221,76,26)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="463.50"></text></g><g><title>Parse::do_all_blocks (245 samples, 0.02%)</title><rect x="5.2077%" y="437" width="0.0190%" height="15" fill="rgb(225,139,18)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="447.50"></text></g><g><title>Parse::do_one_block (245 samples, 0.02%)</title><rect x="5.2077%" y="421" width="0.0190%" height="15" fill="rgb(230,137,11)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (245 samples, 0.02%)</title><rect x="5.2077%" y="405" width="0.0190%" height="15" fill="rgb(212,28,1)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="415.50"></text></g><g><title>Parse::do_call (245 samples, 0.02%)</title><rect x="5.2077%" y="389" width="0.0190%" height="15" fill="rgb(248,164,17)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="399.50"></text></g><g><title>ParseGenerator::generate (288 samples, 0.02%)</title><rect x="5.2074%" y="565" width="0.0223%" height="15" fill="rgb(222,171,42)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="575.50"></text></g><g><title>Parse::Parse (288 samples, 0.02%)</title><rect x="5.2074%" y="549" width="0.0223%" height="15" fill="rgb(243,84,45)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="559.50"></text></g><g><title>Parse::do_all_blocks (288 samples, 0.02%)</title><rect x="5.2074%" y="533" width="0.0223%" height="15" fill="rgb(252,49,23)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="543.50"></text></g><g><title>Parse::do_one_block (288 samples, 0.02%)</title><rect x="5.2074%" y="517" width="0.0223%" height="15" fill="rgb(215,19,7)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (288 samples, 0.02%)</title><rect x="5.2074%" y="501" width="0.0223%" height="15" fill="rgb(238,81,41)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="511.50"></text></g><g><title>Parse::do_call (288 samples, 0.02%)</title><rect x="5.2074%" y="485" width="0.0223%" height="15" fill="rgb(210,199,37)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="495.50"></text></g><g><title>Parse::do_call (1,487 samples, 0.12%)</title><rect x="5.1185%" y="597" width="0.1150%" height="15" fill="rgb(244,192,49)" fg:x="66174" fg:w="1487"/><text x="5.3685%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (337 samples, 0.03%)</title><rect x="5.2074%" y="581" width="0.0261%" height="15" fill="rgb(226,211,11)" fg:x="67324" fg:w="337"/><text x="5.4574%" y="591.50"></text></g><g><title>Compile::Compile (45,528 samples, 3.52%)</title><rect x="1.7124%" y="693" width="3.5215%" height="15" fill="rgb(236,162,54)" fg:x="22139" fg:w="45528"/><text x="1.9624%" y="703.50">Com..</text></g><g><title>ParseGenerator::generate (1,493 samples, 0.12%)</title><rect x="5.1185%" y="677" width="0.1155%" height="15" fill="rgb(220,229,9)" fg:x="66174" fg:w="1493"/><text x="5.3685%" y="687.50"></text></g><g><title>Parse::Parse (1,493 samples, 0.12%)</title><rect x="5.1185%" y="661" width="0.1155%" height="15" fill="rgb(250,87,22)" fg:x="66174" fg:w="1493"/><text x="5.3685%" y="671.50"></text></g><g><title>Parse::do_all_blocks (1,493 samples, 0.12%)</title><rect x="5.1185%" y="645" width="0.1155%" height="15" fill="rgb(239,43,17)" fg:x="66174" fg:w="1493"/><text x="5.3685%" y="655.50"></text></g><g><title>Parse::do_one_block (1,493 samples, 0.12%)</title><rect x="5.1185%" y="629" width="0.1155%" height="15" fill="rgb(231,177,25)" fg:x="66174" fg:w="1493"/><text x="5.3685%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (1,493 samples, 0.12%)</title><rect x="5.1185%" y="613" width="0.1155%" height="15" fill="rgb(219,179,1)" fg:x="66174" fg:w="1493"/><text x="5.3685%" y="623.50"></text></g><g><title>Compile::final_graph_reshaping_impl (146 samples, 0.01%)</title><rect x="5.2472%" y="645" width="0.0113%" height="15" fill="rgb(238,219,53)" fg:x="67838" fg:w="146"/><text x="5.4972%" y="655.50"></text></g><g><title>Compile::final_graph_reshaping (332 samples, 0.03%)</title><rect x="5.2341%" y="677" width="0.0257%" height="15" fill="rgb(232,167,36)" fg:x="67669" fg:w="332"/><text x="5.4841%" y="687.50"></text></g><g><title>Compile::final_graph_reshaping_walk (328 samples, 0.03%)</title><rect x="5.2344%" y="661" width="0.0254%" height="15" fill="rgb(244,19,51)" fg:x="67673" fg:w="328"/><text x="5.4844%" y="671.50"></text></g><g><title>Compile::remove_speculative_types (311 samples, 0.02%)</title><rect x="5.2629%" y="677" width="0.0241%" height="15" fill="rgb(224,6,22)" fg:x="68042" fg:w="311"/><text x="5.5129%" y="687.50"></text></g><g><title>ConnectionGraph::split_unique_types (141 samples, 0.01%)</title><rect x="5.3225%" y="645" width="0.0109%" height="15" fill="rgb(224,145,5)" fg:x="68812" fg:w="141"/><text x="5.5725%" y="655.50"></text></g><g><title>ConnectionGraph::compute_escape (600 samples, 0.05%)</title><rect x="5.2871%" y="661" width="0.0464%" height="15" fill="rgb(234,130,49)" fg:x="68355" fg:w="600"/><text x="5.5371%" y="671.50"></text></g><g><title>ConnectionGraph::do_analysis (604 samples, 0.05%)</title><rect x="5.2871%" y="677" width="0.0467%" height="15" fill="rgb(254,6,2)" fg:x="68354" fg:w="604"/><text x="5.5371%" y="687.50"></text></g><g><title>PhaseCCP::analyze (832 samples, 0.06%)</title><rect x="5.3341%" y="677" width="0.0644%" height="15" fill="rgb(208,96,46)" fg:x="68962" fg:w="832"/><text x="5.5841%" y="687.50"></text></g><g><title>PhaseCCP::transform_once (138 samples, 0.01%)</title><rect x="5.4072%" y="645" width="0.0107%" height="15" fill="rgb(239,3,39)" fg:x="69907" fg:w="138"/><text x="5.6572%" y="655.50"></text></g><g><title>PhaseCCP::do_transform (254 samples, 0.02%)</title><rect x="5.3985%" y="677" width="0.0196%" height="15" fill="rgb(233,210,1)" fg:x="69794" fg:w="254"/><text x="5.6485%" y="687.50"></text></g><g><title>PhaseCCP::transform (254 samples, 0.02%)</title><rect x="5.3985%" y="661" width="0.0196%" height="15" fill="rgb(244,137,37)" fg:x="69794" fg:w="254"/><text x="5.6485%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (153 samples, 0.01%)</title><rect x="5.4289%" y="629" width="0.0118%" height="15" fill="rgb(240,136,2)" fg:x="70188" fg:w="153"/><text x="5.6789%" y="639.50"></text></g><g><title>IdealLoopTree::iteration_split (206 samples, 0.02%)</title><rect x="5.4287%" y="645" width="0.0159%" height="15" fill="rgb(239,18,37)" fg:x="70185" fg:w="206"/><text x="5.6787%" y="655.50"></text></g><g><title>IdealLoopTree::iteration_split (250 samples, 0.02%)</title><rect x="5.4275%" y="661" width="0.0193%" height="15" fill="rgb(218,185,22)" fg:x="70170" fg:w="250"/><text x="5.6775%" y="671.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (195 samples, 0.02%)</title><rect x="5.4524%" y="645" width="0.0151%" height="15" fill="rgb(225,218,4)" fg:x="70492" fg:w="195"/><text x="5.7024%" y="655.50"></text></g><g><title>IdealLoopTree::loop_predication (268 samples, 0.02%)</title><rect x="5.4469%" y="661" width="0.0207%" height="15" fill="rgb(230,182,32)" fg:x="70420" fg:w="268"/><text x="5.6969%" y="671.50"></text></g><g><title>NTarjan::DFS (305 samples, 0.02%)</title><rect x="5.5322%" y="645" width="0.0236%" height="15" fill="rgb(242,56,43)" fg:x="71523" fg:w="305"/><text x="5.7822%" y="655.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,151 samples, 0.09%)</title><rect x="5.4717%" y="661" width="0.0890%" height="15" fill="rgb(233,99,24)" fg:x="70741" fg:w="1151"/><text x="5.7217%" y="671.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (169 samples, 0.01%)</title><rect x="5.6705%" y="613" width="0.0131%" height="15" fill="rgb(234,209,42)" fg:x="73311" fg:w="169"/><text x="5.9205%" y="623.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (434 samples, 0.03%)</title><rect x="5.6501%" y="645" width="0.0336%" height="15" fill="rgb(227,7,12)" fg:x="73048" fg:w="434"/><text x="5.9001%" y="655.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (404 samples, 0.03%)</title><rect x="5.6525%" y="629" width="0.0312%" height="15" fill="rgb(245,203,43)" fg:x="73078" fg:w="404"/><text x="5.9025%" y="639.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,696 samples, 0.13%)</title><rect x="5.5607%" y="661" width="0.1312%" height="15" fill="rgb(238,205,33)" fg:x="71892" fg:w="1696"/><text x="5.8107%" y="671.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (264 samples, 0.02%)</title><rect x="5.9013%" y="597" width="0.0204%" height="15" fill="rgb(231,56,7)" fg:x="76295" fg:w="264"/><text x="6.1513%" y="607.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (394 samples, 0.03%)</title><rect x="5.8943%" y="613" width="0.0305%" height="15" fill="rgb(244,186,29)" fg:x="76205" fg:w="394"/><text x="6.1443%" y="623.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (157 samples, 0.01%)</title><rect x="5.9250%" y="613" width="0.0121%" height="15" fill="rgb(234,111,31)" fg:x="76601" fg:w="157"/><text x="6.1750%" y="623.50"></text></g><g><title>PhaseIdealLoop::dom_depth (765 samples, 0.06%)</title><rect x="6.1548%" y="597" width="0.0592%" height="15" fill="rgb(241,149,10)" fg:x="79572" fg:w="765"/><text x="6.4048%" y="607.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,577 samples, 0.28%)</title><rect x="5.9386%" y="613" width="0.2767%" height="15" fill="rgb(249,206,44)" fg:x="76777" fg:w="3577"/><text x="6.1886%" y="623.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,657 samples, 0.36%)</title><rect x="5.8570%" y="629" width="0.3602%" height="15" fill="rgb(251,153,30)" fg:x="75722" fg:w="4657"/><text x="6.1070%" y="639.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,568 samples, 0.43%)</title><rect x="5.7943%" y="645" width="0.4307%" height="15" fill="rgb(239,152,38)" fg:x="74912" fg:w="5568"/><text x="6.0443%" y="655.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (6,911 samples, 0.53%)</title><rect x="5.6919%" y="661" width="0.5346%" height="15" fill="rgb(249,139,47)" fg:x="73588" fg:w="6911"/><text x="5.9419%" y="671.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (250 samples, 0.02%)</title><rect x="6.2775%" y="645" width="0.0193%" height="15" fill="rgb(244,64,35)" fg:x="81159" fg:w="250"/><text x="6.5275%" y="655.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (929 samples, 0.07%)</title><rect x="6.2271%" y="661" width="0.0719%" height="15" fill="rgb(216,46,15)" fg:x="80507" fg:w="929"/><text x="6.4771%" y="671.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (284 samples, 0.02%)</title><rect x="6.3492%" y="645" width="0.0220%" height="15" fill="rgb(250,74,19)" fg:x="82086" fg:w="284"/><text x="6.5992%" y="655.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (174 samples, 0.01%)</title><rect x="6.3979%" y="629" width="0.0135%" height="15" fill="rgb(249,42,33)" fg:x="82716" fg:w="174"/><text x="6.6479%" y="639.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (179 samples, 0.01%)</title><rect x="6.4114%" y="629" width="0.0138%" height="15" fill="rgb(242,149,17)" fg:x="82890" fg:w="179"/><text x="6.6614%" y="639.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (757 samples, 0.06%)</title><rect x="6.3712%" y="645" width="0.0586%" height="15" fill="rgb(244,29,21)" fg:x="82370" fg:w="757"/><text x="6.6212%" y="655.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,645 samples, 0.13%)</title><rect x="6.3032%" y="661" width="0.1272%" height="15" fill="rgb(220,130,37)" fg:x="81491" fg:w="1645"/><text x="6.5532%" y="671.50"></text></g><g><title>RegionNode::Ideal (221 samples, 0.02%)</title><rect x="6.5156%" y="629" width="0.0171%" height="15" fill="rgb(211,67,2)" fg:x="84237" fg:w="221"/><text x="6.7656%" y="639.50"></text></g><g><title>PhaseIterGVN::transform_old (1,401 samples, 0.11%)</title><rect x="6.4355%" y="645" width="0.1084%" height="15" fill="rgb(235,68,52)" fg:x="83202" fg:w="1401"/><text x="6.6855%" y="655.50"></text></g><g><title>PhaseIterGVN::optimize (1,485 samples, 0.11%)</title><rect x="6.4306%" y="661" width="0.1149%" height="15" fill="rgb(246,142,3)" fg:x="83138" fg:w="1485"/><text x="6.6806%" y="671.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (14,669 samples, 1.13%)</title><rect x="5.4200%" y="677" width="1.1346%" height="15" fill="rgb(241,25,7)" fg:x="70072" fg:w="14669"/><text x="5.6700%" y="687.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (136 samples, 0.01%)</title><rect x="6.5547%" y="677" width="0.0105%" height="15" fill="rgb(242,119,39)" fg:x="84742" fg:w="136"/><text x="6.8047%" y="687.50"></text></g><g><title>IfNode::Ideal (340 samples, 0.03%)</title><rect x="6.6011%" y="645" width="0.0263%" height="15" fill="rgb(241,98,45)" fg:x="85343" fg:w="340"/><text x="6.8511%" y="655.50"></text></g><g><title>LoadNode::Ideal (207 samples, 0.02%)</title><rect x="6.6301%" y="645" width="0.0160%" height="15" fill="rgb(254,28,30)" fg:x="85718" fg:w="207"/><text x="6.8801%" y="655.50"></text></g><g><title>NodeHash::hash_find_insert (191 samples, 0.01%)</title><rect x="6.6592%" y="645" width="0.0148%" height="15" fill="rgb(241,142,54)" fg:x="86093" fg:w="191"/><text x="6.9092%" y="655.50"></text></g><g><title>PhaseIterGVN::subsume_node (232 samples, 0.02%)</title><rect x="6.6791%" y="645" width="0.0179%" height="15" fill="rgb(222,85,15)" fg:x="86351" fg:w="232"/><text x="6.9291%" y="655.50"></text></g><g><title>PhiNode::Ideal (167 samples, 0.01%)</title><rect x="6.6975%" y="645" width="0.0129%" height="15" fill="rgb(210,85,47)" fg:x="86589" fg:w="167"/><text x="6.9475%" y="655.50"></text></g><g><title>PhaseIterGVN::subsume_node (145 samples, 0.01%)</title><rect x="6.7267%" y="629" width="0.0112%" height="15" fill="rgb(224,206,25)" fg:x="86966" fg:w="145"/><text x="6.9767%" y="639.50"></text></g><g><title>RegionNode::Ideal (380 samples, 0.03%)</title><rect x="6.7196%" y="645" width="0.0294%" height="15" fill="rgb(243,201,19)" fg:x="86875" fg:w="380"/><text x="6.9696%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (137 samples, 0.01%)</title><rect x="6.7510%" y="437" width="0.0106%" height="15" fill="rgb(236,59,4)" fg:x="87280" fg:w="137"/><text x="7.0010%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (147 samples, 0.01%)</title><rect x="6.7510%" y="453" width="0.0114%" height="15" fill="rgb(254,179,45)" fg:x="87280" fg:w="147"/><text x="7.0010%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (163 samples, 0.01%)</title><rect x="6.7510%" y="469" width="0.0126%" height="15" fill="rgb(226,14,10)" fg:x="87280" fg:w="163"/><text x="7.0010%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (178 samples, 0.01%)</title><rect x="6.7510%" y="485" width="0.0138%" height="15" fill="rgb(244,27,41)" fg:x="87280" fg:w="178"/><text x="7.0010%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (187 samples, 0.01%)</title><rect x="6.7510%" y="501" width="0.0145%" height="15" fill="rgb(235,35,32)" fg:x="87280" fg:w="187"/><text x="7.0010%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (201 samples, 0.02%)</title><rect x="6.7509%" y="517" width="0.0155%" height="15" fill="rgb(218,68,31)" fg:x="87279" fg:w="201"/><text x="7.0009%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (216 samples, 0.02%)</title><rect x="6.7509%" y="533" width="0.0167%" height="15" fill="rgb(207,120,37)" fg:x="87279" fg:w="216"/><text x="7.0009%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (232 samples, 0.02%)</title><rect x="6.7509%" y="549" width="0.0179%" height="15" fill="rgb(227,98,0)" fg:x="87279" fg:w="232"/><text x="7.0009%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (241 samples, 0.02%)</title><rect x="6.7509%" y="565" width="0.0186%" height="15" fill="rgb(207,7,3)" fg:x="87279" fg:w="241"/><text x="7.0009%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (272 samples, 0.02%)</title><rect x="6.7509%" y="581" width="0.0210%" height="15" fill="rgb(206,98,19)" fg:x="87279" fg:w="272"/><text x="7.0009%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (309 samples, 0.02%)</title><rect x="6.7509%" y="597" width="0.0239%" height="15" fill="rgb(217,5,26)" fg:x="87279" fg:w="309"/><text x="7.0009%" y="607.50"></text></g><g><title>InitializeNode::can_capture_store (311 samples, 0.02%)</title><rect x="6.7508%" y="629" width="0.0241%" height="15" fill="rgb(235,190,38)" fg:x="87278" fg:w="311"/><text x="7.0008%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (311 samples, 0.02%)</title><rect x="6.7508%" y="613" width="0.0241%" height="15" fill="rgb(247,86,24)" fg:x="87278" fg:w="311"/><text x="7.0008%" y="623.50"></text></g><g><title>StoreNode::Ideal (352 samples, 0.03%)</title><rect x="6.7507%" y="645" width="0.0272%" height="15" fill="rgb(205,101,16)" fg:x="87276" fg:w="352"/><text x="7.0007%" y="655.50"></text></g><g><title>PhaseIterGVN::transform_old (2,712 samples, 0.21%)</title><rect x="6.5737%" y="661" width="0.2098%" height="15" fill="rgb(246,168,33)" fg:x="84988" fg:w="2712"/><text x="6.8237%" y="671.50"></text></g><g><title>PhaseIterGVN::optimize (2,841 samples, 0.22%)</title><rect x="6.5652%" y="677" width="0.2197%" height="15" fill="rgb(231,114,1)" fg:x="84878" fg:w="2841"/><text x="6.8152%" y="687.50"></text></g><g><title>PhaseIterGVN::transform_old (312 samples, 0.02%)</title><rect x="6.7910%" y="645" width="0.0241%" height="15" fill="rgb(207,184,53)" fg:x="87798" fg:w="312"/><text x="7.0410%" y="655.50"></text></g><g><title>PhaseIterGVN::optimize (323 samples, 0.02%)</title><rect x="6.7905%" y="661" width="0.0250%" height="15" fill="rgb(224,95,51)" fg:x="87791" fg:w="323"/><text x="7.0405%" y="671.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (484 samples, 0.04%)</title><rect x="6.7898%" y="677" width="0.0374%" height="15" fill="rgb(212,188,45)" fg:x="87782" fg:w="484"/><text x="7.0398%" y="687.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (159 samples, 0.01%)</title><rect x="6.8287%" y="661" width="0.0123%" height="15" fill="rgb(223,154,38)" fg:x="88285" fg:w="159"/><text x="7.0787%" y="671.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (180 samples, 0.01%)</title><rect x="6.8272%" y="677" width="0.0139%" height="15" fill="rgb(251,22,52)" fg:x="88266" fg:w="180"/><text x="7.0772%" y="687.50"></text></g><g><title>Compile::Optimize (20,785 samples, 1.61%)</title><rect x="5.2339%" y="693" width="1.6077%" height="15" fill="rgb(229,209,22)" fg:x="67667" fg:w="20785"/><text x="5.4839%" y="703.50"></text></g><g><title>Parse::do_one_block (182 samples, 0.01%)</title><rect x="6.8431%" y="581" width="0.0141%" height="15" fill="rgb(234,138,34)" fg:x="88471" fg:w="182"/><text x="7.0931%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (163 samples, 0.01%)</title><rect x="6.8446%" y="565" width="0.0126%" height="15" fill="rgb(212,95,11)" fg:x="88490" fg:w="163"/><text x="7.0946%" y="575.50"></text></g><g><title>Parse::do_all_blocks (186 samples, 0.01%)</title><rect x="6.8430%" y="597" width="0.0144%" height="15" fill="rgb(240,179,47)" fg:x="88470" fg:w="186"/><text x="7.0930%" y="607.50"></text></g><g><title>ParseGenerator::generate (198 samples, 0.02%)</title><rect x="6.8430%" y="629" width="0.0153%" height="15" fill="rgb(240,163,11)" fg:x="88470" fg:w="198"/><text x="7.0930%" y="639.50"></text></g><g><title>Parse::Parse (198 samples, 0.02%)</title><rect x="6.8430%" y="613" width="0.0153%" height="15" fill="rgb(236,37,12)" fg:x="88470" fg:w="198"/><text x="7.0930%" y="623.50"></text></g><g><title>CompileBroker::compiler_thread_loop (234 samples, 0.02%)</title><rect x="6.8420%" y="693" width="0.0181%" height="15" fill="rgb(232,164,16)" fg:x="88457" fg:w="234"/><text x="7.0920%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (234 samples, 0.02%)</title><rect x="6.8420%" y="677" width="0.0181%" height="15" fill="rgb(244,205,15)" fg:x="88457" fg:w="234"/><text x="7.0920%" y="687.50"></text></g><g><title>C2Compiler::compile_method (234 samples, 0.02%)</title><rect x="6.8420%" y="661" width="0.0181%" height="15" fill="rgb(223,117,47)" fg:x="88457" fg:w="234"/><text x="7.0920%" y="671.50"></text></g><g><title>Compile::Compile (234 samples, 0.02%)</title><rect x="6.8420%" y="645" width="0.0181%" height="15" fill="rgb(244,107,35)" fg:x="88457" fg:w="234"/><text x="7.0920%" y="655.50"></text></g><g><title>Compile::call_generator (142 samples, 0.01%)</title><rect x="6.8729%" y="549" width="0.0110%" height="15" fill="rgb(205,140,8)" fg:x="88857" fg:w="142"/><text x="7.1229%" y="559.50"></text></g><g><title>Parse::do_all_blocks (144 samples, 0.01%)</title><rect x="6.8952%" y="517" width="0.0111%" height="15" fill="rgb(228,84,46)" fg:x="89145" fg:w="144"/><text x="7.1452%" y="527.50"></text></g><g><title>Parse::Parse (249 samples, 0.02%)</title><rect x="6.8910%" y="533" width="0.0193%" height="15" fill="rgb(254,188,9)" fg:x="89090" fg:w="249"/><text x="7.1410%" y="543.50"></text></g><g><title>ParseGenerator::generate (252 samples, 0.02%)</title><rect x="6.8908%" y="549" width="0.0195%" height="15" fill="rgb(206,112,54)" fg:x="89088" fg:w="252"/><text x="7.1408%" y="559.50"></text></g><g><title>Parse::do_call (643 samples, 0.05%)</title><rect x="6.8729%" y="565" width="0.0497%" height="15" fill="rgb(216,84,49)" fg:x="88857" fg:w="643"/><text x="7.1229%" y="575.50"></text></g><g><title>Parse::do_all_blocks (886 samples, 0.07%)</title><rect x="6.8690%" y="613" width="0.0685%" height="15" fill="rgb(214,194,35)" fg:x="88806" fg:w="886"/><text x="7.1190%" y="623.50"></text></g><g><title>Parse::do_one_block (886 samples, 0.07%)</title><rect x="6.8690%" y="597" width="0.0685%" height="15" fill="rgb(249,28,3)" fg:x="88806" fg:w="886"/><text x="7.1190%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (879 samples, 0.07%)</title><rect x="6.8695%" y="581" width="0.0680%" height="15" fill="rgb(222,56,52)" fg:x="88813" fg:w="879"/><text x="7.1195%" y="591.50"></text></g><g><title>ParseGenerator::generate (897 samples, 0.07%)</title><rect x="6.8690%" y="645" width="0.0694%" height="15" fill="rgb(245,217,50)" fg:x="88806" fg:w="897"/><text x="7.1190%" y="655.50"></text></g><g><title>Parse::Parse (897 samples, 0.07%)</title><rect x="6.8690%" y="629" width="0.0694%" height="15" fill="rgb(213,201,24)" fg:x="88806" fg:w="897"/><text x="7.1190%" y="639.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,043 samples, 0.08%)</title><rect x="6.8601%" y="693" width="0.0807%" height="15" fill="rgb(248,116,28)" fg:x="88691" fg:w="1043"/><text x="7.1101%" y="703.50"></text></g><g><title>C2Compiler::compile_method (1,043 samples, 0.08%)</title><rect x="6.8601%" y="677" width="0.0807%" height="15" fill="rgb(219,72,43)" fg:x="88691" fg:w="1043"/><text x="7.1101%" y="687.50"></text></g><g><title>Compile::Compile (1,043 samples, 0.08%)</title><rect x="6.8601%" y="661" width="0.0807%" height="15" fill="rgb(209,138,14)" fg:x="88691" fg:w="1043"/><text x="7.1101%" y="671.50"></text></g><g><title>ParseGenerator::generate (135 samples, 0.01%)</title><rect x="6.9776%" y="405" width="0.0104%" height="15" fill="rgb(222,18,33)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="415.50"></text></g><g><title>Parse::Parse (135 samples, 0.01%)</title><rect x="6.9776%" y="389" width="0.0104%" height="15" fill="rgb(213,199,7)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="399.50"></text></g><g><title>Parse::do_all_blocks (135 samples, 0.01%)</title><rect x="6.9776%" y="373" width="0.0104%" height="15" fill="rgb(250,110,10)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="383.50"></text></g><g><title>Parse::do_one_block (135 samples, 0.01%)</title><rect x="6.9776%" y="357" width="0.0104%" height="15" fill="rgb(248,123,6)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (135 samples, 0.01%)</title><rect x="6.9776%" y="341" width="0.0104%" height="15" fill="rgb(206,91,31)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="351.50"></text></g><g><title>Parse::do_call (135 samples, 0.01%)</title><rect x="6.9776%" y="325" width="0.0104%" height="15" fill="rgb(211,154,13)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="335.50"></text></g><g><title>ParseGenerator::generate (152 samples, 0.01%)</title><rect x="6.9776%" y="501" width="0.0118%" height="15" fill="rgb(225,148,7)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="511.50"></text></g><g><title>Parse::Parse (152 samples, 0.01%)</title><rect x="6.9776%" y="485" width="0.0118%" height="15" fill="rgb(220,160,43)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="495.50"></text></g><g><title>Parse::do_all_blocks (152 samples, 0.01%)</title><rect x="6.9776%" y="469" width="0.0118%" height="15" fill="rgb(213,52,39)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="479.50"></text></g><g><title>Parse::do_one_block (152 samples, 0.01%)</title><rect x="6.9776%" y="453" width="0.0118%" height="15" fill="rgb(243,137,7)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (152 samples, 0.01%)</title><rect x="6.9776%" y="437" width="0.0118%" height="15" fill="rgb(230,79,13)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="447.50"></text></g><g><title>Parse::do_call (152 samples, 0.01%)</title><rect x="6.9776%" y="421" width="0.0118%" height="15" fill="rgb(247,105,23)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="431.50"></text></g><g><title>ParseGenerator::generate (173 samples, 0.01%)</title><rect x="6.9776%" y="597" width="0.0134%" height="15" fill="rgb(223,179,41)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="607.50"></text></g><g><title>Parse::Parse (173 samples, 0.01%)</title><rect x="6.9776%" y="581" width="0.0134%" height="15" fill="rgb(218,9,34)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="591.50"></text></g><g><title>Parse::do_all_blocks (173 samples, 0.01%)</title><rect x="6.9776%" y="565" width="0.0134%" height="15" fill="rgb(222,106,8)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="575.50"></text></g><g><title>Parse::do_one_block (173 samples, 0.01%)</title><rect x="6.9776%" y="549" width="0.0134%" height="15" fill="rgb(211,220,0)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (173 samples, 0.01%)</title><rect x="6.9776%" y="533" width="0.0134%" height="15" fill="rgb(229,52,16)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="543.50"></text></g><g><title>Parse::do_call (173 samples, 0.01%)</title><rect x="6.9776%" y="517" width="0.0134%" height="15" fill="rgb(212,155,18)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="527.50"></text></g><g><title>ParseGenerator::generate (200 samples, 0.02%)</title><rect x="6.9776%" y="693" width="0.0155%" height="15" fill="rgb(242,21,14)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="703.50"></text></g><g><title>Parse::Parse (200 samples, 0.02%)</title><rect x="6.9776%" y="677" width="0.0155%" height="15" fill="rgb(222,19,48)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="687.50"></text></g><g><title>Parse::do_all_blocks (200 samples, 0.02%)</title><rect x="6.9776%" y="661" width="0.0155%" height="15" fill="rgb(232,45,27)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="671.50"></text></g><g><title>Parse::do_one_block (200 samples, 0.02%)</title><rect x="6.9776%" y="645" width="0.0155%" height="15" fill="rgb(249,103,42)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (200 samples, 0.02%)</title><rect x="6.9776%" y="629" width="0.0155%" height="15" fill="rgb(246,81,33)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="639.50"></text></g><g><title>Parse::do_call (200 samples, 0.02%)</title><rect x="6.9776%" y="613" width="0.0155%" height="15" fill="rgb(252,33,42)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="623.50"></text></g><g><title>[unknown] (72,023 samples, 5.57%)</title><rect x="1.4494%" y="709" width="5.5709%" height="15" fill="rgb(209,212,41)" fg:x="18738" fg:w="72023"/><text x="1.6994%" y="719.50">[unknow..</text></g><g><title>Compile::identify_useful_nodes (225 samples, 0.02%)</title><rect x="7.0409%" y="549" width="0.0174%" height="15" fill="rgb(207,154,6)" fg:x="91029" fg:w="225"/><text x="7.2909%" y="559.50"></text></g><g><title>Compile::remove_useless_nodes (208 samples, 0.02%)</title><rect x="7.0583%" y="549" width="0.0161%" height="15" fill="rgb(223,64,47)" fg:x="91254" fg:w="208"/><text x="7.3083%" y="559.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (533 samples, 0.04%)</title><rect x="7.0371%" y="565" width="0.0412%" height="15" fill="rgb(211,161,38)" fg:x="90979" fg:w="533"/><text x="7.2871%" y="575.50"></text></g><g><title>C2Compiler::compile_method (781 samples, 0.06%)</title><rect x="7.0223%" y="597" width="0.0604%" height="15" fill="rgb(219,138,40)" fg:x="90788" fg:w="781"/><text x="7.2723%" y="607.50"></text></g><g><title>Compile::Compile (770 samples, 0.06%)</title><rect x="7.0232%" y="581" width="0.0596%" height="15" fill="rgb(241,228,46)" fg:x="90799" fg:w="770"/><text x="7.2732%" y="591.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (978 samples, 0.08%)</title><rect x="7.0217%" y="613" width="0.0756%" height="15" fill="rgb(223,209,38)" fg:x="90780" fg:w="978"/><text x="7.2717%" y="623.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,173 samples, 0.09%)</title><rect x="7.0213%" y="629" width="0.0907%" height="15" fill="rgb(236,164,45)" fg:x="90775" fg:w="1173"/><text x="7.2713%" y="639.50"></text></g><g><title>CompileQueue::get (179 samples, 0.01%)</title><rect x="7.0982%" y="613" width="0.0138%" height="15" fill="rgb(231,15,5)" fg:x="91769" fg:w="179"/><text x="7.3482%" y="623.50"></text></g><g><title>Thread::call_run (1,175 samples, 0.09%)</title><rect x="7.0213%" y="661" width="0.0909%" height="15" fill="rgb(252,35,15)" fg:x="90775" fg:w="1175"/><text x="7.2713%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (1,175 samples, 0.09%)</title><rect x="7.0213%" y="645" width="0.0909%" height="15" fill="rgb(248,181,18)" fg:x="90775" fg:w="1175"/><text x="7.2713%" y="655.50"></text></g><g><title>__GI___clone (1,186 samples, 0.09%)</title><rect x="7.0205%" y="709" width="0.0917%" height="15" fill="rgb(233,39,42)" fg:x="90765" fg:w="1186"/><text x="7.2705%" y="719.50"></text></g><g><title>start_thread (1,179 samples, 0.09%)</title><rect x="7.0211%" y="693" width="0.0912%" height="15" fill="rgb(238,110,33)" fg:x="90772" fg:w="1179"/><text x="7.2711%" y="703.50"></text></g><g><title>thread_native_entry (1,177 samples, 0.09%)</title><rect x="7.0212%" y="677" width="0.0910%" height="15" fill="rgb(233,195,10)" fg:x="90774" fg:w="1177"/><text x="7.2712%" y="687.50"></text></g><g><title>C2_CompilerThre (77,754 samples, 6.01%)</title><rect x="1.1089%" y="725" width="6.0141%" height="15" fill="rgb(254,105,3)" fg:x="14336" fg:w="77754"/><text x="1.3589%" y="735.50">C2_Compi..</text></g><g><title>futex_wait_queue_me (181 samples, 0.01%)</title><rect x="7.1806%" y="533" width="0.0140%" height="15" fill="rgb(221,225,9)" fg:x="92834" fg:w="181"/><text x="7.4306%" y="543.50"></text></g><g><title>schedule (163 samples, 0.01%)</title><rect x="7.1820%" y="517" width="0.0126%" height="15" fill="rgb(224,227,45)" fg:x="92852" fg:w="163"/><text x="7.4320%" y="527.50"></text></g><g><title>__schedule (161 samples, 0.01%)</title><rect x="7.1821%" y="501" width="0.0125%" height="15" fill="rgb(229,198,43)" fg:x="92854" fg:w="161"/><text x="7.4321%" y="511.50"></text></g><g><title>do_futex (205 samples, 0.02%)</title><rect x="7.1800%" y="565" width="0.0159%" height="15" fill="rgb(206,209,35)" fg:x="92827" fg:w="205"/><text x="7.4300%" y="575.50"></text></g><g><title>futex_wait (204 samples, 0.02%)</title><rect x="7.1801%" y="549" width="0.0158%" height="15" fill="rgb(245,195,53)" fg:x="92828" fg:w="204"/><text x="7.4301%" y="559.50"></text></g><g><title>do_syscall_64 (211 samples, 0.02%)</title><rect x="7.1799%" y="597" width="0.0163%" height="15" fill="rgb(240,92,26)" fg:x="92826" fg:w="211"/><text x="7.4299%" y="607.50"></text></g><g><title>__x64_sys_futex (211 samples, 0.02%)</title><rect x="7.1799%" y="581" width="0.0163%" height="15" fill="rgb(207,40,23)" fg:x="92826" fg:w="211"/><text x="7.4299%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (237 samples, 0.02%)</title><rect x="7.1784%" y="661" width="0.0183%" height="15" fill="rgb(223,111,35)" fg:x="92806" fg:w="237"/><text x="7.4284%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (237 samples, 0.02%)</title><rect x="7.1784%" y="645" width="0.0183%" height="15" fill="rgb(229,147,28)" fg:x="92806" fg:w="237"/><text x="7.4284%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (232 samples, 0.02%)</title><rect x="7.1788%" y="629" width="0.0179%" height="15" fill="rgb(211,29,28)" fg:x="92811" fg:w="232"/><text x="7.4288%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (218 samples, 0.02%)</title><rect x="7.1799%" y="613" width="0.0169%" height="15" fill="rgb(228,72,33)" fg:x="92825" fg:w="218"/><text x="7.4299%" y="623.50"></text></g><g><title>Parker::park (348 samples, 0.03%)</title><rect x="7.1765%" y="677" width="0.0269%" height="15" fill="rgb(205,214,31)" fg:x="92781" fg:w="348"/><text x="7.4265%" y="687.50"></text></g><g><title>Unsafe_Park (360 samples, 0.03%)</title><rect x="7.1758%" y="693" width="0.0278%" height="15" fill="rgb(224,111,15)" fg:x="92773" fg:w="360"/><text x="7.4258%" y="703.50"></text></g><g><title>[perf-956514.map] (907 samples, 0.07%)</title><rect x="7.1346%" y="709" width="0.0702%" height="15" fill="rgb(253,21,26)" fg:x="92240" fg:w="907"/><text x="7.3846%" y="719.50"></text></g><g><title>ForkJoinPool.co (946 samples, 0.07%)</title><rect x="7.1331%" y="725" width="0.0732%" height="15" fill="rgb(245,139,43)" fg:x="92221" fg:w="946"/><text x="7.3831%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (188 samples, 0.01%)</title><rect x="7.2136%" y="597" width="0.0145%" height="15" fill="rgb(252,170,7)" fg:x="93261" fg:w="188"/><text x="7.4636%" y="607.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (189 samples, 0.01%)</title><rect x="7.2136%" y="613" width="0.0146%" height="15" fill="rgb(231,118,14)" fg:x="93261" fg:w="189"/><text x="7.4636%" y="623.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (205 samples, 0.02%)</title><rect x="7.2135%" y="629" width="0.0159%" height="15" fill="rgb(238,83,0)" fg:x="93260" fg:w="205"/><text x="7.4635%" y="639.50"></text></g><g><title>Thread::call_run (213 samples, 0.02%)</title><rect x="7.2135%" y="661" width="0.0165%" height="15" fill="rgb(221,39,39)" fg:x="93260" fg:w="213"/><text x="7.4635%" y="671.50"></text></g><g><title>ConcurrentGCThread::run (213 samples, 0.02%)</title><rect x="7.2135%" y="645" width="0.0165%" height="15" fill="rgb(222,119,46)" fg:x="93260" fg:w="213"/><text x="7.4635%" y="655.50"></text></g><g><title>G1_Refine#0 (235 samples, 0.02%)</title><rect x="7.2119%" y="725" width="0.0182%" height="15" fill="rgb(222,165,49)" fg:x="93239" fg:w="235"/><text x="7.4619%" y="735.50"></text></g><g><title>__GI___clone (214 samples, 0.02%)</title><rect x="7.2135%" y="709" width="0.0166%" height="15" fill="rgb(219,113,52)" fg:x="93260" fg:w="214"/><text x="7.4635%" y="719.50"></text></g><g><title>start_thread (214 samples, 0.02%)</title><rect x="7.2135%" y="693" width="0.0166%" height="15" fill="rgb(214,7,15)" fg:x="93260" fg:w="214"/><text x="7.4635%" y="703.50"></text></g><g><title>thread_native_entry (214 samples, 0.02%)</title><rect x="7.2135%" y="677" width="0.0166%" height="15" fill="rgb(235,32,4)" fg:x="93260" fg:w="214"/><text x="7.4635%" y="687.50"></text></g><g><title>G1_Refine#1 (132 samples, 0.01%)</title><rect x="7.2301%" y="725" width="0.0102%" height="15" fill="rgb(238,90,54)" fg:x="93474" fg:w="132"/><text x="7.4801%" y="735.50"></text></g><g><title>G1_Young_RemSet (132 samples, 0.01%)</title><rect x="7.2408%" y="725" width="0.0102%" height="15" fill="rgb(213,208,19)" fg:x="93613" fg:w="132"/><text x="7.4908%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (283 samples, 0.02%)</title><rect x="7.2674%" y="581" width="0.0219%" height="15" fill="rgb(233,156,4)" fg:x="93957" fg:w="283"/><text x="7.5174%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (451 samples, 0.03%)</title><rect x="7.2549%" y="597" width="0.0349%" height="15" fill="rgb(207,194,5)" fg:x="93795" fg:w="451"/><text x="7.5049%" y="607.50"></text></g><g><title>SpinPause (165 samples, 0.01%)</title><rect x="7.2901%" y="597" width="0.0128%" height="15" fill="rgb(206,111,30)" fg:x="94250" fg:w="165"/><text x="7.5401%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (635 samples, 0.05%)</title><rect x="7.2542%" y="613" width="0.0491%" height="15" fill="rgb(243,70,54)" fg:x="93786" fg:w="635"/><text x="7.5042%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (185 samples, 0.01%)</title><rect x="7.3054%" y="517" width="0.0143%" height="15" fill="rgb(242,28,8)" fg:x="94448" fg:w="185"/><text x="7.5554%" y="527.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (139 samples, 0.01%)</title><rect x="7.3090%" y="501" width="0.0108%" height="15" fill="rgb(219,106,18)" fg:x="94494" fg:w="139"/><text x="7.5590%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (223 samples, 0.02%)</title><rect x="7.3034%" y="533" width="0.0172%" height="15" fill="rgb(244,222,10)" fg:x="94422" fg:w="223"/><text x="7.5534%" y="543.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (244 samples, 0.02%)</title><rect x="7.3034%" y="613" width="0.0189%" height="15" fill="rgb(236,179,52)" fg:x="94422" fg:w="244"/><text x="7.5534%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (244 samples, 0.02%)</title><rect x="7.3034%" y="597" width="0.0189%" height="15" fill="rgb(213,23,39)" fg:x="94422" fg:w="244"/><text x="7.5534%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (244 samples, 0.02%)</title><rect x="7.3034%" y="581" width="0.0189%" height="15" fill="rgb(238,48,10)" fg:x="94422" fg:w="244"/><text x="7.5534%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (244 samples, 0.02%)</title><rect x="7.3034%" y="565" width="0.0189%" height="15" fill="rgb(251,196,23)" fg:x="94422" fg:w="244"/><text x="7.5534%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (244 samples, 0.02%)</title><rect x="7.3034%" y="549" width="0.0189%" height="15" fill="rgb(250,152,24)" fg:x="94422" fg:w="244"/><text x="7.5534%" y="559.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (139 samples, 0.01%)</title><rect x="7.3458%" y="501" width="0.0108%" height="15" fill="rgb(209,150,17)" fg:x="94970" fg:w="139"/><text x="7.5958%" y="511.50"></text></g><g><title>InterpreterOopMap::iterate_oop (145 samples, 0.01%)</title><rect x="7.3454%" y="517" width="0.0112%" height="15" fill="rgb(234,202,34)" fg:x="94965" fg:w="145"/><text x="7.5954%" y="527.50"></text></g><g><title>frame::oops_interpreted_do (154 samples, 0.01%)</title><rect x="7.3452%" y="533" width="0.0119%" height="15" fill="rgb(253,148,53)" fg:x="94963" fg:w="154"/><text x="7.5952%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (335 samples, 0.03%)</title><rect x="7.3313%" y="597" width="0.0259%" height="15" fill="rgb(218,129,16)" fg:x="94783" fg:w="335"/><text x="7.5813%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (282 samples, 0.02%)</title><rect x="7.3354%" y="581" width="0.0218%" height="15" fill="rgb(216,85,19)" fg:x="94836" fg:w="282"/><text x="7.5854%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (282 samples, 0.02%)</title><rect x="7.3354%" y="565" width="0.0218%" height="15" fill="rgb(235,228,7)" fg:x="94836" fg:w="282"/><text x="7.5854%" y="575.50"></text></g><g><title>JavaThread::oops_do (281 samples, 0.02%)</title><rect x="7.3355%" y="549" width="0.0217%" height="15" fill="rgb(245,175,0)" fg:x="94837" fg:w="281"/><text x="7.5855%" y="559.50"></text></g><g><title>G1ParTask::work (1,342 samples, 0.10%)</title><rect x="7.2542%" y="629" width="0.1038%" height="15" fill="rgb(208,168,36)" fg:x="93786" fg:w="1342"/><text x="7.5042%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (347 samples, 0.03%)</title><rect x="7.3312%" y="613" width="0.0268%" height="15" fill="rgb(246,171,24)" fg:x="94781" fg:w="347"/><text x="7.5812%" y="623.50"></text></g><g><title>__GI___clone (1,577 samples, 0.12%)</title><rect x="7.2533%" y="709" width="0.1220%" height="15" fill="rgb(215,142,24)" fg:x="93774" fg:w="1577"/><text x="7.5033%" y="719.50"></text></g><g><title>start_thread (1,577 samples, 0.12%)</title><rect x="7.2533%" y="693" width="0.1220%" height="15" fill="rgb(250,187,7)" fg:x="93774" fg:w="1577"/><text x="7.5033%" y="703.50"></text></g><g><title>thread_native_entry (1,577 samples, 0.12%)</title><rect x="7.2533%" y="677" width="0.1220%" height="15" fill="rgb(228,66,33)" fg:x="93774" fg:w="1577"/><text x="7.5033%" y="687.50"></text></g><g><title>Thread::call_run (1,577 samples, 0.12%)</title><rect x="7.2533%" y="661" width="0.1220%" height="15" fill="rgb(234,215,21)" fg:x="93774" fg:w="1577"/><text x="7.5033%" y="671.50"></text></g><g><title>GangWorker::loop (1,577 samples, 0.12%)</title><rect x="7.2533%" y="645" width="0.1220%" height="15" fill="rgb(222,191,20)" fg:x="93774" fg:w="1577"/><text x="7.5033%" y="655.50"></text></g><g><title>GC_Thread#0 (1,607 samples, 0.12%)</title><rect x="7.2510%" y="725" width="0.1243%" height="15" fill="rgb(245,79,54)" fg:x="93745" fg:w="1607"/><text x="7.5010%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (398 samples, 0.03%)</title><rect x="7.3914%" y="581" width="0.0308%" height="15" fill="rgb(240,10,37)" fg:x="95560" fg:w="398"/><text x="7.6414%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (585 samples, 0.05%)</title><rect x="7.3784%" y="597" width="0.0452%" height="15" fill="rgb(214,192,32)" fg:x="95392" fg:w="585"/><text x="7.6284%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (735 samples, 0.06%)</title><rect x="7.3773%" y="613" width="0.0569%" height="15" fill="rgb(209,36,54)" fg:x="95378" fg:w="735"/><text x="7.6273%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (163 samples, 0.01%)</title><rect x="7.4428%" y="549" width="0.0126%" height="15" fill="rgb(220,10,11)" fg:x="96224" fg:w="163"/><text x="7.6928%" y="559.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (172 samples, 0.01%)</title><rect x="7.4425%" y="565" width="0.0133%" height="15" fill="rgb(221,106,17)" fg:x="96221" fg:w="172"/><text x="7.6925%" y="575.50"></text></g><g><title>G1RemSet::scan_rem_set (201 samples, 0.02%)</title><rect x="7.4424%" y="613" width="0.0155%" height="15" fill="rgb(251,142,44)" fg:x="96219" fg:w="201"/><text x="7.6924%" y="623.50"></text></g><g><title>G1CollectionSet::iterate_from (200 samples, 0.02%)</title><rect x="7.4425%" y="597" width="0.0155%" height="15" fill="rgb(238,13,15)" fg:x="96220" fg:w="200"/><text x="7.6925%" y="607.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (200 samples, 0.02%)</title><rect x="7.4425%" y="581" width="0.0155%" height="15" fill="rgb(208,107,27)" fg:x="96220" fg:w="200"/><text x="7.6925%" y="591.50"></text></g><g><title>G1RootProcessor::process_java_roots (148 samples, 0.01%)</title><rect x="7.4580%" y="597" width="0.0114%" height="15" fill="rgb(205,136,37)" fg:x="96421" fg:w="148"/><text x="7.7080%" y="607.50"></text></g><g><title>G1ParTask::work (1,196 samples, 0.09%)</title><rect x="7.3773%" y="629" width="0.0925%" height="15" fill="rgb(250,205,27)" fg:x="95378" fg:w="1196"/><text x="7.6273%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (154 samples, 0.01%)</title><rect x="7.4579%" y="613" width="0.0119%" height="15" fill="rgb(210,80,43)" fg:x="96420" fg:w="154"/><text x="7.7079%" y="623.50"></text></g><g><title>__GI___clone (1,412 samples, 0.11%)</title><rect x="7.3765%" y="709" width="0.1092%" height="15" fill="rgb(247,160,36)" fg:x="95367" fg:w="1412"/><text x="7.6265%" y="719.50"></text></g><g><title>start_thread (1,412 samples, 0.11%)</title><rect x="7.3765%" y="693" width="0.1092%" height="15" fill="rgb(234,13,49)" fg:x="95367" fg:w="1412"/><text x="7.6265%" y="703.50"></text></g><g><title>thread_native_entry (1,412 samples, 0.11%)</title><rect x="7.3765%" y="677" width="0.1092%" height="15" fill="rgb(234,122,0)" fg:x="95367" fg:w="1412"/><text x="7.6265%" y="687.50"></text></g><g><title>Thread::call_run (1,412 samples, 0.11%)</title><rect x="7.3765%" y="661" width="0.1092%" height="15" fill="rgb(207,146,38)" fg:x="95367" fg:w="1412"/><text x="7.6265%" y="671.50"></text></g><g><title>GangWorker::loop (1,412 samples, 0.11%)</title><rect x="7.3765%" y="645" width="0.1092%" height="15" fill="rgb(207,177,25)" fg:x="95367" fg:w="1412"/><text x="7.6265%" y="655.50"></text></g><g><title>GC_Thread#1 (1,430 samples, 0.11%)</title><rect x="7.3753%" y="725" width="0.1106%" height="15" fill="rgb(211,178,42)" fg:x="95352" fg:w="1430"/><text x="7.6253%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (360 samples, 0.03%)</title><rect x="7.5037%" y="581" width="0.0278%" height="15" fill="rgb(230,69,54)" fg:x="97012" fg:w="360"/><text x="7.7537%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (557 samples, 0.04%)</title><rect x="7.4898%" y="597" width="0.0431%" height="15" fill="rgb(214,135,41)" fg:x="96832" fg:w="557"/><text x="7.7398%" y="607.50"></text></g><g><title>SpinPause (176 samples, 0.01%)</title><rect x="7.5336%" y="597" width="0.0136%" height="15" fill="rgb(237,67,25)" fg:x="97398" fg:w="176"/><text x="7.7836%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (758 samples, 0.06%)</title><rect x="7.4891%" y="613" width="0.0586%" height="15" fill="rgb(222,189,50)" fg:x="96823" fg:w="758"/><text x="7.7391%" y="623.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (150 samples, 0.01%)</title><rect x="7.5477%" y="613" width="0.0116%" height="15" fill="rgb(245,148,34)" fg:x="97581" fg:w="150"/><text x="7.7977%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (150 samples, 0.01%)</title><rect x="7.5477%" y="597" width="0.0116%" height="15" fill="rgb(222,29,6)" fg:x="97581" fg:w="150"/><text x="7.7977%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (150 samples, 0.01%)</title><rect x="7.5477%" y="581" width="0.0116%" height="15" fill="rgb(221,189,43)" fg:x="97581" fg:w="150"/><text x="7.7977%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (150 samples, 0.01%)</title><rect x="7.5477%" y="565" width="0.0116%" height="15" fill="rgb(207,36,27)" fg:x="97581" fg:w="150"/><text x="7.7977%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (150 samples, 0.01%)</title><rect x="7.5477%" y="549" width="0.0116%" height="15" fill="rgb(217,90,24)" fg:x="97581" fg:w="150"/><text x="7.7977%" y="559.50"></text></g><g><title>InterpreterOopMap::iterate_oop (142 samples, 0.01%)</title><rect x="7.5792%" y="517" width="0.0110%" height="15" fill="rgb(224,66,35)" fg:x="97988" fg:w="142"/><text x="7.8292%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (139 samples, 0.01%)</title><rect x="7.5794%" y="501" width="0.0108%" height="15" fill="rgb(221,13,50)" fg:x="97991" fg:w="139"/><text x="7.8294%" y="511.50"></text></g><g><title>frame::oops_interpreted_do (143 samples, 0.01%)</title><rect x="7.5792%" y="533" width="0.0111%" height="15" fill="rgb(236,68,49)" fg:x="97988" fg:w="143"/><text x="7.8292%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (294 samples, 0.02%)</title><rect x="7.5677%" y="597" width="0.0227%" height="15" fill="rgb(229,146,28)" fg:x="97839" fg:w="294"/><text x="7.8177%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (217 samples, 0.02%)</title><rect x="7.5736%" y="581" width="0.0168%" height="15" fill="rgb(225,31,38)" fg:x="97916" fg:w="217"/><text x="7.8236%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (217 samples, 0.02%)</title><rect x="7.5736%" y="565" width="0.0168%" height="15" fill="rgb(250,208,3)" fg:x="97916" fg:w="217"/><text x="7.8236%" y="575.50"></text></g><g><title>JavaThread::oops_do (217 samples, 0.02%)</title><rect x="7.5736%" y="549" width="0.0168%" height="15" fill="rgb(246,54,23)" fg:x="97916" fg:w="217"/><text x="7.8236%" y="559.50"></text></g><g><title>G1ParTask::work (1,327 samples, 0.10%)</title><rect x="7.4891%" y="629" width="0.1026%" height="15" fill="rgb(243,76,11)" fg:x="96823" fg:w="1327"/><text x="7.7391%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (311 samples, 0.02%)</title><rect x="7.5677%" y="613" width="0.0241%" height="15" fill="rgb(245,21,50)" fg:x="97839" fg:w="311"/><text x="7.8177%" y="623.50"></text></g><g><title>GC_Thread#2 (1,513 samples, 0.12%)</title><rect x="7.4859%" y="725" width="0.1170%" height="15" fill="rgb(228,9,43)" fg:x="96782" fg:w="1513"/><text x="7.7359%" y="735.50"></text></g><g><title>__GI___clone (1,484 samples, 0.11%)</title><rect x="7.4882%" y="709" width="0.1148%" height="15" fill="rgb(208,100,47)" fg:x="96811" fg:w="1484"/><text x="7.7382%" y="719.50"></text></g><g><title>start_thread (1,484 samples, 0.11%)</title><rect x="7.4882%" y="693" width="0.1148%" height="15" fill="rgb(232,26,8)" fg:x="96811" fg:w="1484"/><text x="7.7382%" y="703.50"></text></g><g><title>thread_native_entry (1,484 samples, 0.11%)</title><rect x="7.4882%" y="677" width="0.1148%" height="15" fill="rgb(216,166,38)" fg:x="96811" fg:w="1484"/><text x="7.7382%" y="687.50"></text></g><g><title>Thread::call_run (1,484 samples, 0.11%)</title><rect x="7.4882%" y="661" width="0.1148%" height="15" fill="rgb(251,202,51)" fg:x="96811" fg:w="1484"/><text x="7.7382%" y="671.50"></text></g><g><title>GangWorker::loop (1,484 samples, 0.11%)</title><rect x="7.4882%" y="645" width="0.1148%" height="15" fill="rgb(254,216,34)" fg:x="96811" fg:w="1484"/><text x="7.7382%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (393 samples, 0.03%)</title><rect x="7.6205%" y="581" width="0.0304%" height="15" fill="rgb(251,32,27)" fg:x="98522" fg:w="393"/><text x="7.8705%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (583 samples, 0.05%)</title><rect x="7.6069%" y="597" width="0.0451%" height="15" fill="rgb(208,127,28)" fg:x="98346" fg:w="583"/><text x="7.8569%" y="607.50"></text></g><g><title>SpinPause (141 samples, 0.01%)</title><rect x="7.6527%" y="597" width="0.0109%" height="15" fill="rgb(224,137,22)" fg:x="98938" fg:w="141"/><text x="7.9027%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (747 samples, 0.06%)</title><rect x="7.6059%" y="613" width="0.0578%" height="15" fill="rgb(254,70,32)" fg:x="98333" fg:w="747"/><text x="7.8559%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (166 samples, 0.01%)</title><rect x="7.6639%" y="533" width="0.0128%" height="15" fill="rgb(229,75,37)" fg:x="99083" fg:w="166"/><text x="7.9139%" y="543.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (211 samples, 0.02%)</title><rect x="7.6638%" y="613" width="0.0163%" height="15" fill="rgb(252,64,23)" fg:x="99082" fg:w="211"/><text x="7.9138%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (211 samples, 0.02%)</title><rect x="7.6638%" y="597" width="0.0163%" height="15" fill="rgb(232,162,48)" fg:x="99082" fg:w="211"/><text x="7.9138%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (211 samples, 0.02%)</title><rect x="7.6638%" y="581" width="0.0163%" height="15" fill="rgb(246,160,12)" fg:x="99082" fg:w="211"/><text x="7.9138%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (211 samples, 0.02%)</title><rect x="7.6638%" y="565" width="0.0163%" height="15" fill="rgb(247,166,0)" fg:x="99082" fg:w="211"/><text x="7.9138%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (211 samples, 0.02%)</title><rect x="7.6638%" y="549" width="0.0163%" height="15" fill="rgb(249,219,21)" fg:x="99082" fg:w="211"/><text x="7.9138%" y="559.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (135 samples, 0.01%)</title><rect x="7.6802%" y="565" width="0.0104%" height="15" fill="rgb(205,209,3)" fg:x="99293" fg:w="135"/><text x="7.9302%" y="575.50"></text></g><g><title>G1RemSet::scan_rem_set (141 samples, 0.01%)</title><rect x="7.6802%" y="613" width="0.0109%" height="15" fill="rgb(243,44,1)" fg:x="99293" fg:w="141"/><text x="7.9302%" y="623.50"></text></g><g><title>G1CollectionSet::iterate_from (141 samples, 0.01%)</title><rect x="7.6802%" y="597" width="0.0109%" height="15" fill="rgb(206,159,16)" fg:x="99293" fg:w="141"/><text x="7.9302%" y="607.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (141 samples, 0.01%)</title><rect x="7.6802%" y="581" width="0.0109%" height="15" fill="rgb(244,77,30)" fg:x="99293" fg:w="141"/><text x="7.9302%" y="591.50"></text></g><g><title>G1RootProcessor::process_java_roots (217 samples, 0.02%)</title><rect x="7.6912%" y="597" width="0.0168%" height="15" fill="rgb(218,69,12)" fg:x="99436" fg:w="217"/><text x="7.9412%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (202 samples, 0.02%)</title><rect x="7.6924%" y="581" width="0.0156%" height="15" fill="rgb(212,87,7)" fg:x="99451" fg:w="202"/><text x="7.9424%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (202 samples, 0.02%)</title><rect x="7.6924%" y="565" width="0.0156%" height="15" fill="rgb(245,114,25)" fg:x="99451" fg:w="202"/><text x="7.9424%" y="575.50"></text></g><g><title>JavaThread::oops_do (202 samples, 0.02%)</title><rect x="7.6924%" y="549" width="0.0156%" height="15" fill="rgb(210,61,42)" fg:x="99451" fg:w="202"/><text x="7.9424%" y="559.50"></text></g><g><title>G1ParTask::work (1,337 samples, 0.10%)</title><rect x="7.6059%" y="629" width="0.1034%" height="15" fill="rgb(211,52,33)" fg:x="98333" fg:w="1337"/><text x="7.8559%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (236 samples, 0.02%)</title><rect x="7.6911%" y="613" width="0.0183%" height="15" fill="rgb(234,58,33)" fg:x="99434" fg:w="236"/><text x="7.9411%" y="623.50"></text></g><g><title>__GI___clone (1,538 samples, 0.12%)</title><rect x="7.6050%" y="709" width="0.1190%" height="15" fill="rgb(220,115,36)" fg:x="98321" fg:w="1538"/><text x="7.8550%" y="719.50"></text></g><g><title>start_thread (1,538 samples, 0.12%)</title><rect x="7.6050%" y="693" width="0.1190%" height="15" fill="rgb(243,153,54)" fg:x="98321" fg:w="1538"/><text x="7.8550%" y="703.50"></text></g><g><title>thread_native_entry (1,538 samples, 0.12%)</title><rect x="7.6050%" y="677" width="0.1190%" height="15" fill="rgb(251,47,18)" fg:x="98321" fg:w="1538"/><text x="7.8550%" y="687.50"></text></g><g><title>Thread::call_run (1,538 samples, 0.12%)</title><rect x="7.6050%" y="661" width="0.1190%" height="15" fill="rgb(242,102,42)" fg:x="98321" fg:w="1538"/><text x="7.8550%" y="671.50"></text></g><g><title>GangWorker::loop (1,538 samples, 0.12%)</title><rect x="7.6050%" y="645" width="0.1190%" height="15" fill="rgb(234,31,38)" fg:x="98321" fg:w="1538"/><text x="7.8550%" y="655.50"></text></g><g><title>GC_Thread#3 (1,565 samples, 0.12%)</title><rect x="7.6030%" y="725" width="0.1211%" height="15" fill="rgb(221,117,51)" fg:x="98295" fg:w="1565"/><text x="7.8530%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (292 samples, 0.02%)</title><rect x="7.7421%" y="581" width="0.0226%" height="15" fill="rgb(212,20,18)" fg:x="100094" fg:w="292"/><text x="7.9921%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (503 samples, 0.04%)</title><rect x="7.7279%" y="597" width="0.0389%" height="15" fill="rgb(245,133,36)" fg:x="99910" fg:w="503"/><text x="7.9779%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (620 samples, 0.05%)</title><rect x="7.7269%" y="613" width="0.0480%" height="15" fill="rgb(212,6,19)" fg:x="99897" fg:w="620"/><text x="7.9769%" y="623.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (141 samples, 0.01%)</title><rect x="7.7749%" y="613" width="0.0109%" height="15" fill="rgb(218,1,36)" fg:x="100518" fg:w="141"/><text x="8.0249%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (141 samples, 0.01%)</title><rect x="7.7749%" y="597" width="0.0109%" height="15" fill="rgb(246,84,54)" fg:x="100518" fg:w="141"/><text x="8.0249%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (141 samples, 0.01%)</title><rect x="7.7749%" y="581" width="0.0109%" height="15" fill="rgb(242,110,6)" fg:x="100518" fg:w="141"/><text x="8.0249%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (141 samples, 0.01%)</title><rect x="7.7749%" y="565" width="0.0109%" height="15" fill="rgb(214,47,5)" fg:x="100518" fg:w="141"/><text x="8.0249%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (141 samples, 0.01%)</title><rect x="7.7749%" y="549" width="0.0109%" height="15" fill="rgb(218,159,25)" fg:x="100518" fg:w="141"/><text x="8.0249%" y="559.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (210 samples, 0.02%)</title><rect x="7.8082%" y="485" width="0.0162%" height="15" fill="rgb(215,211,28)" fg:x="100949" fg:w="210"/><text x="8.0582%" y="495.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (162 samples, 0.01%)</title><rect x="7.8120%" y="469" width="0.0125%" height="15" fill="rgb(238,59,32)" fg:x="100997" fg:w="162"/><text x="8.0620%" y="479.50"></text></g><g><title>InterpreterOopMap::iterate_oop (290 samples, 0.02%)</title><rect x="7.8038%" y="517" width="0.0224%" height="15" fill="rgb(226,82,3)" fg:x="100891" fg:w="290"/><text x="8.0538%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (285 samples, 0.02%)</title><rect x="7.8041%" y="501" width="0.0220%" height="15" fill="rgb(240,164,32)" fg:x="100896" fg:w="285"/><text x="8.0541%" y="511.50"></text></g><g><title>G1RootProcessor::process_java_roots (440 samples, 0.03%)</title><rect x="7.7928%" y="597" width="0.0340%" height="15" fill="rgb(232,46,7)" fg:x="100750" fg:w="440"/><text x="8.0428%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (402 samples, 0.03%)</title><rect x="7.7958%" y="581" width="0.0311%" height="15" fill="rgb(229,129,53)" fg:x="100788" fg:w="402"/><text x="8.0458%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (402 samples, 0.03%)</title><rect x="7.7958%" y="565" width="0.0311%" height="15" fill="rgb(234,188,29)" fg:x="100788" fg:w="402"/><text x="8.0458%" y="575.50"></text></g><g><title>JavaThread::oops_do (392 samples, 0.03%)</title><rect x="7.7966%" y="549" width="0.0303%" height="15" fill="rgb(246,141,4)" fg:x="100798" fg:w="392"/><text x="8.0466%" y="559.50"></text></g><g><title>frame::oops_interpreted_do (301 samples, 0.02%)</title><rect x="7.8036%" y="533" width="0.0233%" height="15" fill="rgb(229,23,39)" fg:x="100889" fg:w="301"/><text x="8.0536%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (465 samples, 0.04%)</title><rect x="7.7928%" y="613" width="0.0360%" height="15" fill="rgb(206,12,3)" fg:x="100749" fg:w="465"/><text x="8.0428%" y="623.50"></text></g><g><title>G1ParTask::work (1,318 samples, 0.10%)</title><rect x="7.7269%" y="629" width="0.1019%" height="15" fill="rgb(252,226,20)" fg:x="99897" fg:w="1318"/><text x="7.9769%" y="639.50"></text></g><g><title>GC_Thread#4 (1,551 samples, 0.12%)</title><rect x="7.7240%" y="725" width="0.1200%" height="15" fill="rgb(216,123,35)" fg:x="99860" fg:w="1551"/><text x="7.9740%" y="735.50"></text></g><g><title>__GI___clone (1,530 samples, 0.12%)</title><rect x="7.7256%" y="709" width="0.1183%" height="15" fill="rgb(212,68,40)" fg:x="99881" fg:w="1530"/><text x="7.9756%" y="719.50"></text></g><g><title>start_thread (1,530 samples, 0.12%)</title><rect x="7.7256%" y="693" width="0.1183%" height="15" fill="rgb(254,125,32)" fg:x="99881" fg:w="1530"/><text x="7.9756%" y="703.50"></text></g><g><title>thread_native_entry (1,530 samples, 0.12%)</title><rect x="7.7256%" y="677" width="0.1183%" height="15" fill="rgb(253,97,22)" fg:x="99881" fg:w="1530"/><text x="7.9756%" y="687.50"></text></g><g><title>Thread::call_run (1,530 samples, 0.12%)</title><rect x="7.7256%" y="661" width="0.1183%" height="15" fill="rgb(241,101,14)" fg:x="99881" fg:w="1530"/><text x="7.9756%" y="671.50"></text></g><g><title>GangWorker::loop (1,530 samples, 0.12%)</title><rect x="7.7256%" y="645" width="0.1183%" height="15" fill="rgb(238,103,29)" fg:x="99881" fg:w="1530"/><text x="7.9756%" y="655.50"></text></g><g><title>OopOopIterateBackwardsDispatch<G1ScanEvacuatedObjClosure>::Table::oop_oop_iterate_backwards<InstanceKlass, unsigned int> (148 samples, 0.01%)</title><rect x="7.8795%" y="565" width="0.0114%" height="15" fill="rgb(233,195,47)" fg:x="101870" fg:w="148"/><text x="8.1295%" y="575.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (480 samples, 0.04%)</title><rect x="7.8639%" y="581" width="0.0371%" height="15" fill="rgb(246,218,30)" fg:x="101668" fg:w="480"/><text x="8.1139%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (718 samples, 0.06%)</title><rect x="7.8464%" y="597" width="0.0555%" height="15" fill="rgb(219,145,47)" fg:x="101442" fg:w="718"/><text x="8.0964%" y="607.50"></text></g><g><title>SpinPause (178 samples, 0.01%)</title><rect x="7.9024%" y="597" width="0.0138%" height="15" fill="rgb(243,12,26)" fg:x="102166" fg:w="178"/><text x="8.1524%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (917 samples, 0.07%)</title><rect x="7.8454%" y="613" width="0.0709%" height="15" fill="rgb(214,87,16)" fg:x="101429" fg:w="917"/><text x="8.0954%" y="623.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (142 samples, 0.01%)</title><rect x="7.9163%" y="613" width="0.0110%" height="15" fill="rgb(208,99,42)" fg:x="102346" fg:w="142"/><text x="8.1663%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (142 samples, 0.01%)</title><rect x="7.9163%" y="597" width="0.0110%" height="15" fill="rgb(253,99,2)" fg:x="102346" fg:w="142"/><text x="8.1663%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (142 samples, 0.01%)</title><rect x="7.9163%" y="581" width="0.0110%" height="15" fill="rgb(220,168,23)" fg:x="102346" fg:w="142"/><text x="8.1663%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (142 samples, 0.01%)</title><rect x="7.9163%" y="565" width="0.0110%" height="15" fill="rgb(242,38,24)" fg:x="102346" fg:w="142"/><text x="8.1663%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (142 samples, 0.01%)</title><rect x="7.9163%" y="549" width="0.0110%" height="15" fill="rgb(225,182,9)" fg:x="102346" fg:w="142"/><text x="8.1663%" y="559.50"></text></g><g><title>G1RemSet::scan_rem_set (142 samples, 0.01%)</title><rect x="7.9273%" y="613" width="0.0110%" height="15" fill="rgb(243,178,37)" fg:x="102488" fg:w="142"/><text x="8.1773%" y="623.50"></text></g><g><title>G1CollectionSet::iterate_from (142 samples, 0.01%)</title><rect x="7.9273%" y="597" width="0.0110%" height="15" fill="rgb(232,139,19)" fg:x="102488" fg:w="142"/><text x="8.1773%" y="607.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (141 samples, 0.01%)</title><rect x="7.9274%" y="581" width="0.0109%" height="15" fill="rgb(225,201,24)" fg:x="102489" fg:w="141"/><text x="8.1774%" y="591.50"></text></g><g><title>frame::oops_interpreted_do (136 samples, 0.01%)</title><rect x="7.9479%" y="533" width="0.0105%" height="15" fill="rgb(221,47,46)" fg:x="102754" fg:w="136"/><text x="8.1979%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (262 samples, 0.02%)</title><rect x="7.9383%" y="597" width="0.0203%" height="15" fill="rgb(249,23,13)" fg:x="102631" fg:w="262"/><text x="8.1883%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (227 samples, 0.02%)</title><rect x="7.9410%" y="581" width="0.0176%" height="15" fill="rgb(219,9,5)" fg:x="102666" fg:w="227"/><text x="8.1910%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (227 samples, 0.02%)</title><rect x="7.9410%" y="565" width="0.0176%" height="15" fill="rgb(254,171,16)" fg:x="102666" fg:w="227"/><text x="8.1910%" y="575.50"></text></g><g><title>JavaThread::oops_do (226 samples, 0.02%)</title><rect x="7.9411%" y="549" width="0.0175%" height="15" fill="rgb(230,171,20)" fg:x="102667" fg:w="226"/><text x="8.1911%" y="559.50"></text></g><g><title>G1ParTask::work (1,481 samples, 0.11%)</title><rect x="7.8454%" y="629" width="0.1146%" height="15" fill="rgb(210,71,41)" fg:x="101429" fg:w="1481"/><text x="8.0954%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (280 samples, 0.02%)</title><rect x="7.9383%" y="613" width="0.0217%" height="15" fill="rgb(206,173,20)" fg:x="102630" fg:w="280"/><text x="8.1883%" y="623.50"></text></g><g><title>__GI___clone (1,677 samples, 0.13%)</title><rect x="7.8451%" y="709" width="0.1297%" height="15" fill="rgb(233,88,34)" fg:x="101426" fg:w="1677"/><text x="8.0951%" y="719.50"></text></g><g><title>start_thread (1,677 samples, 0.13%)</title><rect x="7.8451%" y="693" width="0.1297%" height="15" fill="rgb(223,209,46)" fg:x="101426" fg:w="1677"/><text x="8.0951%" y="703.50"></text></g><g><title>thread_native_entry (1,677 samples, 0.13%)</title><rect x="7.8451%" y="677" width="0.1297%" height="15" fill="rgb(250,43,18)" fg:x="101426" fg:w="1677"/><text x="8.0951%" y="687.50"></text></g><g><title>Thread::call_run (1,677 samples, 0.13%)</title><rect x="7.8451%" y="661" width="0.1297%" height="15" fill="rgb(208,13,10)" fg:x="101426" fg:w="1677"/><text x="8.0951%" y="671.50"></text></g><g><title>GangWorker::loop (1,677 samples, 0.13%)</title><rect x="7.8451%" y="645" width="0.1297%" height="15" fill="rgb(212,200,36)" fg:x="101426" fg:w="1677"/><text x="8.0951%" y="655.50"></text></g><g><title>GC_Thread#5 (1,694 samples, 0.13%)</title><rect x="7.8440%" y="725" width="0.1310%" height="15" fill="rgb(225,90,30)" fg:x="101411" fg:w="1694"/><text x="8.0940%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (344 samples, 0.03%)</title><rect x="7.9918%" y="581" width="0.0266%" height="15" fill="rgb(236,182,39)" fg:x="103322" fg:w="344"/><text x="8.2418%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (546 samples, 0.04%)</title><rect x="7.9780%" y="597" width="0.0422%" height="15" fill="rgb(212,144,35)" fg:x="103144" fg:w="546"/><text x="8.2280%" y="607.50"></text></g><g><title>SpinPause (151 samples, 0.01%)</title><rect x="8.0211%" y="597" width="0.0117%" height="15" fill="rgb(228,63,44)" fg:x="103701" fg:w="151"/><text x="8.2711%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (726 samples, 0.06%)</title><rect x="7.9771%" y="613" width="0.0562%" height="15" fill="rgb(228,109,6)" fg:x="103132" fg:w="726"/><text x="8.2271%" y="623.50"></text></g><g><title>G1RemSet::scan_rem_set (132 samples, 0.01%)</title><rect x="8.0410%" y="613" width="0.0102%" height="15" fill="rgb(238,117,24)" fg:x="103958" fg:w="132"/><text x="8.2910%" y="623.50"></text></g><g><title>G1CollectionSet::iterate_from (132 samples, 0.01%)</title><rect x="8.0410%" y="597" width="0.0102%" height="15" fill="rgb(242,26,26)" fg:x="103958" fg:w="132"/><text x="8.2910%" y="607.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (132 samples, 0.01%)</title><rect x="8.0410%" y="581" width="0.0102%" height="15" fill="rgb(221,92,48)" fg:x="103958" fg:w="132"/><text x="8.2910%" y="591.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (227 samples, 0.02%)</title><rect x="8.0629%" y="485" width="0.0176%" height="15" fill="rgb(209,209,32)" fg:x="104241" fg:w="227"/><text x="8.3129%" y="495.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (174 samples, 0.01%)</title><rect x="8.0670%" y="469" width="0.0135%" height="15" fill="rgb(221,70,22)" fg:x="104294" fg:w="174"/><text x="8.3170%" y="479.50"></text></g><g><title>InterpreterOopMap::iterate_oop (319 samples, 0.02%)</title><rect x="8.0580%" y="517" width="0.0247%" height="15" fill="rgb(248,145,5)" fg:x="104178" fg:w="319"/><text x="8.3080%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (315 samples, 0.02%)</title><rect x="8.0583%" y="501" width="0.0244%" height="15" fill="rgb(226,116,26)" fg:x="104182" fg:w="315"/><text x="8.3083%" y="511.50"></text></g><g><title>frame::oops_interpreted_do (328 samples, 0.03%)</title><rect x="8.0578%" y="533" width="0.0254%" height="15" fill="rgb(244,5,17)" fg:x="104176" fg:w="328"/><text x="8.3078%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (415 samples, 0.03%)</title><rect x="8.0512%" y="597" width="0.0321%" height="15" fill="rgb(252,159,33)" fg:x="104090" fg:w="415"/><text x="8.3012%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (404 samples, 0.03%)</title><rect x="8.0520%" y="581" width="0.0312%" height="15" fill="rgb(206,71,0)" fg:x="104101" fg:w="404"/><text x="8.3020%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (404 samples, 0.03%)</title><rect x="8.0520%" y="565" width="0.0312%" height="15" fill="rgb(233,118,54)" fg:x="104101" fg:w="404"/><text x="8.3020%" y="575.50"></text></g><g><title>JavaThread::oops_do (404 samples, 0.03%)</title><rect x="8.0520%" y="549" width="0.0312%" height="15" fill="rgb(234,83,48)" fg:x="104101" fg:w="404"/><text x="8.3020%" y="559.50"></text></g><g><title>G1ParTask::work (1,378 samples, 0.11%)</title><rect x="7.9771%" y="629" width="0.1066%" height="15" fill="rgb(228,3,54)" fg:x="103132" fg:w="1378"/><text x="8.2271%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (420 samples, 0.03%)</title><rect x="8.0512%" y="613" width="0.0325%" height="15" fill="rgb(226,155,13)" fg:x="104090" fg:w="420"/><text x="8.3012%" y="623.50"></text></g><g><title>__GI___clone (1,580 samples, 0.12%)</title><rect x="7.9762%" y="709" width="0.1222%" height="15" fill="rgb(241,28,37)" fg:x="103120" fg:w="1580"/><text x="8.2262%" y="719.50"></text></g><g><title>start_thread (1,580 samples, 0.12%)</title><rect x="7.9762%" y="693" width="0.1222%" height="15" fill="rgb(233,93,10)" fg:x="103120" fg:w="1580"/><text x="8.2262%" y="703.50"></text></g><g><title>thread_native_entry (1,580 samples, 0.12%)</title><rect x="7.9762%" y="677" width="0.1222%" height="15" fill="rgb(225,113,19)" fg:x="103120" fg:w="1580"/><text x="8.2262%" y="687.50"></text></g><g><title>Thread::call_run (1,580 samples, 0.12%)</title><rect x="7.9762%" y="661" width="0.1222%" height="15" fill="rgb(241,2,18)" fg:x="103120" fg:w="1580"/><text x="8.2262%" y="671.50"></text></g><g><title>GangWorker::loop (1,580 samples, 0.12%)</title><rect x="7.9762%" y="645" width="0.1222%" height="15" fill="rgb(228,207,21)" fg:x="103120" fg:w="1580"/><text x="8.2262%" y="655.50"></text></g><g><title>GC_Thread#6 (1,597 samples, 0.12%)</title><rect x="7.9750%" y="725" width="0.1235%" height="15" fill="rgb(213,211,35)" fg:x="103105" fg:w="1597"/><text x="8.2250%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (297 samples, 0.02%)</title><rect x="8.1134%" y="581" width="0.0230%" height="15" fill="rgb(209,83,10)" fg:x="104894" fg:w="297"/><text x="8.3634%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (449 samples, 0.03%)</title><rect x="8.1023%" y="597" width="0.0347%" height="15" fill="rgb(209,164,1)" fg:x="104751" fg:w="449"/><text x="8.3523%" y="607.50"></text></g><g><title>SpinPause (147 samples, 0.01%)</title><rect x="8.1375%" y="597" width="0.0114%" height="15" fill="rgb(213,184,43)" fg:x="105206" fg:w="147"/><text x="8.3875%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (613 samples, 0.05%)</title><rect x="8.1018%" y="613" width="0.0474%" height="15" fill="rgb(231,61,34)" fg:x="104744" fg:w="613"/><text x="8.3518%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (166 samples, 0.01%)</title><rect x="8.1580%" y="549" width="0.0128%" height="15" fill="rgb(235,75,3)" fg:x="105471" fg:w="166"/><text x="8.4080%" y="559.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (178 samples, 0.01%)</title><rect x="8.1579%" y="565" width="0.0138%" height="15" fill="rgb(220,106,47)" fg:x="105469" fg:w="178"/><text x="8.4079%" y="575.50"></text></g><g><title>G1RemSet::scan_rem_set (189 samples, 0.01%)</title><rect x="8.1577%" y="613" width="0.0146%" height="15" fill="rgb(210,196,33)" fg:x="105467" fg:w="189"/><text x="8.4077%" y="623.50"></text></g><g><title>G1CollectionSet::iterate_from (189 samples, 0.01%)</title><rect x="8.1577%" y="597" width="0.0146%" height="15" fill="rgb(229,154,42)" fg:x="105467" fg:w="189"/><text x="8.4077%" y="607.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (189 samples, 0.01%)</title><rect x="8.1577%" y="581" width="0.0146%" height="15" fill="rgb(228,114,26)" fg:x="105467" fg:w="189"/><text x="8.4077%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (147 samples, 0.01%)</title><rect x="8.1752%" y="501" width="0.0114%" height="15" fill="rgb(208,144,1)" fg:x="105693" fg:w="147"/><text x="8.4252%" y="511.50"></text></g><g><title>frame::oops_do_internal (159 samples, 0.01%)</title><rect x="8.1743%" y="533" width="0.0123%" height="15" fill="rgb(239,112,37)" fg:x="105682" fg:w="159"/><text x="8.4243%" y="543.50"></text></g><g><title>OopMapSet::oops_do (159 samples, 0.01%)</title><rect x="8.1743%" y="517" width="0.0123%" height="15" fill="rgb(210,96,50)" fg:x="105682" fg:w="159"/><text x="8.4243%" y="527.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (142 samples, 0.01%)</title><rect x="8.1927%" y="469" width="0.0110%" height="15" fill="rgb(222,178,2)" fg:x="105920" fg:w="142"/><text x="8.4427%" y="479.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (185 samples, 0.01%)</title><rect x="8.1895%" y="485" width="0.0143%" height="15" fill="rgb(226,74,18)" fg:x="105878" fg:w="185"/><text x="8.4395%" y="495.50"></text></g><g><title>InterpreterOopMap::iterate_oop (237 samples, 0.02%)</title><rect x="8.1867%" y="517" width="0.0183%" height="15" fill="rgb(225,67,54)" fg:x="105842" fg:w="237"/><text x="8.4367%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (234 samples, 0.02%)</title><rect x="8.1869%" y="501" width="0.0181%" height="15" fill="rgb(251,92,32)" fg:x="105845" fg:w="234"/><text x="8.4369%" y="511.50"></text></g><g><title>frame::oops_interpreted_do (242 samples, 0.02%)</title><rect x="8.1866%" y="533" width="0.0187%" height="15" fill="rgb(228,149,22)" fg:x="105841" fg:w="242"/><text x="8.4366%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (421 samples, 0.03%)</title><rect x="8.1729%" y="597" width="0.0326%" height="15" fill="rgb(243,54,13)" fg:x="105663" fg:w="421"/><text x="8.4229%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (421 samples, 0.03%)</title><rect x="8.1729%" y="581" width="0.0326%" height="15" fill="rgb(243,180,28)" fg:x="105663" fg:w="421"/><text x="8.4229%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (421 samples, 0.03%)</title><rect x="8.1729%" y="565" width="0.0326%" height="15" fill="rgb(208,167,24)" fg:x="105663" fg:w="421"/><text x="8.4229%" y="575.50"></text></g><g><title>JavaThread::oops_do (421 samples, 0.03%)</title><rect x="8.1729%" y="549" width="0.0326%" height="15" fill="rgb(245,73,45)" fg:x="105663" fg:w="421"/><text x="8.4229%" y="559.50"></text></g><g><title>G1ParTask::work (1,365 samples, 0.11%)</title><rect x="8.1018%" y="629" width="0.1056%" height="15" fill="rgb(237,203,48)" fg:x="104744" fg:w="1365"/><text x="8.3518%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (453 samples, 0.04%)</title><rect x="8.1723%" y="613" width="0.0350%" height="15" fill="rgb(211,197,16)" fg:x="105656" fg:w="453"/><text x="8.4223%" y="623.50"></text></g><g><title>__GI___clone (1,557 samples, 0.12%)</title><rect x="8.1007%" y="709" width="0.1204%" height="15" fill="rgb(243,99,51)" fg:x="104730" fg:w="1557"/><text x="8.3507%" y="719.50"></text></g><g><title>start_thread (1,557 samples, 0.12%)</title><rect x="8.1007%" y="693" width="0.1204%" height="15" fill="rgb(215,123,29)" fg:x="104730" fg:w="1557"/><text x="8.3507%" y="703.50"></text></g><g><title>thread_native_entry (1,557 samples, 0.12%)</title><rect x="8.1007%" y="677" width="0.1204%" height="15" fill="rgb(239,186,37)" fg:x="104730" fg:w="1557"/><text x="8.3507%" y="687.50"></text></g><g><title>Thread::call_run (1,557 samples, 0.12%)</title><rect x="8.1007%" y="661" width="0.1204%" height="15" fill="rgb(252,136,39)" fg:x="104730" fg:w="1557"/><text x="8.3507%" y="671.50"></text></g><g><title>GangWorker::loop (1,557 samples, 0.12%)</title><rect x="8.1007%" y="645" width="0.1204%" height="15" fill="rgb(223,213,32)" fg:x="104730" fg:w="1557"/><text x="8.3507%" y="655.50"></text></g><g><title>GC_Thread#7 (1,587 samples, 0.12%)</title><rect x="8.0985%" y="725" width="0.1228%" height="15" fill="rgb(233,115,5)" fg:x="104702" fg:w="1587"/><text x="8.3485%" y="735.50"></text></g><g><title>[perf-956514.map] (136 samples, 0.01%)</title><rect x="8.2245%" y="709" width="0.0105%" height="15" fill="rgb(207,226,44)" fg:x="106330" fg:w="136"/><text x="8.4745%" y="719.50"></text></g><g><title>Service_Thread (155 samples, 0.01%)</title><rect x="8.2242%" y="725" width="0.0120%" height="15" fill="rgb(208,126,0)" fg:x="106327" fg:w="155"/><text x="8.4742%" y="735.50"></text></g><g><title>finish_task_switch (130 samples, 0.01%)</title><rect x="8.2432%" y="389" width="0.0101%" height="15" fill="rgb(244,66,21)" fg:x="106572" fg:w="130"/><text x="8.4932%" y="399.50"></text></g><g><title>futex_wait_queue_me (177 samples, 0.01%)</title><rect x="8.2412%" y="437" width="0.0137%" height="15" fill="rgb(222,97,12)" fg:x="106547" fg:w="177"/><text x="8.4912%" y="447.50"></text></g><g><title>schedule (164 samples, 0.01%)</title><rect x="8.2422%" y="421" width="0.0127%" height="15" fill="rgb(219,213,19)" fg:x="106560" fg:w="164"/><text x="8.4922%" y="431.50"></text></g><g><title>__schedule (163 samples, 0.01%)</title><rect x="8.2423%" y="405" width="0.0126%" height="15" fill="rgb(252,169,30)" fg:x="106561" fg:w="163"/><text x="8.4923%" y="415.50"></text></g><g><title>do_futex (194 samples, 0.02%)</title><rect x="8.2408%" y="469" width="0.0150%" height="15" fill="rgb(206,32,51)" fg:x="106541" fg:w="194"/><text x="8.4908%" y="479.50"></text></g><g><title>futex_wait (192 samples, 0.01%)</title><rect x="8.2409%" y="453" width="0.0149%" height="15" fill="rgb(250,172,42)" fg:x="106543" fg:w="192"/><text x="8.4909%" y="463.50"></text></g><g><title>do_syscall_64 (201 samples, 0.02%)</title><rect x="8.2405%" y="501" width="0.0155%" height="15" fill="rgb(209,34,43)" fg:x="106537" fg:w="201"/><text x="8.4905%" y="511.50"></text></g><g><title>__x64_sys_futex (200 samples, 0.02%)</title><rect x="8.2405%" y="485" width="0.0155%" height="15" fill="rgb(223,11,35)" fg:x="106538" fg:w="200"/><text x="8.4905%" y="495.50"></text></g><g><title>__pthread_cond_timedwait (220 samples, 0.02%)</title><rect x="8.2393%" y="565" width="0.0170%" height="15" fill="rgb(251,219,26)" fg:x="106522" fg:w="220"/><text x="8.4893%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (218 samples, 0.02%)</title><rect x="8.2395%" y="549" width="0.0169%" height="15" fill="rgb(231,119,3)" fg:x="106524" fg:w="218"/><text x="8.4895%" y="559.50"></text></g><g><title>futex_abstimed_wait_cancelable (213 samples, 0.02%)</title><rect x="8.2398%" y="533" width="0.0165%" height="15" fill="rgb(216,97,11)" fg:x="106529" fg:w="213"/><text x="8.4898%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (205 samples, 0.02%)</title><rect x="8.2405%" y="517" width="0.0159%" height="15" fill="rgb(223,59,9)" fg:x="106537" fg:w="205"/><text x="8.4905%" y="527.50"></text></g><g><title>Monitor::IWait (248 samples, 0.02%)</title><rect x="8.2382%" y="597" width="0.0192%" height="15" fill="rgb(233,93,31)" fg:x="106508" fg:w="248"/><text x="8.4882%" y="607.50"></text></g><g><title>os::PlatformEvent::park (237 samples, 0.02%)</title><rect x="8.2391%" y="581" width="0.0183%" height="15" fill="rgb(239,81,33)" fg:x="106519" fg:w="237"/><text x="8.4891%" y="591.50"></text></g><g><title>Monitor::wait (249 samples, 0.02%)</title><rect x="8.2382%" y="613" width="0.0193%" height="15" fill="rgb(213,120,34)" fg:x="106508" fg:w="249"/><text x="8.4882%" y="623.50"></text></g><g><title>NMethodSweeper::process_compiled_method (143 samples, 0.01%)</title><rect x="8.2596%" y="581" width="0.0111%" height="15" fill="rgb(243,49,53)" fg:x="106785" fg:w="143"/><text x="8.5096%" y="591.50"></text></g><g><title>NMethodSweeper::possibly_sweep (174 samples, 0.01%)</title><rect x="8.2575%" y="613" width="0.0135%" height="15" fill="rgb(247,216,33)" fg:x="106757" fg:w="174"/><text x="8.5075%" y="623.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (168 samples, 0.01%)</title><rect x="8.2579%" y="597" width="0.0130%" height="15" fill="rgb(226,26,14)" fg:x="106763" fg:w="168"/><text x="8.5079%" y="607.50"></text></g><g><title>__GI___clone (441 samples, 0.03%)</title><rect x="8.2378%" y="709" width="0.0341%" height="15" fill="rgb(215,49,53)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="719.50"></text></g><g><title>start_thread (441 samples, 0.03%)</title><rect x="8.2378%" y="693" width="0.0341%" height="15" fill="rgb(245,162,40)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="703.50"></text></g><g><title>thread_native_entry (441 samples, 0.03%)</title><rect x="8.2378%" y="677" width="0.0341%" height="15" fill="rgb(229,68,17)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="687.50"></text></g><g><title>Thread::call_run (441 samples, 0.03%)</title><rect x="8.2378%" y="661" width="0.0341%" height="15" fill="rgb(213,182,10)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (441 samples, 0.03%)</title><rect x="8.2378%" y="645" width="0.0341%" height="15" fill="rgb(245,125,30)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="655.50"></text></g><g><title>NMethodSweeper::sweeper_loop (441 samples, 0.03%)</title><rect x="8.2378%" y="629" width="0.0341%" height="15" fill="rgb(232,202,2)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="639.50"></text></g><g><title>Sweeper_thread (464 samples, 0.04%)</title><rect x="8.2362%" y="725" width="0.0359%" height="15" fill="rgb(237,140,51)" fg:x="106482" fg:w="464"/><text x="8.4862%" y="735.50"></text></g><g><title>[perf-956514.map] (554 samples, 0.04%)</title><rect x="8.2743%" y="709" width="0.0429%" height="15" fill="rgb(236,157,25)" fg:x="106974" fg:w="554"/><text x="8.5243%" y="719.50"></text></g><g><title>Thread-0 (610 samples, 0.05%)</title><rect x="8.2721%" y="725" width="0.0472%" height="15" fill="rgb(219,209,0)" fg:x="106946" fg:w="610"/><text x="8.5221%" y="735.50"></text></g><g><title>VM_Periodic_Tas (151 samples, 0.01%)</title><rect x="8.3193%" y="725" width="0.0117%" height="15" fill="rgb(240,116,54)" fg:x="107556" fg:w="151"/><text x="8.5693%" y="735.50"></text></g><g><title>__GI___clone (140 samples, 0.01%)</title><rect x="8.3201%" y="709" width="0.0108%" height="15" fill="rgb(216,10,36)" fg:x="107567" fg:w="140"/><text x="8.5701%" y="719.50"></text></g><g><title>start_thread (140 samples, 0.01%)</title><rect x="8.3201%" y="693" width="0.0108%" height="15" fill="rgb(222,72,44)" fg:x="107567" fg:w="140"/><text x="8.5701%" y="703.50"></text></g><g><title>thread_native_entry (140 samples, 0.01%)</title><rect x="8.3201%" y="677" width="0.0108%" height="15" fill="rgb(232,159,9)" fg:x="107567" fg:w="140"/><text x="8.5701%" y="687.50"></text></g><g><title>Thread::call_run (140 samples, 0.01%)</title><rect x="8.3201%" y="661" width="0.0108%" height="15" fill="rgb(210,39,32)" fg:x="107567" fg:w="140"/><text x="8.5701%" y="671.50"></text></g><g><title>WatcherThread::run (140 samples, 0.01%)</title><rect x="8.3201%" y="645" width="0.0108%" height="15" fill="rgb(216,194,45)" fg:x="107567" fg:w="140"/><text x="8.5701%" y="655.50"></text></g><g><title>SafepointSynchronize::begin (337 samples, 0.03%)</title><rect x="8.3433%" y="613" width="0.0261%" height="15" fill="rgb(218,18,35)" fg:x="107867" fg:w="337"/><text x="8.5933%" y="623.50"></text></g><g><title>__GI___clone (559 samples, 0.04%)</title><rect x="8.3388%" y="709" width="0.0432%" height="15" fill="rgb(207,83,51)" fg:x="107808" fg:w="559"/><text x="8.5888%" y="719.50"></text></g><g><title>start_thread (559 samples, 0.04%)</title><rect x="8.3388%" y="693" width="0.0432%" height="15" fill="rgb(225,63,43)" fg:x="107808" fg:w="559"/><text x="8.5888%" y="703.50"></text></g><g><title>thread_native_entry (559 samples, 0.04%)</title><rect x="8.3388%" y="677" width="0.0432%" height="15" fill="rgb(207,57,36)" fg:x="107808" fg:w="559"/><text x="8.5888%" y="687.50"></text></g><g><title>Thread::call_run (559 samples, 0.04%)</title><rect x="8.3388%" y="661" width="0.0432%" height="15" fill="rgb(216,99,33)" fg:x="107808" fg:w="559"/><text x="8.5888%" y="671.50"></text></g><g><title>VMThread::run (559 samples, 0.04%)</title><rect x="8.3388%" y="645" width="0.0432%" height="15" fill="rgb(225,42,16)" fg:x="107808" fg:w="559"/><text x="8.5888%" y="655.50"></text></g><g><title>VMThread::loop (558 samples, 0.04%)</title><rect x="8.3389%" y="629" width="0.0432%" height="15" fill="rgb(220,201,45)" fg:x="107809" fg:w="558"/><text x="8.5889%" y="639.50"></text></g><g><title>VM_Thread (669 samples, 0.05%)</title><rect x="8.3310%" y="725" width="0.0517%" height="15" fill="rgb(225,33,4)" fg:x="107707" fg:w="669"/><text x="8.5810%" y="735.50"></text></g><g><title>finish_task_switch (131 samples, 0.01%)</title><rect x="8.3989%" y="565" width="0.0101%" height="15" fill="rgb(224,33,50)" fg:x="108585" fg:w="131"/><text x="8.6489%" y="575.50"></text></g><g><title>futex_wait_queue_me (143 samples, 0.01%)</title><rect x="8.3983%" y="613" width="0.0111%" height="15" fill="rgb(246,198,51)" fg:x="108577" fg:w="143"/><text x="8.6483%" y="623.50"></text></g><g><title>schedule (141 samples, 0.01%)</title><rect x="8.3984%" y="597" width="0.0109%" height="15" fill="rgb(205,22,4)" fg:x="108579" fg:w="141"/><text x="8.6484%" y="607.50"></text></g><g><title>__schedule (141 samples, 0.01%)</title><rect x="8.3984%" y="581" width="0.0109%" height="15" fill="rgb(206,3,8)" fg:x="108579" fg:w="141"/><text x="8.6484%" y="591.50"></text></g><g><title>futex_wait (148 samples, 0.01%)</title><rect x="8.3979%" y="629" width="0.0114%" height="15" fill="rgb(251,23,15)" fg:x="108573" fg:w="148"/><text x="8.6479%" y="639.50"></text></g><g><title>__x64_sys_futex (160 samples, 0.01%)</title><rect x="8.3976%" y="661" width="0.0124%" height="15" fill="rgb(252,88,28)" fg:x="108569" fg:w="160"/><text x="8.6476%" y="671.50"></text></g><g><title>do_futex (158 samples, 0.01%)</title><rect x="8.3978%" y="645" width="0.0122%" height="15" fill="rgb(212,127,14)" fg:x="108571" fg:w="158"/><text x="8.6478%" y="655.50"></text></g><g><title>do_syscall_64 (262 samples, 0.02%)</title><rect x="8.3955%" y="677" width="0.0203%" height="15" fill="rgb(247,145,37)" fg:x="108541" fg:w="262"/><text x="8.6455%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (269 samples, 0.02%)</title><rect x="8.3955%" y="693" width="0.0208%" height="15" fill="rgb(209,117,53)" fg:x="108541" fg:w="269"/><text x="8.6455%" y="703.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (468 samples, 0.04%)</title><rect x="8.3832%" y="709" width="0.0362%" height="15" fill="rgb(212,90,42)" fg:x="108383" fg:w="468"/><text x="8.6332%" y="719.50"></text></g><g><title>bazel (517 samples, 0.04%)</title><rect x="8.3832%" y="725" width="0.0400%" height="15" fill="rgb(218,164,37)" fg:x="108382" fg:w="517"/><text x="8.6332%" y="735.50"></text></g><g><title>elf_machine_rela (138 samples, 0.01%)</title><rect x="8.4370%" y="597" width="0.0107%" height="15" fill="rgb(246,65,34)" fg:x="109078" fg:w="138"/><text x="8.6870%" y="607.50"></text></g><g><title>elf_dynamic_do_Rela (169 samples, 0.01%)</title><rect x="8.4358%" y="613" width="0.0131%" height="15" fill="rgb(231,100,33)" fg:x="109063" fg:w="169"/><text x="8.6858%" y="623.50"></text></g><g><title>_dl_relocate_object (178 samples, 0.01%)</title><rect x="8.4353%" y="629" width="0.0138%" height="15" fill="rgb(228,126,14)" fg:x="109056" fg:w="178"/><text x="8.6853%" y="639.50"></text></g><g><title>[ld-2.31.so] (245 samples, 0.02%)</title><rect x="8.4305%" y="645" width="0.0190%" height="15" fill="rgb(215,173,21)" fg:x="108994" fg:w="245"/><text x="8.6805%" y="655.50"></text></g><g><title>_dl_start_final (246 samples, 0.02%)</title><rect x="8.4305%" y="677" width="0.0190%" height="15" fill="rgb(210,6,40)" fg:x="108994" fg:w="246"/><text x="8.6805%" y="687.50"></text></g><g><title>_dl_sysdep_start (246 samples, 0.02%)</title><rect x="8.4305%" y="661" width="0.0190%" height="15" fill="rgb(212,48,18)" fg:x="108994" fg:w="246"/><text x="8.6805%" y="671.50"></text></g><g><title>_dl_start (249 samples, 0.02%)</title><rect x="8.4305%" y="693" width="0.0193%" height="15" fill="rgb(230,214,11)" fg:x="108994" fg:w="249"/><text x="8.6805%" y="703.50"></text></g><g><title>_start (291 samples, 0.02%)</title><rect x="8.4276%" y="709" width="0.0225%" height="15" fill="rgb(254,105,39)" fg:x="108956" fg:w="291"/><text x="8.6776%" y="719.50"></text></g><g><title>build-runfiles (392 samples, 0.03%)</title><rect x="8.4232%" y="725" width="0.0303%" height="15" fill="rgb(245,158,5)" fg:x="108900" fg:w="392"/><text x="8.6732%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (347 samples, 0.03%)</title><rect x="8.4982%" y="213" width="0.0268%" height="15" fill="rgb(249,208,11)" fg:x="109869" fg:w="347"/><text x="8.7482%" y="223.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (344 samples, 0.03%)</title><rect x="8.4984%" y="197" width="0.0266%" height="15" fill="rgb(210,39,28)" fg:x="109872" fg:w="344"/><text x="8.7484%" y="207.50"></text></g><g><title>native_write_msr (343 samples, 0.03%)</title><rect x="8.4985%" y="181" width="0.0265%" height="15" fill="rgb(211,56,53)" fg:x="109873" fg:w="343"/><text x="8.7485%" y="191.50"></text></g><g><title>finish_task_switch (361 samples, 0.03%)</title><rect x="8.4978%" y="229" width="0.0279%" height="15" fill="rgb(226,201,30)" fg:x="109864" fg:w="361"/><text x="8.7478%" y="239.50"></text></g><g><title>_cond_resched (363 samples, 0.03%)</title><rect x="8.4977%" y="261" width="0.0281%" height="15" fill="rgb(239,101,34)" fg:x="109863" fg:w="363"/><text x="8.7477%" y="271.50"></text></g><g><title>__schedule (363 samples, 0.03%)</title><rect x="8.4977%" y="245" width="0.0281%" height="15" fill="rgb(226,209,5)" fg:x="109863" fg:w="363"/><text x="8.7477%" y="255.50"></text></g><g><title>sched_exec (388 samples, 0.03%)</title><rect x="8.4960%" y="293" width="0.0300%" height="15" fill="rgb(250,105,47)" fg:x="109841" fg:w="388"/><text x="8.7460%" y="303.50"></text></g><g><title>stop_one_cpu (370 samples, 0.03%)</title><rect x="8.4974%" y="277" width="0.0286%" height="15" fill="rgb(230,72,3)" fg:x="109859" fg:w="370"/><text x="8.7474%" y="287.50"></text></g><g><title>bprm_execve (687 samples, 0.05%)</title><rect x="8.4831%" y="309" width="0.0531%" height="15" fill="rgb(232,218,39)" fg:x="109674" fg:w="687"/><text x="8.7331%" y="319.50"></text></g><g><title>do_execveat_common (769 samples, 0.06%)</title><rect x="8.4812%" y="325" width="0.0595%" height="15" fill="rgb(248,166,6)" fg:x="109650" fg:w="769"/><text x="8.7312%" y="335.50"></text></g><g><title>__GI_execve (775 samples, 0.06%)</title><rect x="8.4812%" y="389" width="0.0599%" height="15" fill="rgb(247,89,20)" fg:x="109650" fg:w="775"/><text x="8.7312%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (775 samples, 0.06%)</title><rect x="8.4812%" y="373" width="0.0599%" height="15" fill="rgb(248,130,54)" fg:x="109650" fg:w="775"/><text x="8.7312%" y="383.50"></text></g><g><title>do_syscall_64 (775 samples, 0.06%)</title><rect x="8.4812%" y="357" width="0.0599%" height="15" fill="rgb(234,196,4)" fg:x="109650" fg:w="775"/><text x="8.7312%" y="367.50"></text></g><g><title>__x64_sys_execve (775 samples, 0.06%)</title><rect x="8.4812%" y="341" width="0.0599%" height="15" fill="rgb(250,143,31)" fg:x="109650" fg:w="775"/><text x="8.7312%" y="351.50"></text></g><g><title>[dash] (949 samples, 0.07%)</title><rect x="8.4722%" y="405" width="0.0734%" height="15" fill="rgb(211,110,34)" fg:x="109533" fg:w="949"/><text x="8.7222%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (3,250 samples, 0.25%)</title><rect x="8.5687%" y="277" width="0.2514%" height="15" fill="rgb(215,124,48)" fg:x="110780" fg:w="3250"/><text x="8.8187%" y="287.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,226 samples, 0.25%)</title><rect x="8.5705%" y="261" width="0.2495%" height="15" fill="rgb(216,46,13)" fg:x="110804" fg:w="3226"/><text x="8.8205%" y="271.50"></text></g><g><title>native_write_msr (3,213 samples, 0.25%)</title><rect x="8.5715%" y="245" width="0.2485%" height="15" fill="rgb(205,184,25)" fg:x="110817" fg:w="3213"/><text x="8.8215%" y="255.50"></text></g><g><title>finish_task_switch (3,536 samples, 0.27%)</title><rect x="8.5594%" y="293" width="0.2735%" height="15" fill="rgb(228,1,10)" fg:x="110660" fg:w="3536"/><text x="8.8094%" y="303.50"></text></g><g><title>schedule (3,588 samples, 0.28%)</title><rect x="8.5566%" y="325" width="0.2775%" height="15" fill="rgb(213,116,27)" fg:x="110624" fg:w="3588"/><text x="8.8066%" y="335.50"></text></g><g><title>__schedule (3,587 samples, 0.28%)</title><rect x="8.5567%" y="309" width="0.2774%" height="15" fill="rgb(241,95,50)" fg:x="110625" fg:w="3587"/><text x="8.8067%" y="319.50"></text></g><g><title>release_task (180 samples, 0.01%)</title><rect x="8.8375%" y="309" width="0.0139%" height="15" fill="rgb(238,48,32)" fg:x="114256" fg:w="180"/><text x="9.0875%" y="319.50"></text></g><g><title>do_syscall_64 (3,882 samples, 0.30%)</title><rect x="8.5520%" y="373" width="0.3003%" height="15" fill="rgb(235,113,49)" fg:x="110565" fg:w="3882"/><text x="8.8020%" y="383.50"></text></g><g><title>kernel_wait4 (3,862 samples, 0.30%)</title><rect x="8.5536%" y="357" width="0.2987%" height="15" fill="rgb(205,127,43)" fg:x="110585" fg:w="3862"/><text x="8.8036%" y="367.50"></text></g><g><title>do_wait (3,851 samples, 0.30%)</title><rect x="8.5544%" y="341" width="0.2979%" height="15" fill="rgb(250,162,2)" fg:x="110596" fg:w="3851"/><text x="8.8044%" y="351.50"></text></g><g><title>wait_consider_task (235 samples, 0.02%)</title><rect x="8.8341%" y="325" width="0.0182%" height="15" fill="rgb(220,13,41)" fg:x="114212" fg:w="235"/><text x="9.0841%" y="335.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,984 samples, 0.31%)</title><rect x="8.5520%" y="389" width="0.3082%" height="15" fill="rgb(249,221,25)" fg:x="110565" fg:w="3984"/><text x="8.8020%" y="399.50"></text></g><g><title>__GI___wait4 (4,048 samples, 0.31%)</title><rect x="8.5496%" y="405" width="0.3131%" height="15" fill="rgb(215,208,19)" fg:x="110534" fg:w="4048"/><text x="8.7996%" y="415.50"></text></g><g><title>[dash] (5,204 samples, 0.40%)</title><rect x="8.4700%" y="421" width="0.4025%" height="15" fill="rgb(236,175,2)" fg:x="109504" fg:w="5204"/><text x="8.7200%" y="431.50"></text></g><g><title>[dash] (5,348 samples, 0.41%)</title><rect x="8.4673%" y="437" width="0.4137%" height="15" fill="rgb(241,52,2)" fg:x="109470" fg:w="5348"/><text x="8.7173%" y="447.50"></text></g><g><title>anon_vma_fork (156 samples, 0.01%)</title><rect x="8.9193%" y="309" width="0.0121%" height="15" fill="rgb(248,140,14)" fg:x="115313" fg:w="156"/><text x="9.1693%" y="319.50"></text></g><g><title>copy_page_range (136 samples, 0.01%)</title><rect x="8.9313%" y="309" width="0.0105%" height="15" fill="rgb(253,22,42)" fg:x="115469" fg:w="136"/><text x="9.1813%" y="319.50"></text></g><g><title>dup_mm (501 samples, 0.04%)</title><rect x="8.9155%" y="325" width="0.0388%" height="15" fill="rgb(234,61,47)" fg:x="115264" fg:w="501"/><text x="9.1655%" y="335.50"></text></g><g><title>inherit_task_group.isra.0 (153 samples, 0.01%)</title><rect x="8.9579%" y="309" width="0.0118%" height="15" fill="rgb(208,226,15)" fg:x="115812" fg:w="153"/><text x="9.2079%" y="319.50"></text></g><g><title>inherit_event.constprop.0 (149 samples, 0.01%)</title><rect x="8.9582%" y="293" width="0.0115%" height="15" fill="rgb(217,221,4)" fg:x="115816" fg:w="149"/><text x="9.2082%" y="303.50"></text></g><g><title>perf_event_init_task (164 samples, 0.01%)</title><rect x="8.9577%" y="325" width="0.0127%" height="15" fill="rgb(212,174,34)" fg:x="115810" fg:w="164"/><text x="9.2077%" y="335.50"></text></g><g><title>copy_process (882 samples, 0.07%)</title><rect x="8.9040%" y="341" width="0.0682%" height="15" fill="rgb(253,83,4)" fg:x="115115" fg:w="882"/><text x="9.1540%" y="351.50"></text></g><g><title>do_syscall_64 (927 samples, 0.07%)</title><rect x="8.9040%" y="389" width="0.0717%" height="15" fill="rgb(250,195,49)" fg:x="115115" fg:w="927"/><text x="9.1540%" y="399.50"></text></g><g><title>__do_sys_clone (927 samples, 0.07%)</title><rect x="8.9040%" y="373" width="0.0717%" height="15" fill="rgb(241,192,25)" fg:x="115115" fg:w="927"/><text x="9.1540%" y="383.50"></text></g><g><title>kernel_clone (927 samples, 0.07%)</title><rect x="8.9040%" y="357" width="0.0717%" height="15" fill="rgb(208,124,10)" fg:x="115115" fg:w="927"/><text x="9.1540%" y="367.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (935 samples, 0.07%)</title><rect x="8.9040%" y="405" width="0.0723%" height="15" fill="rgb(222,33,0)" fg:x="115115" fg:w="935"/><text x="9.1540%" y="415.50"></text></g><g><title>asm_exc_page_fault (235 samples, 0.02%)</title><rect x="8.9798%" y="357" width="0.0182%" height="15" fill="rgb(234,209,28)" fg:x="116096" fg:w="235"/><text x="9.2298%" y="367.50"></text></g><g><title>exc_page_fault (169 samples, 0.01%)</title><rect x="8.9849%" y="341" width="0.0131%" height="15" fill="rgb(224,11,23)" fg:x="116162" fg:w="169"/><text x="9.2349%" y="351.50"></text></g><g><title>do_user_addr_fault (168 samples, 0.01%)</title><rect x="8.9850%" y="325" width="0.0130%" height="15" fill="rgb(232,99,1)" fg:x="116163" fg:w="168"/><text x="9.2350%" y="335.50"></text></g><g><title>__put_user_nocheck_4 (249 samples, 0.02%)</title><rect x="8.9788%" y="373" width="0.0193%" height="15" fill="rgb(237,95,45)" fg:x="116083" fg:w="249"/><text x="9.2288%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (2,828 samples, 0.22%)</title><rect x="9.0040%" y="357" width="0.2187%" height="15" fill="rgb(208,109,11)" fg:x="116408" fg:w="2828"/><text x="9.2540%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,782 samples, 0.22%)</title><rect x="9.0075%" y="341" width="0.2152%" height="15" fill="rgb(216,190,48)" fg:x="116454" fg:w="2782"/><text x="9.2575%" y="351.50"></text></g><g><title>native_write_msr (2,764 samples, 0.21%)</title><rect x="9.0089%" y="325" width="0.2138%" height="15" fill="rgb(251,171,36)" fg:x="116472" fg:w="2764"/><text x="9.2589%" y="335.50"></text></g><g><title>schedule_tail (3,256 samples, 0.25%)</title><rect x="8.9783%" y="389" width="0.2518%" height="15" fill="rgb(230,62,22)" fg:x="116076" fg:w="3256"/><text x="9.2283%" y="399.50"></text></g><g><title>finish_task_switch (2,987 samples, 0.23%)</title><rect x="8.9991%" y="373" width="0.2310%" height="15" fill="rgb(225,114,35)" fg:x="116345" fg:w="2987"/><text x="9.2491%" y="383.50"></text></g><g><title>arch_fork (4,365 samples, 0.34%)</title><rect x="8.8933%" y="421" width="0.3376%" height="15" fill="rgb(215,118,42)" fg:x="114977" fg:w="4365"/><text x="9.1433%" y="431.50"></text></g><g><title>ret_from_fork (3,277 samples, 0.25%)</title><rect x="8.9774%" y="405" width="0.2535%" height="15" fill="rgb(243,119,21)" fg:x="116065" fg:w="3277"/><text x="9.2274%" y="415.50"></text></g><g><title>__libc_fork (4,573 samples, 0.35%)</title><rect x="8.8859%" y="437" width="0.3537%" height="15" fill="rgb(252,177,53)" fg:x="114882" fg:w="4573"/><text x="9.1359%" y="447.50"></text></g><g><title>[dash] (10,085 samples, 0.78%)</title><rect x="8.4662%" y="453" width="0.7801%" height="15" fill="rgb(237,209,29)" fg:x="109455" fg:w="10085"/><text x="8.7162%" y="463.50"></text></g><g><title>[dash] (10,186 samples, 0.79%)</title><rect x="8.4658%" y="469" width="0.7879%" height="15" fill="rgb(212,65,23)" fg:x="109450" fg:w="10186"/><text x="8.7158%" y="479.50"></text></g><g><title>[dash] (10,251 samples, 0.79%)</title><rect x="8.4652%" y="485" width="0.7929%" height="15" fill="rgb(230,222,46)" fg:x="109443" fg:w="10251"/><text x="8.7152%" y="495.50"></text></g><g><title>[dash] (10,341 samples, 0.80%)</title><rect x="8.4643%" y="501" width="0.7999%" height="15" fill="rgb(215,135,32)" fg:x="109431" fg:w="10341"/><text x="8.7143%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (148 samples, 0.01%)</title><rect x="9.2662%" y="373" width="0.0114%" height="15" fill="rgb(246,101,22)" fg:x="119798" fg:w="148"/><text x="9.5162%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (147 samples, 0.01%)</title><rect x="9.2663%" y="357" width="0.0114%" height="15" fill="rgb(206,107,13)" fg:x="119799" fg:w="147"/><text x="9.5163%" y="367.50"></text></g><g><title>native_write_msr (146 samples, 0.01%)</title><rect x="9.2663%" y="341" width="0.0113%" height="15" fill="rgb(250,100,44)" fg:x="119800" fg:w="146"/><text x="9.5163%" y="351.50"></text></g><g><title>finish_task_switch (162 samples, 0.01%)</title><rect x="9.2661%" y="389" width="0.0125%" height="15" fill="rgb(231,147,38)" fg:x="119797" fg:w="162"/><text x="9.5161%" y="399.50"></text></g><g><title>schedule (168 samples, 0.01%)</title><rect x="9.2658%" y="421" width="0.0130%" height="15" fill="rgb(229,8,40)" fg:x="119793" fg:w="168"/><text x="9.5158%" y="431.50"></text></g><g><title>__schedule (167 samples, 0.01%)</title><rect x="9.2659%" y="405" width="0.0129%" height="15" fill="rgb(221,135,30)" fg:x="119794" fg:w="167"/><text x="9.5159%" y="415.50"></text></g><g><title>do_syscall_64 (213 samples, 0.02%)</title><rect x="9.2656%" y="469" width="0.0165%" height="15" fill="rgb(249,193,18)" fg:x="119790" fg:w="213"/><text x="9.5156%" y="479.50"></text></g><g><title>kernel_wait4 (213 samples, 0.02%)</title><rect x="9.2656%" y="453" width="0.0165%" height="15" fill="rgb(209,133,39)" fg:x="119790" fg:w="213"/><text x="9.5156%" y="463.50"></text></g><g><title>do_wait (213 samples, 0.02%)</title><rect x="9.2656%" y="437" width="0.0165%" height="15" fill="rgb(232,100,14)" fg:x="119790" fg:w="213"/><text x="9.5156%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (221 samples, 0.02%)</title><rect x="9.2656%" y="485" width="0.0171%" height="15" fill="rgb(224,185,1)" fg:x="119790" fg:w="221"/><text x="9.5156%" y="495.50"></text></g><g><title>__GI___wait4 (239 samples, 0.02%)</title><rect x="9.2643%" y="501" width="0.0185%" height="15" fill="rgb(223,139,8)" fg:x="119774" fg:w="239"/><text x="9.5143%" y="511.50"></text></g><g><title>[dash] (10,663 samples, 0.82%)</title><rect x="8.4625%" y="517" width="0.8248%" height="15" fill="rgb(232,213,38)" fg:x="109407" fg:w="10663"/><text x="8.7125%" y="527.50"></text></g><g><title>dup_mm (186 samples, 0.01%)</title><rect x="9.3028%" y="405" width="0.0144%" height="15" fill="rgb(207,94,22)" fg:x="120272" fg:w="186"/><text x="9.5528%" y="415.50"></text></g><g><title>copy_process (431 samples, 0.03%)</title><rect x="9.2960%" y="421" width="0.0333%" height="15" fill="rgb(219,183,54)" fg:x="120183" fg:w="431"/><text x="9.5460%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (452 samples, 0.03%)</title><rect x="9.2960%" y="485" width="0.0350%" height="15" fill="rgb(216,185,54)" fg:x="120183" fg:w="452"/><text x="9.5460%" y="495.50"></text></g><g><title>do_syscall_64 (452 samples, 0.03%)</title><rect x="9.2960%" y="469" width="0.0350%" height="15" fill="rgb(254,217,39)" fg:x="120183" fg:w="452"/><text x="9.5460%" y="479.50"></text></g><g><title>__do_sys_clone (452 samples, 0.03%)</title><rect x="9.2960%" y="453" width="0.0350%" height="15" fill="rgb(240,178,23)" fg:x="120183" fg:w="452"/><text x="9.5460%" y="463.50"></text></g><g><title>kernel_clone (452 samples, 0.03%)</title><rect x="9.2960%" y="437" width="0.0350%" height="15" fill="rgb(218,11,47)" fg:x="120183" fg:w="452"/><text x="9.5460%" y="447.50"></text></g><g><title>exc_page_fault (130 samples, 0.01%)</title><rect x="9.3349%" y="421" width="0.0101%" height="15" fill="rgb(218,51,51)" fg:x="120686" fg:w="130"/><text x="9.5849%" y="431.50"></text></g><g><title>do_user_addr_fault (130 samples, 0.01%)</title><rect x="9.3349%" y="405" width="0.0101%" height="15" fill="rgb(238,126,27)" fg:x="120686" fg:w="130"/><text x="9.5849%" y="415.50"></text></g><g><title>asm_exc_page_fault (165 samples, 0.01%)</title><rect x="9.3322%" y="437" width="0.0128%" height="15" fill="rgb(249,202,22)" fg:x="120652" fg:w="165"/><text x="9.5822%" y="447.50"></text></g><g><title>__put_user_nocheck_4 (168 samples, 0.01%)</title><rect x="9.3321%" y="453" width="0.0130%" height="15" fill="rgb(254,195,49)" fg:x="120650" fg:w="168"/><text x="9.5821%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (1,713 samples, 0.13%)</title><rect x="9.3488%" y="437" width="0.1325%" height="15" fill="rgb(208,123,14)" fg:x="120866" fg:w="1713"/><text x="9.5988%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,684 samples, 0.13%)</title><rect x="9.3510%" y="421" width="0.1303%" height="15" fill="rgb(224,200,8)" fg:x="120895" fg:w="1684"/><text x="9.6010%" y="431.50"></text></g><g><title>native_write_msr (1,677 samples, 0.13%)</title><rect x="9.3516%" y="405" width="0.1297%" height="15" fill="rgb(217,61,36)" fg:x="120902" fg:w="1677"/><text x="9.6016%" y="415.50"></text></g><g><title>schedule_tail (1,979 samples, 0.15%)</title><rect x="9.3318%" y="469" width="0.1531%" height="15" fill="rgb(206,35,45)" fg:x="120647" fg:w="1979"/><text x="9.5818%" y="479.50"></text></g><g><title>finish_task_switch (1,797 samples, 0.14%)</title><rect x="9.3459%" y="453" width="0.1390%" height="15" fill="rgb(217,65,33)" fg:x="120829" fg:w="1797"/><text x="9.5959%" y="463.50"></text></g><g><title>arch_fork (2,509 samples, 0.19%)</title><rect x="9.2911%" y="501" width="0.1941%" height="15" fill="rgb(222,158,48)" fg:x="120120" fg:w="2509"/><text x="9.5411%" y="511.50"></text></g><g><title>ret_from_fork (1,986 samples, 0.15%)</title><rect x="9.3315%" y="485" width="0.1536%" height="15" fill="rgb(254,2,54)" fg:x="120643" fg:w="1986"/><text x="9.5815%" y="495.50"></text></g><g><title>__libc_fork (2,606 samples, 0.20%)</title><rect x="9.2872%" y="517" width="0.2016%" height="15" fill="rgb(250,143,38)" fg:x="120070" fg:w="2606"/><text x="9.5372%" y="527.50"></text></g><g><title>[dash] (13,313 samples, 1.03%)</title><rect x="8.4611%" y="533" width="1.0297%" height="15" fill="rgb(248,25,0)" fg:x="109389" fg:w="13313"/><text x="8.7111%" y="543.50"></text></g><g><title>[dash] (13,400 samples, 1.04%)</title><rect x="8.4599%" y="549" width="1.0365%" height="15" fill="rgb(206,152,27)" fg:x="109374" fg:w="13400"/><text x="8.7099%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (2,302 samples, 0.18%)</title><rect x="9.5198%" y="389" width="0.1781%" height="15" fill="rgb(240,77,30)" fg:x="123077" fg:w="2302"/><text x="9.7698%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,283 samples, 0.18%)</title><rect x="9.5213%" y="373" width="0.1766%" height="15" fill="rgb(231,5,3)" fg:x="123096" fg:w="2283"/><text x="9.7713%" y="383.50"></text></g><g><title>native_write_msr (2,276 samples, 0.18%)</title><rect x="9.5218%" y="357" width="0.1760%" height="15" fill="rgb(207,226,32)" fg:x="123103" fg:w="2276"/><text x="9.7718%" y="367.50"></text></g><g><title>finish_task_switch (2,543 samples, 0.20%)</title><rect x="9.5132%" y="405" width="0.1967%" height="15" fill="rgb(222,207,47)" fg:x="122992" fg:w="2543"/><text x="9.7632%" y="415.50"></text></g><g><title>schedule (2,602 samples, 0.20%)</title><rect x="9.5110%" y="437" width="0.2013%" height="15" fill="rgb(229,115,45)" fg:x="122963" fg:w="2602"/><text x="9.7610%" y="447.50"></text></g><g><title>__schedule (2,601 samples, 0.20%)</title><rect x="9.5111%" y="421" width="0.2012%" height="15" fill="rgb(224,191,6)" fg:x="122964" fg:w="2601"/><text x="9.7611%" y="431.50"></text></g><g><title>new_sync_read (2,691 samples, 0.21%)</title><rect x="9.5048%" y="469" width="0.2081%" height="15" fill="rgb(230,227,24)" fg:x="122883" fg:w="2691"/><text x="9.7548%" y="479.50"></text></g><g><title>pipe_read (2,688 samples, 0.21%)</title><rect x="9.5050%" y="453" width="0.2079%" height="15" fill="rgb(228,80,19)" fg:x="122886" fg:w="2688"/><text x="9.7550%" y="463.50"></text></g><g><title>do_syscall_64 (2,717 samples, 0.21%)</title><rect x="9.5033%" y="517" width="0.2102%" height="15" fill="rgb(247,229,0)" fg:x="122863" fg:w="2717"/><text x="9.7533%" y="527.50"></text></g><g><title>ksys_read (2,712 samples, 0.21%)</title><rect x="9.5036%" y="501" width="0.2098%" height="15" fill="rgb(237,194,15)" fg:x="122868" fg:w="2712"/><text x="9.7536%" y="511.50"></text></g><g><title>vfs_read (2,708 samples, 0.21%)</title><rect x="9.5039%" y="485" width="0.2095%" height="15" fill="rgb(219,203,20)" fg:x="122872" fg:w="2708"/><text x="9.7539%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,786 samples, 0.22%)</title><rect x="9.5033%" y="533" width="0.2155%" height="15" fill="rgb(234,128,8)" fg:x="122863" fg:w="2786"/><text x="9.7533%" y="543.50"></text></g><g><title>__GI___libc_read (2,847 samples, 0.22%)</title><rect x="9.5023%" y="549" width="0.2202%" height="15" fill="rgb(248,202,8)" fg:x="122851" fg:w="2847"/><text x="9.7523%" y="559.50"></text></g><g><title>[dash] (16,389 samples, 1.27%)</title><rect x="8.4584%" y="565" width="1.2677%" height="15" fill="rgb(206,104,37)" fg:x="109354" fg:w="16389"/><text x="8.7084%" y="575.50"></text></g><g><title>[dash] (16,404 samples, 1.27%)</title><rect x="8.4579%" y="581" width="1.2688%" height="15" fill="rgb(223,8,27)" fg:x="109348" fg:w="16404"/><text x="8.7079%" y="591.50"></text></g><g><title>[dash] (16,429 samples, 1.27%)</title><rect x="8.4571%" y="597" width="1.2708%" height="15" fill="rgb(216,217,28)" fg:x="109338" fg:w="16429"/><text x="8.7071%" y="607.50"></text></g><g><title>[dash] (16,440 samples, 1.27%)</title><rect x="8.4567%" y="613" width="1.2716%" height="15" fill="rgb(249,199,1)" fg:x="109333" fg:w="16440"/><text x="8.7067%" y="623.50"></text></g><g><title>[dash] (16,479 samples, 1.27%)</title><rect x="8.4565%" y="629" width="1.2746%" height="15" fill="rgb(240,85,17)" fg:x="109330" fg:w="16479"/><text x="8.7065%" y="639.50"></text></g><g><title>[dash] (16,486 samples, 1.28%)</title><rect x="8.4563%" y="645" width="1.2752%" height="15" fill="rgb(206,108,45)" fg:x="109327" fg:w="16486"/><text x="8.7063%" y="655.50"></text></g><g><title>[dash] (16,530 samples, 1.28%)</title><rect x="8.4562%" y="661" width="1.2786%" height="15" fill="rgb(245,210,41)" fg:x="109326" fg:w="16530"/><text x="8.7062%" y="671.50"></text></g><g><title>[dash] (16,543 samples, 1.28%)</title><rect x="8.4562%" y="677" width="1.2796%" height="15" fill="rgb(206,13,37)" fg:x="109326" fg:w="16543"/><text x="8.7062%" y="687.50"></text></g><g><title>__libc_start_main (16,545 samples, 1.28%)</title><rect x="8.4562%" y="693" width="1.2797%" height="15" fill="rgb(250,61,18)" fg:x="109326" fg:w="16545"/><text x="8.7062%" y="703.50"></text></g><g><title>[dash] (16,556 samples, 1.28%)</title><rect x="8.4556%" y="709" width="1.2806%" height="15" fill="rgb(235,172,48)" fg:x="109318" fg:w="16556"/><text x="8.7056%" y="719.50"></text></g><g><title>do_filp_open (208 samples, 0.02%)</title><rect x="9.8065%" y="629" width="0.0161%" height="15" fill="rgb(249,201,17)" fg:x="126783" fg:w="208"/><text x="10.0565%" y="639.50"></text></g><g><title>path_openat (207 samples, 0.02%)</title><rect x="9.8065%" y="613" width="0.0160%" height="15" fill="rgb(219,208,6)" fg:x="126784" fg:w="207"/><text x="10.0565%" y="623.50"></text></g><g><title>__x64_sys_openat (282 samples, 0.02%)</title><rect x="9.8053%" y="661" width="0.0218%" height="15" fill="rgb(248,31,23)" fg:x="126768" fg:w="282"/><text x="10.0553%" y="671.50"></text></g><g><title>do_sys_openat2 (282 samples, 0.02%)</title><rect x="9.8053%" y="645" width="0.0218%" height="15" fill="rgb(245,15,42)" fg:x="126768" fg:w="282"/><text x="10.0553%" y="655.50"></text></g><g><title>generic_file_buffered_read (260 samples, 0.02%)</title><rect x="9.8366%" y="613" width="0.0201%" height="15" fill="rgb(222,217,39)" fg:x="127173" fg:w="260"/><text x="10.0866%" y="623.50"></text></g><g><title>new_sync_read (279 samples, 0.02%)</title><rect x="9.8353%" y="629" width="0.0216%" height="15" fill="rgb(210,219,27)" fg:x="127156" fg:w="279"/><text x="10.0853%" y="639.50"></text></g><g><title>ksys_read (405 samples, 0.03%)</title><rect x="9.8271%" y="661" width="0.0313%" height="15" fill="rgb(252,166,36)" fg:x="127050" fg:w="405"/><text x="10.0771%" y="671.50"></text></g><g><title>vfs_read (340 samples, 0.03%)</title><rect x="9.8321%" y="645" width="0.0263%" height="15" fill="rgb(245,132,34)" fg:x="127115" fg:w="340"/><text x="10.0821%" y="655.50"></text></g><g><title>do_syscall_64 (778 samples, 0.06%)</title><rect x="9.7989%" y="677" width="0.0602%" height="15" fill="rgb(236,54,3)" fg:x="126685" fg:w="778"/><text x="10.0489%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (856 samples, 0.07%)</title><rect x="9.7984%" y="693" width="0.0662%" height="15" fill="rgb(241,173,43)" fg:x="126679" fg:w="856"/><text x="10.0484%" y="703.50"></text></g><g><title>[unknown] (1,679 samples, 0.13%)</title><rect x="9.7361%" y="709" width="0.1299%" height="15" fill="rgb(215,190,9)" fg:x="125874" fg:w="1679"/><text x="9.9861%" y="719.50"></text></g><g><title>asm_exc_page_fault (258 samples, 0.02%)</title><rect x="9.8756%" y="709" width="0.0200%" height="15" fill="rgb(242,101,16)" fg:x="127677" fg:w="258"/><text x="10.1256%" y="719.50"></text></g><g><title>exit_mmap (256 samples, 0.02%)</title><rect x="9.8982%" y="581" width="0.0198%" height="15" fill="rgb(223,190,21)" fg:x="127969" fg:w="256"/><text x="10.1482%" y="591.50"></text></g><g><title>mmput (258 samples, 0.02%)</title><rect x="9.8982%" y="597" width="0.0200%" height="15" fill="rgb(215,228,25)" fg:x="127969" fg:w="258"/><text x="10.1482%" y="607.50"></text></g><g><title>begin_new_exec (279 samples, 0.02%)</title><rect x="9.8971%" y="613" width="0.0216%" height="15" fill="rgb(225,36,22)" fg:x="127955" fg:w="279"/><text x="10.1471%" y="623.50"></text></g><g><title>load_elf_binary (315 samples, 0.02%)</title><rect x="9.8963%" y="629" width="0.0244%" height="15" fill="rgb(251,106,46)" fg:x="127944" fg:w="315"/><text x="10.1463%" y="639.50"></text></g><g><title>__x64_sys_execve (316 samples, 0.02%)</title><rect x="9.8963%" y="677" width="0.0244%" height="15" fill="rgb(208,90,1)" fg:x="127944" fg:w="316"/><text x="10.1463%" y="687.50"></text></g><g><title>do_execveat_common (316 samples, 0.02%)</title><rect x="9.8963%" y="661" width="0.0244%" height="15" fill="rgb(243,10,4)" fg:x="127944" fg:w="316"/><text x="10.1463%" y="671.50"></text></g><g><title>bprm_execve (316 samples, 0.02%)</title><rect x="9.8963%" y="645" width="0.0244%" height="15" fill="rgb(212,137,27)" fg:x="127944" fg:w="316"/><text x="10.1463%" y="655.50"></text></g><g><title>free_pgtables (167 samples, 0.01%)</title><rect x="9.9229%" y="597" width="0.0129%" height="15" fill="rgb(231,220,49)" fg:x="128289" fg:w="167"/><text x="10.1729%" y="607.50"></text></g><g><title>unmap_page_range (233 samples, 0.02%)</title><rect x="9.9508%" y="581" width="0.0180%" height="15" fill="rgb(237,96,20)" fg:x="128649" fg:w="233"/><text x="10.2008%" y="591.50"></text></g><g><title>exit_mmap (608 samples, 0.05%)</title><rect x="9.9223%" y="613" width="0.0470%" height="15" fill="rgb(239,229,30)" fg:x="128281" fg:w="608"/><text x="10.1723%" y="623.50"></text></g><g><title>unmap_vmas (245 samples, 0.02%)</title><rect x="9.9504%" y="597" width="0.0190%" height="15" fill="rgb(219,65,33)" fg:x="128644" fg:w="245"/><text x="10.2004%" y="607.50"></text></g><g><title>mmput (612 samples, 0.05%)</title><rect x="9.9223%" y="629" width="0.0473%" height="15" fill="rgb(243,134,7)" fg:x="128281" fg:w="612"/><text x="10.1723%" y="639.50"></text></g><g><title>__x64_sys_exit_group (706 samples, 0.05%)</title><rect x="9.9207%" y="677" width="0.0546%" height="15" fill="rgb(216,177,54)" fg:x="128260" fg:w="706"/><text x="10.1707%" y="687.50"></text></g><g><title>do_group_exit (706 samples, 0.05%)</title><rect x="9.9207%" y="661" width="0.0546%" height="15" fill="rgb(211,160,20)" fg:x="128260" fg:w="706"/><text x="10.1707%" y="671.50"></text></g><g><title>do_exit (706 samples, 0.05%)</title><rect x="9.9207%" y="645" width="0.0546%" height="15" fill="rgb(239,85,39)" fg:x="128260" fg:w="706"/><text x="10.1707%" y="655.50"></text></g><g><title>do_syscall_64 (1,029 samples, 0.08%)</title><rect x="9.8963%" y="693" width="0.0796%" height="15" fill="rgb(232,125,22)" fg:x="127944" fg:w="1029"/><text x="10.1463%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,038 samples, 0.08%)</title><rect x="9.8956%" y="709" width="0.0803%" height="15" fill="rgb(244,57,34)" fg:x="127936" fg:w="1038"/><text x="10.1456%" y="719.50"></text></g><g><title>c++ (19,693 samples, 1.52%)</title><rect x="8.4536%" y="725" width="1.5232%" height="15" fill="rgb(214,203,32)" fg:x="109292" fg:w="19693"/><text x="8.7036%" y="735.50"></text></g><g><title>[perf-956514.map] (511 samples, 0.04%)</title><rect x="9.9788%" y="709" width="0.0395%" height="15" fill="rgb(207,58,43)" fg:x="129011" fg:w="511"/><text x="10.2288%" y="719.50"></text></g><g><title>find-action-loo (551 samples, 0.04%)</title><rect x="9.9786%" y="725" width="0.0426%" height="15" fill="rgb(215,193,15)" fg:x="129009" fg:w="551"/><text x="10.2286%" y="735.50"></text></g><g><title>[perf-956514.map] (228 samples, 0.02%)</title><rect x="10.0271%" y="709" width="0.0176%" height="15" fill="rgb(232,15,44)" fg:x="129635" fg:w="228"/><text x="10.2771%" y="719.50"></text></g><g><title>globbing_pool-1 (342 samples, 0.03%)</title><rect x="10.0240%" y="725" width="0.0265%" height="15" fill="rgb(212,3,48)" fg:x="129595" fg:w="342"/><text x="10.2740%" y="735.50"></text></g><g><title>[perf-956514.map] (154 samples, 0.01%)</title><rect x="10.0526%" y="709" width="0.0119%" height="15" fill="rgb(218,128,7)" fg:x="129965" fg:w="154"/><text x="10.3026%" y="719.50"></text></g><g><title>globbing_pool-2 (221 samples, 0.02%)</title><rect x="10.0504%" y="725" width="0.0171%" height="15" fill="rgb(226,216,39)" fg:x="129937" fg:w="221"/><text x="10.3004%" y="735.50"></text></g><g><title>[perf-956514.map] (262 samples, 0.02%)</title><rect x="10.0696%" y="709" width="0.0203%" height="15" fill="rgb(243,47,51)" fg:x="130185" fg:w="262"/><text x="10.3196%" y="719.50"></text></g><g><title>globbing_pool-3 (483 samples, 0.04%)</title><rect x="10.0675%" y="725" width="0.0374%" height="15" fill="rgb(241,183,40)" fg:x="130158" fg:w="483"/><text x="10.3175%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (145 samples, 0.01%)</title><rect x="10.0937%" y="709" width="0.0112%" height="15" fill="rgb(231,217,32)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (145 samples, 0.01%)</title><rect x="10.0937%" y="693" width="0.0112%" height="15" fill="rgb(229,61,38)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (145 samples, 0.01%)</title><rect x="10.0937%" y="677" width="0.0112%" height="15" fill="rgb(225,210,5)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="687.50"></text></g><g><title>arch_do_signal (145 samples, 0.01%)</title><rect x="10.0937%" y="661" width="0.0112%" height="15" fill="rgb(231,79,45)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="671.50"></text></g><g><title>get_signal (145 samples, 0.01%)</title><rect x="10.0937%" y="645" width="0.0112%" height="15" fill="rgb(224,100,7)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="655.50"></text></g><g><title>do_group_exit (145 samples, 0.01%)</title><rect x="10.0937%" y="629" width="0.0112%" height="15" fill="rgb(241,198,18)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="639.50"></text></g><g><title>do_exit (145 samples, 0.01%)</title><rect x="10.0937%" y="613" width="0.0112%" height="15" fill="rgb(252,97,53)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="623.50"></text></g><g><title>mmput (145 samples, 0.01%)</title><rect x="10.0937%" y="597" width="0.0112%" height="15" fill="rgb(220,88,7)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="607.50"></text></g><g><title>exit_mmap (145 samples, 0.01%)</title><rect x="10.0937%" y="581" width="0.0112%" height="15" fill="rgb(213,176,14)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="591.50"></text></g><g><title>unmap_vmas (143 samples, 0.01%)</title><rect x="10.0938%" y="565" width="0.0111%" height="15" fill="rgb(246,73,7)" fg:x="130498" fg:w="143"/><text x="10.3438%" y="575.50"></text></g><g><title>unmap_page_range (143 samples, 0.01%)</title><rect x="10.0938%" y="549" width="0.0111%" height="15" fill="rgb(245,64,36)" fg:x="130498" fg:w="143"/><text x="10.3438%" y="559.50"></text></g><g><title>[perf-956514.map] (168 samples, 0.01%)</title><rect x="10.1079%" y="709" width="0.0130%" height="15" fill="rgb(245,80,10)" fg:x="130680" fg:w="168"/><text x="10.3579%" y="719.50"></text></g><g><title>globbing_pool-4 (239 samples, 0.02%)</title><rect x="10.1049%" y="725" width="0.0185%" height="15" fill="rgb(232,107,50)" fg:x="130641" fg:w="239"/><text x="10.3549%" y="735.50"></text></g><g><title>[perf-956514.map] (249 samples, 0.02%)</title><rect x="10.1270%" y="709" width="0.0193%" height="15" fill="rgb(253,3,0)" fg:x="130927" fg:w="249"/><text x="10.3770%" y="719.50"></text></g><g><title>globbing_pool-5 (338 samples, 0.03%)</title><rect x="10.1234%" y="725" width="0.0261%" height="15" fill="rgb(212,99,53)" fg:x="130880" fg:w="338"/><text x="10.3734%" y="735.50"></text></g><g><title>[anon] (258 samples, 0.02%)</title><rect x="10.1787%" y="709" width="0.0200%" height="15" fill="rgb(249,111,54)" fg:x="131596" fg:w="258"/><text x="10.4287%" y="719.50"></text></g><g><title>SystemDictionary::load_instance_class (133 samples, 0.01%)</title><rect x="10.3604%" y="629" width="0.0103%" height="15" fill="rgb(249,55,30)" fg:x="133945" fg:w="133"/><text x="10.6104%" y="639.50"></text></g><g><title>ConstantPool::klass_at_impl (145 samples, 0.01%)</title><rect x="10.3596%" y="677" width="0.0112%" height="15" fill="rgb(237,47,42)" fg:x="133934" fg:w="145"/><text x="10.6096%" y="687.50"></text></g><g><title>SystemDictionary::resolve_or_fail (143 samples, 0.01%)</title><rect x="10.3597%" y="661" width="0.0111%" height="15" fill="rgb(211,20,18)" fg:x="133936" fg:w="143"/><text x="10.6097%" y="671.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (143 samples, 0.01%)</title><rect x="10.3597%" y="645" width="0.0111%" height="15" fill="rgb(231,203,46)" fg:x="133936" fg:w="143"/><text x="10.6097%" y="655.50"></text></g><g><title>InstanceKlass::link_class_impl (135 samples, 0.01%)</title><rect x="10.3709%" y="661" width="0.0104%" height="15" fill="rgb(237,142,3)" fg:x="134081" fg:w="135"/><text x="10.6209%" y="671.50"></text></g><g><title>InterpreterRuntime::_new (284 samples, 0.02%)</title><rect x="10.3595%" y="693" width="0.0220%" height="15" fill="rgb(241,107,1)" fg:x="133933" fg:w="284"/><text x="10.6095%" y="703.50"></text></g><g><title>InstanceKlass::initialize_impl (137 samples, 0.01%)</title><rect x="10.3709%" y="677" width="0.0106%" height="15" fill="rgb(229,83,13)" fg:x="134080" fg:w="137"/><text x="10.6209%" y="687.50"></text></g><g><title>LinkResolver::resolve_invoke (262 samples, 0.02%)</title><rect x="10.4031%" y="661" width="0.0203%" height="15" fill="rgb(241,91,40)" fg:x="134497" fg:w="262"/><text x="10.6531%" y="671.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (306 samples, 0.02%)</title><rect x="10.4009%" y="677" width="0.0237%" height="15" fill="rgb(225,3,45)" fg:x="134468" fg:w="306"/><text x="10.6509%" y="687.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (477 samples, 0.04%)</title><rect x="10.3921%" y="693" width="0.0369%" height="15" fill="rgb(244,223,14)" fg:x="134355" fg:w="477"/><text x="10.6421%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (448 samples, 0.03%)</title><rect x="10.4665%" y="549" width="0.0347%" height="15" fill="rgb(224,124,37)" fg:x="135316" fg:w="448"/><text x="10.7165%" y="559.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (538 samples, 0.04%)</title><rect x="10.4597%" y="565" width="0.0416%" height="15" fill="rgb(251,171,30)" fg:x="135228" fg:w="538"/><text x="10.7097%" y="575.50"></text></g><g><title>ClassFileParser::parse_constant_pool (561 samples, 0.04%)</title><rect x="10.4583%" y="581" width="0.0434%" height="15" fill="rgb(236,46,54)" fg:x="135210" fg:w="561"/><text x="10.7083%" y="591.50"></text></g><g><title>ClassFileParser::parse_method (163 samples, 0.01%)</title><rect x="10.5037%" y="565" width="0.0126%" height="15" fill="rgb(245,213,5)" fg:x="135797" fg:w="163"/><text x="10.7537%" y="575.50"></text></g><g><title>ClassFileParser::parse_methods (165 samples, 0.01%)</title><rect x="10.5036%" y="581" width="0.0128%" height="15" fill="rgb(230,144,27)" fg:x="135796" fg:w="165"/><text x="10.7536%" y="591.50"></text></g><g><title>ClassFileParser::parse_stream (777 samples, 0.06%)</title><rect x="10.4576%" y="597" width="0.0601%" height="15" fill="rgb(220,86,6)" fg:x="135201" fg:w="777"/><text x="10.7076%" y="607.50"></text></g><g><title>ClassFileParser::ClassFileParser (783 samples, 0.06%)</title><rect x="10.4573%" y="613" width="0.0606%" height="15" fill="rgb(240,20,13)" fg:x="135198" fg:w="783"/><text x="10.7073%" y="623.50"></text></g><g><title>DefaultMethods::generate_default_methods (147 samples, 0.01%)</title><rect x="10.5184%" y="581" width="0.0114%" height="15" fill="rgb(217,89,34)" fg:x="135987" fg:w="147"/><text x="10.7684%" y="591.50"></text></g><g><title>ClassFileParser::fill_instance_klass (182 samples, 0.01%)</title><rect x="10.5180%" y="597" width="0.0141%" height="15" fill="rgb(229,13,5)" fg:x="135982" fg:w="182"/><text x="10.7680%" y="607.50"></text></g><g><title>ClassFileParser::create_instance_klass (188 samples, 0.01%)</title><rect x="10.5179%" y="613" width="0.0145%" height="15" fill="rgb(244,67,35)" fg:x="135981" fg:w="188"/><text x="10.7679%" y="623.50"></text></g><g><title>KlassFactory::create_from_stream (1,037 samples, 0.08%)</title><rect x="10.4572%" y="629" width="0.0802%" height="15" fill="rgb(221,40,2)" fg:x="135196" fg:w="1037"/><text x="10.7072%" y="639.50"></text></g><g><title>JVM_DefineClassWithSource (1,092 samples, 0.08%)</title><rect x="10.4560%" y="677" width="0.0845%" height="15" fill="rgb(237,157,21)" fg:x="135180" fg:w="1092"/><text x="10.7060%" y="687.50"></text></g><g><title>jvm_define_class_common (1,090 samples, 0.08%)</title><rect x="10.4561%" y="661" width="0.0843%" height="15" fill="rgb(222,94,11)" fg:x="135182" fg:w="1090"/><text x="10.7061%" y="671.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,077 samples, 0.08%)</title><rect x="10.4571%" y="645" width="0.0833%" height="15" fill="rgb(249,113,6)" fg:x="135195" fg:w="1077"/><text x="10.7071%" y="655.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,131 samples, 0.09%)</title><rect x="10.4558%" y="693" width="0.0875%" height="15" fill="rgb(238,137,36)" fg:x="135178" fg:w="1131"/><text x="10.7058%" y="703.50"></text></g><g><title>[perf-956514.map] (4,731 samples, 0.37%)</title><rect x="10.2002%" y="709" width="0.3659%" height="15" fill="rgb(210,102,26)" fg:x="131874" fg:w="4731"/><text x="10.4502%" y="719.50"></text></g><g><title>[unknown] (144 samples, 0.01%)</title><rect x="10.5662%" y="709" width="0.0111%" height="15" fill="rgb(218,30,30)" fg:x="136605" fg:w="144"/><text x="10.8162%" y="719.50"></text></g><g><title>schedule_tail (136 samples, 0.01%)</title><rect x="10.5783%" y="677" width="0.0105%" height="15" fill="rgb(214,67,26)" fg:x="136762" fg:w="136"/><text x="10.8283%" y="687.50"></text></g><g><title>finish_task_switch (136 samples, 0.01%)</title><rect x="10.5783%" y="661" width="0.0105%" height="15" fill="rgb(251,9,53)" fg:x="136762" fg:w="136"/><text x="10.8283%" y="671.50"></text></g><g><title>ret_from_fork (141 samples, 0.01%)</title><rect x="10.5781%" y="693" width="0.0109%" height="15" fill="rgb(228,204,25)" fg:x="136759" fg:w="141"/><text x="10.8281%" y="703.50"></text></g><g><title>__GI___clone (242 samples, 0.02%)</title><rect x="10.5773%" y="709" width="0.0187%" height="15" fill="rgb(207,153,8)" fg:x="136749" fg:w="242"/><text x="10.8273%" y="719.50"></text></g><g><title>java (5,445 samples, 0.42%)</title><rect x="10.1779%" y="725" width="0.4212%" height="15" fill="rgb(242,9,16)" fg:x="131585" fg:w="5445"/><text x="10.4279%" y="735.50"></text></g><g><title>[unknown] (168 samples, 0.01%)</title><rect x="10.6039%" y="709" width="0.0130%" height="15" fill="rgb(217,211,10)" fg:x="137093" fg:w="168"/><text x="10.8539%" y="719.50"></text></g><g><title>execute_command_internal (427 samples, 0.03%)</title><rect x="10.6188%" y="629" width="0.0330%" height="15" fill="rgb(219,228,52)" fg:x="137286" fg:w="427"/><text x="10.8688%" y="639.50"></text></g><g><title>execute_command (429 samples, 0.03%)</title><rect x="10.6188%" y="645" width="0.0332%" height="15" fill="rgb(231,92,29)" fg:x="137285" fg:w="429"/><text x="10.8688%" y="655.50"></text></g><g><title>[bash] (197 samples, 0.02%)</title><rect x="10.6613%" y="581" width="0.0152%" height="15" fill="rgb(232,8,23)" fg:x="137835" fg:w="197"/><text x="10.9113%" y="591.50"></text></g><g><title>[bash] (332 samples, 0.03%)</title><rect x="10.6551%" y="597" width="0.0257%" height="15" fill="rgb(216,211,34)" fg:x="137755" fg:w="332"/><text x="10.9051%" y="607.50"></text></g><g><title>parse_command (404 samples, 0.03%)</title><rect x="10.6520%" y="629" width="0.0312%" height="15" fill="rgb(236,151,0)" fg:x="137714" fg:w="404"/><text x="10.9020%" y="639.50"></text></g><g><title>yyparse (403 samples, 0.03%)</title><rect x="10.6520%" y="613" width="0.0312%" height="15" fill="rgb(209,168,3)" fg:x="137715" fg:w="403"/><text x="10.9020%" y="623.50"></text></g><g><title>read_command (405 samples, 0.03%)</title><rect x="10.6520%" y="645" width="0.0313%" height="15" fill="rgb(208,129,28)" fg:x="137714" fg:w="405"/><text x="10.9020%" y="655.50"></text></g><g><title>reader_loop (852 samples, 0.07%)</title><rect x="10.6175%" y="661" width="0.0659%" height="15" fill="rgb(229,78,22)" fg:x="137268" fg:w="852"/><text x="10.8675%" y="671.50"></text></g><g><title>__libc_start_main (869 samples, 0.07%)</title><rect x="10.6169%" y="693" width="0.0672%" height="15" fill="rgb(228,187,13)" fg:x="137261" fg:w="869"/><text x="10.8669%" y="703.50"></text></g><g><title>main (869 samples, 0.07%)</title><rect x="10.6169%" y="677" width="0.0672%" height="15" fill="rgb(240,119,24)" fg:x="137261" fg:w="869"/><text x="10.8669%" y="687.50"></text></g><g><title>_start (888 samples, 0.07%)</title><rect x="10.6169%" y="709" width="0.0687%" height="15" fill="rgb(209,194,42)" fg:x="137261" fg:w="888"/><text x="10.8669%" y="719.50"></text></g><g><title>libtool (1,196 samples, 0.09%)</title><rect x="10.5990%" y="725" width="0.0925%" height="15" fill="rgb(247,200,46)" fg:x="137030" fg:w="1196"/><text x="10.8490%" y="735.50"></text></g><g><title>__libc_start_main (132 samples, 0.01%)</title><rect x="10.6947%" y="693" width="0.0102%" height="15" fill="rgb(218,76,16)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="703.50"></text></g><g><title>__GI___clone (132 samples, 0.01%)</title><rect x="10.6947%" y="677" width="0.0102%" height="15" fill="rgb(225,21,48)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (132 samples, 0.01%)</title><rect x="10.6947%" y="661" width="0.0102%" height="15" fill="rgb(239,223,50)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="671.50"></text></g><g><title>do_syscall_64 (132 samples, 0.01%)</title><rect x="10.6947%" y="645" width="0.0102%" height="15" fill="rgb(244,45,21)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="655.50"></text></g><g><title>__do_sys_clone (132 samples, 0.01%)</title><rect x="10.6947%" y="629" width="0.0102%" height="15" fill="rgb(232,33,43)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="639.50"></text></g><g><title>kernel_clone (132 samples, 0.01%)</title><rect x="10.6947%" y="613" width="0.0102%" height="15" fill="rgb(209,8,3)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="623.50"></text></g><g><title>[unknown] (143 samples, 0.01%)</title><rect x="10.6942%" y="709" width="0.0111%" height="15" fill="rgb(214,25,53)" fg:x="138260" fg:w="143"/><text x="10.9442%" y="719.50"></text></g><g><title>CreateTarget (147 samples, 0.01%)</title><rect x="10.7069%" y="677" width="0.0114%" height="15" fill="rgb(254,186,54)" fg:x="138425" fg:w="147"/><text x="10.9569%" y="687.50"></text></g><g><title>do_syscall_64 (141 samples, 0.01%)</title><rect x="10.7264%" y="645" width="0.0109%" height="15" fill="rgb(208,174,49)" fg:x="138677" fg:w="141"/><text x="10.9764%" y="655.50"></text></g><g><title>kernel_wait4 (141 samples, 0.01%)</title><rect x="10.7264%" y="629" width="0.0109%" height="15" fill="rgb(233,191,51)" fg:x="138677" fg:w="141"/><text x="10.9764%" y="639.50"></text></g><g><title>do_wait (141 samples, 0.01%)</title><rect x="10.7264%" y="613" width="0.0109%" height="15" fill="rgb(222,134,10)" fg:x="138677" fg:w="141"/><text x="10.9764%" y="623.50"></text></g><g><title>__GI___wait4 (142 samples, 0.01%)</title><rect x="10.7264%" y="677" width="0.0110%" height="15" fill="rgb(230,226,20)" fg:x="138677" fg:w="142"/><text x="10.9764%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (142 samples, 0.01%)</title><rect x="10.7264%" y="661" width="0.0110%" height="15" fill="rgb(251,111,25)" fg:x="138677" fg:w="142"/><text x="10.9764%" y="671.50"></text></g><g><title>Pid1Main (930 samples, 0.07%)</title><rect x="10.7054%" y="693" width="0.0719%" height="15" fill="rgb(224,40,46)" fg:x="138405" fg:w="930"/><text x="10.9554%" y="703.50"></text></g><g><title>__GI___clone (1,032 samples, 0.08%)</title><rect x="10.7052%" y="709" width="0.0798%" height="15" fill="rgb(236,108,47)" fg:x="138403" fg:w="1032"/><text x="10.9552%" y="719.50"></text></g><g><title>[libc-2.31.so] (157 samples, 0.01%)</title><rect x="10.7961%" y="661" width="0.0121%" height="15" fill="rgb(234,93,0)" fg:x="139577" fg:w="157"/><text x="11.0461%" y="671.50"></text></g><g><title>__libc_start_main (417 samples, 0.03%)</title><rect x="10.7894%" y="693" width="0.0323%" height="15" fill="rgb(224,213,32)" fg:x="139491" fg:w="417"/><text x="11.0394%" y="703.50"></text></g><g><title>main (353 samples, 0.03%)</title><rect x="10.7944%" y="677" width="0.0273%" height="15" fill="rgb(251,11,48)" fg:x="139555" fg:w="353"/><text x="11.0444%" y="687.50"></text></g><g><title>_dl_catch_exception (141 samples, 0.01%)</title><rect x="10.8226%" y="613" width="0.0109%" height="15" fill="rgb(236,173,5)" fg:x="139920" fg:w="141"/><text x="11.0726%" y="623.50"></text></g><g><title>openaux (141 samples, 0.01%)</title><rect x="10.8226%" y="597" width="0.0109%" height="15" fill="rgb(230,95,12)" fg:x="139920" fg:w="141"/><text x="11.0726%" y="607.50"></text></g><g><title>_dl_map_object (141 samples, 0.01%)</title><rect x="10.8226%" y="581" width="0.0109%" height="15" fill="rgb(232,209,1)" fg:x="139920" fg:w="141"/><text x="11.0726%" y="591.50"></text></g><g><title>_dl_map_object_deps (148 samples, 0.01%)</title><rect x="10.8224%" y="629" width="0.0114%" height="15" fill="rgb(232,6,1)" fg:x="139918" fg:w="148"/><text x="11.0724%" y="639.50"></text></g><g><title>_dl_lookup_symbol_x (279 samples, 0.02%)</title><rect x="10.8436%" y="581" width="0.0216%" height="15" fill="rgb(210,224,50)" fg:x="140192" fg:w="279"/><text x="11.0936%" y="591.50"></text></g><g><title>do_lookup_x (185 samples, 0.01%)</title><rect x="10.8509%" y="565" width="0.0143%" height="15" fill="rgb(228,127,35)" fg:x="140286" fg:w="185"/><text x="11.1009%" y="575.50"></text></g><g><title>elf_machine_rela (341 samples, 0.03%)</title><rect x="10.8393%" y="597" width="0.0264%" height="15" fill="rgb(245,102,45)" fg:x="140136" fg:w="341"/><text x="11.0893%" y="607.50"></text></g><g><title>elf_dynamic_do_Rela (405 samples, 0.03%)</title><rect x="10.8359%" y="613" width="0.0313%" height="15" fill="rgb(214,1,49)" fg:x="140092" fg:w="405"/><text x="11.0859%" y="623.50"></text></g><g><title>_dl_relocate_object (433 samples, 0.03%)</title><rect x="10.8341%" y="629" width="0.0335%" height="15" fill="rgb(226,163,40)" fg:x="140069" fg:w="433"/><text x="11.0841%" y="639.50"></text></g><g><title>[ld-2.31.so] (604 samples, 0.05%)</title><rect x="10.8217%" y="645" width="0.0467%" height="15" fill="rgb(239,212,28)" fg:x="139909" fg:w="604"/><text x="11.0717%" y="655.50"></text></g><g><title>_dl_start_final (610 samples, 0.05%)</title><rect x="10.8217%" y="677" width="0.0472%" height="15" fill="rgb(220,20,13)" fg:x="139908" fg:w="610"/><text x="11.0717%" y="687.50"></text></g><g><title>_dl_sysdep_start (609 samples, 0.05%)</title><rect x="10.8217%" y="661" width="0.0471%" height="15" fill="rgb(210,164,35)" fg:x="139909" fg:w="609"/><text x="11.0717%" y="671.50"></text></g><g><title>_dl_start (618 samples, 0.05%)</title><rect x="10.8217%" y="693" width="0.0478%" height="15" fill="rgb(248,109,41)" fg:x="139908" fg:w="618"/><text x="11.0717%" y="703.50"></text></g><g><title>_start (1,036 samples, 0.08%)</title><rect x="10.7894%" y="709" width="0.0801%" height="15" fill="rgb(238,23,50)" fg:x="139491" fg:w="1036"/><text x="11.0394%" y="719.50"></text></g><g><title>__x64_sys_exit (162 samples, 0.01%)</title><rect x="10.8860%" y="677" width="0.0125%" height="15" fill="rgb(211,48,49)" fg:x="140740" fg:w="162"/><text x="11.1360%" y="687.50"></text></g><g><title>do_exit (162 samples, 0.01%)</title><rect x="10.8860%" y="661" width="0.0125%" height="15" fill="rgb(223,36,21)" fg:x="140740" fg:w="162"/><text x="11.1360%" y="671.50"></text></g><g><title>linux-sandbox (2,745 samples, 0.21%)</title><rect x="10.6916%" y="725" width="0.2123%" height="15" fill="rgb(207,123,46)" fg:x="138226" fg:w="2745"/><text x="10.9416%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (318 samples, 0.02%)</title><rect x="10.8793%" y="709" width="0.0246%" height="15" fill="rgb(240,218,32)" fg:x="140653" fg:w="318"/><text x="11.1293%" y="719.50"></text></g><g><title>do_syscall_64 (315 samples, 0.02%)</title><rect x="10.8795%" y="693" width="0.0244%" height="15" fill="rgb(252,5,43)" fg:x="140656" fg:w="315"/><text x="11.1295%" y="703.50"></text></g><g><title>process-wrapper (152 samples, 0.01%)</title><rect x="10.9043%" y="725" width="0.0118%" height="15" fill="rgb(252,84,19)" fg:x="140977" fg:w="152"/><text x="11.1543%" y="735.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (168 samples, 0.01%)</title><rect x="10.9229%" y="693" width="0.0130%" height="15" fill="rgb(243,152,39)" fg:x="141217" fg:w="168"/><text x="11.1729%" y="703.50"></text></g><g><title>__GI___wait4 (168 samples, 0.01%)</title><rect x="10.9229%" y="677" width="0.0130%" height="15" fill="rgb(234,160,15)" fg:x="141217" fg:w="168"/><text x="11.1729%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (168 samples, 0.01%)</title><rect x="10.9229%" y="661" width="0.0130%" height="15" fill="rgb(237,34,20)" fg:x="141217" fg:w="168"/><text x="11.1729%" y="671.50"></text></g><g><title>do_syscall_64 (168 samples, 0.01%)</title><rect x="10.9229%" y="645" width="0.0130%" height="15" fill="rgb(229,97,13)" fg:x="141217" fg:w="168"/><text x="11.1729%" y="655.50"></text></g><g><title>kernel_wait4 (167 samples, 0.01%)</title><rect x="10.9230%" y="629" width="0.0129%" height="15" fill="rgb(234,71,50)" fg:x="141218" fg:w="167"/><text x="11.1730%" y="639.50"></text></g><g><title>do_wait (167 samples, 0.01%)</title><rect x="10.9230%" y="613" width="0.0129%" height="15" fill="rgb(253,155,4)" fg:x="141218" fg:w="167"/><text x="11.1730%" y="623.50"></text></g><g><title>process_reaper (305 samples, 0.02%)</title><rect x="10.9161%" y="725" width="0.0236%" height="15" fill="rgb(222,185,37)" fg:x="141129" fg:w="305"/><text x="11.1661%" y="735.50"></text></g><g><title>[perf-956514.map] (305 samples, 0.02%)</title><rect x="10.9161%" y="709" width="0.0236%" height="15" fill="rgb(251,177,13)" fg:x="141129" fg:w="305"/><text x="11.1661%" y="719.50"></text></g><g><title>do_syscall_64 (138 samples, 0.01%)</title><rect x="10.9695%" y="597" width="0.0107%" height="15" fill="rgb(250,179,40)" fg:x="141820" fg:w="138"/><text x="11.2195%" y="607.50"></text></g><g><title>__x64_sys_futex (137 samples, 0.01%)</title><rect x="10.9696%" y="581" width="0.0106%" height="15" fill="rgb(242,44,2)" fg:x="141821" fg:w="137"/><text x="11.2196%" y="591.50"></text></g><g><title>do_futex (135 samples, 0.01%)</title><rect x="10.9698%" y="565" width="0.0104%" height="15" fill="rgb(216,177,13)" fg:x="141823" fg:w="135"/><text x="11.2198%" y="575.50"></text></g><g><title>futex_wait (134 samples, 0.01%)</title><rect x="10.9699%" y="549" width="0.0104%" height="15" fill="rgb(216,106,43)" fg:x="141824" fg:w="134"/><text x="11.2199%" y="559.50"></text></g><g><title>futex_wait_queue_me (130 samples, 0.01%)</title><rect x="10.9702%" y="533" width="0.0101%" height="15" fill="rgb(216,183,2)" fg:x="141828" fg:w="130"/><text x="11.2202%" y="543.50"></text></g><g><title>__pthread_cond_wait (151 samples, 0.01%)</title><rect x="10.9688%" y="661" width="0.0117%" height="15" fill="rgb(249,75,3)" fg:x="141810" fg:w="151"/><text x="11.2188%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (151 samples, 0.01%)</title><rect x="10.9688%" y="645" width="0.0117%" height="15" fill="rgb(219,67,39)" fg:x="141810" fg:w="151"/><text x="11.2188%" y="655.50"></text></g><g><title>futex_wait_cancelable (148 samples, 0.01%)</title><rect x="10.9690%" y="629" width="0.0114%" height="15" fill="rgb(253,228,2)" fg:x="141813" fg:w="148"/><text x="11.2190%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (142 samples, 0.01%)</title><rect x="10.9695%" y="613" width="0.0110%" height="15" fill="rgb(235,138,27)" fg:x="141819" fg:w="142"/><text x="11.2195%" y="623.50"></text></g><g><title>Parker::park (163 samples, 0.01%)</title><rect x="10.9683%" y="677" width="0.0126%" height="15" fill="rgb(236,97,51)" fg:x="141804" fg:w="163"/><text x="11.2183%" y="687.50"></text></g><g><title>Unsafe_Park (171 samples, 0.01%)</title><rect x="10.9679%" y="693" width="0.0132%" height="15" fill="rgb(240,80,30)" fg:x="141799" fg:w="171"/><text x="11.2179%" y="703.50"></text></g><g><title>[perf-956514.map] (535 samples, 0.04%)</title><rect x="10.9405%" y="709" width="0.0414%" height="15" fill="rgb(230,178,19)" fg:x="141444" fg:w="535"/><text x="11.1905%" y="719.50"></text></g><g><title>profile-writer- (559 samples, 0.04%)</title><rect x="10.9397%" y="725" width="0.0432%" height="15" fill="rgb(210,190,27)" fg:x="141434" fg:w="559"/><text x="11.1897%" y="735.50"></text></g><g><title>[unknown] (305 samples, 0.02%)</title><rect x="10.9854%" y="709" width="0.0236%" height="15" fill="rgb(222,107,31)" fg:x="142025" fg:w="305"/><text x="11.2354%" y="719.50"></text></g><g><title>__libc_start_main (147 samples, 0.01%)</title><rect x="11.0090%" y="693" width="0.0114%" height="15" fill="rgb(216,127,34)" fg:x="142330" fg:w="147"/><text x="11.2590%" y="703.50"></text></g><g><title>Py_BytesMain (147 samples, 0.01%)</title><rect x="11.0090%" y="677" width="0.0114%" height="15" fill="rgb(234,116,52)" fg:x="142330" fg:w="147"/><text x="11.2590%" y="687.50"></text></g><g><title>_start (155 samples, 0.01%)</title><rect x="11.0090%" y="709" width="0.0120%" height="15" fill="rgb(222,124,15)" fg:x="142330" fg:w="155"/><text x="11.2590%" y="719.50"></text></g><g><title>python3 (499 samples, 0.04%)</title><rect x="10.9834%" y="725" width="0.0386%" height="15" fill="rgb(231,179,28)" fg:x="141999" fg:w="499"/><text x="11.2334%" y="735.50"></text></g><g><title>[sed] (188 samples, 0.01%)</title><rect x="11.0435%" y="597" width="0.0145%" height="15" fill="rgb(226,93,45)" fg:x="142776" fg:w="188"/><text x="11.2935%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (192 samples, 0.01%)</title><rect x="11.0621%" y="405" width="0.0149%" height="15" fill="rgb(215,8,51)" fg:x="143017" fg:w="192"/><text x="11.3121%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (192 samples, 0.01%)</title><rect x="11.0621%" y="389" width="0.0149%" height="15" fill="rgb(223,106,5)" fg:x="143017" fg:w="192"/><text x="11.3121%" y="399.50"></text></g><g><title>native_write_msr (192 samples, 0.01%)</title><rect x="11.0621%" y="373" width="0.0149%" height="15" fill="rgb(250,191,5)" fg:x="143017" fg:w="192"/><text x="11.3121%" y="383.50"></text></g><g><title>finish_task_switch (202 samples, 0.02%)</title><rect x="11.0618%" y="421" width="0.0156%" height="15" fill="rgb(242,132,44)" fg:x="143013" fg:w="202"/><text x="11.3118%" y="431.50"></text></g><g><title>new_sync_read (222 samples, 0.02%)</title><rect x="11.0604%" y="485" width="0.0172%" height="15" fill="rgb(251,152,29)" fg:x="142994" fg:w="222"/><text x="11.3104%" y="495.50"></text></g><g><title>pipe_read (220 samples, 0.02%)</title><rect x="11.0605%" y="469" width="0.0170%" height="15" fill="rgb(218,179,5)" fg:x="142996" fg:w="220"/><text x="11.3105%" y="479.50"></text></g><g><title>schedule (206 samples, 0.02%)</title><rect x="11.0616%" y="453" width="0.0159%" height="15" fill="rgb(227,67,19)" fg:x="143010" fg:w="206"/><text x="11.3116%" y="463.50"></text></g><g><title>__schedule (206 samples, 0.02%)</title><rect x="11.0616%" y="437" width="0.0159%" height="15" fill="rgb(233,119,31)" fg:x="143010" fg:w="206"/><text x="11.3116%" y="447.50"></text></g><g><title>do_syscall_64 (227 samples, 0.02%)</title><rect x="11.0603%" y="533" width="0.0176%" height="15" fill="rgb(241,120,22)" fg:x="142993" fg:w="227"/><text x="11.3103%" y="543.50"></text></g><g><title>ksys_read (227 samples, 0.02%)</title><rect x="11.0603%" y="517" width="0.0176%" height="15" fill="rgb(224,102,30)" fg:x="142993" fg:w="227"/><text x="11.3103%" y="527.50"></text></g><g><title>vfs_read (227 samples, 0.02%)</title><rect x="11.0603%" y="501" width="0.0176%" height="15" fill="rgb(210,164,37)" fg:x="142993" fg:w="227"/><text x="11.3103%" y="511.50"></text></g><g><title>_IO_new_file_underflow (254 samples, 0.02%)</title><rect x="11.0586%" y="581" width="0.0196%" height="15" fill="rgb(226,191,16)" fg:x="142971" fg:w="254"/><text x="11.3086%" y="591.50"></text></g><g><title>__GI___libc_read (234 samples, 0.02%)</title><rect x="11.0601%" y="565" width="0.0181%" height="15" fill="rgb(214,40,45)" fg:x="142991" fg:w="234"/><text x="11.3101%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (232 samples, 0.02%)</title><rect x="11.0603%" y="549" width="0.0179%" height="15" fill="rgb(244,29,26)" fg:x="142993" fg:w="232"/><text x="11.3103%" y="559.50"></text></g><g><title>_IO_getdelim (262 samples, 0.02%)</title><rect x="11.0580%" y="597" width="0.0203%" height="15" fill="rgb(216,16,5)" fg:x="142964" fg:w="262"/><text x="11.3080%" y="607.50"></text></g><g><title>[sed] (539 samples, 0.04%)</title><rect x="11.0430%" y="613" width="0.0417%" height="15" fill="rgb(249,76,35)" fg:x="142770" fg:w="539"/><text x="11.2930%" y="623.50"></text></g><g><title>[sed] (590 samples, 0.05%)</title><rect x="11.0410%" y="629" width="0.0456%" height="15" fill="rgb(207,11,44)" fg:x="142744" fg:w="590"/><text x="11.2910%" y="639.50"></text></g><g><title>[sed] (778 samples, 0.06%)</title><rect x="11.0390%" y="645" width="0.0602%" height="15" fill="rgb(228,190,49)" fg:x="142718" fg:w="778"/><text x="11.2890%" y="655.50"></text></g><g><title>[sed] (808 samples, 0.06%)</title><rect x="11.0379%" y="661" width="0.0625%" height="15" fill="rgb(214,173,12)" fg:x="142704" fg:w="808"/><text x="11.2879%" y="671.50"></text></g><g><title>[sed] (905 samples, 0.07%)</title><rect x="11.0377%" y="677" width="0.0700%" height="15" fill="rgb(218,26,35)" fg:x="142701" fg:w="905"/><text x="11.2877%" y="687.50"></text></g><g><title>__libc_start_main (996 samples, 0.08%)</title><rect x="11.0377%" y="693" width="0.0770%" height="15" fill="rgb(220,200,19)" fg:x="142701" fg:w="996"/><text x="11.2877%" y="703.50"></text></g><g><title>[sed] (1,027 samples, 0.08%)</title><rect x="11.0374%" y="709" width="0.0794%" height="15" fill="rgb(239,95,49)" fg:x="142697" fg:w="1027"/><text x="11.2874%" y="719.50"></text></g><g><title>_IO_getdelim (149 samples, 0.01%)</title><rect x="11.1323%" y="613" width="0.0115%" height="15" fill="rgb(235,85,53)" fg:x="143924" fg:w="149"/><text x="11.3823%" y="623.50"></text></g><g><title>determine_info (246 samples, 0.02%)</title><rect x="11.1571%" y="533" width="0.0190%" height="15" fill="rgb(233,133,31)" fg:x="144245" fg:w="246"/><text x="11.4071%" y="543.50"></text></g><g><title>__GI__dl_addr (276 samples, 0.02%)</title><rect x="11.1549%" y="549" width="0.0213%" height="15" fill="rgb(218,25,20)" fg:x="144216" fg:w="276"/><text x="11.4049%" y="559.50"></text></g><g><title>__fopen_internal (395 samples, 0.03%)</title><rect x="11.1461%" y="613" width="0.0306%" height="15" fill="rgb(252,210,38)" fg:x="144103" fg:w="395"/><text x="11.3961%" y="623.50"></text></g><g><title>malloc_hook_ini (286 samples, 0.02%)</title><rect x="11.1546%" y="597" width="0.0221%" height="15" fill="rgb(242,134,21)" fg:x="144212" fg:w="286"/><text x="11.4046%" y="607.50"></text></g><g><title>ptmalloc_init (286 samples, 0.02%)</title><rect x="11.1546%" y="581" width="0.0221%" height="15" fill="rgb(213,28,48)" fg:x="144212" fg:w="286"/><text x="11.4046%" y="591.50"></text></g><g><title>ptmalloc_init (286 samples, 0.02%)</title><rect x="11.1546%" y="565" width="0.0221%" height="15" fill="rgb(250,196,2)" fg:x="144212" fg:w="286"/><text x="11.4046%" y="575.50"></text></g><g><title>[libselinux.so.1] (683 samples, 0.05%)</title><rect x="11.1246%" y="645" width="0.0528%" height="15" fill="rgb(227,5,17)" fg:x="143824" fg:w="683"/><text x="11.3746%" y="655.50"></text></g><g><title>selinuxfs_exists (584 samples, 0.05%)</title><rect x="11.1322%" y="629" width="0.0452%" height="15" fill="rgb(221,226,24)" fg:x="143923" fg:w="584"/><text x="11.3822%" y="639.50"></text></g><g><title>_dl_start_user (772 samples, 0.06%)</title><rect x="11.1241%" y="709" width="0.0597%" height="15" fill="rgb(211,5,48)" fg:x="143818" fg:w="772"/><text x="11.3741%" y="719.50"></text></g><g><title>_dl_init (772 samples, 0.06%)</title><rect x="11.1241%" y="693" width="0.0597%" height="15" fill="rgb(219,150,6)" fg:x="143818" fg:w="772"/><text x="11.3741%" y="703.50"></text></g><g><title>call_init (770 samples, 0.06%)</title><rect x="11.1242%" y="677" width="0.0596%" height="15" fill="rgb(251,46,16)" fg:x="143820" fg:w="770"/><text x="11.3742%" y="687.50"></text></g><g><title>call_init (769 samples, 0.06%)</title><rect x="11.1243%" y="661" width="0.0595%" height="15" fill="rgb(220,204,40)" fg:x="143821" fg:w="769"/><text x="11.3743%" y="671.50"></text></g><g><title>[ld-2.31.so] (132 samples, 0.01%)</title><rect x="11.2138%" y="533" width="0.0102%" height="15" fill="rgb(211,85,2)" fg:x="144978" fg:w="132"/><text x="11.4638%" y="543.50"></text></g><g><title>__vma_adjust (205 samples, 0.02%)</title><rect x="11.2329%" y="373" width="0.0159%" height="15" fill="rgb(229,17,7)" fg:x="145225" fg:w="205"/><text x="11.4829%" y="383.50"></text></g><g><title>__split_vma (282 samples, 0.02%)</title><rect x="11.2325%" y="389" width="0.0218%" height="15" fill="rgb(239,72,28)" fg:x="145220" fg:w="282"/><text x="11.4825%" y="399.50"></text></g><g><title>__do_munmap (455 samples, 0.04%)</title><rect x="11.2315%" y="405" width="0.0352%" height="15" fill="rgb(230,47,54)" fg:x="145207" fg:w="455"/><text x="11.4815%" y="415.50"></text></g><g><title>perf_event_mmap (174 samples, 0.01%)</title><rect x="11.2671%" y="405" width="0.0135%" height="15" fill="rgb(214,50,8)" fg:x="145667" fg:w="174"/><text x="11.5171%" y="415.50"></text></g><g><title>do_mmap (854 samples, 0.07%)</title><rect x="11.2268%" y="437" width="0.0661%" height="15" fill="rgb(216,198,43)" fg:x="145146" fg:w="854"/><text x="11.4768%" y="447.50"></text></g><g><title>mmap_region (827 samples, 0.06%)</title><rect x="11.2289%" y="421" width="0.0640%" height="15" fill="rgb(234,20,35)" fg:x="145173" fg:w="827"/><text x="11.4789%" y="431.50"></text></g><g><title>ksys_mmap_pgoff (902 samples, 0.07%)</title><rect x="11.2253%" y="469" width="0.0698%" height="15" fill="rgb(254,45,19)" fg:x="145127" fg:w="902"/><text x="11.4753%" y="479.50"></text></g><g><title>vm_mmap_pgoff (886 samples, 0.07%)</title><rect x="11.2266%" y="453" width="0.0685%" height="15" fill="rgb(219,14,44)" fg:x="145143" fg:w="886"/><text x="11.4766%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (970 samples, 0.08%)</title><rect x="11.2250%" y="501" width="0.0750%" height="15" fill="rgb(217,220,26)" fg:x="145123" fg:w="970"/><text x="11.4750%" y="511.50"></text></g><g><title>do_syscall_64 (969 samples, 0.07%)</title><rect x="11.2251%" y="485" width="0.0750%" height="15" fill="rgb(213,158,28)" fg:x="145124" fg:w="969"/><text x="11.4751%" y="495.50"></text></g><g><title>__mmap64 (992 samples, 0.08%)</title><rect x="11.2240%" y="517" width="0.0767%" height="15" fill="rgb(252,51,52)" fg:x="145110" fg:w="992"/><text x="11.4740%" y="527.50"></text></g><g><title>_dl_map_segments (1,132 samples, 0.09%)</title><rect x="11.2133%" y="549" width="0.0876%" height="15" fill="rgb(246,89,16)" fg:x="144971" fg:w="1132"/><text x="11.4633%" y="559.50"></text></g><g><title>__mmap64 (993 samples, 0.08%)</title><rect x="11.2240%" y="533" width="0.0768%" height="15" fill="rgb(216,158,49)" fg:x="145110" fg:w="993"/><text x="11.4740%" y="543.50"></text></g><g><title>elf_get_dynamic_info (164 samples, 0.01%)</title><rect x="11.3111%" y="549" width="0.0127%" height="15" fill="rgb(236,107,19)" fg:x="146236" fg:w="164"/><text x="11.5611%" y="559.50"></text></g><g><title>_dl_map_object_from_fd (1,492 samples, 0.12%)</title><rect x="11.2085%" y="565" width="0.1154%" height="15" fill="rgb(228,185,30)" fg:x="144909" fg:w="1492"/><text x="11.4585%" y="575.50"></text></g><g><title>do_filp_open (153 samples, 0.01%)</title><rect x="11.3322%" y="453" width="0.0118%" height="15" fill="rgb(246,134,8)" fg:x="146509" fg:w="153"/><text x="11.5822%" y="463.50"></text></g><g><title>path_openat (148 samples, 0.01%)</title><rect x="11.3326%" y="437" width="0.0114%" height="15" fill="rgb(214,143,50)" fg:x="146514" fg:w="148"/><text x="11.5826%" y="447.50"></text></g><g><title>__x64_sys_openat (199 samples, 0.02%)</title><rect x="11.3312%" y="485" width="0.0154%" height="15" fill="rgb(228,75,8)" fg:x="146495" fg:w="199"/><text x="11.5812%" y="495.50"></text></g><g><title>do_sys_openat2 (195 samples, 0.02%)</title><rect x="11.3315%" y="469" width="0.0151%" height="15" fill="rgb(207,175,4)" fg:x="146499" fg:w="195"/><text x="11.5815%" y="479.50"></text></g><g><title>do_syscall_64 (201 samples, 0.02%)</title><rect x="11.3311%" y="501" width="0.0155%" height="15" fill="rgb(205,108,24)" fg:x="146494" fg:w="201"/><text x="11.5811%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (214 samples, 0.02%)</title><rect x="11.3311%" y="517" width="0.0166%" height="15" fill="rgb(244,120,49)" fg:x="146494" fg:w="214"/><text x="11.5811%" y="527.50"></text></g><g><title>__GI___open64_nocancel (221 samples, 0.02%)</title><rect x="11.3308%" y="533" width="0.0171%" height="15" fill="rgb(223,47,38)" fg:x="146490" fg:w="221"/><text x="11.5808%" y="543.50"></text></g><g><title>open_path (330 samples, 0.03%)</title><rect x="11.3257%" y="565" width="0.0255%" height="15" fill="rgb(229,179,11)" fg:x="146424" fg:w="330"/><text x="11.5757%" y="575.50"></text></g><g><title>open_verify (271 samples, 0.02%)</title><rect x="11.3302%" y="549" width="0.0210%" height="15" fill="rgb(231,122,1)" fg:x="146483" fg:w="271"/><text x="11.5802%" y="559.50"></text></g><g><title>_dl_map_object (1,922 samples, 0.15%)</title><rect x="11.2045%" y="581" width="0.1487%" height="15" fill="rgb(245,119,9)" fg:x="144858" fg:w="1922"/><text x="11.4545%" y="591.50"></text></g><g><title>_dl_catch_exception (1,928 samples, 0.15%)</title><rect x="11.2041%" y="613" width="0.1491%" height="15" fill="rgb(241,163,25)" fg:x="144853" fg:w="1928"/><text x="11.4541%" y="623.50"></text></g><g><title>openaux (1,924 samples, 0.15%)</title><rect x="11.2045%" y="597" width="0.1488%" height="15" fill="rgb(217,214,3)" fg:x="144857" fg:w="1924"/><text x="11.4545%" y="607.50"></text></g><g><title>_dl_map_object_deps (1,992 samples, 0.15%)</title><rect x="11.2024%" y="629" width="0.1541%" height="15" fill="rgb(240,86,28)" fg:x="144831" fg:w="1992"/><text x="11.4524%" y="639.50"></text></g><g><title>mprotect_fixup (206 samples, 0.02%)</title><rect x="11.3649%" y="517" width="0.0159%" height="15" fill="rgb(215,47,9)" fg:x="146931" fg:w="206"/><text x="11.6149%" y="527.50"></text></g><g><title>__x64_sys_mprotect (225 samples, 0.02%)</title><rect x="11.3638%" y="549" width="0.0174%" height="15" fill="rgb(252,25,45)" fg:x="146917" fg:w="225"/><text x="11.6138%" y="559.50"></text></g><g><title>do_mprotect_pkey (224 samples, 0.02%)</title><rect x="11.3639%" y="533" width="0.0173%" height="15" fill="rgb(251,164,9)" fg:x="146918" fg:w="224"/><text x="11.6139%" y="543.50"></text></g><g><title>do_syscall_64 (226 samples, 0.02%)</title><rect x="11.3638%" y="565" width="0.0175%" height="15" fill="rgb(233,194,0)" fg:x="146917" fg:w="226"/><text x="11.6138%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (229 samples, 0.02%)</title><rect x="11.3636%" y="581" width="0.0177%" height="15" fill="rgb(249,111,24)" fg:x="146915" fg:w="229"/><text x="11.6136%" y="591.50"></text></g><g><title>_dl_protect_relro (238 samples, 0.02%)</title><rect x="11.3630%" y="613" width="0.0184%" height="15" fill="rgb(250,223,3)" fg:x="146907" fg:w="238"/><text x="11.6130%" y="623.50"></text></g><g><title>__mprotect (235 samples, 0.02%)</title><rect x="11.3632%" y="597" width="0.0182%" height="15" fill="rgb(236,178,37)" fg:x="146910" fg:w="235"/><text x="11.6132%" y="607.50"></text></g><g><title>check_match (203 samples, 0.02%)</title><rect x="11.4404%" y="549" width="0.0157%" height="15" fill="rgb(241,158,50)" fg:x="147908" fg:w="203"/><text x="11.6904%" y="559.50"></text></g><g><title>strcmp (132 samples, 0.01%)</title><rect x="11.4459%" y="533" width="0.0102%" height="15" fill="rgb(213,121,41)" fg:x="147979" fg:w="132"/><text x="11.6959%" y="543.50"></text></g><g><title>_dl_lookup_symbol_x (738 samples, 0.06%)</title><rect x="11.3995%" y="581" width="0.0571%" height="15" fill="rgb(240,92,3)" fg:x="147379" fg:w="738"/><text x="11.6495%" y="591.50"></text></g><g><title>do_lookup_x (581 samples, 0.04%)</title><rect x="11.4117%" y="565" width="0.0449%" height="15" fill="rgb(205,123,3)" fg:x="147536" fg:w="581"/><text x="11.6617%" y="575.50"></text></g><g><title>elf_machine_rela (866 samples, 0.07%)</title><rect x="11.3903%" y="597" width="0.0670%" height="15" fill="rgb(205,97,47)" fg:x="147260" fg:w="866"/><text x="11.6403%" y="607.50"></text></g><g><title>elf_dynamic_do_Rela (1,039 samples, 0.08%)</title><rect x="11.3814%" y="613" width="0.0804%" height="15" fill="rgb(247,152,14)" fg:x="147145" fg:w="1039"/><text x="11.6314%" y="623.50"></text></g><g><title>_dl_relocate_object (1,296 samples, 0.10%)</title><rect x="11.3626%" y="629" width="0.1002%" height="15" fill="rgb(248,195,53)" fg:x="146901" fg:w="1296"/><text x="11.6126%" y="639.50"></text></g><g><title>[ld-2.31.so] (3,565 samples, 0.28%)</title><rect x="11.1942%" y="645" width="0.2757%" height="15" fill="rgb(226,201,16)" fg:x="144724" fg:w="3565"/><text x="11.4442%" y="655.50"></text></g><g><title>_dl_start_final (3,639 samples, 0.28%)</title><rect x="11.1935%" y="677" width="0.2815%" height="15" fill="rgb(205,98,0)" fg:x="144715" fg:w="3639"/><text x="11.4435%" y="687.50"></text></g><g><title>_dl_sysdep_start (3,638 samples, 0.28%)</title><rect x="11.1935%" y="661" width="0.2814%" height="15" fill="rgb(214,191,48)" fg:x="144716" fg:w="3638"/><text x="11.4435%" y="671.50"></text></g><g><title>_dl_start (3,684 samples, 0.28%)</title><rect x="11.1935%" y="693" width="0.2850%" height="15" fill="rgb(237,112,39)" fg:x="144715" fg:w="3684"/><text x="11.4435%" y="703.50"></text></g><g><title>_start (3,735 samples, 0.29%)</title><rect x="11.1929%" y="709" width="0.2889%" height="15" fill="rgb(247,203,27)" fg:x="144708" fg:w="3735"/><text x="11.4429%" y="719.50"></text></g><g><title>asm_exc_page_fault (215 samples, 0.02%)</title><rect x="11.4818%" y="709" width="0.0166%" height="15" fill="rgb(235,124,28)" fg:x="148443" fg:w="215"/><text x="11.7318%" y="719.50"></text></g><g><title>__x64_sys_execve (272 samples, 0.02%)</title><rect x="11.4987%" y="677" width="0.0210%" height="15" fill="rgb(208,207,46)" fg:x="148661" fg:w="272"/><text x="11.7487%" y="687.50"></text></g><g><title>do_execveat_common (272 samples, 0.02%)</title><rect x="11.4987%" y="661" width="0.0210%" height="15" fill="rgb(234,176,4)" fg:x="148661" fg:w="272"/><text x="11.7487%" y="671.50"></text></g><g><title>bprm_execve (272 samples, 0.02%)</title><rect x="11.4987%" y="645" width="0.0210%" height="15" fill="rgb(230,133,28)" fg:x="148661" fg:w="272"/><text x="11.7487%" y="655.50"></text></g><g><title>load_elf_binary (272 samples, 0.02%)</title><rect x="11.4987%" y="629" width="0.0210%" height="15" fill="rgb(211,137,40)" fg:x="148661" fg:w="272"/><text x="11.7487%" y="639.50"></text></g><g><title>tlb_finish_mmu (135 samples, 0.01%)</title><rect x="11.5317%" y="597" width="0.0104%" height="15" fill="rgb(254,35,13)" fg:x="149088" fg:w="135"/><text x="11.7817%" y="607.50"></text></g><g><title>unmap_page_range (248 samples, 0.02%)</title><rect x="11.5425%" y="581" width="0.0192%" height="15" fill="rgb(225,49,51)" fg:x="149228" fg:w="248"/><text x="11.7925%" y="591.50"></text></g><g><title>exit_mmap (542 samples, 0.04%)</title><rect x="11.5204%" y="613" width="0.0419%" height="15" fill="rgb(251,10,15)" fg:x="148942" fg:w="542"/><text x="11.7704%" y="623.50"></text></g><g><title>unmap_vmas (261 samples, 0.02%)</title><rect x="11.5422%" y="597" width="0.0202%" height="15" fill="rgb(228,207,15)" fg:x="149223" fg:w="261"/><text x="11.7922%" y="607.50"></text></g><g><title>mmput (544 samples, 0.04%)</title><rect x="11.5204%" y="629" width="0.0421%" height="15" fill="rgb(241,99,19)" fg:x="148942" fg:w="544"/><text x="11.7704%" y="639.50"></text></g><g><title>do_syscall_64 (885 samples, 0.07%)</title><rect x="11.4987%" y="693" width="0.0685%" height="15" fill="rgb(207,104,49)" fg:x="148661" fg:w="885"/><text x="11.7487%" y="703.50"></text></g><g><title>__x64_sys_exit_group (613 samples, 0.05%)</title><rect x="11.5197%" y="677" width="0.0474%" height="15" fill="rgb(234,99,18)" fg:x="148933" fg:w="613"/><text x="11.7697%" y="687.50"></text></g><g><title>do_group_exit (613 samples, 0.05%)</title><rect x="11.5197%" y="661" width="0.0474%" height="15" fill="rgb(213,191,49)" fg:x="148933" fg:w="613"/><text x="11.7697%" y="671.50"></text></g><g><title>do_exit (613 samples, 0.05%)</title><rect x="11.5197%" y="645" width="0.0474%" height="15" fill="rgb(210,226,19)" fg:x="148933" fg:w="613"/><text x="11.7697%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (888 samples, 0.07%)</title><rect x="11.4985%" y="709" width="0.0687%" height="15" fill="rgb(229,97,18)" fg:x="148659" fg:w="888"/><text x="11.7485%" y="719.50"></text></g><g><title>sed (7,059 samples, 0.55%)</title><rect x="11.0220%" y="725" width="0.5460%" height="15" fill="rgb(211,167,15)" fg:x="142498" fg:w="7059"/><text x="11.2720%" y="735.50"></text></g><g><title>JavaCalls::call_helper (130 samples, 0.01%)</title><rect x="11.5715%" y="709" width="0.0101%" height="15" fill="rgb(210,169,34)" fg:x="149602" fg:w="130"/><text x="11.8215%" y="719.50"></text></g><g><title>HandleMark::initialize (130 samples, 0.01%)</title><rect x="11.5715%" y="693" width="0.0101%" height="15" fill="rgb(241,121,31)" fg:x="149602" fg:w="130"/><text x="11.8215%" y="703.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (133 samples, 0.01%)</title><rect x="11.5849%" y="693" width="0.0103%" height="15" fill="rgb(232,40,11)" fg:x="149776" fg:w="133"/><text x="11.8349%" y="703.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<1097844ul, G1BarrierSet>, (AccessInternal::BarrierType)2, 1097844ul>::oop_access_barrier (178 samples, 0.01%)</title><rect x="11.5952%" y="693" width="0.0138%" height="15" fill="rgb(205,86,26)" fg:x="149909" fg:w="178"/><text x="11.8452%" y="703.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<5292148ul, G1BarrierSet>, (AccessInternal::BarrierType)0, 5292148ul>::oop_access_barrier (150 samples, 0.01%)</title><rect x="11.6091%" y="693" width="0.0116%" height="15" fill="rgb(231,126,28)" fg:x="150088" fg:w="150"/><text x="11.8591%" y="703.50"></text></g><g><title>CollectedHeap::obj_allocate (376 samples, 0.03%)</title><rect x="11.6355%" y="693" width="0.0291%" height="15" fill="rgb(219,221,18)" fg:x="150430" fg:w="376"/><text x="11.8855%" y="703.50"></text></g><g><title>HandleMark::pop_and_restore (176 samples, 0.01%)</title><rect x="11.6716%" y="693" width="0.0136%" height="15" fill="rgb(211,40,0)" fg:x="150897" fg:w="176"/><text x="11.9216%" y="703.50"></text></g><g><title>InstanceKlass::initialize (146 samples, 0.01%)</title><rect x="11.6917%" y="693" width="0.0113%" height="15" fill="rgb(239,85,43)" fg:x="151157" fg:w="146"/><text x="11.9417%" y="703.50"></text></g><g><title>JNIHandleBlock::allocate_block (414 samples, 0.03%)</title><rect x="11.7060%" y="693" width="0.0320%" height="15" fill="rgb(231,55,21)" fg:x="151341" fg:w="414"/><text x="11.9560%" y="703.50"></text></g><g><title>JNIHandles::make_local (134 samples, 0.01%)</title><rect x="11.7427%" y="693" width="0.0104%" height="15" fill="rgb(225,184,43)" fg:x="151816" fg:w="134"/><text x="11.9927%" y="703.50"></text></g><g><title>JavaCalls::call (146 samples, 0.01%)</title><rect x="11.7648%" y="693" width="0.0113%" height="15" fill="rgb(251,158,41)" fg:x="152101" fg:w="146"/><text x="12.0148%" y="703.50"></text></g><g><title>JavaCalls::call_helper (206 samples, 0.02%)</title><rect x="11.7761%" y="693" width="0.0159%" height="15" fill="rgb(234,159,37)" fg:x="152247" fg:w="206"/><text x="12.0261%" y="703.50"></text></g><g><title>JavaThread::can_call_java (289 samples, 0.02%)</title><rect x="11.7920%" y="693" width="0.0224%" height="15" fill="rgb(216,204,22)" fg:x="152453" fg:w="289"/><text x="12.0420%" y="703.50"></text></g><g><title>JavaThread::is_Java_thread (342 samples, 0.03%)</title><rect x="11.8164%" y="693" width="0.0265%" height="15" fill="rgb(214,17,3)" fg:x="152769" fg:w="342"/><text x="12.0664%" y="703.50"></text></g><g><title>MemAllocator::allocate (191 samples, 0.01%)</title><rect x="11.8492%" y="693" width="0.0148%" height="15" fill="rgb(212,111,17)" fg:x="153193" fg:w="191"/><text x="12.0992%" y="703.50"></text></g><g><title>ThreadHeapSampler::enabled (250 samples, 0.02%)</title><rect x="11.8744%" y="693" width="0.0193%" height="15" fill="rgb(221,157,24)" fg:x="153518" fg:w="250"/><text x="12.1244%" y="703.50"></text></g><g><title>ThreadShadow::clear_pending_exception (185 samples, 0.01%)</title><rect x="11.8939%" y="693" width="0.0143%" height="15" fill="rgb(252,16,13)" fg:x="153771" fg:w="185"/><text x="12.1439%" y="703.50"></text></g><g><title>ThreadStateTransition::transition_from_native (240 samples, 0.02%)</title><rect x="11.9148%" y="693" width="0.0186%" height="15" fill="rgb(221,62,2)" fg:x="154041" fg:w="240"/><text x="12.1648%" y="703.50"></text></g><g><title>__GI___xstat (167 samples, 0.01%)</title><rect x="11.9592%" y="693" width="0.0129%" height="15" fill="rgb(247,87,22)" fg:x="154615" fg:w="167"/><text x="12.2092%" y="703.50"></text></g><g><title>__GI_unlinkat (198 samples, 0.02%)</title><rect x="11.9722%" y="693" width="0.0153%" height="15" fill="rgb(215,73,9)" fg:x="154783" fg:w="198"/><text x="12.2222%" y="703.50"></text></g><g><title>_int_free (169 samples, 0.01%)</title><rect x="11.9928%" y="693" width="0.0131%" height="15" fill="rgb(207,175,33)" fg:x="155049" fg:w="169"/><text x="12.2428%" y="703.50"></text></g><g><title>check_bounds (298 samples, 0.02%)</title><rect x="12.0156%" y="693" width="0.0230%" height="15" fill="rgb(243,129,54)" fg:x="155344" fg:w="298"/><text x="12.2656%" y="703.50"></text></g><g><title>jni_NewObjectV (273 samples, 0.02%)</title><rect x="12.0660%" y="693" width="0.0211%" height="15" fill="rgb(227,119,45)" fg:x="155995" fg:w="273"/><text x="12.3160%" y="703.50"></text></g><g><title>os::os_exception_wrapper (223 samples, 0.02%)</title><rect x="12.1207%" y="693" width="0.0172%" height="15" fill="rgb(205,109,36)" fg:x="156703" fg:w="223"/><text x="12.3707%" y="703.50"></text></g><g><title>[anon] (7,259 samples, 0.56%)</title><rect x="11.5837%" y="709" width="0.5615%" height="15" fill="rgb(205,6,39)" fg:x="149760" fg:w="7259"/><text x="11.8337%" y="719.50"></text></g><g><title>[libc-2.31.so] (191 samples, 0.01%)</title><rect x="12.8405%" y="693" width="0.0148%" height="15" fill="rgb(221,32,16)" fg:x="166009" fg:w="191"/><text x="13.0905%" y="703.50"></text></g><g><title>__x64_sys_close (396 samples, 0.03%)</title><rect x="12.8603%" y="645" width="0.0306%" height="15" fill="rgb(228,144,50)" fg:x="166265" fg:w="396"/><text x="13.1103%" y="655.50"></text></g><g><title>filp_close (282 samples, 0.02%)</title><rect x="12.8691%" y="629" width="0.0218%" height="15" fill="rgb(229,201,53)" fg:x="166379" fg:w="282"/><text x="13.1191%" y="639.50"></text></g><g><title>do_syscall_64 (424 samples, 0.03%)</title><rect x="12.8588%" y="661" width="0.0328%" height="15" fill="rgb(249,153,27)" fg:x="166245" fg:w="424"/><text x="13.1088%" y="671.50"></text></g><g><title>btrfs_release_file (348 samples, 0.03%)</title><rect x="12.9035%" y="597" width="0.0269%" height="15" fill="rgb(227,106,25)" fg:x="166823" fg:w="348"/><text x="13.1535%" y="607.50"></text></g><g><title>kfree (279 samples, 0.02%)</title><rect x="12.9088%" y="581" width="0.0216%" height="15" fill="rgb(230,65,29)" fg:x="166892" fg:w="279"/><text x="13.1588%" y="591.50"></text></g><g><title>__fput (668 samples, 0.05%)</title><rect x="12.8985%" y="613" width="0.0517%" height="15" fill="rgb(221,57,46)" fg:x="166759" fg:w="668"/><text x="13.1485%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,263 samples, 0.10%)</title><rect x="12.8582%" y="677" width="0.0977%" height="15" fill="rgb(229,161,17)" fg:x="166237" fg:w="1263"/><text x="13.1082%" y="687.50"></text></g><g><title>syscall_exit_to_user_mode (831 samples, 0.06%)</title><rect x="12.8916%" y="661" width="0.0643%" height="15" fill="rgb(222,213,11)" fg:x="166669" fg:w="831"/><text x="13.1416%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (828 samples, 0.06%)</title><rect x="12.8918%" y="645" width="0.0640%" height="15" fill="rgb(235,35,13)" fg:x="166672" fg:w="828"/><text x="13.1418%" y="655.50"></text></g><g><title>task_work_run (761 samples, 0.06%)</title><rect x="12.8970%" y="629" width="0.0589%" height="15" fill="rgb(233,158,34)" fg:x="166739" fg:w="761"/><text x="13.1470%" y="639.50"></text></g><g><title>__GI___close_nocancel (1,309 samples, 0.10%)</title><rect x="12.8553%" y="693" width="0.1012%" height="15" fill="rgb(215,151,48)" fg:x="166200" fg:w="1309"/><text x="13.1053%" y="703.50"></text></g><g><title>__GI___libc_free (1,212 samples, 0.09%)</title><rect x="12.9565%" y="693" width="0.0937%" height="15" fill="rgb(229,84,14)" fg:x="167509" fg:w="1212"/><text x="13.2065%" y="703.50"></text></g><g><title>entry_SYSCALL_64 (302 samples, 0.02%)</title><rect x="13.0776%" y="677" width="0.0234%" height="15" fill="rgb(229,68,14)" fg:x="169074" fg:w="302"/><text x="13.3276%" y="687.50"></text></g><g><title>__schedule (192 samples, 0.01%)</title><rect x="13.1982%" y="581" width="0.0149%" height="15" fill="rgb(243,106,26)" fg:x="170633" fg:w="192"/><text x="13.4482%" y="591.50"></text></g><g><title>_cond_resched (277 samples, 0.02%)</title><rect x="13.1943%" y="597" width="0.0214%" height="15" fill="rgb(206,45,38)" fg:x="170583" fg:w="277"/><text x="13.4443%" y="607.50"></text></g><g><title>_raw_spin_lock (247 samples, 0.02%)</title><rect x="13.2420%" y="581" width="0.0191%" height="15" fill="rgb(226,6,15)" fg:x="171200" fg:w="247"/><text x="13.4920%" y="591.50"></text></g><g><title>lockref_put_or_lock (464 samples, 0.04%)</title><rect x="13.2253%" y="597" width="0.0359%" height="15" fill="rgb(232,22,54)" fg:x="170984" fg:w="464"/><text x="13.4753%" y="607.50"></text></g><g><title>dput (1,298 samples, 0.10%)</title><rect x="13.1621%" y="613" width="0.1004%" height="15" fill="rgb(229,222,32)" fg:x="170167" fg:w="1298"/><text x="13.4121%" y="623.50"></text></g><g><title>_raw_spin_lock (153 samples, 0.01%)</title><rect x="13.3227%" y="533" width="0.0118%" height="15" fill="rgb(228,62,29)" fg:x="172243" fg:w="153"/><text x="13.5727%" y="543.50"></text></g><g><title>__d_lookup (531 samples, 0.04%)</title><rect x="13.2940%" y="549" width="0.0411%" height="15" fill="rgb(251,103,34)" fg:x="171872" fg:w="531"/><text x="13.5440%" y="559.50"></text></g><g><title>__lookup_hash (672 samples, 0.05%)</title><rect x="13.2833%" y="597" width="0.0520%" height="15" fill="rgb(233,12,30)" fg:x="171733" fg:w="672"/><text x="13.5333%" y="607.50"></text></g><g><title>lookup_dcache (627 samples, 0.05%)</title><rect x="13.2867%" y="581" width="0.0485%" height="15" fill="rgb(238,52,0)" fg:x="171778" fg:w="627"/><text x="13.5367%" y="591.50"></text></g><g><title>d_lookup (594 samples, 0.05%)</title><rect x="13.2893%" y="565" width="0.0459%" height="15" fill="rgb(223,98,5)" fg:x="171811" fg:w="594"/><text x="13.5393%" y="575.50"></text></g><g><title>down_write (191 samples, 0.01%)</title><rect x="13.3353%" y="597" width="0.0148%" height="15" fill="rgb(228,75,37)" fg:x="172406" fg:w="191"/><text x="13.5853%" y="607.50"></text></g><g><title>__legitimize_mnt (190 samples, 0.01%)</title><rect x="13.3900%" y="517" width="0.0147%" height="15" fill="rgb(205,115,49)" fg:x="173113" fg:w="190"/><text x="13.6400%" y="527.50"></text></g><g><title>__legitimize_path (325 samples, 0.03%)</title><rect x="13.3873%" y="533" width="0.0251%" height="15" fill="rgb(250,154,43)" fg:x="173078" fg:w="325"/><text x="13.6373%" y="543.50"></text></g><g><title>complete_walk (479 samples, 0.04%)</title><rect x="13.3788%" y="565" width="0.0370%" height="15" fill="rgb(226,43,29)" fg:x="172968" fg:w="479"/><text x="13.6288%" y="575.50"></text></g><g><title>try_to_unlazy (441 samples, 0.03%)</title><rect x="13.3817%" y="549" width="0.0341%" height="15" fill="rgb(249,228,39)" fg:x="173006" fg:w="441"/><text x="13.6317%" y="559.50"></text></g><g><title>inode_permission.part.0 (3,107 samples, 0.24%)</title><rect x="13.6542%" y="549" width="0.2403%" height="15" fill="rgb(216,79,43)" fg:x="176528" fg:w="3107"/><text x="13.9042%" y="559.50"></text></g><g><title>generic_permission (662 samples, 0.05%)</title><rect x="13.8433%" y="533" width="0.0512%" height="15" fill="rgb(228,95,12)" fg:x="178973" fg:w="662"/><text x="14.0933%" y="543.50"></text></g><g><title>security_inode_permission (335 samples, 0.03%)</title><rect x="13.8945%" y="549" width="0.0259%" height="15" fill="rgb(249,221,15)" fg:x="179635" fg:w="335"/><text x="14.1445%" y="559.50"></text></g><g><title>__d_lookup_rcu (4,198 samples, 0.32%)</title><rect x="14.0780%" y="517" width="0.3247%" height="15" fill="rgb(233,34,13)" fg:x="182008" fg:w="4198"/><text x="14.3280%" y="527.50"></text></g><g><title>lookup_fast (5,119 samples, 0.40%)</title><rect x="14.0071%" y="533" width="0.3959%" height="15" fill="rgb(214,103,39)" fg:x="181091" fg:w="5119"/><text x="14.2571%" y="543.50"></text></g><g><title>link_path_walk.part.0 (14,005 samples, 1.08%)</title><rect x="13.4158%" y="565" width="1.0833%" height="15" fill="rgb(251,126,39)" fg:x="173447" fg:w="14005"/><text x="13.6658%" y="575.50"></text></g><g><title>walk_component (7,482 samples, 0.58%)</title><rect x="13.9204%" y="549" width="0.5787%" height="15" fill="rgb(214,216,36)" fg:x="179970" fg:w="7482"/><text x="14.1704%" y="559.50"></text></g><g><title>step_into (1,242 samples, 0.10%)</title><rect x="14.4030%" y="533" width="0.0961%" height="15" fill="rgb(220,221,8)" fg:x="186210" fg:w="1242"/><text x="14.6530%" y="543.50"></text></g><g><title>path_init (363 samples, 0.03%)</title><rect x="14.4991%" y="565" width="0.0281%" height="15" fill="rgb(240,216,3)" fg:x="187452" fg:w="363"/><text x="14.7491%" y="575.50"></text></g><g><title>nd_jump_root (211 samples, 0.02%)</title><rect x="14.5109%" y="549" width="0.0163%" height="15" fill="rgb(232,218,17)" fg:x="187604" fg:w="211"/><text x="14.7609%" y="559.50"></text></g><g><title>set_root (156 samples, 0.01%)</title><rect x="14.5151%" y="533" width="0.0121%" height="15" fill="rgb(229,163,45)" fg:x="187659" fg:w="156"/><text x="14.7651%" y="543.50"></text></g><g><title>filename_parentat (15,287 samples, 1.18%)</title><rect x="13.3501%" y="597" width="1.1824%" height="15" fill="rgb(231,110,42)" fg:x="172597" fg:w="15287"/><text x="13.6001%" y="607.50"></text></g><g><title>path_parentat (15,008 samples, 1.16%)</title><rect x="13.3717%" y="581" width="1.1608%" height="15" fill="rgb(208,170,48)" fg:x="172876" fg:w="15008"/><text x="13.6217%" y="591.50"></text></g><g><title>kmem_cache_free (419 samples, 0.03%)</title><rect x="14.5325%" y="597" width="0.0324%" height="15" fill="rgb(239,116,25)" fg:x="187884" fg:w="419"/><text x="14.7825%" y="607.50"></text></g><g><title>__mnt_want_write (151 samples, 0.01%)</title><rect x="14.5874%" y="581" width="0.0117%" height="15" fill="rgb(219,200,50)" fg:x="188594" fg:w="151"/><text x="14.8374%" y="591.50"></text></g><g><title>mnt_want_write (524 samples, 0.04%)</title><rect x="14.5649%" y="597" width="0.0405%" height="15" fill="rgb(245,200,0)" fg:x="188303" fg:w="524"/><text x="14.8149%" y="607.50"></text></g><g><title>filename_create (17,421 samples, 1.35%)</title><rect x="13.2625%" y="613" width="1.3475%" height="15" fill="rgb(245,119,33)" fg:x="171465" fg:w="17421"/><text x="13.5125%" y="623.50"></text></g><g><title>kmem_cache_free (453 samples, 0.04%)</title><rect x="14.6268%" y="597" width="0.0350%" height="15" fill="rgb(231,125,12)" fg:x="189103" fg:w="453"/><text x="14.8768%" y="607.50"></text></g><g><title>__legitimize_mnt (243 samples, 0.02%)</title><rect x="14.6859%" y="533" width="0.0188%" height="15" fill="rgb(216,96,41)" fg:x="189867" fg:w="243"/><text x="14.9359%" y="543.50"></text></g><g><title>__legitimize_path (404 samples, 0.03%)</title><rect x="14.6823%" y="549" width="0.0312%" height="15" fill="rgb(248,43,45)" fg:x="189820" fg:w="404"/><text x="14.9323%" y="559.50"></text></g><g><title>complete_walk (574 samples, 0.04%)</title><rect x="14.6738%" y="581" width="0.0444%" height="15" fill="rgb(217,222,7)" fg:x="189710" fg:w="574"/><text x="14.9238%" y="591.50"></text></g><g><title>try_to_unlazy (528 samples, 0.04%)</title><rect x="14.6773%" y="565" width="0.0408%" height="15" fill="rgb(233,28,6)" fg:x="189756" fg:w="528"/><text x="14.9273%" y="575.50"></text></g><g><title>btrfs_permission (186 samples, 0.01%)</title><rect x="15.2577%" y="549" width="0.0144%" height="15" fill="rgb(231,218,15)" fg:x="197260" fg:w="186"/><text x="15.5077%" y="559.50"></text></g><g><title>inode_permission.part.0 (3,964 samples, 0.31%)</title><rect x="15.0414%" y="565" width="0.3066%" height="15" fill="rgb(226,171,48)" fg:x="194463" fg:w="3964"/><text x="15.2914%" y="575.50"></text></g><g><title>generic_permission (981 samples, 0.08%)</title><rect x="15.2721%" y="549" width="0.0759%" height="15" fill="rgb(235,201,9)" fg:x="197446" fg:w="981"/><text x="15.5221%" y="559.50"></text></g><g><title>security_inode_permission (449 samples, 0.03%)</title><rect x="15.3480%" y="565" width="0.0347%" height="15" fill="rgb(217,80,15)" fg:x="198427" fg:w="449"/><text x="15.5980%" y="575.50"></text></g><g><title>__d_lookup_rcu (5,590 samples, 0.43%)</title><rect x="15.5806%" y="533" width="0.4324%" height="15" fill="rgb(219,152,8)" fg:x="201434" fg:w="5590"/><text x="15.8306%" y="543.50"></text></g><g><title>lookup_fast (6,796 samples, 0.53%)</title><rect x="15.4882%" y="549" width="0.5257%" height="15" fill="rgb(243,107,38)" fg:x="200240" fg:w="6796"/><text x="15.7382%" y="559.50"></text></g><g><title>page_put_link (282 samples, 0.02%)</title><rect x="16.0139%" y="549" width="0.0218%" height="15" fill="rgb(231,17,5)" fg:x="207036" fg:w="282"/><text x="16.2639%" y="559.50"></text></g><g><title>__lookup_mnt (210 samples, 0.02%)</title><rect x="16.1716%" y="533" width="0.0162%" height="15" fill="rgb(209,25,54)" fg:x="209075" fg:w="210"/><text x="16.4216%" y="543.50"></text></g><g><title>atime_needs_update (288 samples, 0.02%)</title><rect x="16.1883%" y="533" width="0.0223%" height="15" fill="rgb(219,0,2)" fg:x="209291" fg:w="288"/><text x="16.4383%" y="543.50"></text></g><g><title>current_time (177 samples, 0.01%)</title><rect x="16.1969%" y="517" width="0.0137%" height="15" fill="rgb(246,9,5)" fg:x="209402" fg:w="177"/><text x="16.4469%" y="527.50"></text></g><g><title>page_get_link (1,149 samples, 0.09%)</title><rect x="16.2157%" y="533" width="0.0889%" height="15" fill="rgb(226,159,4)" fg:x="209645" fg:w="1149"/><text x="16.4657%" y="543.50"></text></g><g><title>pagecache_get_page (1,059 samples, 0.08%)</title><rect x="16.2227%" y="517" width="0.0819%" height="15" fill="rgb(219,175,34)" fg:x="209735" fg:w="1059"/><text x="16.4727%" y="527.50"></text></g><g><title>find_get_entry (946 samples, 0.07%)</title><rect x="16.2314%" y="501" width="0.0732%" height="15" fill="rgb(236,10,46)" fg:x="209848" fg:w="946"/><text x="16.4814%" y="511.50"></text></g><g><title>xas_load (224 samples, 0.02%)</title><rect x="16.2872%" y="485" width="0.0173%" height="15" fill="rgb(240,211,16)" fg:x="210570" fg:w="224"/><text x="16.5372%" y="495.50"></text></g><g><title>xas_start (213 samples, 0.02%)</title><rect x="16.2881%" y="469" width="0.0165%" height="15" fill="rgb(205,3,43)" fg:x="210581" fg:w="213"/><text x="16.5381%" y="479.50"></text></g><g><title>link_path_walk.part.0 (20,536 samples, 1.59%)</title><rect x="14.7182%" y="581" width="1.5884%" height="15" fill="rgb(245,7,22)" fg:x="190284" fg:w="20536"/><text x="14.9682%" y="591.50"></text></g><g><title>walk_component (11,944 samples, 0.92%)</title><rect x="15.3827%" y="565" width="0.9238%" height="15" fill="rgb(239,132,32)" fg:x="198876" fg:w="11944"/><text x="15.6327%" y="575.50"></text></g><g><title>step_into (3,501 samples, 0.27%)</title><rect x="16.0358%" y="549" width="0.2708%" height="15" fill="rgb(228,202,34)" fg:x="207319" fg:w="3501"/><text x="16.2858%" y="559.50"></text></g><g><title>path_init (556 samples, 0.04%)</title><rect x="16.3066%" y="581" width="0.0430%" height="15" fill="rgb(254,200,22)" fg:x="210820" fg:w="556"/><text x="16.5566%" y="591.50"></text></g><g><title>nd_jump_root (366 samples, 0.03%)</title><rect x="16.3213%" y="565" width="0.0283%" height="15" fill="rgb(219,10,39)" fg:x="211010" fg:w="366"/><text x="16.5713%" y="575.50"></text></g><g><title>set_root (300 samples, 0.02%)</title><rect x="16.3264%" y="549" width="0.0232%" height="15" fill="rgb(226,210,39)" fg:x="211076" fg:w="300"/><text x="16.5764%" y="559.50"></text></g><g><title>terminate_walk (130 samples, 0.01%)</title><rect x="16.3496%" y="581" width="0.0101%" height="15" fill="rgb(208,219,16)" fg:x="211376" fg:w="130"/><text x="16.5996%" y="591.50"></text></g><g><title>__d_lookup_rcu (349 samples, 0.03%)</title><rect x="16.3670%" y="549" width="0.0270%" height="15" fill="rgb(216,158,51)" fg:x="211601" fg:w="349"/><text x="16.6170%" y="559.50"></text></g><g><title>lookup_fast (392 samples, 0.03%)</title><rect x="16.3637%" y="565" width="0.0303%" height="15" fill="rgb(233,14,44)" fg:x="211559" fg:w="392"/><text x="16.6137%" y="575.50"></text></g><g><title>path_lookupat (22,454 samples, 1.74%)</title><rect x="14.6618%" y="597" width="1.7368%" height="15" fill="rgb(237,97,39)" fg:x="189556" fg:w="22454"/><text x="14.9118%" y="607.50"></text></g><g><title>walk_component (504 samples, 0.04%)</title><rect x="16.3596%" y="581" width="0.0390%" height="15" fill="rgb(218,198,43)" fg:x="211506" fg:w="504"/><text x="16.6096%" y="591.50"></text></g><g><title>filename_lookup (23,157 samples, 1.79%)</title><rect x="14.6100%" y="613" width="1.7912%" height="15" fill="rgb(231,104,20)" fg:x="188886" fg:w="23157"/><text x="14.8600%" y="623.50">f..</text></g><g><title>getname_flags (213 samples, 0.02%)</title><rect x="16.4012%" y="613" width="0.0165%" height="15" fill="rgb(254,36,13)" fg:x="212043" fg:w="213"/><text x="16.6512%" y="623.50"></text></g><g><title>memset_erms (1,944 samples, 0.15%)</title><rect x="16.4802%" y="581" width="0.1504%" height="15" fill="rgb(248,14,50)" fg:x="213065" fg:w="1944"/><text x="16.7302%" y="591.50"></text></g><g><title>_cond_resched (161 samples, 0.01%)</title><rect x="16.6474%" y="565" width="0.0125%" height="15" fill="rgb(217,107,29)" fg:x="215226" fg:w="161"/><text x="16.8974%" y="575.50"></text></g><g><title>kmem_cache_alloc (2,941 samples, 0.23%)</title><rect x="16.4340%" y="597" width="0.2275%" height="15" fill="rgb(251,169,33)" fg:x="212467" fg:w="2941"/><text x="16.6840%" y="607.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (399 samples, 0.03%)</title><rect x="16.6306%" y="581" width="0.0309%" height="15" fill="rgb(217,108,32)" fg:x="215009" fg:w="399"/><text x="16.8806%" y="591.50"></text></g><g><title>__check_heap_object (253 samples, 0.02%)</title><rect x="16.7994%" y="565" width="0.0196%" height="15" fill="rgb(219,66,42)" fg:x="217192" fg:w="253"/><text x="17.0494%" y="575.50"></text></g><g><title>__virt_addr_valid (489 samples, 0.04%)</title><rect x="16.8190%" y="565" width="0.0378%" height="15" fill="rgb(206,180,7)" fg:x="217445" fg:w="489"/><text x="17.0690%" y="575.50"></text></g><g><title>__check_object_size (1,036 samples, 0.08%)</title><rect x="16.7809%" y="581" width="0.0801%" height="15" fill="rgb(208,226,31)" fg:x="216952" fg:w="1036"/><text x="17.0309%" y="591.50"></text></g><g><title>getname_flags.part.0 (5,741 samples, 0.44%)</title><rect x="16.4177%" y="613" width="0.4441%" height="15" fill="rgb(218,26,49)" fg:x="212256" fg:w="5741"/><text x="16.6677%" y="623.50"></text></g><g><title>strncpy_from_user (2,589 samples, 0.20%)</title><rect x="16.6615%" y="597" width="0.2003%" height="15" fill="rgb(233,197,48)" fg:x="215408" fg:w="2589"/><text x="16.9115%" y="607.50"></text></g><g><title>btrfs_permission (226 samples, 0.02%)</title><rect x="16.8971%" y="581" width="0.0175%" height="15" fill="rgb(252,181,51)" fg:x="218455" fg:w="226"/><text x="17.1471%" y="591.50"></text></g><g><title>inode_permission.part.0 (379 samples, 0.03%)</title><rect x="16.8869%" y="597" width="0.0293%" height="15" fill="rgb(253,90,19)" fg:x="218322" fg:w="379"/><text x="17.1369%" y="607.50"></text></g><g><title>may_linkat (713 samples, 0.06%)</title><rect x="16.8618%" y="613" width="0.0551%" height="15" fill="rgb(215,171,30)" fg:x="217998" fg:w="713"/><text x="17.1118%" y="623.50"></text></g><g><title>mnt_drop_write (223 samples, 0.02%)</title><rect x="16.9169%" y="613" width="0.0172%" height="15" fill="rgb(214,222,9)" fg:x="218711" fg:w="223"/><text x="17.1669%" y="623.50"></text></g><g><title>mntput_no_expire (165 samples, 0.01%)</title><rect x="16.9364%" y="613" width="0.0128%" height="15" fill="rgb(223,3,22)" fg:x="218962" fg:w="165"/><text x="17.1864%" y="623.50"></text></g><g><title>apparmor_path_link (408 samples, 0.03%)</title><rect x="16.9635%" y="597" width="0.0316%" height="15" fill="rgb(225,196,46)" fg:x="219313" fg:w="408"/><text x="17.2135%" y="607.50"></text></g><g><title>security_path_link (1,266 samples, 0.10%)</title><rect x="16.9491%" y="613" width="0.0979%" height="15" fill="rgb(209,110,37)" fg:x="219127" fg:w="1266"/><text x="17.1991%" y="623.50"></text></g><g><title>tomoyo_path_link (672 samples, 0.05%)</title><rect x="16.9951%" y="597" width="0.0520%" height="15" fill="rgb(249,89,12)" fg:x="219721" fg:w="672"/><text x="17.2451%" y="607.50"></text></g><g><title>tomoyo_path2_perm (631 samples, 0.05%)</title><rect x="16.9982%" y="581" width="0.0488%" height="15" fill="rgb(226,27,33)" fg:x="219762" fg:w="631"/><text x="17.2482%" y="591.50"></text></g><g><title>tomoyo_init_request_info (431 samples, 0.03%)</title><rect x="17.0137%" y="565" width="0.0333%" height="15" fill="rgb(213,82,22)" fg:x="219962" fg:w="431"/><text x="17.2637%" y="575.50"></text></g><g><title>tomoyo_domain (246 samples, 0.02%)</title><rect x="17.0280%" y="549" width="0.0190%" height="15" fill="rgb(248,140,0)" fg:x="220147" fg:w="246"/><text x="17.2780%" y="559.50"></text></g><g><title>up_write (160 samples, 0.01%)</title><rect x="17.0470%" y="613" width="0.0124%" height="15" fill="rgb(228,106,3)" fg:x="220393" fg:w="160"/><text x="17.2970%" y="623.50"></text></g><g><title>btrfs_create_pending_block_groups (203 samples, 0.02%)</title><rect x="17.2461%" y="565" width="0.0157%" height="15" fill="rgb(209,23,37)" fg:x="222967" fg:w="203"/><text x="17.4961%" y="575.50"></text></g><g><title>_raw_spin_lock (844 samples, 0.07%)</title><rect x="17.3186%" y="533" width="0.0653%" height="15" fill="rgb(241,93,50)" fg:x="223904" fg:w="844"/><text x="17.5686%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (220 samples, 0.02%)</title><rect x="17.3669%" y="517" width="0.0170%" height="15" fill="rgb(253,46,43)" fg:x="224528" fg:w="220"/><text x="17.6169%" y="527.50"></text></g><g><title>btrfs_trans_release_metadata (1,547 samples, 0.12%)</title><rect x="17.2781%" y="565" width="0.1197%" height="15" fill="rgb(226,206,43)" fg:x="223380" fg:w="1547"/><text x="17.5281%" y="575.50"></text></g><g><title>btrfs_block_rsv_release (1,376 samples, 0.11%)</title><rect x="17.2913%" y="549" width="0.1064%" height="15" fill="rgb(217,54,7)" fg:x="223551" fg:w="1376"/><text x="17.5413%" y="559.50"></text></g><g><title>btrfs_try_granting_tickets (133 samples, 0.01%)</title><rect x="17.3875%" y="533" width="0.0103%" height="15" fill="rgb(223,5,52)" fg:x="224794" fg:w="133"/><text x="17.6375%" y="543.50"></text></g><g><title>__btrfs_end_transaction (3,410 samples, 0.26%)</title><rect x="17.1723%" y="581" width="0.2638%" height="15" fill="rgb(206,52,46)" fg:x="222012" fg:w="3410"/><text x="17.4223%" y="591.50"></text></g><g><title>kmem_cache_free (495 samples, 0.04%)</title><rect x="17.3977%" y="565" width="0.0383%" height="15" fill="rgb(253,136,11)" fg:x="224927" fg:w="495"/><text x="17.6477%" y="575.50"></text></g><g><title>__radix_tree_lookup (221 samples, 0.02%)</title><rect x="17.4674%" y="565" width="0.0171%" height="15" fill="rgb(208,106,33)" fg:x="225828" fg:w="221"/><text x="17.7174%" y="575.50"></text></g><g><title>balance_dirty_pages_ratelimited (631 samples, 0.05%)</title><rect x="17.4364%" y="581" width="0.0488%" height="15" fill="rgb(206,54,4)" fg:x="225427" fg:w="631"/><text x="17.6864%" y="591.50"></text></g><g><title>btrfs_comp_cpu_keys (449 samples, 0.03%)</title><rect x="17.6418%" y="517" width="0.0347%" height="15" fill="rgb(213,3,15)" fg:x="228082" fg:w="449"/><text x="17.8918%" y="527.50"></text></g><g><title>__btrfs_add_delayed_item (1,448 samples, 0.11%)</title><rect x="17.5841%" y="533" width="0.1120%" height="15" fill="rgb(252,211,39)" fg:x="227337" fg:w="1448"/><text x="17.8341%" y="543.50"></text></g><g><title>rb_insert_color (254 samples, 0.02%)</title><rect x="17.6765%" y="517" width="0.0196%" height="15" fill="rgb(223,6,36)" fg:x="228531" fg:w="254"/><text x="17.9265%" y="527.50"></text></g><g><title>__list_add_valid (294 samples, 0.02%)</title><rect x="17.7150%" y="517" width="0.0227%" height="15" fill="rgb(252,169,45)" fg:x="229029" fg:w="294"/><text x="17.9650%" y="527.50"></text></g><g><title>__list_del_entry_valid (139 samples, 0.01%)</title><rect x="17.7378%" y="517" width="0.0108%" height="15" fill="rgb(212,48,26)" fg:x="229323" fg:w="139"/><text x="17.9878%" y="527.50"></text></g><g><title>_raw_spin_lock (239 samples, 0.02%)</title><rect x="17.7491%" y="517" width="0.0185%" height="15" fill="rgb(251,102,48)" fg:x="229470" fg:w="239"/><text x="17.9991%" y="527.50"></text></g><g><title>mutex_lock (148 samples, 0.01%)</title><rect x="17.7676%" y="517" width="0.0114%" height="15" fill="rgb(243,208,16)" fg:x="229709" fg:w="148"/><text x="18.0176%" y="527.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,466 samples, 0.11%)</title><rect x="17.6961%" y="533" width="0.1134%" height="15" fill="rgb(219,96,24)" fg:x="228785" fg:w="1466"/><text x="17.9461%" y="543.50"></text></g><g><title>mutex_unlock (394 samples, 0.03%)</title><rect x="17.7791%" y="517" width="0.0305%" height="15" fill="rgb(219,33,29)" fg:x="229857" fg:w="394"/><text x="18.0291%" y="527.50"></text></g><g><title>___slab_alloc (167 samples, 0.01%)</title><rect x="17.8466%" y="501" width="0.0129%" height="15" fill="rgb(223,176,5)" fg:x="230730" fg:w="167"/><text x="18.0966%" y="511.50"></text></g><g><title>__slab_alloc (205 samples, 0.02%)</title><rect x="17.8438%" y="517" width="0.0159%" height="15" fill="rgb(228,140,14)" fg:x="230694" fg:w="205"/><text x="18.0938%" y="527.50"></text></g><g><title>_cond_resched (151 samples, 0.01%)</title><rect x="17.8953%" y="501" width="0.0117%" height="15" fill="rgb(217,179,31)" fg:x="231360" fg:w="151"/><text x="18.1453%" y="511.50"></text></g><g><title>__kmalloc (1,263 samples, 0.10%)</title><rect x="17.8095%" y="533" width="0.0977%" height="15" fill="rgb(230,9,30)" fg:x="230251" fg:w="1263"/><text x="18.0595%" y="543.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (303 samples, 0.02%)</title><rect x="17.8838%" y="517" width="0.0234%" height="15" fill="rgb(230,136,20)" fg:x="231211" fg:w="303"/><text x="18.1338%" y="527.50"></text></g><g><title>mutex_spin_on_owner (1,715 samples, 0.13%)</title><rect x="17.9106%" y="517" width="0.1327%" height="15" fill="rgb(215,210,22)" fg:x="231557" fg:w="1715"/><text x="18.1606%" y="527.50"></text></g><g><title>__mutex_lock.constprop.0 (1,884 samples, 0.15%)</title><rect x="17.9072%" y="533" width="0.1457%" height="15" fill="rgb(218,43,5)" fg:x="231514" fg:w="1884"/><text x="18.1572%" y="543.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,098 samples, 0.08%)</title><rect x="18.0536%" y="533" width="0.0849%" height="15" fill="rgb(216,11,5)" fg:x="233406" fg:w="1098"/><text x="18.3036%" y="543.50"></text></g><g><title>btrfs_block_rsv_migrate (1,013 samples, 0.08%)</title><rect x="18.0601%" y="517" width="0.0784%" height="15" fill="rgb(209,82,29)" fg:x="233491" fg:w="1013"/><text x="18.3101%" y="527.50"></text></g><g><title>_raw_spin_lock (917 samples, 0.07%)</title><rect x="18.0676%" y="501" width="0.0709%" height="15" fill="rgb(244,115,12)" fg:x="233587" fg:w="917"/><text x="18.3176%" y="511.50"></text></g><g><title>btrfs_get_or_create_delayed_node (667 samples, 0.05%)</title><rect x="18.1385%" y="533" width="0.0516%" height="15" fill="rgb(222,82,18)" fg:x="234504" fg:w="667"/><text x="18.3885%" y="543.50"></text></g><g><title>btrfs_get_delayed_node (419 samples, 0.03%)</title><rect x="18.1577%" y="517" width="0.0324%" height="15" fill="rgb(249,227,8)" fg:x="234752" fg:w="419"/><text x="18.4077%" y="527.50"></text></g><g><title>memcpy_erms (204 samples, 0.02%)</title><rect x="18.1901%" y="533" width="0.0158%" height="15" fill="rgb(253,141,45)" fg:x="235171" fg:w="204"/><text x="18.4401%" y="543.50"></text></g><g><title>mutex_lock (177 samples, 0.01%)</title><rect x="18.2059%" y="533" width="0.0137%" height="15" fill="rgb(234,184,4)" fg:x="235375" fg:w="177"/><text x="18.4559%" y="543.50"></text></g><g><title>btrfs_insert_delayed_dir_index (8,558 samples, 0.66%)</title><rect x="17.5660%" y="549" width="0.6619%" height="15" fill="rgb(218,194,23)" fg:x="227103" fg:w="8558"/><text x="17.8160%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (311 samples, 0.02%)</title><rect x="18.2280%" y="549" width="0.0241%" height="15" fill="rgb(235,66,41)" fg:x="235661" fg:w="311"/><text x="18.4780%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (189 samples, 0.01%)</title><rect x="18.2374%" y="533" width="0.0146%" height="15" fill="rgb(245,217,1)" fg:x="235783" fg:w="189"/><text x="18.4874%" y="543.50"></text></g><g><title>_raw_spin_lock (313 samples, 0.02%)</title><rect x="18.3173%" y="517" width="0.0242%" height="15" fill="rgb(229,91,1)" fg:x="236816" fg:w="313"/><text x="18.5673%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (987 samples, 0.08%)</title><rect x="18.2654%" y="533" width="0.0763%" height="15" fill="rgb(207,101,30)" fg:x="236144" fg:w="987"/><text x="18.5154%" y="543.50"></text></g><g><title>btrfs_release_path (1,379 samples, 0.11%)</title><rect x="18.2521%" y="549" width="0.1067%" height="15" fill="rgb(223,82,49)" fg:x="235972" fg:w="1379"/><text x="18.5021%" y="559.50"></text></g><g><title>release_extent_buffer (220 samples, 0.02%)</title><rect x="18.3417%" y="533" width="0.0170%" height="15" fill="rgb(218,167,17)" fg:x="237131" fg:w="220"/><text x="18.5917%" y="543.50"></text></g><g><title>btrfs_set_16 (195 samples, 0.02%)</title><rect x="18.3587%" y="549" width="0.0151%" height="15" fill="rgb(208,103,14)" fg:x="237351" fg:w="195"/><text x="18.6087%" y="559.50"></text></g><g><title>crc32c (455 samples, 0.04%)</title><rect x="18.3879%" y="549" width="0.0352%" height="15" fill="rgb(238,20,8)" fg:x="237728" fg:w="455"/><text x="18.6379%" y="559.50"></text></g><g><title>crypto_shash_update (299 samples, 0.02%)</title><rect x="18.3999%" y="533" width="0.0231%" height="15" fill="rgb(218,80,54)" fg:x="237884" fg:w="299"/><text x="18.6499%" y="543.50"></text></g><g><title>btrfs_get_32 (298 samples, 0.02%)</title><rect x="18.4361%" y="533" width="0.0230%" height="15" fill="rgb(240,144,17)" fg:x="238351" fg:w="298"/><text x="18.6861%" y="543.50"></text></g><g><title>_raw_read_lock (213 samples, 0.02%)</title><rect x="18.5660%" y="469" width="0.0165%" height="15" fill="rgb(245,27,50)" fg:x="240031" fg:w="213"/><text x="18.8160%" y="479.50"></text></g><g><title>finish_wait (263 samples, 0.02%)</title><rect x="18.5833%" y="469" width="0.0203%" height="15" fill="rgb(251,51,7)" fg:x="240254" fg:w="263"/><text x="18.8333%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (252 samples, 0.02%)</title><rect x="18.5841%" y="453" width="0.0195%" height="15" fill="rgb(245,217,29)" fg:x="240265" fg:w="252"/><text x="18.8341%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (232 samples, 0.02%)</title><rect x="18.5857%" y="437" width="0.0179%" height="15" fill="rgb(221,176,29)" fg:x="240285" fg:w="232"/><text x="18.8357%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (741 samples, 0.06%)</title><rect x="18.6116%" y="453" width="0.0573%" height="15" fill="rgb(212,180,24)" fg:x="240621" fg:w="741"/><text x="18.8616%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (681 samples, 0.05%)</title><rect x="18.6163%" y="437" width="0.0527%" height="15" fill="rgb(254,24,2)" fg:x="240681" fg:w="681"/><text x="18.8663%" y="447.50"></text></g><g><title>prepare_to_wait_event (872 samples, 0.07%)</title><rect x="18.6038%" y="469" width="0.0674%" height="15" fill="rgb(230,100,2)" fg:x="240519" fg:w="872"/><text x="18.8538%" y="479.50"></text></g><g><title>queued_read_lock_slowpath (2,541 samples, 0.20%)</title><rect x="18.6712%" y="469" width="0.1965%" height="15" fill="rgb(219,142,25)" fg:x="241391" fg:w="2541"/><text x="18.9212%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,573 samples, 0.12%)</title><rect x="18.7461%" y="453" width="0.1217%" height="15" fill="rgb(240,73,43)" fg:x="242359" fg:w="1573"/><text x="18.9961%" y="463.50"></text></g><g><title>dequeue_entity (217 samples, 0.02%)</title><rect x="18.8836%" y="421" width="0.0168%" height="15" fill="rgb(214,114,15)" fg:x="244137" fg:w="217"/><text x="19.1336%" y="431.50"></text></g><g><title>dequeue_task_fair (267 samples, 0.02%)</title><rect x="18.8803%" y="437" width="0.0207%" height="15" fill="rgb(207,130,4)" fg:x="244094" fg:w="267"/><text x="19.1303%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (587 samples, 0.05%)</title><rect x="18.9046%" y="421" width="0.0454%" height="15" fill="rgb(221,25,40)" fg:x="244408" fg:w="587"/><text x="19.1546%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (576 samples, 0.04%)</title><rect x="18.9054%" y="405" width="0.0446%" height="15" fill="rgb(241,184,7)" fg:x="244419" fg:w="576"/><text x="19.1554%" y="415.50"></text></g><g><title>native_write_msr (559 samples, 0.04%)</title><rect x="18.9067%" y="389" width="0.0432%" height="15" fill="rgb(235,159,4)" fg:x="244436" fg:w="559"/><text x="19.1567%" y="399.50"></text></g><g><title>finish_task_switch (655 samples, 0.05%)</title><rect x="18.9009%" y="437" width="0.0507%" height="15" fill="rgb(214,87,48)" fg:x="244361" fg:w="655"/><text x="19.1509%" y="447.50"></text></g><g><title>psi_task_change (217 samples, 0.02%)</title><rect x="18.9613%" y="437" width="0.0168%" height="15" fill="rgb(246,198,24)" fg:x="245142" fg:w="217"/><text x="19.2113%" y="447.50"></text></g><g><title>psi_group_change (166 samples, 0.01%)</title><rect x="18.9653%" y="421" width="0.0128%" height="15" fill="rgb(209,66,40)" fg:x="245193" fg:w="166"/><text x="19.2153%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (5,547 samples, 0.43%)</title><rect x="18.5536%" y="485" width="0.4291%" height="15" fill="rgb(233,147,39)" fg:x="239870" fg:w="5547"/><text x="18.8036%" y="495.50"></text></g><g><title>schedule (1,485 samples, 0.11%)</title><rect x="18.8677%" y="469" width="0.1149%" height="15" fill="rgb(231,145,52)" fg:x="243932" fg:w="1485"/><text x="19.1177%" y="479.50"></text></g><g><title>__schedule (1,471 samples, 0.11%)</title><rect x="18.8688%" y="453" width="0.1138%" height="15" fill="rgb(206,20,26)" fg:x="243946" fg:w="1471"/><text x="19.1188%" y="463.50"></text></g><g><title>__btrfs_read_lock_root_node (5,968 samples, 0.46%)</title><rect x="18.5503%" y="501" width="0.4616%" height="15" fill="rgb(238,220,4)" fg:x="239828" fg:w="5968"/><text x="18.8003%" y="511.50"></text></g><g><title>btrfs_root_node (377 samples, 0.03%)</title><rect x="18.9828%" y="485" width="0.0292%" height="15" fill="rgb(252,195,42)" fg:x="245419" fg:w="377"/><text x="19.2328%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (318 samples, 0.02%)</title><rect x="19.0347%" y="469" width="0.0246%" height="15" fill="rgb(209,10,6)" fg:x="246090" fg:w="318"/><text x="19.2847%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (246 samples, 0.02%)</title><rect x="19.0402%" y="453" width="0.0190%" height="15" fill="rgb(229,3,52)" fg:x="246162" fg:w="246"/><text x="19.2902%" y="463.50"></text></g><g><title>prepare_to_wait_event (412 samples, 0.03%)</title><rect x="19.0287%" y="485" width="0.0319%" height="15" fill="rgb(253,49,37)" fg:x="246013" fg:w="412"/><text x="19.2787%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (291 samples, 0.02%)</title><rect x="19.0606%" y="485" width="0.0225%" height="15" fill="rgb(240,103,49)" fg:x="246425" fg:w="291"/><text x="19.3106%" y="495.50"></text></g><g><title>dequeue_entity (376 samples, 0.03%)</title><rect x="19.1038%" y="437" width="0.0291%" height="15" fill="rgb(250,182,30)" fg:x="246984" fg:w="376"/><text x="19.3538%" y="447.50"></text></g><g><title>dequeue_task_fair (454 samples, 0.04%)</title><rect x="19.0996%" y="453" width="0.0351%" height="15" fill="rgb(248,8,30)" fg:x="246929" fg:w="454"/><text x="19.3496%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (1,554 samples, 0.12%)</title><rect x="19.1399%" y="437" width="0.1202%" height="15" fill="rgb(237,120,30)" fg:x="247450" fg:w="1554"/><text x="19.3899%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,519 samples, 0.12%)</title><rect x="19.1426%" y="421" width="0.1175%" height="15" fill="rgb(221,146,34)" fg:x="247485" fg:w="1519"/><text x="19.3926%" y="431.50"></text></g><g><title>native_write_msr (1,494 samples, 0.12%)</title><rect x="19.1445%" y="405" width="0.1156%" height="15" fill="rgb(242,55,13)" fg:x="247510" fg:w="1494"/><text x="19.3945%" y="415.50"></text></g><g><title>finish_task_switch (1,681 samples, 0.13%)</title><rect x="19.1347%" y="453" width="0.1300%" height="15" fill="rgb(242,112,31)" fg:x="247383" fg:w="1681"/><text x="19.3847%" y="463.50"></text></g><g><title>psi_task_change (273 samples, 0.02%)</title><rect x="19.2753%" y="453" width="0.0211%" height="15" fill="rgb(249,192,27)" fg:x="249201" fg:w="273"/><text x="19.5253%" y="463.50"></text></g><g><title>psi_group_change (210 samples, 0.02%)</title><rect x="19.2802%" y="437" width="0.0162%" height="15" fill="rgb(208,204,44)" fg:x="249264" fg:w="210"/><text x="19.5302%" y="447.50"></text></g><g><title>__btrfs_tree_lock (3,800 samples, 0.29%)</title><rect x="19.0119%" y="501" width="0.2939%" height="15" fill="rgb(208,93,54)" fg:x="245796" fg:w="3800"/><text x="19.2619%" y="511.50"></text></g><g><title>schedule (2,880 samples, 0.22%)</title><rect x="19.0831%" y="485" width="0.2228%" height="15" fill="rgb(242,1,31)" fg:x="246716" fg:w="2880"/><text x="19.3331%" y="495.50"></text></g><g><title>__schedule (2,864 samples, 0.22%)</title><rect x="19.0843%" y="469" width="0.2215%" height="15" fill="rgb(241,83,25)" fg:x="246732" fg:w="2864"/><text x="19.3343%" y="479.50"></text></g><g><title>btrfs_leaf_free_space (532 samples, 0.04%)</title><rect x="19.3148%" y="501" width="0.0411%" height="15" fill="rgb(205,169,50)" fg:x="249712" fg:w="532"/><text x="19.5648%" y="511.50"></text></g><g><title>leaf_space_used (450 samples, 0.03%)</title><rect x="19.3212%" y="485" width="0.0348%" height="15" fill="rgb(239,186,37)" fg:x="249794" fg:w="450"/><text x="19.5712%" y="495.50"></text></g><g><title>btrfs_get_32 (365 samples, 0.03%)</title><rect x="19.3277%" y="469" width="0.0282%" height="15" fill="rgb(205,221,10)" fg:x="249879" fg:w="365"/><text x="19.5777%" y="479.50"></text></g><g><title>_raw_write_lock (268 samples, 0.02%)</title><rect x="19.3747%" y="485" width="0.0207%" height="15" fill="rgb(218,196,15)" fg:x="250486" fg:w="268"/><text x="19.6247%" y="495.50"></text></g><g><title>btrfs_try_tree_write_lock (1,918 samples, 0.15%)</title><rect x="19.3681%" y="501" width="0.1484%" height="15" fill="rgb(218,196,35)" fg:x="250401" fg:w="1918"/><text x="19.6181%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (1,565 samples, 0.12%)</title><rect x="19.3954%" y="485" width="0.1211%" height="15" fill="rgb(233,63,24)" fg:x="250754" fg:w="1565"/><text x="19.6454%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (249 samples, 0.02%)</title><rect x="19.4972%" y="469" width="0.0193%" height="15" fill="rgb(225,8,4)" fg:x="252070" fg:w="249"/><text x="19.7472%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (2,885 samples, 0.22%)</title><rect x="19.5165%" y="501" width="0.2232%" height="15" fill="rgb(234,105,35)" fg:x="252319" fg:w="2885"/><text x="19.7665%" y="511.50"></text></g><g><title>btrfs_buffer_uptodate (331 samples, 0.03%)</title><rect x="19.7629%" y="485" width="0.0256%" height="15" fill="rgb(236,21,32)" fg:x="255505" fg:w="331"/><text x="20.0129%" y="495.50"></text></g><g><title>verify_parent_transid (261 samples, 0.02%)</title><rect x="19.7683%" y="469" width="0.0202%" height="15" fill="rgb(228,109,6)" fg:x="255575" fg:w="261"/><text x="20.0183%" y="479.50"></text></g><g><title>btrfs_get_64 (423 samples, 0.03%)</title><rect x="19.7885%" y="485" width="0.0327%" height="15" fill="rgb(229,215,31)" fg:x="255836" fg:w="423"/><text x="20.0385%" y="495.50"></text></g><g><title>btrfs_verify_level_key (130 samples, 0.01%)</title><rect x="19.8222%" y="485" width="0.0101%" height="15" fill="rgb(221,52,54)" fg:x="256272" fg:w="130"/><text x="20.0722%" y="495.50"></text></g><g><title>__radix_tree_lookup (1,401 samples, 0.11%)</title><rect x="19.8988%" y="469" width="0.1084%" height="15" fill="rgb(252,129,43)" fg:x="257262" fg:w="1401"/><text x="20.1488%" y="479.50"></text></g><g><title>mark_page_accessed (572 samples, 0.04%)</title><rect x="20.0212%" y="453" width="0.0442%" height="15" fill="rgb(248,183,27)" fg:x="258845" fg:w="572"/><text x="20.2712%" y="463.50"></text></g><g><title>mark_extent_buffer_accessed (753 samples, 0.06%)</title><rect x="20.0075%" y="469" width="0.0582%" height="15" fill="rgb(250,0,22)" fg:x="258667" fg:w="753"/><text x="20.2575%" y="479.50"></text></g><g><title>find_extent_buffer (3,046 samples, 0.24%)</title><rect x="19.8323%" y="485" width="0.2356%" height="15" fill="rgb(213,166,10)" fg:x="256402" fg:w="3046"/><text x="20.0823%" y="495.50"></text></g><g><title>read_block_for_search.isra.0 (4,667 samples, 0.36%)</title><rect x="19.7396%" y="501" width="0.3610%" height="15" fill="rgb(207,163,36)" fg:x="255204" fg:w="4667"/><text x="19.9896%" y="511.50"></text></g><g><title>read_extent_buffer (423 samples, 0.03%)</title><rect x="20.0679%" y="485" width="0.0327%" height="15" fill="rgb(208,122,22)" fg:x="259448" fg:w="423"/><text x="20.3179%" y="495.50"></text></g><g><title>alloc_extent_buffer (134 samples, 0.01%)</title><rect x="20.1052%" y="453" width="0.0104%" height="15" fill="rgb(207,104,49)" fg:x="259930" fg:w="134"/><text x="20.3552%" y="463.50"></text></g><g><title>alloc_tree_block_no_bg_flush (501 samples, 0.04%)</title><rect x="20.1046%" y="485" width="0.0388%" height="15" fill="rgb(248,211,50)" fg:x="259923" fg:w="501"/><text x="20.3546%" y="495.50"></text></g><g><title>btrfs_alloc_tree_block (500 samples, 0.04%)</title><rect x="20.1047%" y="469" width="0.0387%" height="15" fill="rgb(217,13,45)" fg:x="259924" fg:w="500"/><text x="20.3547%" y="479.50"></text></g><g><title>copy_for_split (294 samples, 0.02%)</title><rect x="20.1470%" y="485" width="0.0227%" height="15" fill="rgb(211,216,49)" fg:x="260471" fg:w="294"/><text x="20.3970%" y="495.50"></text></g><g><title>btrfs_get_token_32 (358 samples, 0.03%)</title><rect x="20.1851%" y="453" width="0.0277%" height="15" fill="rgb(221,58,53)" fg:x="260964" fg:w="358"/><text x="20.4351%" y="463.50"></text></g><g><title>btrfs_set_token_32 (310 samples, 0.02%)</title><rect x="20.2137%" y="453" width="0.0240%" height="15" fill="rgb(220,112,41)" fg:x="261333" fg:w="310"/><text x="20.4637%" y="463.50"></text></g><g><title>memmove_extent_buffer (137 samples, 0.01%)</title><rect x="20.2482%" y="453" width="0.0106%" height="15" fill="rgb(236,38,28)" fg:x="261779" fg:w="137"/><text x="20.4982%" y="463.50"></text></g><g><title>__push_leaf_left (1,133 samples, 0.09%)</title><rect x="20.1715%" y="469" width="0.0876%" height="15" fill="rgb(227,195,22)" fg:x="260787" fg:w="1133"/><text x="20.4215%" y="479.50"></text></g><g><title>push_leaf_left (1,255 samples, 0.10%)</title><rect x="20.1698%" y="485" width="0.0971%" height="15" fill="rgb(214,55,33)" fg:x="260766" fg:w="1255"/><text x="20.4198%" y="495.50"></text></g><g><title>btrfs_get_token_32 (362 samples, 0.03%)</title><rect x="20.2879%" y="453" width="0.0280%" height="15" fill="rgb(248,80,13)" fg:x="262292" fg:w="362"/><text x="20.5379%" y="463.50"></text></g><g><title>btrfs_set_token_32 (371 samples, 0.03%)</title><rect x="20.3179%" y="453" width="0.0287%" height="15" fill="rgb(238,52,6)" fg:x="262680" fg:w="371"/><text x="20.5679%" y="463.50"></text></g><g><title>__push_leaf_right (1,242 samples, 0.10%)</title><rect x="20.2713%" y="469" width="0.0961%" height="15" fill="rgb(224,198,47)" fg:x="262078" fg:w="1242"/><text x="20.5213%" y="479.50"></text></g><g><title>btrfs_read_node_slot (200 samples, 0.02%)</title><rect x="20.3759%" y="469" width="0.0155%" height="15" fill="rgb(233,171,20)" fg:x="263430" fg:w="200"/><text x="20.6259%" y="479.50"></text></g><g><title>read_tree_block (164 samples, 0.01%)</title><rect x="20.3787%" y="453" width="0.0127%" height="15" fill="rgb(241,30,25)" fg:x="263466" fg:w="164"/><text x="20.6287%" y="463.50"></text></g><g><title>push_leaf_right (1,638 samples, 0.13%)</title><rect x="20.2669%" y="485" width="0.1267%" height="15" fill="rgb(207,171,38)" fg:x="262021" fg:w="1638"/><text x="20.5169%" y="495.50"></text></g><g><title>split_leaf (3,791 samples, 0.29%)</title><rect x="20.1006%" y="501" width="0.2932%" height="15" fill="rgb(234,70,1)" fg:x="259871" fg:w="3791"/><text x="20.3506%" y="511.50"></text></g><g><title>select_task_rq_fair (408 samples, 0.03%)</title><rect x="20.4714%" y="421" width="0.0316%" height="15" fill="rgb(232,178,18)" fg:x="264665" fg:w="408"/><text x="20.7214%" y="431.50"></text></g><g><title>enqueue_entity (369 samples, 0.03%)</title><rect x="20.5145%" y="389" width="0.0285%" height="15" fill="rgb(241,78,40)" fg:x="265222" fg:w="369"/><text x="20.7645%" y="399.50"></text></g><g><title>update_load_avg (135 samples, 0.01%)</title><rect x="20.5326%" y="373" width="0.0104%" height="15" fill="rgb(222,35,25)" fg:x="265456" fg:w="135"/><text x="20.7826%" y="383.50"></text></g><g><title>enqueue_task_fair (476 samples, 0.04%)</title><rect x="20.5081%" y="405" width="0.0368%" height="15" fill="rgb(207,92,16)" fg:x="265140" fg:w="476"/><text x="20.7581%" y="415.50"></text></g><g><title>ttwu_do_activate (903 samples, 0.07%)</title><rect x="20.5058%" y="421" width="0.0698%" height="15" fill="rgb(216,59,51)" fg:x="265110" fg:w="903"/><text x="20.7558%" y="431.50"></text></g><g><title>psi_task_change (396 samples, 0.03%)</title><rect x="20.5450%" y="405" width="0.0306%" height="15" fill="rgb(213,80,28)" fg:x="265617" fg:w="396"/><text x="20.7950%" y="415.50"></text></g><g><title>psi_group_change (315 samples, 0.02%)</title><rect x="20.5513%" y="389" width="0.0244%" height="15" fill="rgb(220,93,7)" fg:x="265698" fg:w="315"/><text x="20.8013%" y="399.50"></text></g><g><title>__wake_up_common (2,113 samples, 0.16%)</title><rect x="20.4300%" y="469" width="0.1634%" height="15" fill="rgb(225,24,44)" fg:x="264130" fg:w="2113"/><text x="20.6800%" y="479.50"></text></g><g><title>autoremove_wake_function (2,070 samples, 0.16%)</title><rect x="20.4334%" y="453" width="0.1601%" height="15" fill="rgb(243,74,40)" fg:x="264173" fg:w="2070"/><text x="20.6834%" y="463.50"></text></g><g><title>try_to_wake_up (1,989 samples, 0.15%)</title><rect x="20.4396%" y="437" width="0.1538%" height="15" fill="rgb(228,39,7)" fg:x="264254" fg:w="1989"/><text x="20.6896%" y="447.50"></text></g><g><title>__wake_up_common_lock (2,156 samples, 0.17%)</title><rect x="20.4291%" y="485" width="0.1668%" height="15" fill="rgb(227,79,8)" fg:x="264118" fg:w="2156"/><text x="20.6791%" y="495.50"></text></g><g><title>btrfs_tree_read_unlock (360 samples, 0.03%)</title><rect x="20.5959%" y="485" width="0.0278%" height="15" fill="rgb(236,58,11)" fg:x="266274" fg:w="360"/><text x="20.8459%" y="495.50"></text></g><g><title>btrfs_search_slot (28,043 samples, 2.17%)</title><rect x="18.4660%" y="517" width="2.1691%" height="15" fill="rgb(249,63,35)" fg:x="238738" fg:w="28043"/><text x="18.7160%" y="527.50">b..</text></g><g><title>unlock_up (3,116 samples, 0.24%)</title><rect x="20.3941%" y="501" width="0.2410%" height="15" fill="rgb(252,114,16)" fg:x="263665" fg:w="3116"/><text x="20.6441%" y="511.50"></text></g><g><title>btrfs_get_32 (271 samples, 0.02%)</title><rect x="20.7745%" y="501" width="0.0210%" height="15" fill="rgb(254,151,24)" fg:x="268584" fg:w="271"/><text x="21.0245%" y="511.50"></text></g><g><title>btrfs_get_token_32 (9,265 samples, 0.72%)</title><rect x="20.7955%" y="501" width="0.7166%" height="15" fill="rgb(253,54,39)" fg:x="268855" fg:w="9265"/><text x="21.0455%" y="511.50"></text></g><g><title>check_setget_bounds.isra.0 (1,265 samples, 0.10%)</title><rect x="21.4143%" y="485" width="0.0978%" height="15" fill="rgb(243,25,45)" fg:x="276855" fg:w="1265"/><text x="21.6643%" y="495.50"></text></g><g><title>btrfs_leaf_free_space (685 samples, 0.05%)</title><rect x="21.5121%" y="501" width="0.0530%" height="15" fill="rgb(234,134,9)" fg:x="278120" fg:w="685"/><text x="21.7621%" y="511.50"></text></g><g><title>leaf_space_used (595 samples, 0.05%)</title><rect x="21.5191%" y="485" width="0.0460%" height="15" fill="rgb(227,166,31)" fg:x="278210" fg:w="595"/><text x="21.7691%" y="495.50"></text></g><g><title>btrfs_get_32 (460 samples, 0.04%)</title><rect x="21.5295%" y="469" width="0.0356%" height="15" fill="rgb(245,143,41)" fg:x="278345" fg:w="460"/><text x="21.7795%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (368 samples, 0.03%)</title><rect x="21.5651%" y="501" width="0.0285%" height="15" fill="rgb(238,181,32)" fg:x="278805" fg:w="368"/><text x="21.8151%" y="511.50"></text></g><g><title>set_extent_buffer_dirty (188 samples, 0.01%)</title><rect x="21.5790%" y="485" width="0.0145%" height="15" fill="rgb(224,113,18)" fg:x="278985" fg:w="188"/><text x="21.8290%" y="495.50"></text></g><g><title>btrfs_set_token_32 (7,351 samples, 0.57%)</title><rect x="21.5936%" y="501" width="0.5686%" height="15" fill="rgb(240,229,28)" fg:x="279173" fg:w="7351"/><text x="21.8436%" y="511.50"></text></g><g><title>check_setget_bounds.isra.0 (1,124 samples, 0.09%)</title><rect x="22.0752%" y="485" width="0.0869%" height="15" fill="rgb(250,185,3)" fg:x="285400" fg:w="1124"/><text x="22.3252%" y="495.50"></text></g><g><title>btrfs_unlock_up_safe (245 samples, 0.02%)</title><rect x="22.1622%" y="501" width="0.0190%" height="15" fill="rgb(212,59,25)" fg:x="286524" fg:w="245"/><text x="22.4122%" y="511.50"></text></g><g><title>copy_pages (265 samples, 0.02%)</title><rect x="22.1933%" y="485" width="0.0205%" height="15" fill="rgb(221,87,20)" fg:x="286926" fg:w="265"/><text x="22.4433%" y="495.50"></text></g><g><title>memcpy_extent_buffer (2,383 samples, 0.18%)</title><rect x="22.1815%" y="501" width="0.1843%" height="15" fill="rgb(213,74,28)" fg:x="286774" fg:w="2383"/><text x="22.4315%" y="511.50"></text></g><g><title>memmove (1,966 samples, 0.15%)</title><rect x="22.2138%" y="485" width="0.1521%" height="15" fill="rgb(224,132,34)" fg:x="287191" fg:w="1966"/><text x="22.4638%" y="495.50"></text></g><g><title>copy_pages (257 samples, 0.02%)</title><rect x="22.3868%" y="485" width="0.0199%" height="15" fill="rgb(222,101,24)" fg:x="289428" fg:w="257"/><text x="22.6368%" y="495.50"></text></g><g><title>memmove_extent_buffer (2,166 samples, 0.17%)</title><rect x="22.3658%" y="501" width="0.1675%" height="15" fill="rgb(254,142,4)" fg:x="289157" fg:w="2166"/><text x="22.6158%" y="511.50"></text></g><g><title>memmove (1,638 samples, 0.13%)</title><rect x="22.4067%" y="485" width="0.1267%" height="15" fill="rgb(230,229,49)" fg:x="289685" fg:w="1638"/><text x="22.6567%" y="495.50"></text></g><g><title>insert_with_overflow (53,390 samples, 4.13%)</title><rect x="18.4231%" y="549" width="4.1296%" height="15" fill="rgb(238,70,47)" fg:x="238183" fg:w="53390"/><text x="18.6731%" y="559.50">inse..</text></g><g><title>btrfs_insert_empty_items (52,924 samples, 4.09%)</title><rect x="18.4591%" y="533" width="4.0936%" height="15" fill="rgb(231,160,17)" fg:x="238649" fg:w="52924"/><text x="18.7091%" y="543.50">btrf..</text></g><g><title>setup_items_for_insert (24,792 samples, 1.92%)</title><rect x="20.6351%" y="517" width="1.9176%" height="15" fill="rgb(218,68,53)" fg:x="266781" fg:w="24792"/><text x="20.8851%" y="527.50">s..</text></g><g><title>write_extent_buffer (250 samples, 0.02%)</title><rect x="22.5334%" y="501" width="0.0193%" height="15" fill="rgb(236,111,10)" fg:x="291323" fg:w="250"/><text x="22.7834%" y="511.50"></text></g><g><title>memset_erms (130 samples, 0.01%)</title><rect x="22.5727%" y="533" width="0.0101%" height="15" fill="rgb(224,34,41)" fg:x="291831" fg:w="130"/><text x="22.8227%" y="543.50"></text></g><g><title>_cond_resched (156 samples, 0.01%)</title><rect x="22.5873%" y="517" width="0.0121%" height="15" fill="rgb(241,118,19)" fg:x="292020" fg:w="156"/><text x="22.8373%" y="527.50"></text></g><g><title>kmem_cache_alloc (612 samples, 0.05%)</title><rect x="22.5527%" y="549" width="0.0473%" height="15" fill="rgb(238,129,25)" fg:x="291573" fg:w="612"/><text x="22.8027%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (224 samples, 0.02%)</title><rect x="22.5827%" y="533" width="0.0173%" height="15" fill="rgb(238,22,31)" fg:x="291961" fg:w="224"/><text x="22.8327%" y="543.50"></text></g><g><title>kmem_cache_free (405 samples, 0.03%)</title><rect x="22.6000%" y="549" width="0.0313%" height="15" fill="rgb(222,174,48)" fg:x="292185" fg:w="405"/><text x="22.8500%" y="559.50"></text></g><g><title>btrfs_insert_dir_item (66,561 samples, 5.15%)</title><rect x="17.5299%" y="565" width="5.1484%" height="15" fill="rgb(206,152,40)" fg:x="226636" fg:w="66561"/><text x="17.7799%" y="575.50">btrfs_..</text></g><g><title>write_extent_buffer (607 samples, 0.05%)</title><rect x="22.6314%" y="549" width="0.0470%" height="15" fill="rgb(218,99,54)" fg:x="292590" fg:w="607"/><text x="22.8814%" y="559.50"></text></g><g><title>_raw_spin_lock (314 samples, 0.02%)</title><rect x="22.7782%" y="501" width="0.0243%" height="15" fill="rgb(220,174,26)" fg:x="294489" fg:w="314"/><text x="23.0282%" y="511.50"></text></g><g><title>free_extent_buffer.part.0 (952 samples, 0.07%)</title><rect x="22.7290%" y="517" width="0.0736%" height="15" fill="rgb(245,116,9)" fg:x="293852" fg:w="952"/><text x="22.9790%" y="527.50"></text></g><g><title>btrfs_free_path (1,446 samples, 0.11%)</title><rect x="22.7099%" y="549" width="0.1118%" height="15" fill="rgb(209,72,35)" fg:x="293605" fg:w="1446"/><text x="22.9599%" y="559.50"></text></g><g><title>btrfs_release_path (1,430 samples, 0.11%)</title><rect x="22.7111%" y="533" width="0.1106%" height="15" fill="rgb(226,126,21)" fg:x="293621" fg:w="1430"/><text x="22.9611%" y="543.50"></text></g><g><title>release_extent_buffer (247 samples, 0.02%)</title><rect x="22.8026%" y="517" width="0.0191%" height="15" fill="rgb(227,192,1)" fg:x="294804" fg:w="247"/><text x="23.0526%" y="527.50"></text></g><g><title>_raw_read_lock (204 samples, 0.02%)</title><rect x="22.9628%" y="485" width="0.0158%" height="15" fill="rgb(237,180,29)" fg:x="296875" fg:w="204"/><text x="23.2128%" y="495.50"></text></g><g><title>finish_wait (422 samples, 0.03%)</title><rect x="22.9791%" y="485" width="0.0326%" height="15" fill="rgb(230,197,35)" fg:x="297086" fg:w="422"/><text x="23.2291%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (404 samples, 0.03%)</title><rect x="22.9805%" y="469" width="0.0312%" height="15" fill="rgb(246,193,31)" fg:x="297104" fg:w="404"/><text x="23.2305%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (376 samples, 0.03%)</title><rect x="22.9827%" y="453" width="0.0291%" height="15" fill="rgb(241,36,4)" fg:x="297132" fg:w="376"/><text x="23.2327%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (1,216 samples, 0.09%)</title><rect x="23.0241%" y="469" width="0.0941%" height="15" fill="rgb(241,130,17)" fg:x="297667" fg:w="1216"/><text x="23.2741%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,147 samples, 0.09%)</title><rect x="23.0294%" y="453" width="0.0887%" height="15" fill="rgb(206,137,32)" fg:x="297736" fg:w="1147"/><text x="23.2794%" y="463.50"></text></g><g><title>prepare_to_wait_event (1,403 samples, 0.11%)</title><rect x="23.0120%" y="485" width="0.1085%" height="15" fill="rgb(237,228,51)" fg:x="297511" fg:w="1403"/><text x="23.2620%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (2,841 samples, 0.22%)</title><rect x="23.1205%" y="485" width="0.2197%" height="15" fill="rgb(243,6,42)" fg:x="298914" fg:w="2841"/><text x="23.3705%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,834 samples, 0.14%)</title><rect x="23.1984%" y="469" width="0.1419%" height="15" fill="rgb(251,74,28)" fg:x="299921" fg:w="1834"/><text x="23.4484%" y="479.50"></text></g><g><title>update_curr (135 samples, 0.01%)</title><rect x="23.3678%" y="421" width="0.0104%" height="15" fill="rgb(218,20,49)" fg:x="302111" fg:w="135"/><text x="23.6178%" y="431.50"></text></g><g><title>dequeue_entity (344 samples, 0.03%)</title><rect x="23.3595%" y="437" width="0.0266%" height="15" fill="rgb(238,28,14)" fg:x="302004" fg:w="344"/><text x="23.6095%" y="447.50"></text></g><g><title>dequeue_task_fair (406 samples, 0.03%)</title><rect x="23.3559%" y="453" width="0.0314%" height="15" fill="rgb(229,40,46)" fg:x="301957" fg:w="406"/><text x="23.6059%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (777 samples, 0.06%)</title><rect x="23.3918%" y="437" width="0.0601%" height="15" fill="rgb(244,195,20)" fg:x="302422" fg:w="777"/><text x="23.6418%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (743 samples, 0.06%)</title><rect x="23.3945%" y="421" width="0.0575%" height="15" fill="rgb(253,56,35)" fg:x="302456" fg:w="743"/><text x="23.6445%" y="431.50"></text></g><g><title>native_write_msr (731 samples, 0.06%)</title><rect x="23.3954%" y="405" width="0.0565%" height="15" fill="rgb(210,149,44)" fg:x="302468" fg:w="731"/><text x="23.6454%" y="415.50"></text></g><g><title>finish_task_switch (876 samples, 0.07%)</title><rect x="23.3873%" y="453" width="0.0678%" height="15" fill="rgb(240,135,12)" fg:x="302363" fg:w="876"/><text x="23.6373%" y="463.50"></text></g><g><title>psi_task_change (298 samples, 0.02%)</title><rect x="23.4659%" y="453" width="0.0230%" height="15" fill="rgb(251,24,50)" fg:x="303380" fg:w="298"/><text x="23.7159%" y="463.50"></text></g><g><title>psi_group_change (248 samples, 0.02%)</title><rect x="23.4698%" y="437" width="0.0192%" height="15" fill="rgb(243,200,47)" fg:x="303430" fg:w="248"/><text x="23.7198%" y="447.50"></text></g><g><title>__btrfs_tree_read_lock (7,059 samples, 0.55%)</title><rect x="22.9503%" y="501" width="0.5460%" height="15" fill="rgb(224,166,26)" fg:x="296714" fg:w="7059"/><text x="23.2003%" y="511.50"></text></g><g><title>schedule (2,018 samples, 0.16%)</title><rect x="23.3403%" y="485" width="0.1561%" height="15" fill="rgb(233,0,47)" fg:x="301755" fg:w="2018"/><text x="23.5903%" y="495.50"></text></g><g><title>__schedule (2,006 samples, 0.16%)</title><rect x="23.3412%" y="469" width="0.1552%" height="15" fill="rgb(253,80,5)" fg:x="301767" fg:w="2006"/><text x="23.5912%" y="479.50"></text></g><g><title>__btrfs_read_lock_root_node (7,921 samples, 0.61%)</title><rect x="22.9459%" y="517" width="0.6127%" height="15" fill="rgb(214,133,25)" fg:x="296656" fg:w="7921"/><text x="23.1959%" y="527.50"></text></g><g><title>btrfs_root_node (804 samples, 0.06%)</title><rect x="23.4963%" y="501" width="0.0622%" height="15" fill="rgb(209,27,14)" fg:x="303773" fg:w="804"/><text x="23.7463%" y="511.50"></text></g><g><title>alloc_tree_block_no_bg_flush (234 samples, 0.02%)</title><rect x="23.5728%" y="485" width="0.0181%" height="15" fill="rgb(219,102,51)" fg:x="304762" fg:w="234"/><text x="23.8228%" y="495.50"></text></g><g><title>btrfs_alloc_tree_block (232 samples, 0.02%)</title><rect x="23.5730%" y="469" width="0.0179%" height="15" fill="rgb(237,18,16)" fg:x="304764" fg:w="232"/><text x="23.8230%" y="479.50"></text></g><g><title>__btrfs_cow_block (486 samples, 0.04%)</title><rect x="23.5724%" y="501" width="0.0376%" height="15" fill="rgb(241,85,17)" fg:x="304756" fg:w="486"/><text x="23.8224%" y="511.50"></text></g><g><title>btrfs_cow_block (493 samples, 0.04%)</title><rect x="23.5721%" y="517" width="0.0381%" height="15" fill="rgb(236,90,42)" fg:x="304753" fg:w="493"/><text x="23.8221%" y="527.50"></text></g><g><title>btrfs_leaf_free_space (732 samples, 0.06%)</title><rect x="23.6103%" y="517" width="0.0566%" height="15" fill="rgb(249,57,21)" fg:x="305246" fg:w="732"/><text x="23.8603%" y="527.50"></text></g><g><title>leaf_space_used (590 samples, 0.05%)</title><rect x="23.6213%" y="501" width="0.0456%" height="15" fill="rgb(243,12,36)" fg:x="305388" fg:w="590"/><text x="23.8713%" y="511.50"></text></g><g><title>btrfs_get_32 (456 samples, 0.04%)</title><rect x="23.6316%" y="485" width="0.0353%" height="15" fill="rgb(253,128,47)" fg:x="305522" fg:w="456"/><text x="23.8816%" y="495.50"></text></g><g><title>_raw_write_lock (319 samples, 0.02%)</title><rect x="23.6783%" y="501" width="0.0247%" height="15" fill="rgb(207,33,20)" fg:x="306125" fg:w="319"/><text x="23.9283%" y="511.50"></text></g><g><title>btrfs_try_tree_write_lock (1,544 samples, 0.12%)</title><rect x="23.6703%" y="517" width="0.1194%" height="15" fill="rgb(233,215,35)" fg:x="306022" fg:w="1544"/><text x="23.9203%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (1,121 samples, 0.09%)</title><rect x="23.7030%" y="501" width="0.0867%" height="15" fill="rgb(249,188,52)" fg:x="306445" fg:w="1121"/><text x="23.9530%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (142 samples, 0.01%)</title><rect x="23.7787%" y="485" width="0.0110%" height="15" fill="rgb(225,12,32)" fg:x="307424" fg:w="142"/><text x="24.0287%" y="495.50"></text></g><g><title>generic_bin_search.constprop.0 (3,682 samples, 0.28%)</title><rect x="23.7897%" y="517" width="0.2848%" height="15" fill="rgb(247,98,14)" fg:x="307566" fg:w="3682"/><text x="24.0397%" y="527.50"></text></g><g><title>btrfs_buffer_uptodate (654 samples, 0.05%)</title><rect x="24.1104%" y="501" width="0.0506%" height="15" fill="rgb(247,219,48)" fg:x="311712" fg:w="654"/><text x="24.3604%" y="511.50"></text></g><g><title>verify_parent_transid (556 samples, 0.04%)</title><rect x="24.1180%" y="485" width="0.0430%" height="15" fill="rgb(253,60,48)" fg:x="311810" fg:w="556"/><text x="24.3680%" y="495.50"></text></g><g><title>btrfs_get_64 (489 samples, 0.04%)</title><rect x="24.1610%" y="501" width="0.0378%" height="15" fill="rgb(245,15,52)" fg:x="312366" fg:w="489"/><text x="24.4110%" y="511.50"></text></g><g><title>btrfs_verify_level_key (145 samples, 0.01%)</title><rect x="24.2035%" y="501" width="0.0112%" height="15" fill="rgb(220,133,28)" fg:x="312916" fg:w="145"/><text x="24.4535%" y="511.50"></text></g><g><title>__radix_tree_lookup (1,800 samples, 0.14%)</title><rect x="24.3005%" y="485" width="0.1392%" height="15" fill="rgb(217,180,4)" fg:x="314170" fg:w="1800"/><text x="24.5505%" y="495.50"></text></g><g><title>mark_page_accessed (891 samples, 0.07%)</title><rect x="24.4569%" y="469" width="0.0689%" height="15" fill="rgb(251,24,1)" fg:x="316191" fg:w="891"/><text x="24.7069%" y="479.50"></text></g><g><title>mark_extent_buffer_accessed (1,106 samples, 0.09%)</title><rect x="24.4403%" y="485" width="0.0855%" height="15" fill="rgb(212,185,49)" fg:x="315977" fg:w="1106"/><text x="24.6903%" y="495.50"></text></g><g><title>find_extent_buffer (4,041 samples, 0.31%)</title><rect x="24.2148%" y="501" width="0.3126%" height="15" fill="rgb(215,175,22)" fg:x="313061" fg:w="4041"/><text x="24.4648%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (6,355 samples, 0.49%)</title><rect x="24.0745%" y="517" width="0.4915%" height="15" fill="rgb(250,205,14)" fg:x="311248" fg:w="6355"/><text x="24.3245%" y="527.50"></text></g><g><title>read_extent_buffer (501 samples, 0.04%)</title><rect x="24.5273%" y="501" width="0.0388%" height="15" fill="rgb(225,211,22)" fg:x="317102" fg:w="501"/><text x="24.7773%" y="511.50"></text></g><g><title>btrfs_tree_read_unlock (473 samples, 0.04%)</title><rect x="24.6236%" y="501" width="0.0366%" height="15" fill="rgb(251,179,42)" fg:x="318347" fg:w="473"/><text x="24.8736%" y="511.50"></text></g><g><title>btrfs_search_slot (23,597 samples, 1.83%)</title><rect x="22.8473%" y="533" width="1.8252%" height="15" fill="rgb(208,216,51)" fg:x="295382" fg:w="23597"/><text x="23.0973%" y="543.50">b..</text></g><g><title>unlock_up (1,366 samples, 0.11%)</title><rect x="24.5668%" y="517" width="0.1057%" height="15" fill="rgb(235,36,11)" fg:x="317613" fg:w="1366"/><text x="24.8168%" y="527.50"></text></g><g><title>btrfs_tree_unlock (157 samples, 0.01%)</title><rect x="24.6604%" y="501" width="0.0121%" height="15" fill="rgb(213,189,28)" fg:x="318822" fg:w="157"/><text x="24.9104%" y="511.50"></text></g><g><title>btrfs_get_32 (348 samples, 0.03%)</title><rect x="24.7963%" y="517" width="0.0269%" height="15" fill="rgb(227,203,42)" fg:x="320579" fg:w="348"/><text x="25.0463%" y="527.50"></text></g><g><title>btrfs_get_token_32 (6,381 samples, 0.49%)</title><rect x="24.8232%" y="517" width="0.4936%" height="15" fill="rgb(244,72,36)" fg:x="320927" fg:w="6381"/><text x="25.0732%" y="527.50"></text></g><g><title>check_setget_bounds.isra.0 (861 samples, 0.07%)</title><rect x="25.2501%" y="501" width="0.0666%" height="15" fill="rgb(213,53,17)" fg:x="326447" fg:w="861"/><text x="25.5001%" y="511.50"></text></g><g><title>btrfs_leaf_free_space (775 samples, 0.06%)</title><rect x="25.3167%" y="517" width="0.0599%" height="15" fill="rgb(207,167,3)" fg:x="327308" fg:w="775"/><text x="25.5667%" y="527.50"></text></g><g><title>leaf_space_used (667 samples, 0.05%)</title><rect x="25.3251%" y="501" width="0.0516%" height="15" fill="rgb(216,98,30)" fg:x="327416" fg:w="667"/><text x="25.5751%" y="511.50"></text></g><g><title>btrfs_get_32 (491 samples, 0.04%)</title><rect x="25.3387%" y="485" width="0.0380%" height="15" fill="rgb(236,123,15)" fg:x="327592" fg:w="491"/><text x="25.5887%" y="495.50"></text></g><g><title>btrfs_mark_buffer_dirty (536 samples, 0.04%)</title><rect x="25.3767%" y="517" width="0.0415%" height="15" fill="rgb(248,81,50)" fg:x="328083" fg:w="536"/><text x="25.6267%" y="527.50"></text></g><g><title>set_extent_buffer_dirty (193 samples, 0.01%)</title><rect x="25.4032%" y="501" width="0.0149%" height="15" fill="rgb(214,120,4)" fg:x="328426" fg:w="193"/><text x="25.6532%" y="511.50"></text></g><g><title>check_setget_bounds.isra.0 (830 samples, 0.06%)</title><rect x="25.7524%" y="501" width="0.0642%" height="15" fill="rgb(208,179,34)" fg:x="332940" fg:w="830"/><text x="26.0024%" y="511.50"></text></g><g><title>btrfs_set_token_32 (5,152 samples, 0.40%)</title><rect x="25.4181%" y="517" width="0.3985%" height="15" fill="rgb(227,140,7)" fg:x="328619" fg:w="5152"/><text x="25.6681%" y="527.50"></text></g><g><title>btrfs_unlock_up_safe (137 samples, 0.01%)</title><rect x="25.8166%" y="517" width="0.0106%" height="15" fill="rgb(214,22,6)" fg:x="333771" fg:w="137"/><text x="26.0666%" y="527.50"></text></g><g><title>copy_pages (471 samples, 0.04%)</title><rect x="25.8424%" y="501" width="0.0364%" height="15" fill="rgb(207,137,27)" fg:x="334104" fg:w="471"/><text x="26.0924%" y="511.50"></text></g><g><title>memcpy_extent_buffer (4,120 samples, 0.32%)</title><rect x="25.8272%" y="517" width="0.3187%" height="15" fill="rgb(210,8,46)" fg:x="333908" fg:w="4120"/><text x="26.0772%" y="527.50"></text></g><g><title>memmove (3,453 samples, 0.27%)</title><rect x="25.8788%" y="501" width="0.2671%" height="15" fill="rgb(240,16,54)" fg:x="334575" fg:w="3453"/><text x="26.1288%" y="511.50"></text></g><g><title>copy_pages (205 samples, 0.02%)</title><rect x="26.1673%" y="501" width="0.0159%" height="15" fill="rgb(211,209,29)" fg:x="338304" fg:w="205"/><text x="26.4173%" y="511.50"></text></g><g><title>memmove_extent_buffer (1,809 samples, 0.14%)</title><rect x="26.1459%" y="517" width="0.1399%" height="15" fill="rgb(226,228,24)" fg:x="338028" fg:w="1809"/><text x="26.3959%" y="527.50"></text></g><g><title>memmove (1,328 samples, 0.10%)</title><rect x="26.1831%" y="501" width="0.1027%" height="15" fill="rgb(222,84,9)" fg:x="338509" fg:w="1328"/><text x="26.4331%" y="511.50"></text></g><g><title>btrfs_insert_empty_items (45,022 samples, 3.48%)</title><rect x="22.8291%" y="549" width="3.4824%" height="15" fill="rgb(234,203,30)" fg:x="295146" fg:w="45022"/><text x="23.0791%" y="559.50">btr..</text></g><g><title>setup_items_for_insert (21,189 samples, 1.64%)</title><rect x="24.6725%" y="533" width="1.6389%" height="15" fill="rgb(238,109,14)" fg:x="318979" fg:w="21189"/><text x="24.9225%" y="543.50"></text></g><g><title>write_extent_buffer (330 samples, 0.03%)</title><rect x="26.2859%" y="517" width="0.0255%" height="15" fill="rgb(233,206,34)" fg:x="339838" fg:w="330"/><text x="26.5359%" y="527.50"></text></g><g><title>btrfs_mark_buffer_dirty (330 samples, 0.03%)</title><rect x="26.3114%" y="549" width="0.0255%" height="15" fill="rgb(220,167,47)" fg:x="340168" fg:w="330"/><text x="26.5614%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (203 samples, 0.02%)</title><rect x="26.3213%" y="533" width="0.0157%" height="15" fill="rgb(238,105,10)" fg:x="340295" fg:w="203"/><text x="26.5713%" y="543.50"></text></g><g><title>btrfs_set_16 (237 samples, 0.02%)</title><rect x="26.3370%" y="549" width="0.0183%" height="15" fill="rgb(213,227,17)" fg:x="340498" fg:w="237"/><text x="26.5870%" y="559.50"></text></g><g><title>btrfs_set_64 (199 samples, 0.02%)</title><rect x="26.3553%" y="549" width="0.0154%" height="15" fill="rgb(217,132,38)" fg:x="340735" fg:w="199"/><text x="26.6053%" y="559.50"></text></g><g><title>kmem_cache_alloc (569 samples, 0.04%)</title><rect x="26.3707%" y="549" width="0.0440%" height="15" fill="rgb(242,146,4)" fg:x="340934" fg:w="569"/><text x="26.6207%" y="559.50"></text></g><g><title>kmem_cache_free (368 samples, 0.03%)</title><rect x="26.4147%" y="549" width="0.0285%" height="15" fill="rgb(212,61,9)" fg:x="341503" fg:w="368"/><text x="26.6647%" y="559.50"></text></g><g><title>btrfs_insert_inode_ref (49,013 samples, 3.79%)</title><rect x="22.6783%" y="565" width="3.7911%" height="15" fill="rgb(247,126,22)" fg:x="293197" fg:w="49013"/><text x="22.9283%" y="575.50">btrf..</text></g><g><title>write_extent_buffer (339 samples, 0.03%)</title><rect x="26.4432%" y="549" width="0.0262%" height="15" fill="rgb(220,196,2)" fg:x="341871" fg:w="339"/><text x="26.6932%" y="559.50"></text></g><g><title>_raw_spin_lock (218 samples, 0.02%)</title><rect x="26.5326%" y="517" width="0.0169%" height="15" fill="rgb(208,46,4)" fg:x="343027" fg:w="218"/><text x="26.7826%" y="527.50"></text></g><g><title>mutex_lock (167 samples, 0.01%)</title><rect x="26.5494%" y="517" width="0.0129%" height="15" fill="rgb(252,104,46)" fg:x="343245" fg:w="167"/><text x="26.7994%" y="527.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (874 samples, 0.07%)</title><rect x="26.5087%" y="533" width="0.0676%" height="15" fill="rgb(237,152,48)" fg:x="342718" fg:w="874"/><text x="26.7587%" y="543.50"></text></g><g><title>mutex_unlock (180 samples, 0.01%)</title><rect x="26.5624%" y="517" width="0.0139%" height="15" fill="rgb(221,59,37)" fg:x="343412" fg:w="180"/><text x="26.8124%" y="527.50"></text></g><g><title>__mutex_lock.constprop.0 (151 samples, 0.01%)</title><rect x="26.5763%" y="533" width="0.0117%" height="15" fill="rgb(209,202,51)" fg:x="343592" fg:w="151"/><text x="26.8263%" y="543.50"></text></g><g><title>btrfs_get_or_create_delayed_node (223 samples, 0.02%)</title><rect x="26.5941%" y="533" width="0.0172%" height="15" fill="rgb(228,81,30)" fg:x="343823" fg:w="223"/><text x="26.8441%" y="543.50"></text></g><g><title>btrfs_get_delayed_node (198 samples, 0.02%)</title><rect x="26.5961%" y="517" width="0.0153%" height="15" fill="rgb(227,42,39)" fg:x="343848" fg:w="198"/><text x="26.8461%" y="527.50"></text></g><g><title>inode_get_bytes (211 samples, 0.02%)</title><rect x="26.6229%" y="517" width="0.0163%" height="15" fill="rgb(221,26,2)" fg:x="344195" fg:w="211"/><text x="26.8729%" y="527.50"></text></g><g><title>_raw_spin_lock (139 samples, 0.01%)</title><rect x="26.6285%" y="501" width="0.0108%" height="15" fill="rgb(254,61,31)" fg:x="344267" fg:w="139"/><text x="26.8785%" y="511.50"></text></g><g><title>fill_stack_inode_item (488 samples, 0.04%)</title><rect x="26.6114%" y="533" width="0.0377%" height="15" fill="rgb(222,173,38)" fg:x="344046" fg:w="488"/><text x="26.8614%" y="543.50"></text></g><g><title>btrfs_delayed_update_inode (2,165 samples, 0.17%)</title><rect x="26.5009%" y="549" width="0.1675%" height="15" fill="rgb(218,50,12)" fg:x="342617" fg:w="2165"/><text x="26.7509%" y="559.50"></text></g><g><title>mutex_unlock (134 samples, 0.01%)</title><rect x="26.6580%" y="533" width="0.0104%" height="15" fill="rgb(223,88,40)" fg:x="344648" fg:w="134"/><text x="26.9080%" y="543.50"></text></g><g><title>_raw_spin_lock (441 samples, 0.03%)</title><rect x="26.6783%" y="533" width="0.0341%" height="15" fill="rgb(237,54,19)" fg:x="344911" fg:w="441"/><text x="26.9283%" y="543.50"></text></g><g><title>btrfs_update_inode (3,472 samples, 0.27%)</title><rect x="26.4694%" y="565" width="0.2686%" height="15" fill="rgb(251,129,25)" fg:x="342210" fg:w="3472"/><text x="26.7194%" y="575.50"></text></g><g><title>btrfs_update_root_times (900 samples, 0.07%)</title><rect x="26.6683%" y="549" width="0.0696%" height="15" fill="rgb(238,97,19)" fg:x="344782" fg:w="900"/><text x="26.9183%" y="559.50"></text></g><g><title>ktime_get_real_ts64 (329 samples, 0.03%)</title><rect x="26.7125%" y="533" width="0.0254%" height="15" fill="rgb(240,169,18)" fg:x="345353" fg:w="329"/><text x="26.9625%" y="543.50"></text></g><g><title>btrfs_add_link (119,885 samples, 9.27%)</title><rect x="17.4852%" y="581" width="9.2729%" height="15" fill="rgb(230,187,49)" fg:x="226058" fg:w="119885"/><text x="17.7352%" y="591.50">btrfs_add_link</text></g><g><title>fs_umode_to_ftype (162 samples, 0.01%)</title><rect x="26.7456%" y="565" width="0.0125%" height="15" fill="rgb(209,44,26)" fg:x="345781" fg:w="162"/><text x="26.9956%" y="575.50"></text></g><g><title>__percpu_counter_compare (187 samples, 0.01%)</title><rect x="26.7729%" y="565" width="0.0145%" height="15" fill="rgb(244,0,6)" fg:x="346134" fg:w="187"/><text x="27.0229%" y="575.50"></text></g><g><title>btrfs_balance_delayed_items (527 samples, 0.04%)</title><rect x="26.7874%" y="565" width="0.0408%" height="15" fill="rgb(248,18,21)" fg:x="346321" fg:w="527"/><text x="27.0374%" y="575.50"></text></g><g><title>_raw_spin_lock (423 samples, 0.03%)</title><rect x="26.8468%" y="533" width="0.0327%" height="15" fill="rgb(245,180,19)" fg:x="347089" fg:w="423"/><text x="27.0968%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (355 samples, 0.03%)</title><rect x="26.8520%" y="517" width="0.0275%" height="15" fill="rgb(252,118,36)" fg:x="347157" fg:w="355"/><text x="27.1020%" y="527.50"></text></g><g><title>select_task_rq_fair (394 samples, 0.03%)</title><rect x="26.9124%" y="517" width="0.0305%" height="15" fill="rgb(210,224,19)" fg:x="347938" fg:w="394"/><text x="27.1624%" y="527.50"></text></g><g><title>enqueue_task_fair (343 samples, 0.03%)</title><rect x="26.9486%" y="501" width="0.0265%" height="15" fill="rgb(218,30,24)" fg:x="348406" fg:w="343"/><text x="27.1986%" y="511.50"></text></g><g><title>enqueue_entity (280 samples, 0.02%)</title><rect x="26.9535%" y="485" width="0.0217%" height="15" fill="rgb(219,75,50)" fg:x="348469" fg:w="280"/><text x="27.2035%" y="495.50"></text></g><g><title>ttwu_do_activate (557 samples, 0.04%)</title><rect x="26.9455%" y="517" width="0.0431%" height="15" fill="rgb(234,72,50)" fg:x="348366" fg:w="557"/><text x="27.1955%" y="527.50"></text></g><g><title>psi_task_change (172 samples, 0.01%)</title><rect x="26.9753%" y="501" width="0.0133%" height="15" fill="rgb(219,100,48)" fg:x="348751" fg:w="172"/><text x="27.2253%" y="511.50"></text></g><g><title>ttwu_do_wakeup (153 samples, 0.01%)</title><rect x="26.9886%" y="517" width="0.0118%" height="15" fill="rgb(253,5,41)" fg:x="348923" fg:w="153"/><text x="27.2386%" y="527.50"></text></g><g><title>check_preempt_curr (140 samples, 0.01%)</title><rect x="26.9896%" y="501" width="0.0108%" height="15" fill="rgb(247,181,11)" fg:x="348936" fg:w="140"/><text x="27.2396%" y="511.50"></text></g><g><title>__queue_work (2,208 samples, 0.17%)</title><rect x="26.8374%" y="549" width="0.1708%" height="15" fill="rgb(222,223,25)" fg:x="346968" fg:w="2208"/><text x="27.0874%" y="559.50"></text></g><g><title>try_to_wake_up (1,567 samples, 0.12%)</title><rect x="26.8870%" y="533" width="0.1212%" height="15" fill="rgb(214,198,28)" fg:x="347609" fg:w="1567"/><text x="27.1370%" y="543.50"></text></g><g><title>btrfs_btree_balance_dirty (3,250 samples, 0.25%)</title><rect x="26.7581%" y="581" width="0.2514%" height="15" fill="rgb(230,46,43)" fg:x="345943" fg:w="3250"/><text x="27.0081%" y="591.50"></text></g><g><title>queue_work_on (2,256 samples, 0.17%)</title><rect x="26.8350%" y="565" width="0.1745%" height="15" fill="rgb(233,65,53)" fg:x="346937" fg:w="2256"/><text x="27.0850%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (139 samples, 0.01%)</title><rect x="27.0576%" y="533" width="0.0108%" height="15" fill="rgb(221,121,27)" fg:x="349815" fg:w="139"/><text x="27.3076%" y="543.50"></text></g><g><title>btrfs_search_forward (130 samples, 0.01%)</title><rect x="27.0705%" y="533" width="0.0101%" height="15" fill="rgb(247,70,47)" fg:x="349982" fg:w="130"/><text x="27.3205%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (138 samples, 0.01%)</title><rect x="27.0828%" y="517" width="0.0107%" height="15" fill="rgb(228,85,35)" fg:x="350141" fg:w="138"/><text x="27.3328%" y="527.50"></text></g><g><title>copy_items.isra.0 (163 samples, 0.01%)</title><rect x="27.0819%" y="533" width="0.0126%" height="15" fill="rgb(209,50,18)" fg:x="350129" fg:w="163"/><text x="27.3319%" y="543.50"></text></g><g><title>drop_objectid_items (264 samples, 0.02%)</title><rect x="27.0945%" y="533" width="0.0204%" height="15" fill="rgb(250,19,35)" fg:x="350292" fg:w="264"/><text x="27.3445%" y="543.50"></text></g><g><title>btrfs_search_forward (174 samples, 0.01%)</title><rect x="27.1211%" y="501" width="0.0135%" height="15" fill="rgb(253,107,29)" fg:x="350636" fg:w="174"/><text x="27.3711%" y="511.50"></text></g><g><title>btrfs_search_slot (142 samples, 0.01%)</title><rect x="27.1396%" y="469" width="0.0110%" height="15" fill="rgb(252,179,29)" fg:x="350875" fg:w="142"/><text x="27.3896%" y="479.50"></text></g><g><title>btrfs_insert_empty_items (309 samples, 0.02%)</title><rect x="27.1396%" y="485" width="0.0239%" height="15" fill="rgb(238,194,6)" fg:x="350875" fg:w="309"/><text x="27.3896%" y="495.50"></text></g><g><title>setup_items_for_insert (167 samples, 0.01%)</title><rect x="27.1506%" y="469" width="0.0129%" height="15" fill="rgb(238,164,29)" fg:x="351017" fg:w="167"/><text x="27.4006%" y="479.50"></text></g><g><title>insert_dir_log_key (330 samples, 0.03%)</title><rect x="27.1395%" y="501" width="0.0255%" height="15" fill="rgb(224,25,9)" fg:x="350874" fg:w="330"/><text x="27.3895%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (200 samples, 0.02%)</title><rect x="27.1984%" y="453" width="0.0155%" height="15" fill="rgb(244,153,23)" fg:x="351635" fg:w="200"/><text x="27.4484%" y="463.50"></text></g><g><title>__btrfs_read_lock_root_node (250 samples, 0.02%)</title><rect x="27.1981%" y="469" width="0.0193%" height="15" fill="rgb(212,203,14)" fg:x="351631" fg:w="250"/><text x="27.4481%" y="479.50"></text></g><g><title>btrfs_search_slot (636 samples, 0.05%)</title><rect x="27.1942%" y="485" width="0.0492%" height="15" fill="rgb(220,164,20)" fg:x="351581" fg:w="636"/><text x="27.4442%" y="495.50"></text></g><g><title>overwrite_item (1,168 samples, 0.09%)</title><rect x="27.1651%" y="501" width="0.0903%" height="15" fill="rgb(222,203,48)" fg:x="351204" fg:w="1168"/><text x="27.4151%" y="511.50"></text></g><g><title>log_directory_changes (1,837 samples, 0.14%)</title><rect x="27.1161%" y="533" width="0.1421%" height="15" fill="rgb(215,159,22)" fg:x="350571" fg:w="1837"/><text x="27.3661%" y="543.50"></text></g><g><title>log_dir_items (1,836 samples, 0.14%)</title><rect x="27.1162%" y="517" width="0.1420%" height="15" fill="rgb(216,183,47)" fg:x="350572" fg:w="1836"/><text x="27.3662%" y="527.50"></text></g><g><title>btrfs_log_inode (2,660 samples, 0.21%)</title><rect x="27.0527%" y="549" width="0.2057%" height="15" fill="rgb(229,195,25)" fg:x="349752" fg:w="2660"/><text x="27.3027%" y="559.50"></text></g><g><title>btrfs_release_path (135 samples, 0.01%)</title><rect x="27.2586%" y="549" width="0.0104%" height="15" fill="rgb(224,132,51)" fg:x="352414" fg:w="135"/><text x="27.5086%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (251 samples, 0.02%)</title><rect x="27.2924%" y="533" width="0.0194%" height="15" fill="rgb(240,63,7)" fg:x="352850" fg:w="251"/><text x="27.5424%" y="543.50"></text></g><g><title>find_extent_buffer (239 samples, 0.02%)</title><rect x="27.3252%" y="517" width="0.0185%" height="15" fill="rgb(249,182,41)" fg:x="353275" fg:w="239"/><text x="27.5752%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (463 samples, 0.04%)</title><rect x="27.3118%" y="533" width="0.0358%" height="15" fill="rgb(243,47,26)" fg:x="353101" fg:w="463"/><text x="27.5618%" y="543.50"></text></g><g><title>btrfs_search_slot (1,043 samples, 0.08%)</title><rect x="27.2691%" y="549" width="0.0807%" height="15" fill="rgb(233,48,2)" fg:x="352549" fg:w="1043"/><text x="27.5191%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (176 samples, 0.01%)</title><rect x="27.3843%" y="469" width="0.0136%" height="15" fill="rgb(244,165,34)" fg:x="354039" fg:w="176"/><text x="27.6343%" y="479.50"></text></g><g><title>insert_dir_log_key (185 samples, 0.01%)</title><rect x="27.3843%" y="485" width="0.0143%" height="15" fill="rgb(207,89,7)" fg:x="354039" fg:w="185"/><text x="27.6343%" y="495.50"></text></g><g><title>btrfs_insert_empty_items (174 samples, 0.01%)</title><rect x="27.4041%" y="469" width="0.0135%" height="15" fill="rgb(244,117,36)" fg:x="354294" fg:w="174"/><text x="27.6541%" y="479.50"></text></g><g><title>btrfs_search_slot (325 samples, 0.03%)</title><rect x="27.4220%" y="469" width="0.0251%" height="15" fill="rgb(226,144,34)" fg:x="354526" fg:w="325"/><text x="27.6720%" y="479.50"></text></g><g><title>overwrite_item (707 samples, 0.05%)</title><rect x="27.3987%" y="485" width="0.0547%" height="15" fill="rgb(213,23,19)" fg:x="354224" fg:w="707"/><text x="27.6487%" y="495.50"></text></g><g><title>btrfs_log_inode (1,322 samples, 0.10%)</title><rect x="27.3532%" y="533" width="0.1023%" height="15" fill="rgb(217,75,12)" fg:x="353636" fg:w="1322"/><text x="27.6032%" y="543.50"></text></g><g><title>log_directory_changes (1,037 samples, 0.08%)</title><rect x="27.3752%" y="517" width="0.0802%" height="15" fill="rgb(224,159,17)" fg:x="353921" fg:w="1037"/><text x="27.6252%" y="527.50"></text></g><g><title>log_dir_items (1,037 samples, 0.08%)</title><rect x="27.3752%" y="501" width="0.0802%" height="15" fill="rgb(217,118,1)" fg:x="353921" fg:w="1037"/><text x="27.6252%" y="511.50"></text></g><g><title>log_new_dir_dentries (1,393 samples, 0.11%)</title><rect x="27.3522%" y="549" width="0.1077%" height="15" fill="rgb(232,180,48)" fg:x="353623" fg:w="1393"/><text x="27.6022%" y="559.50"></text></g><g><title>btrfs_log_new_name (5,791 samples, 0.45%)</title><rect x="27.0137%" y="581" width="0.4479%" height="15" fill="rgb(230,27,33)" fg:x="349247" fg:w="5791"/><text x="27.2637%" y="591.50"></text></g><g><title>btrfs_log_inode_parent (5,638 samples, 0.44%)</title><rect x="27.0255%" y="565" width="0.4361%" height="15" fill="rgb(205,31,21)" fg:x="349400" fg:w="5638"/><text x="27.2755%" y="575.50"></text></g><g><title>__list_add_valid (137 samples, 0.01%)</title><rect x="27.5520%" y="533" width="0.0106%" height="15" fill="rgb(253,59,4)" fg:x="356207" fg:w="137"/><text x="27.8020%" y="543.50"></text></g><g><title>_raw_spin_lock (220 samples, 0.02%)</title><rect x="27.5629%" y="533" width="0.0170%" height="15" fill="rgb(224,201,9)" fg:x="356347" fg:w="220"/><text x="27.8129%" y="543.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,137 samples, 0.09%)</title><rect x="27.5110%" y="549" width="0.0879%" height="15" fill="rgb(229,206,30)" fg:x="355677" fg:w="1137"/><text x="27.7610%" y="559.50"></text></g><g><title>_raw_spin_lock (340 samples, 0.03%)</title><rect x="27.6031%" y="533" width="0.0263%" height="15" fill="rgb(212,67,47)" fg:x="356867" fg:w="340"/><text x="27.8531%" y="543.50"></text></g><g><title>btrfs_block_rsv_migrate (391 samples, 0.03%)</title><rect x="27.5992%" y="549" width="0.0302%" height="15" fill="rgb(211,96,50)" fg:x="356817" fg:w="391"/><text x="27.8492%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,057 samples, 0.08%)</title><rect x="27.6295%" y="549" width="0.0818%" height="15" fill="rgb(252,114,18)" fg:x="357208" fg:w="1057"/><text x="27.8795%" y="559.50"></text></g><g><title>btrfs_get_delayed_node (1,027 samples, 0.08%)</title><rect x="27.6318%" y="533" width="0.0794%" height="15" fill="rgb(223,58,37)" fg:x="357238" fg:w="1027"/><text x="27.8818%" y="543.50"></text></g><g><title>inode_get_bytes (188 samples, 0.01%)</title><rect x="27.7212%" y="533" width="0.0145%" height="15" fill="rgb(237,70,4)" fg:x="358394" fg:w="188"/><text x="27.9712%" y="543.50"></text></g><g><title>_raw_spin_lock (175 samples, 0.01%)</title><rect x="27.7222%" y="517" width="0.0135%" height="15" fill="rgb(244,85,46)" fg:x="358407" fg:w="175"/><text x="27.9722%" y="527.50"></text></g><g><title>fill_stack_inode_item (393 samples, 0.03%)</title><rect x="27.7112%" y="549" width="0.0304%" height="15" fill="rgb(223,39,52)" fg:x="358265" fg:w="393"/><text x="27.9612%" y="559.50"></text></g><g><title>mutex_lock (259 samples, 0.02%)</title><rect x="27.7416%" y="549" width="0.0200%" height="15" fill="rgb(218,200,14)" fg:x="358658" fg:w="259"/><text x="27.9916%" y="559.50"></text></g><g><title>btrfs_delayed_update_inode (3,715 samples, 0.29%)</title><rect x="27.4816%" y="565" width="0.2873%" height="15" fill="rgb(208,171,16)" fg:x="355297" fg:w="3715"/><text x="27.7316%" y="575.50"></text></g><g><title>_raw_spin_lock (141 samples, 0.01%)</title><rect x="27.7714%" y="549" width="0.0109%" height="15" fill="rgb(234,200,18)" fg:x="359043" fg:w="141"/><text x="28.0214%" y="559.50"></text></g><g><title>btrfs_update_inode (4,297 samples, 0.33%)</title><rect x="27.4650%" y="581" width="0.3324%" height="15" fill="rgb(228,45,11)" fg:x="355082" fg:w="4297"/><text x="27.7150%" y="591.50"></text></g><g><title>btrfs_update_root_times (367 samples, 0.03%)</title><rect x="27.7690%" y="565" width="0.0284%" height="15" fill="rgb(237,182,11)" fg:x="359012" fg:w="367"/><text x="28.0190%" y="575.50"></text></g><g><title>ktime_get_real_ts64 (195 samples, 0.02%)</title><rect x="27.7823%" y="549" width="0.0151%" height="15" fill="rgb(241,175,49)" fg:x="359184" fg:w="195"/><text x="28.0323%" y="559.50"></text></g><g><title>_raw_spin_lock (130 samples, 0.01%)</title><rect x="27.8248%" y="549" width="0.0101%" height="15" fill="rgb(247,38,35)" fg:x="359734" fg:w="130"/><text x="28.0748%" y="559.50"></text></g><g><title>__d_instantiate (453 samples, 0.04%)</title><rect x="27.8049%" y="565" width="0.0350%" height="15" fill="rgb(228,39,49)" fg:x="359476" fg:w="453"/><text x="28.0549%" y="575.50"></text></g><g><title>d_instantiate (735 samples, 0.06%)</title><rect x="27.8023%" y="581" width="0.0569%" height="15" fill="rgb(226,101,26)" fg:x="359442" fg:w="735"/><text x="28.0523%" y="591.50"></text></g><g><title>security_d_instantiate (152 samples, 0.01%)</title><rect x="27.8473%" y="565" width="0.0118%" height="15" fill="rgb(206,141,19)" fg:x="360025" fg:w="152"/><text x="28.0973%" y="575.50"></text></g><g><title>ihold (170 samples, 0.01%)</title><rect x="27.8591%" y="581" width="0.0131%" height="15" fill="rgb(211,200,13)" fg:x="360177" fg:w="170"/><text x="28.1091%" y="591.50"></text></g><g><title>_raw_spin_lock (469 samples, 0.04%)</title><rect x="27.9979%" y="549" width="0.0363%" height="15" fill="rgb(241,121,6)" fg:x="361972" fg:w="469"/><text x="28.2479%" y="559.50"></text></g><g><title>_raw_spin_lock (898 samples, 0.07%)</title><rect x="28.0893%" y="517" width="0.0695%" height="15" fill="rgb(234,221,29)" fg:x="363153" fg:w="898"/><text x="28.3393%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (357 samples, 0.03%)</title><rect x="28.1311%" y="501" width="0.0276%" height="15" fill="rgb(229,136,5)" fg:x="363694" fg:w="357"/><text x="28.3811%" y="511.50"></text></g><g><title>_raw_spin_lock (180 samples, 0.01%)</title><rect x="28.2373%" y="485" width="0.0139%" height="15" fill="rgb(238,36,11)" fg:x="365066" fg:w="180"/><text x="28.4873%" y="495.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,194 samples, 0.09%)</title><rect x="28.1589%" y="517" width="0.0924%" height="15" fill="rgb(251,55,41)" fg:x="364053" fg:w="1194"/><text x="28.4089%" y="527.50"></text></g><g><title>btrfs_reduce_alloc_profile (510 samples, 0.04%)</title><rect x="28.2118%" y="501" width="0.0394%" height="15" fill="rgb(242,34,40)" fg:x="364737" fg:w="510"/><text x="28.4618%" y="511.50"></text></g><g><title>calc_available_free_space.isra.0 (743 samples, 0.06%)</title><rect x="28.2513%" y="517" width="0.0575%" height="15" fill="rgb(215,42,17)" fg:x="365247" fg:w="743"/><text x="28.5013%" y="527.50"></text></g><g><title>btrfs_reduce_alloc_profile (395 samples, 0.03%)</title><rect x="28.2782%" y="501" width="0.0306%" height="15" fill="rgb(207,44,46)" fg:x="365595" fg:w="395"/><text x="28.5282%" y="511.50"></text></g><g><title>_raw_spin_lock (232 samples, 0.02%)</title><rect x="28.2908%" y="485" width="0.0179%" height="15" fill="rgb(211,206,28)" fg:x="365758" fg:w="232"/><text x="28.5408%" y="495.50"></text></g><g><title>__reserve_bytes (3,144 samples, 0.24%)</title><rect x="28.0656%" y="533" width="0.2432%" height="15" fill="rgb(237,167,16)" fg:x="362847" fg:w="3144"/><text x="28.3156%" y="543.50"></text></g><g><title>btrfs_block_rsv_add (4,197 samples, 0.32%)</title><rect x="27.9844%" y="565" width="0.3246%" height="15" fill="rgb(233,66,6)" fg:x="361797" fg:w="4197"/><text x="28.2344%" y="575.50"></text></g><g><title>btrfs_reserve_metadata_bytes (3,551 samples, 0.27%)</title><rect x="28.0344%" y="549" width="0.2747%" height="15" fill="rgb(246,123,29)" fg:x="362443" fg:w="3551"/><text x="28.2844%" y="559.50"></text></g><g><title>_raw_spin_lock (343 samples, 0.03%)</title><rect x="28.3420%" y="549" width="0.0265%" height="15" fill="rgb(209,62,40)" fg:x="366420" fg:w="343"/><text x="28.5920%" y="559.50"></text></g><g><title>join_transaction (714 samples, 0.06%)</title><rect x="28.3135%" y="565" width="0.0552%" height="15" fill="rgb(218,4,25)" fg:x="366052" fg:w="714"/><text x="28.5635%" y="575.50"></text></g><g><title>kmem_cache_alloc (586 samples, 0.05%)</title><rect x="28.3688%" y="565" width="0.0453%" height="15" fill="rgb(253,91,49)" fg:x="366766" fg:w="586"/><text x="28.6188%" y="575.50"></text></g><g><title>_raw_spin_lock (376 samples, 0.03%)</title><rect x="28.4288%" y="549" width="0.0291%" height="15" fill="rgb(228,155,29)" fg:x="367542" fg:w="376"/><text x="28.6788%" y="559.50"></text></g><g><title>btrfs_link (146,689 samples, 11.35%)</title><rect x="17.1120%" y="597" width="11.3462%" height="15" fill="rgb(243,57,37)" fg:x="221233" fg:w="146689"/><text x="17.3620%" y="607.50">btrfs_link</text></g><g><title>start_transaction (7,533 samples, 0.58%)</title><rect x="27.8755%" y="581" width="0.5827%" height="15" fill="rgb(244,167,17)" fg:x="360389" fg:w="7533"/><text x="28.1255%" y="591.50"></text></g><g><title>wait_current_trans (570 samples, 0.04%)</title><rect x="28.4141%" y="565" width="0.0441%" height="15" fill="rgb(207,181,38)" fg:x="367352" fg:w="570"/><text x="28.6641%" y="575.50"></text></g><g><title>down_write (185 samples, 0.01%)</title><rect x="28.4582%" y="597" width="0.0143%" height="15" fill="rgb(211,8,23)" fg:x="367922" fg:w="185"/><text x="28.7082%" y="607.50"></text></g><g><title>fsnotify (537 samples, 0.04%)</title><rect x="28.4748%" y="597" width="0.0415%" height="15" fill="rgb(235,11,44)" fg:x="368137" fg:w="537"/><text x="28.7248%" y="607.50"></text></g><g><title>btrfs_permission (189 samples, 0.01%)</title><rect x="28.5236%" y="581" width="0.0146%" height="15" fill="rgb(248,18,52)" fg:x="368768" fg:w="189"/><text x="28.7736%" y="591.50"></text></g><g><title>inode_permission.part.0 (311 samples, 0.02%)</title><rect x="28.5163%" y="597" width="0.0241%" height="15" fill="rgb(208,4,7)" fg:x="368674" fg:w="311"/><text x="28.7663%" y="607.50"></text></g><g><title>map_id_up (235 samples, 0.02%)</title><rect x="28.5404%" y="597" width="0.0182%" height="15" fill="rgb(240,17,39)" fg:x="368985" fg:w="235"/><text x="28.7904%" y="607.50"></text></g><g><title>__x64_sys_link (199,801 samples, 15.45%)</title><rect x="13.1279%" y="645" width="15.4543%" height="15" fill="rgb(207,170,3)" fg:x="169724" fg:w="199801"/><text x="13.3779%" y="655.50">__x64_sys_link</text></g><g><title>do_linkat (199,760 samples, 15.45%)</title><rect x="13.1310%" y="629" width="15.4511%" height="15" fill="rgb(236,100,52)" fg:x="169765" fg:w="199760"/><text x="13.3810%" y="639.50">do_linkat</text></g><g><title>vfs_link (148,972 samples, 11.52%)</title><rect x="17.0594%" y="613" width="11.5227%" height="15" fill="rgb(246,78,51)" fg:x="220553" fg:w="148972"/><text x="17.3094%" y="623.50">vfs_link</text></g><g><title>up_write (166 samples, 0.01%)</title><rect x="28.5693%" y="597" width="0.0128%" height="15" fill="rgb(211,17,15)" fg:x="369359" fg:w="166"/><text x="28.8193%" y="607.50"></text></g><g><title>do_syscall_64 (200,024 samples, 15.47%)</title><rect x="13.1155%" y="661" width="15.4715%" height="15" fill="rgb(209,59,46)" fg:x="169564" fg:w="200024"/><text x="13.3655%" y="671.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (200,566 samples, 15.51%)</title><rect x="13.1010%" y="677" width="15.5135%" height="15" fill="rgb(210,92,25)" fg:x="169376" fg:w="200566"/><text x="13.3510%" y="687.50">entry_SYSCALL_64_after_h..</text></g><g><title>syscall_exit_to_user_mode (354 samples, 0.03%)</title><rect x="28.5870%" y="661" width="0.0274%" height="15" fill="rgb(238,174,52)" fg:x="369588" fg:w="354"/><text x="28.8370%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (310 samples, 0.02%)</title><rect x="28.5904%" y="645" width="0.0240%" height="15" fill="rgb(230,73,7)" fg:x="369632" fg:w="310"/><text x="28.8404%" y="655.50"></text></g><g><title>__GI___link (201,442 samples, 15.58%)</title><rect x="13.0503%" y="693" width="15.5812%" height="15" fill="rgb(243,124,40)" fg:x="168721" fg:w="201442"/><text x="13.3003%" y="703.50">__GI___link</text></g><g><title>syscall_return_via_sysret (204 samples, 0.02%)</title><rect x="28.6157%" y="677" width="0.0158%" height="15" fill="rgb(244,170,11)" fg:x="369959" fg:w="204"/><text x="28.8657%" y="687.50"></text></g><g><title>entry_SYSCALL_64 (557 samples, 0.04%)</title><rect x="28.6723%" y="677" width="0.0431%" height="15" fill="rgb(207,114,54)" fg:x="370690" fg:w="557"/><text x="28.9223%" y="687.50"></text></g><g><title>_copy_to_user (837 samples, 0.06%)</title><rect x="28.7928%" y="613" width="0.0647%" height="15" fill="rgb(205,42,20)" fg:x="372248" fg:w="837"/><text x="29.0428%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (729 samples, 0.06%)</title><rect x="28.8011%" y="597" width="0.0564%" height="15" fill="rgb(230,30,28)" fg:x="372356" fg:w="729"/><text x="29.0511%" y="607.50"></text></g><g><title>from_kgid_munged (169 samples, 0.01%)</title><rect x="28.8577%" y="613" width="0.0131%" height="15" fill="rgb(205,73,54)" fg:x="373087" fg:w="169"/><text x="29.1077%" y="623.50"></text></g><g><title>map_id_up (149 samples, 0.01%)</title><rect x="28.8592%" y="597" width="0.0115%" height="15" fill="rgb(254,227,23)" fg:x="373107" fg:w="149"/><text x="29.1092%" y="607.50"></text></g><g><title>cp_new_stat (1,739 samples, 0.13%)</title><rect x="28.7567%" y="629" width="0.1345%" height="15" fill="rgb(228,202,34)" fg:x="371782" fg:w="1739"/><text x="29.0067%" y="639.50"></text></g><g><title>from_kuid_munged (265 samples, 0.02%)</title><rect x="28.8707%" y="613" width="0.0205%" height="15" fill="rgb(222,225,37)" fg:x="373256" fg:w="265"/><text x="29.1207%" y="623.50"></text></g><g><title>map_id_up (199 samples, 0.02%)</title><rect x="28.8758%" y="597" width="0.0154%" height="15" fill="rgb(221,14,54)" fg:x="373322" fg:w="199"/><text x="29.1258%" y="607.50"></text></g><g><title>_raw_spin_lock (231 samples, 0.02%)</title><rect x="29.0070%" y="597" width="0.0179%" height="15" fill="rgb(254,102,2)" fg:x="375017" fg:w="231"/><text x="29.2570%" y="607.50"></text></g><g><title>generic_fillattr (161 samples, 0.01%)</title><rect x="29.0260%" y="597" width="0.0125%" height="15" fill="rgb(232,104,17)" fg:x="375263" fg:w="161"/><text x="29.2760%" y="607.50"></text></g><g><title>btrfs_getattr (1,954 samples, 0.15%)</title><rect x="28.9062%" y="613" width="0.1511%" height="15" fill="rgb(250,220,14)" fg:x="373715" fg:w="1954"/><text x="29.1562%" y="623.50"></text></g><g><title>inode_get_bytes (245 samples, 0.02%)</title><rect x="29.0384%" y="597" width="0.0190%" height="15" fill="rgb(241,158,9)" fg:x="375424" fg:w="245"/><text x="29.2884%" y="607.50"></text></g><g><title>_raw_spin_lock (201 samples, 0.02%)</title><rect x="29.0418%" y="581" width="0.0155%" height="15" fill="rgb(246,9,43)" fg:x="375468" fg:w="201"/><text x="29.2918%" y="591.50"></text></g><g><title>kmem_cache_free (999 samples, 0.08%)</title><rect x="29.0944%" y="597" width="0.0773%" height="15" fill="rgb(206,73,33)" fg:x="376147" fg:w="999"/><text x="29.3444%" y="607.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (160 samples, 0.01%)</title><rect x="29.1593%" y="581" width="0.0124%" height="15" fill="rgb(222,79,8)" fg:x="376986" fg:w="160"/><text x="29.4093%" y="591.50"></text></g><g><title>__legitimize_mnt (461 samples, 0.04%)</title><rect x="29.2125%" y="533" width="0.0357%" height="15" fill="rgb(234,8,54)" fg:x="377675" fg:w="461"/><text x="29.4625%" y="543.50"></text></g><g><title>__legitimize_path (799 samples, 0.06%)</title><rect x="29.2057%" y="549" width="0.0618%" height="15" fill="rgb(209,134,38)" fg:x="377586" fg:w="799"/><text x="29.4557%" y="559.50"></text></g><g><title>lockref_get_not_dead (246 samples, 0.02%)</title><rect x="29.2484%" y="533" width="0.0190%" height="15" fill="rgb(230,127,29)" fg:x="378139" fg:w="246"/><text x="29.4984%" y="543.50"></text></g><g><title>complete_walk (1,072 samples, 0.08%)</title><rect x="29.1939%" y="581" width="0.0829%" height="15" fill="rgb(242,44,41)" fg:x="377434" fg:w="1072"/><text x="29.4439%" y="591.50"></text></g><g><title>try_to_unlazy (1,012 samples, 0.08%)</title><rect x="29.1985%" y="565" width="0.0783%" height="15" fill="rgb(222,56,43)" fg:x="377494" fg:w="1012"/><text x="29.4485%" y="575.50"></text></g><g><title>btrfs_permission (341 samples, 0.03%)</title><rect x="30.3900%" y="549" width="0.0264%" height="15" fill="rgb(238,39,47)" fg:x="392898" fg:w="341"/><text x="30.6400%" y="559.50"></text></g><g><title>inode_permission.part.0 (8,149 samples, 0.63%)</title><rect x="29.9415%" y="565" width="0.6303%" height="15" fill="rgb(226,79,43)" fg:x="387099" fg:w="8149"/><text x="30.1915%" y="575.50"></text></g><g><title>generic_permission (2,009 samples, 0.16%)</title><rect x="30.4164%" y="549" width="0.1554%" height="15" fill="rgb(242,105,53)" fg:x="393239" fg:w="2009"/><text x="30.6664%" y="559.50"></text></g><g><title>security_inode_permission (940 samples, 0.07%)</title><rect x="30.5718%" y="565" width="0.0727%" height="15" fill="rgb(251,132,46)" fg:x="395248" fg:w="940"/><text x="30.8218%" y="575.50"></text></g><g><title>__d_lookup_rcu (11,344 samples, 0.88%)</title><rect x="31.0756%" y="533" width="0.8774%" height="15" fill="rgb(231,77,14)" fg:x="401762" fg:w="11344"/><text x="31.3256%" y="543.50"></text></g><g><title>lookup_fast (13,964 samples, 1.08%)</title><rect x="30.8743%" y="549" width="1.0801%" height="15" fill="rgb(240,135,9)" fg:x="399159" fg:w="13964"/><text x="31.1243%" y="559.50"></text></g><g><title>page_put_link (507 samples, 0.04%)</title><rect x="31.9544%" y="549" width="0.0392%" height="15" fill="rgb(248,109,14)" fg:x="413123" fg:w="507"/><text x="32.2044%" y="559.50"></text></g><g><title>__lookup_mnt (423 samples, 0.03%)</title><rect x="32.2598%" y="533" width="0.0327%" height="15" fill="rgb(227,146,52)" fg:x="417072" fg:w="423"/><text x="32.5098%" y="543.50"></text></g><g><title>atime_needs_update (544 samples, 0.04%)</title><rect x="32.2943%" y="533" width="0.0421%" height="15" fill="rgb(232,54,3)" fg:x="417518" fg:w="544"/><text x="32.5443%" y="543.50"></text></g><g><title>current_time (305 samples, 0.02%)</title><rect x="32.3128%" y="517" width="0.0236%" height="15" fill="rgb(229,201,43)" fg:x="417757" fg:w="305"/><text x="32.5628%" y="527.50"></text></g><g><title>ktime_get_coarse_real_ts64 (143 samples, 0.01%)</title><rect x="32.3254%" y="501" width="0.0111%" height="15" fill="rgb(252,161,33)" fg:x="417919" fg:w="143"/><text x="32.5754%" y="511.50"></text></g><g><title>page_get_link (2,304 samples, 0.18%)</title><rect x="32.3463%" y="533" width="0.1782%" height="15" fill="rgb(226,146,40)" fg:x="418190" fg:w="2304"/><text x="32.5963%" y="543.50"></text></g><g><title>pagecache_get_page (2,071 samples, 0.16%)</title><rect x="32.3643%" y="517" width="0.1602%" height="15" fill="rgb(219,47,25)" fg:x="418423" fg:w="2071"/><text x="32.6143%" y="527.50"></text></g><g><title>find_get_entry (1,812 samples, 0.14%)</title><rect x="32.3844%" y="501" width="0.1402%" height="15" fill="rgb(250,135,13)" fg:x="418682" fg:w="1812"/><text x="32.6344%" y="511.50"></text></g><g><title>xas_load (401 samples, 0.03%)</title><rect x="32.4935%" y="485" width="0.0310%" height="15" fill="rgb(219,229,18)" fg:x="420093" fg:w="401"/><text x="32.7435%" y="495.50"></text></g><g><title>xas_start (372 samples, 0.03%)</title><rect x="32.4958%" y="469" width="0.0288%" height="15" fill="rgb(217,152,27)" fg:x="420122" fg:w="372"/><text x="32.7458%" y="479.50"></text></g><g><title>link_path_walk.part.0 (42,048 samples, 3.25%)</title><rect x="29.2768%" y="581" width="3.2523%" height="15" fill="rgb(225,71,47)" fg:x="378506" fg:w="42048"/><text x="29.5268%" y="591.50">lin..</text></g><g><title>walk_component (24,366 samples, 1.88%)</title><rect x="30.6445%" y="565" width="1.8847%" height="15" fill="rgb(220,139,14)" fg:x="396188" fg:w="24366"/><text x="30.8945%" y="575.50">w..</text></g><g><title>step_into (6,924 samples, 0.54%)</title><rect x="31.9936%" y="549" width="0.5356%" height="15" fill="rgb(247,54,32)" fg:x="413630" fg:w="6924"/><text x="32.2436%" y="559.50"></text></g><g><title>path_init (1,185 samples, 0.09%)</title><rect x="32.5292%" y="581" width="0.0917%" height="15" fill="rgb(252,131,39)" fg:x="420554" fg:w="1185"/><text x="32.7792%" y="591.50"></text></g><g><title>nd_jump_root (783 samples, 0.06%)</title><rect x="32.5603%" y="565" width="0.0606%" height="15" fill="rgb(210,108,39)" fg:x="420956" fg:w="783"/><text x="32.8103%" y="575.50"></text></g><g><title>set_root (629 samples, 0.05%)</title><rect x="32.5722%" y="549" width="0.0487%" height="15" fill="rgb(205,23,29)" fg:x="421110" fg:w="629"/><text x="32.8222%" y="559.50"></text></g><g><title>terminate_walk (333 samples, 0.03%)</title><rect x="32.6208%" y="581" width="0.0258%" height="15" fill="rgb(246,139,46)" fg:x="421739" fg:w="333"/><text x="32.8708%" y="591.50"></text></g><g><title>lookup_fast (2,110 samples, 0.16%)</title><rect x="32.6567%" y="565" width="0.1632%" height="15" fill="rgb(250,81,26)" fg:x="422203" fg:w="2110"/><text x="32.9067%" y="575.50"></text></g><g><title>__d_lookup_rcu (2,017 samples, 0.16%)</title><rect x="32.6639%" y="549" width="0.1560%" height="15" fill="rgb(214,104,7)" fg:x="422296" fg:w="2017"/><text x="32.9139%" y="559.50"></text></g><g><title>path_lookupat (47,292 samples, 3.66%)</title><rect x="29.1716%" y="597" width="3.6580%" height="15" fill="rgb(233,189,8)" fg:x="377146" fg:w="47292"/><text x="29.4216%" y="607.50">path..</text></g><g><title>walk_component (2,366 samples, 0.18%)</title><rect x="32.6466%" y="581" width="0.1830%" height="15" fill="rgb(228,141,17)" fg:x="422072" fg:w="2366"/><text x="32.8966%" y="591.50"></text></g><g><title>filename_lookup (48,892 samples, 3.78%)</title><rect x="29.0574%" y="613" width="3.7817%" height="15" fill="rgb(247,157,1)" fg:x="375669" fg:w="48892"/><text x="29.3074%" y="623.50">file..</text></g><g><title>mntput_no_expire (149 samples, 0.01%)</title><rect x="32.8406%" y="613" width="0.0115%" height="15" fill="rgb(249,225,5)" fg:x="424581" fg:w="149"/><text x="33.0906%" y="623.50"></text></g><g><title>_cond_resched (131 samples, 0.01%)</title><rect x="32.8648%" y="581" width="0.0101%" height="15" fill="rgb(242,55,13)" fg:x="424893" fg:w="131"/><text x="33.1148%" y="591.50"></text></g><g><title>btrfs_dentry_delete (205 samples, 0.02%)</title><rect x="32.8749%" y="581" width="0.0159%" height="15" fill="rgb(230,49,50)" fg:x="425024" fg:w="205"/><text x="33.1249%" y="591.50"></text></g><g><title>lockref_put_or_lock (247 samples, 0.02%)</title><rect x="32.8908%" y="581" width="0.0191%" height="15" fill="rgb(241,111,38)" fg:x="425229" fg:w="247"/><text x="33.1408%" y="591.50"></text></g><g><title>_raw_spin_lock (193 samples, 0.01%)</title><rect x="32.8949%" y="565" width="0.0149%" height="15" fill="rgb(252,155,4)" fg:x="425283" fg:w="193"/><text x="33.1449%" y="575.50"></text></g><g><title>path_put (758 samples, 0.06%)</title><rect x="32.8522%" y="613" width="0.0586%" height="15" fill="rgb(212,69,32)" fg:x="424730" fg:w="758"/><text x="33.1022%" y="623.50"></text></g><g><title>dput (734 samples, 0.06%)</title><rect x="32.8540%" y="597" width="0.0568%" height="15" fill="rgb(243,107,47)" fg:x="424754" fg:w="734"/><text x="33.1040%" y="607.50"></text></g><g><title>apparmor_inode_getattr (232 samples, 0.02%)</title><rect x="32.9835%" y="597" width="0.0179%" height="15" fill="rgb(247,130,12)" fg:x="426428" fg:w="232"/><text x="33.2335%" y="607.50"></text></g><g><title>security_inode_getattr (2,428 samples, 0.19%)</title><rect x="32.9108%" y="613" width="0.1878%" height="15" fill="rgb(233,74,16)" fg:x="425488" fg:w="2428"/><text x="33.1608%" y="623.50"></text></g><g><title>tomoyo_path_perm (1,237 samples, 0.10%)</title><rect x="33.0029%" y="597" width="0.0957%" height="15" fill="rgb(208,58,18)" fg:x="426679" fg:w="1237"/><text x="33.2529%" y="607.50"></text></g><g><title>tomoyo_init_request_info (816 samples, 0.06%)</title><rect x="33.0355%" y="581" width="0.0631%" height="15" fill="rgb(242,225,1)" fg:x="427100" fg:w="816"/><text x="33.2855%" y="591.50"></text></g><g><title>tomoyo_domain (455 samples, 0.04%)</title><rect x="33.0634%" y="565" width="0.0352%" height="15" fill="rgb(249,39,40)" fg:x="427461" fg:w="455"/><text x="33.3134%" y="575.50"></text></g><g><title>memset_erms (2,040 samples, 0.16%)</title><rect x="33.1965%" y="565" width="0.1578%" height="15" fill="rgb(207,72,44)" fg:x="429182" fg:w="2040"/><text x="33.4465%" y="575.50"></text></g><g><title>_cond_resched (133 samples, 0.01%)</title><rect x="33.3812%" y="549" width="0.0103%" height="15" fill="rgb(215,193,12)" fg:x="431569" fg:w="133"/><text x="33.6312%" y="559.50"></text></g><g><title>kmem_cache_alloc (3,367 samples, 0.26%)</title><rect x="33.1329%" y="581" width="0.2604%" height="15" fill="rgb(248,41,39)" fg:x="428359" fg:w="3367"/><text x="33.3829%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (504 samples, 0.04%)</title><rect x="33.3543%" y="565" width="0.0390%" height="15" fill="rgb(253,85,4)" fg:x="431222" fg:w="504"/><text x="33.6043%" y="575.50"></text></g><g><title>__check_heap_object (287 samples, 0.02%)</title><rect x="33.5447%" y="549" width="0.0222%" height="15" fill="rgb(243,70,31)" fg:x="433683" fg:w="287"/><text x="33.7947%" y="559.50"></text></g><g><title>__virt_addr_valid (781 samples, 0.06%)</title><rect x="33.5669%" y="549" width="0.0604%" height="15" fill="rgb(253,195,26)" fg:x="433970" fg:w="781"/><text x="33.8169%" y="559.50"></text></g><g><title>__check_object_size (1,558 samples, 0.12%)</title><rect x="33.5165%" y="565" width="0.1205%" height="15" fill="rgb(243,42,11)" fg:x="433319" fg:w="1558"/><text x="33.7665%" y="575.50"></text></g><g><title>user_path_at_empty (6,968 samples, 0.54%)</title><rect x="33.0986%" y="613" width="0.5390%" height="15" fill="rgb(239,66,17)" fg:x="427916" fg:w="6968"/><text x="33.3486%" y="623.50"></text></g><g><title>getname_flags.part.0 (6,793 samples, 0.53%)</title><rect x="33.1121%" y="597" width="0.5254%" height="15" fill="rgb(217,132,21)" fg:x="428091" fg:w="6793"/><text x="33.3621%" y="607.50"></text></g><g><title>strncpy_from_user (3,158 samples, 0.24%)</title><rect x="33.3933%" y="581" width="0.2443%" height="15" fill="rgb(252,202,21)" fg:x="431726" fg:w="3158"/><text x="33.6433%" y="591.50"></text></g><g><title>__do_sys_newlstat (63,702 samples, 4.93%)</title><rect x="28.7447%" y="645" width="4.9272%" height="15" fill="rgb(233,98,36)" fg:x="371627" fg:w="63702"/><text x="28.9947%" y="655.50">__do_s..</text></g><g><title>vfs_statx (61,808 samples, 4.78%)</title><rect x="28.8912%" y="629" width="4.7807%" height="15" fill="rgb(216,153,54)" fg:x="373521" fg:w="61808"/><text x="29.1412%" y="639.50">vfs_st..</text></g><g><title>vfs_getattr_nosec (445 samples, 0.03%)</title><rect x="33.6376%" y="613" width="0.0344%" height="15" fill="rgb(250,99,7)" fg:x="434884" fg:w="445"/><text x="33.8876%" y="623.50"></text></g><g><title>do_syscall_64 (64,028 samples, 4.95%)</title><rect x="28.7313%" y="661" width="4.9525%" height="15" fill="rgb(207,56,50)" fg:x="371453" fg:w="64028"/><text x="28.9813%" y="671.50">do_sys..</text></g><g><title>syscall_enter_from_user_mode (135 samples, 0.01%)</title><rect x="33.6733%" y="645" width="0.0104%" height="15" fill="rgb(244,61,34)" fg:x="435346" fg:w="135"/><text x="33.9233%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64,571 samples, 4.99%)</title><rect x="28.7154%" y="677" width="4.9945%" height="15" fill="rgb(241,50,38)" fg:x="371247" fg:w="64571"/><text x="28.9654%" y="687.50">entry_..</text></g><g><title>syscall_exit_to_user_mode (337 samples, 0.03%)</title><rect x="33.6837%" y="661" width="0.0261%" height="15" fill="rgb(212,166,30)" fg:x="435481" fg:w="337"/><text x="33.9337%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (241 samples, 0.02%)</title><rect x="33.6912%" y="645" width="0.0186%" height="15" fill="rgb(249,127,32)" fg:x="435577" fg:w="241"/><text x="33.9412%" y="655.50"></text></g><g><title>__GI___lxstat (65,916 samples, 5.10%)</title><rect x="28.6315%" y="693" width="5.0985%" height="15" fill="rgb(209,103,0)" fg:x="370163" fg:w="65916"/><text x="28.8815%" y="703.50">__GI__..</text></g><g><title>syscall_return_via_sysret (254 samples, 0.02%)</title><rect x="33.7104%" y="677" width="0.0196%" height="15" fill="rgb(238,209,51)" fg:x="435825" fg:w="254"/><text x="33.9604%" y="687.50"></text></g><g><title>d_lru_add (137 samples, 0.01%)</title><rect x="33.7463%" y="613" width="0.0106%" height="15" fill="rgb(237,56,23)" fg:x="436290" fg:w="137"/><text x="33.9963%" y="623.50"></text></g><g><title>list_lru_add (131 samples, 0.01%)</title><rect x="33.7468%" y="597" width="0.0101%" height="15" fill="rgb(215,153,46)" fg:x="436296" fg:w="131"/><text x="33.9968%" y="607.50"></text></g><g><title>dput (210 samples, 0.02%)</title><rect x="33.7428%" y="629" width="0.0162%" height="15" fill="rgb(224,49,31)" fg:x="436245" fg:w="210"/><text x="33.9928%" y="639.50"></text></g><g><title>btrfs_free_path (145 samples, 0.01%)</title><rect x="33.7648%" y="565" width="0.0112%" height="15" fill="rgb(250,18,42)" fg:x="436529" fg:w="145"/><text x="34.0148%" y="575.50"></text></g><g><title>btrfs_release_path (137 samples, 0.01%)</title><rect x="33.7654%" y="549" width="0.0106%" height="15" fill="rgb(215,176,39)" fg:x="436537" fg:w="137"/><text x="34.0154%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (158 samples, 0.01%)</title><rect x="33.7948%" y="485" width="0.0122%" height="15" fill="rgb(223,77,29)" fg:x="436917" fg:w="158"/><text x="34.0448%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (153 samples, 0.01%)</title><rect x="33.7952%" y="469" width="0.0118%" height="15" fill="rgb(234,94,52)" fg:x="436922" fg:w="153"/><text x="34.0452%" y="479.50"></text></g><g><title>prepare_to_wait_event (184 samples, 0.01%)</title><rect x="33.7930%" y="501" width="0.0142%" height="15" fill="rgb(220,154,50)" fg:x="436894" fg:w="184"/><text x="34.0430%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (240 samples, 0.02%)</title><rect x="33.8073%" y="501" width="0.0186%" height="15" fill="rgb(212,11,10)" fg:x="437078" fg:w="240"/><text x="34.0573%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (163 samples, 0.01%)</title><rect x="33.8132%" y="485" width="0.0126%" height="15" fill="rgb(205,166,19)" fg:x="437155" fg:w="163"/><text x="34.0632%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (683 samples, 0.05%)</title><rect x="33.7859%" y="517" width="0.0528%" height="15" fill="rgb(244,198,16)" fg:x="436802" fg:w="683"/><text x="34.0359%" y="527.50"></text></g><g><title>schedule (167 samples, 0.01%)</title><rect x="33.8258%" y="501" width="0.0129%" height="15" fill="rgb(219,69,12)" fg:x="437318" fg:w="167"/><text x="34.0758%" y="511.50"></text></g><g><title>__schedule (164 samples, 0.01%)</title><rect x="33.8261%" y="485" width="0.0127%" height="15" fill="rgb(245,30,7)" fg:x="437321" fg:w="164"/><text x="34.0761%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (776 samples, 0.06%)</title><rect x="33.7852%" y="533" width="0.0600%" height="15" fill="rgb(218,221,48)" fg:x="436793" fg:w="776"/><text x="34.0352%" y="543.50"></text></g><g><title>__btrfs_tree_read_lock (380 samples, 0.03%)</title><rect x="33.8453%" y="533" width="0.0294%" height="15" fill="rgb(216,66,15)" fg:x="437569" fg:w="380"/><text x="34.0953%" y="543.50"></text></g><g><title>schedule (251 samples, 0.02%)</title><rect x="33.8552%" y="517" width="0.0194%" height="15" fill="rgb(226,122,50)" fg:x="437698" fg:w="251"/><text x="34.1052%" y="527.50"></text></g><g><title>__schedule (246 samples, 0.02%)</title><rect x="33.8556%" y="501" width="0.0190%" height="15" fill="rgb(239,156,16)" fg:x="437703" fg:w="246"/><text x="34.1056%" y="511.50"></text></g><g><title>__wake_up_common (136 samples, 0.01%)</title><rect x="33.8746%" y="517" width="0.0105%" height="15" fill="rgb(224,27,38)" fg:x="437949" fg:w="136"/><text x="34.1246%" y="527.50"></text></g><g><title>autoremove_wake_function (134 samples, 0.01%)</title><rect x="33.8748%" y="501" width="0.0104%" height="15" fill="rgb(224,39,27)" fg:x="437951" fg:w="134"/><text x="34.1248%" y="511.50"></text></g><g><title>__wake_up_common_lock (137 samples, 0.01%)</title><rect x="33.8746%" y="533" width="0.0106%" height="15" fill="rgb(215,92,29)" fg:x="437949" fg:w="137"/><text x="34.1246%" y="543.50"></text></g><g><title>btrfs_tree_read_lock_atomic (366 samples, 0.03%)</title><rect x="33.8911%" y="533" width="0.0283%" height="15" fill="rgb(207,159,16)" fg:x="438162" fg:w="366"/><text x="34.1411%" y="543.50"></text></g><g><title>queued_read_lock_slowpath (309 samples, 0.02%)</title><rect x="33.8955%" y="517" width="0.0239%" height="15" fill="rgb(238,163,47)" fg:x="438219" fg:w="309"/><text x="34.1455%" y="527.50"></text></g><g><title>generic_bin_search.constprop.0 (265 samples, 0.02%)</title><rect x="33.9241%" y="533" width="0.0205%" height="15" fill="rgb(219,91,49)" fg:x="438589" fg:w="265"/><text x="34.1741%" y="543.50"></text></g><g><title>__radix_tree_lookup (147 samples, 0.01%)</title><rect x="33.9604%" y="501" width="0.0114%" height="15" fill="rgb(227,167,31)" fg:x="439058" fg:w="147"/><text x="34.2104%" y="511.50"></text></g><g><title>find_extent_buffer (307 samples, 0.02%)</title><rect x="33.9537%" y="517" width="0.0237%" height="15" fill="rgb(234,80,54)" fg:x="438971" fg:w="307"/><text x="34.2037%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (476 samples, 0.04%)</title><rect x="33.9446%" y="533" width="0.0368%" height="15" fill="rgb(212,114,2)" fg:x="438854" fg:w="476"/><text x="34.1946%" y="543.50"></text></g><g><title>btrfs_search_slot (2,670 samples, 0.21%)</title><rect x="33.7776%" y="549" width="0.2065%" height="15" fill="rgb(234,50,24)" fg:x="436695" fg:w="2670"/><text x="34.0276%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (2,731 samples, 0.21%)</title><rect x="33.7760%" y="565" width="0.2112%" height="15" fill="rgb(221,68,8)" fg:x="436674" fg:w="2731"/><text x="34.0260%" y="575.50"></text></g><g><title>btrfs_lookup (3,004 samples, 0.23%)</title><rect x="33.7612%" y="597" width="0.2324%" height="15" fill="rgb(254,180,31)" fg:x="436482" fg:w="3004"/><text x="34.0112%" y="607.50"></text></g><g><title>btrfs_lookup_dentry (2,998 samples, 0.23%)</title><rect x="33.7616%" y="581" width="0.2319%" height="15" fill="rgb(247,130,50)" fg:x="436488" fg:w="2998"/><text x="34.0116%" y="591.50"></text></g><g><title>kmem_cache_alloc (259 samples, 0.02%)</title><rect x="33.9958%" y="565" width="0.0200%" height="15" fill="rgb(211,109,4)" fg:x="439516" fg:w="259"/><text x="34.2458%" y="575.50"></text></g><g><title>__d_alloc (293 samples, 0.02%)</title><rect x="33.9938%" y="581" width="0.0227%" height="15" fill="rgb(238,50,21)" fg:x="439489" fg:w="293"/><text x="34.2438%" y="591.50"></text></g><g><title>d_alloc (314 samples, 0.02%)</title><rect x="33.9935%" y="597" width="0.0243%" height="15" fill="rgb(225,57,45)" fg:x="439486" fg:w="314"/><text x="34.2435%" y="607.50"></text></g><g><title>__lookup_hash (3,458 samples, 0.27%)</title><rect x="33.7600%" y="613" width="0.2675%" height="15" fill="rgb(209,196,50)" fg:x="436467" fg:w="3458"/><text x="34.0100%" y="623.50"></text></g><g><title>inode_permission.part.0 (331 samples, 0.03%)</title><rect x="34.0593%" y="565" width="0.0256%" height="15" fill="rgb(242,140,13)" fg:x="440336" fg:w="331"/><text x="34.3093%" y="575.50"></text></g><g><title>__d_lookup_rcu (502 samples, 0.04%)</title><rect x="34.1018%" y="533" width="0.0388%" height="15" fill="rgb(217,111,7)" fg:x="440886" fg:w="502"/><text x="34.3518%" y="543.50"></text></g><g><title>lookup_fast (591 samples, 0.05%)</title><rect x="34.0950%" y="549" width="0.0457%" height="15" fill="rgb(253,193,51)" fg:x="440798" fg:w="591"/><text x="34.3450%" y="559.50"></text></g><g><title>link_path_walk.part.0 (1,447 samples, 0.11%)</title><rect x="34.0382%" y="581" width="0.1119%" height="15" fill="rgb(252,70,29)" fg:x="440064" fg:w="1447"/><text x="34.2882%" y="591.50"></text></g><g><title>walk_component (819 samples, 0.06%)</title><rect x="34.0868%" y="565" width="0.0633%" height="15" fill="rgb(232,127,12)" fg:x="440692" fg:w="819"/><text x="34.3368%" y="575.50"></text></g><g><title>filename_parentat (1,665 samples, 0.13%)</title><rect x="34.0288%" y="613" width="0.1288%" height="15" fill="rgb(211,180,21)" fg:x="439942" fg:w="1665"/><text x="34.2788%" y="623.50"></text></g><g><title>path_parentat (1,636 samples, 0.13%)</title><rect x="34.0310%" y="597" width="0.1265%" height="15" fill="rgb(229,72,13)" fg:x="439971" fg:w="1636"/><text x="34.2810%" y="607.50"></text></g><g><title>filename_create (5,265 samples, 0.41%)</title><rect x="33.7591%" y="629" width="0.4072%" height="15" fill="rgb(240,211,49)" fg:x="436455" fg:w="5265"/><text x="34.0091%" y="639.50"></text></g><g><title>kmem_cache_alloc (140 samples, 0.01%)</title><rect x="34.1681%" y="613" width="0.0108%" height="15" fill="rgb(219,149,40)" fg:x="441743" fg:w="140"/><text x="34.4181%" y="623.50"></text></g><g><title>getname_flags.part.0 (317 samples, 0.02%)</title><rect x="34.1671%" y="629" width="0.0245%" height="15" fill="rgb(210,127,46)" fg:x="441730" fg:w="317"/><text x="34.4171%" y="639.50"></text></g><g><title>strncpy_from_user (164 samples, 0.01%)</title><rect x="34.1789%" y="613" width="0.0127%" height="15" fill="rgb(220,106,7)" fg:x="441883" fg:w="164"/><text x="34.4289%" y="623.50"></text></g><g><title>__btrfs_end_transaction (255 samples, 0.02%)</title><rect x="34.2076%" y="597" width="0.0197%" height="15" fill="rgb(249,31,22)" fg:x="442253" fg:w="255"/><text x="34.4576%" y="607.50"></text></g><g><title>btrfs_insert_delayed_dir_index (542 samples, 0.04%)</title><rect x="34.2351%" y="565" width="0.0419%" height="15" fill="rgb(253,1,49)" fg:x="442609" fg:w="542"/><text x="34.4851%" y="575.50"></text></g><g><title>btrfs_release_path (133 samples, 0.01%)</title><rect x="34.2794%" y="565" width="0.0103%" height="15" fill="rgb(227,144,33)" fg:x="443182" fg:w="133"/><text x="34.5294%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (195 samples, 0.02%)</title><rect x="34.3204%" y="485" width="0.0151%" height="15" fill="rgb(249,163,44)" fg:x="443712" fg:w="195"/><text x="34.5704%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (470 samples, 0.04%)</title><rect x="34.3068%" y="501" width="0.0364%" height="15" fill="rgb(234,15,39)" fg:x="443536" fg:w="470"/><text x="34.5568%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (537 samples, 0.04%)</title><rect x="34.3063%" y="517" width="0.0415%" height="15" fill="rgb(207,66,16)" fg:x="443530" fg:w="537"/><text x="34.5563%" y="527.50"></text></g><g><title>__btrfs_tree_lock (416 samples, 0.03%)</title><rect x="34.3479%" y="517" width="0.0322%" height="15" fill="rgb(233,112,24)" fg:x="444067" fg:w="416"/><text x="34.5979%" y="527.50"></text></g><g><title>schedule (258 samples, 0.02%)</title><rect x="34.3601%" y="501" width="0.0200%" height="15" fill="rgb(230,90,22)" fg:x="444225" fg:w="258"/><text x="34.6101%" y="511.50"></text></g><g><title>__schedule (257 samples, 0.02%)</title><rect x="34.3602%" y="485" width="0.0199%" height="15" fill="rgb(229,61,13)" fg:x="444226" fg:w="257"/><text x="34.6102%" y="495.50"></text></g><g><title>btrfs_try_tree_write_lock (436 samples, 0.03%)</title><rect x="34.3854%" y="517" width="0.0337%" height="15" fill="rgb(225,57,24)" fg:x="444552" fg:w="436"/><text x="34.6354%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (403 samples, 0.03%)</title><rect x="34.3879%" y="501" width="0.0312%" height="15" fill="rgb(208,169,48)" fg:x="444585" fg:w="403"/><text x="34.6379%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (211 samples, 0.02%)</title><rect x="34.4191%" y="517" width="0.0163%" height="15" fill="rgb(244,218,51)" fg:x="444988" fg:w="211"/><text x="34.6691%" y="527.50"></text></g><g><title>find_extent_buffer (244 samples, 0.02%)</title><rect x="34.4446%" y="501" width="0.0189%" height="15" fill="rgb(214,148,10)" fg:x="445318" fg:w="244"/><text x="34.6946%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (408 samples, 0.03%)</title><rect x="34.4354%" y="517" width="0.0316%" height="15" fill="rgb(225,174,27)" fg:x="445199" fg:w="408"/><text x="34.6854%" y="527.50"></text></g><g><title>split_leaf (212 samples, 0.02%)</title><rect x="34.4670%" y="517" width="0.0164%" height="15" fill="rgb(230,96,26)" fg:x="445607" fg:w="212"/><text x="34.7170%" y="527.50"></text></g><g><title>__wake_up_common (185 samples, 0.01%)</title><rect x="34.4869%" y="485" width="0.0143%" height="15" fill="rgb(232,10,30)" fg:x="445864" fg:w="185"/><text x="34.7369%" y="495.50"></text></g><g><title>autoremove_wake_function (177 samples, 0.01%)</title><rect x="34.4875%" y="469" width="0.0137%" height="15" fill="rgb(222,8,50)" fg:x="445872" fg:w="177"/><text x="34.7375%" y="479.50"></text></g><g><title>try_to_wake_up (171 samples, 0.01%)</title><rect x="34.4879%" y="453" width="0.0132%" height="15" fill="rgb(213,81,27)" fg:x="445878" fg:w="171"/><text x="34.7379%" y="463.50"></text></g><g><title>__wake_up_common_lock (189 samples, 0.01%)</title><rect x="34.4868%" y="501" width="0.0146%" height="15" fill="rgb(245,50,10)" fg:x="445863" fg:w="189"/><text x="34.7368%" y="511.50"></text></g><g><title>btrfs_search_slot (2,644 samples, 0.20%)</title><rect x="34.2991%" y="533" width="0.2045%" height="15" fill="rgb(216,100,18)" fg:x="443436" fg:w="2644"/><text x="34.5491%" y="543.50"></text></g><g><title>unlock_up (261 samples, 0.02%)</title><rect x="34.4834%" y="517" width="0.0202%" height="15" fill="rgb(236,147,54)" fg:x="445819" fg:w="261"/><text x="34.7334%" y="527.50"></text></g><g><title>btrfs_get_token_32 (472 samples, 0.04%)</title><rect x="34.5154%" y="517" width="0.0365%" height="15" fill="rgb(205,143,26)" fg:x="446233" fg:w="472"/><text x="34.7654%" y="527.50"></text></g><g><title>btrfs_set_token_32 (368 samples, 0.03%)</title><rect x="34.5588%" y="517" width="0.0285%" height="15" fill="rgb(236,26,9)" fg:x="446794" fg:w="368"/><text x="34.8088%" y="527.50"></text></g><g><title>memcpy_extent_buffer (144 samples, 0.01%)</title><rect x="34.5893%" y="517" width="0.0111%" height="15" fill="rgb(221,165,53)" fg:x="447188" fg:w="144"/><text x="34.8393%" y="527.50"></text></g><g><title>memmove_extent_buffer (145 samples, 0.01%)</title><rect x="34.6004%" y="517" width="0.0112%" height="15" fill="rgb(214,110,17)" fg:x="447332" fg:w="145"/><text x="34.8504%" y="527.50"></text></g><g><title>insert_with_overflow (4,117 samples, 0.32%)</title><rect x="34.2954%" y="565" width="0.3184%" height="15" fill="rgb(237,197,12)" fg:x="443389" fg:w="4117"/><text x="34.5454%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (4,082 samples, 0.32%)</title><rect x="34.2981%" y="549" width="0.3157%" height="15" fill="rgb(205,84,17)" fg:x="443424" fg:w="4082"/><text x="34.5481%" y="559.50"></text></g><g><title>setup_items_for_insert (1,426 samples, 0.11%)</title><rect x="34.5036%" y="533" width="0.1103%" height="15" fill="rgb(237,18,45)" fg:x="446080" fg:w="1426"/><text x="34.7536%" y="543.50"></text></g><g><title>btrfs_insert_dir_item (5,072 samples, 0.39%)</title><rect x="34.2321%" y="581" width="0.3923%" height="15" fill="rgb(221,87,14)" fg:x="442570" fg:w="5072"/><text x="34.4821%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (157 samples, 0.01%)</title><rect x="34.6276%" y="565" width="0.0121%" height="15" fill="rgb(238,186,15)" fg:x="447684" fg:w="157"/><text x="34.8776%" y="575.50"></text></g><g><title>btrfs_update_inode (259 samples, 0.02%)</title><rect x="34.6244%" y="581" width="0.0200%" height="15" fill="rgb(208,115,11)" fg:x="447642" fg:w="259"/><text x="34.8744%" y="591.50"></text></g><g><title>btrfs_add_link (5,376 samples, 0.42%)</title><rect x="34.2297%" y="597" width="0.4158%" height="15" fill="rgb(254,175,0)" fg:x="442540" fg:w="5376"/><text x="34.4797%" y="607.50"></text></g><g><title>__queue_work (200 samples, 0.02%)</title><rect x="34.6535%" y="565" width="0.0155%" height="15" fill="rgb(227,24,42)" fg:x="448019" fg:w="200"/><text x="34.9035%" y="575.50"></text></g><g><title>try_to_wake_up (143 samples, 0.01%)</title><rect x="34.6580%" y="549" width="0.0111%" height="15" fill="rgb(223,211,37)" fg:x="448076" fg:w="143"/><text x="34.9080%" y="559.50"></text></g><g><title>btrfs_btree_balance_dirty (306 samples, 0.02%)</title><rect x="34.6456%" y="597" width="0.0237%" height="15" fill="rgb(235,49,27)" fg:x="447916" fg:w="306"/><text x="34.8956%" y="607.50"></text></g><g><title>queue_work_on (207 samples, 0.02%)</title><rect x="34.6532%" y="581" width="0.0160%" height="15" fill="rgb(254,97,51)" fg:x="448015" fg:w="207"/><text x="34.9032%" y="591.50"></text></g><g><title>queued_read_lock_slowpath (228 samples, 0.02%)</title><rect x="34.7250%" y="517" width="0.0176%" height="15" fill="rgb(249,51,40)" fg:x="448943" fg:w="228"/><text x="34.9750%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (145 samples, 0.01%)</title><rect x="34.7314%" y="501" width="0.0112%" height="15" fill="rgb(210,128,45)" fg:x="449026" fg:w="145"/><text x="34.9814%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (535 samples, 0.04%)</title><rect x="34.7116%" y="533" width="0.0414%" height="15" fill="rgb(224,137,50)" fg:x="448769" fg:w="535"/><text x="34.9616%" y="543.50"></text></g><g><title>schedule (133 samples, 0.01%)</title><rect x="34.7426%" y="517" width="0.0103%" height="15" fill="rgb(242,15,9)" fg:x="449171" fg:w="133"/><text x="34.9926%" y="527.50"></text></g><g><title>__schedule (133 samples, 0.01%)</title><rect x="34.7426%" y="501" width="0.0103%" height="15" fill="rgb(233,187,41)" fg:x="449171" fg:w="133"/><text x="34.9926%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (594 samples, 0.05%)</title><rect x="34.7112%" y="549" width="0.0459%" height="15" fill="rgb(227,2,29)" fg:x="448764" fg:w="594"/><text x="34.9612%" y="559.50"></text></g><g><title>__btrfs_tree_lock (368 samples, 0.03%)</title><rect x="34.7571%" y="549" width="0.0285%" height="15" fill="rgb(222,70,3)" fg:x="449358" fg:w="368"/><text x="35.0071%" y="559.50"></text></g><g><title>schedule (215 samples, 0.02%)</title><rect x="34.7689%" y="533" width="0.0166%" height="15" fill="rgb(213,11,42)" fg:x="449511" fg:w="215"/><text x="35.0189%" y="543.50"></text></g><g><title>__schedule (213 samples, 0.02%)</title><rect x="34.7691%" y="517" width="0.0165%" height="15" fill="rgb(225,150,9)" fg:x="449513" fg:w="213"/><text x="35.0191%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (478 samples, 0.04%)</title><rect x="34.7911%" y="549" width="0.0370%" height="15" fill="rgb(230,162,45)" fg:x="449797" fg:w="478"/><text x="35.0411%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (440 samples, 0.03%)</title><rect x="34.7940%" y="533" width="0.0340%" height="15" fill="rgb(222,14,52)" fg:x="449835" fg:w="440"/><text x="35.0440%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (193 samples, 0.01%)</title><rect x="34.8280%" y="549" width="0.0149%" height="15" fill="rgb(254,198,14)" fg:x="450275" fg:w="193"/><text x="35.0780%" y="559.50"></text></g><g><title>find_extent_buffer (228 samples, 0.02%)</title><rect x="34.8511%" y="533" width="0.0176%" height="15" fill="rgb(220,217,30)" fg:x="450573" fg:w="228"/><text x="35.1011%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (370 samples, 0.03%)</title><rect x="34.8430%" y="549" width="0.0286%" height="15" fill="rgb(215,146,41)" fg:x="450468" fg:w="370"/><text x="35.0930%" y="559.50"></text></g><g><title>__push_leaf_left (165 samples, 0.01%)</title><rect x="34.8871%" y="517" width="0.0128%" height="15" fill="rgb(217,27,36)" fg:x="451039" fg:w="165"/><text x="35.1371%" y="527.50"></text></g><g><title>push_leaf_left (206 samples, 0.02%)</title><rect x="34.8860%" y="533" width="0.0159%" height="15" fill="rgb(219,218,39)" fg:x="451024" fg:w="206"/><text x="35.1360%" y="543.50"></text></g><g><title>split_leaf (396 samples, 0.03%)</title><rect x="34.8716%" y="549" width="0.0306%" height="15" fill="rgb(219,4,42)" fg:x="450838" fg:w="396"/><text x="35.1216%" y="559.50"></text></g><g><title>__wake_up_common (268 samples, 0.02%)</title><rect x="34.9055%" y="517" width="0.0207%" height="15" fill="rgb(249,119,36)" fg:x="451277" fg:w="268"/><text x="35.1555%" y="527.50"></text></g><g><title>autoremove_wake_function (265 samples, 0.02%)</title><rect x="34.9058%" y="501" width="0.0205%" height="15" fill="rgb(209,23,33)" fg:x="451280" fg:w="265"/><text x="35.1558%" y="511.50"></text></g><g><title>try_to_wake_up (250 samples, 0.02%)</title><rect x="34.9069%" y="485" width="0.0193%" height="15" fill="rgb(211,10,0)" fg:x="451295" fg:w="250"/><text x="35.1569%" y="495.50"></text></g><g><title>__wake_up_common_lock (271 samples, 0.02%)</title><rect x="34.9055%" y="533" width="0.0210%" height="15" fill="rgb(208,99,37)" fg:x="451276" fg:w="271"/><text x="35.1555%" y="543.50"></text></g><g><title>btrfs_search_slot (2,900 samples, 0.22%)</title><rect x="34.7058%" y="565" width="0.2243%" height="15" fill="rgb(213,132,31)" fg:x="448694" fg:w="2900"/><text x="34.9558%" y="575.50"></text></g><g><title>unlock_up (360 samples, 0.03%)</title><rect x="34.9022%" y="549" width="0.0278%" height="15" fill="rgb(243,129,40)" fg:x="451234" fg:w="360"/><text x="35.1522%" y="559.50"></text></g><g><title>btrfs_get_token_32 (189 samples, 0.01%)</title><rect x="34.9406%" y="549" width="0.0146%" height="15" fill="rgb(210,66,33)" fg:x="451730" fg:w="189"/><text x="35.1906%" y="559.50"></text></g><g><title>btrfs_set_token_32 (192 samples, 0.01%)</title><rect x="34.9633%" y="549" width="0.0149%" height="15" fill="rgb(209,189,4)" fg:x="452024" fg:w="192"/><text x="35.2133%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (3,706 samples, 0.29%)</title><rect x="34.7050%" y="581" width="0.2867%" height="15" fill="rgb(214,107,37)" fg:x="448684" fg:w="3706"/><text x="34.9550%" y="591.50"></text></g><g><title>setup_items_for_insert (796 samples, 0.06%)</title><rect x="34.9301%" y="565" width="0.0616%" height="15" fill="rgb(245,88,54)" fg:x="451594" fg:w="796"/><text x="35.1801%" y="575.50"></text></g><g><title>fill_inode_item (244 samples, 0.02%)</title><rect x="35.0025%" y="581" width="0.0189%" height="15" fill="rgb(205,146,20)" fg:x="452530" fg:w="244"/><text x="35.2525%" y="591.50"></text></g><g><title>inode_tree_add (435 samples, 0.03%)</title><rect x="35.0237%" y="581" width="0.0336%" height="15" fill="rgb(220,161,25)" fg:x="452805" fg:w="435"/><text x="35.2737%" y="591.50"></text></g><g><title>btrfs_alloc_inode (323 samples, 0.02%)</title><rect x="35.0781%" y="549" width="0.0250%" height="15" fill="rgb(215,152,15)" fg:x="453508" fg:w="323"/><text x="35.3281%" y="559.50"></text></g><g><title>kmem_cache_alloc (216 samples, 0.02%)</title><rect x="35.0864%" y="533" width="0.0167%" height="15" fill="rgb(233,192,44)" fg:x="453615" fg:w="216"/><text x="35.3364%" y="543.50"></text></g><g><title>alloc_inode (425 samples, 0.03%)</title><rect x="35.0768%" y="565" width="0.0329%" height="15" fill="rgb(240,170,46)" fg:x="453491" fg:w="425"/><text x="35.3268%" y="575.50"></text></g><g><title>new_inode (469 samples, 0.04%)</title><rect x="35.0744%" y="581" width="0.0363%" height="15" fill="rgb(207,104,33)" fg:x="453460" fg:w="469"/><text x="35.3244%" y="591.50"></text></g><g><title>btrfs_new_inode (5,569 samples, 0.43%)</title><rect x="34.6815%" y="597" width="0.4308%" height="15" fill="rgb(219,21,39)" fg:x="448380" fg:w="5569"/><text x="34.9315%" y="607.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (140 samples, 0.01%)</title><rect x="35.1187%" y="565" width="0.0108%" height="15" fill="rgb(214,133,29)" fg:x="454033" fg:w="140"/><text x="35.3687%" y="575.50"></text></g><g><title>btrfs_get_or_create_delayed_node (354 samples, 0.03%)</title><rect x="35.1353%" y="565" width="0.0274%" height="15" fill="rgb(226,93,6)" fg:x="454247" fg:w="354"/><text x="35.3853%" y="575.50"></text></g><g><title>btrfs_delayed_update_inode (692 samples, 0.05%)</title><rect x="35.1144%" y="581" width="0.0535%" height="15" fill="rgb(252,222,34)" fg:x="453977" fg:w="692"/><text x="35.3644%" y="591.50"></text></g><g><title>btrfs_update_inode (751 samples, 0.06%)</title><rect x="35.1124%" y="597" width="0.0581%" height="15" fill="rgb(252,92,48)" fg:x="453951" fg:w="751"/><text x="35.3624%" y="607.50"></text></g><g><title>__reserve_bytes (257 samples, 0.02%)</title><rect x="35.1949%" y="549" width="0.0199%" height="15" fill="rgb(245,223,24)" fg:x="455018" fg:w="257"/><text x="35.4449%" y="559.50"></text></g><g><title>btrfs_block_rsv_add (330 samples, 0.03%)</title><rect x="35.1894%" y="581" width="0.0255%" height="15" fill="rgb(205,176,3)" fg:x="454947" fg:w="330"/><text x="35.4394%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (288 samples, 0.02%)</title><rect x="35.1927%" y="565" width="0.0223%" height="15" fill="rgb(235,151,15)" fg:x="454989" fg:w="288"/><text x="35.4427%" y="575.50"></text></g><g><title>btrfs_mkdir (13,210 samples, 1.02%)</title><rect x="34.2055%" y="613" width="1.0218%" height="15" fill="rgb(237,209,11)" fg:x="442227" fg:w="13210"/><text x="34.4555%" y="623.50"></text></g><g><title>start_transaction (594 samples, 0.05%)</title><rect x="35.1814%" y="597" width="0.0459%" height="15" fill="rgb(243,227,24)" fg:x="454843" fg:w="594"/><text x="35.4314%" y="607.50"></text></g><g><title>do_mkdirat (19,311 samples, 1.49%)</title><rect x="33.7399%" y="645" width="1.4937%" height="15" fill="rgb(239,193,16)" fg:x="436207" fg:w="19311"/><text x="33.9899%" y="655.50"></text></g><g><title>vfs_mkdir (13,313 samples, 1.03%)</title><rect x="34.2038%" y="629" width="1.0297%" height="15" fill="rgb(231,27,9)" fg:x="442205" fg:w="13313"/><text x="34.4538%" y="639.50"></text></g><g><title>do_syscall_64 (19,338 samples, 1.50%)</title><rect x="33.7385%" y="661" width="1.4958%" height="15" fill="rgb(219,169,10)" fg:x="436189" fg:w="19338"/><text x="33.9885%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19,388 samples, 1.50%)</title><rect x="33.7374%" y="677" width="1.4996%" height="15" fill="rgb(244,229,43)" fg:x="436175" fg:w="19388"/><text x="33.9874%" y="687.50"></text></g><g><title>__GI___mkdir (19,514 samples, 1.51%)</title><rect x="33.7300%" y="693" width="1.5094%" height="15" fill="rgb(254,38,20)" fg:x="436079" fg:w="19514"/><text x="33.9800%" y="703.50"></text></g><g><title>btrfs_filldir (834 samples, 0.06%)</title><rect x="35.3364%" y="581" width="0.0645%" height="15" fill="rgb(250,47,30)" fg:x="456848" fg:w="834"/><text x="35.5864%" y="591.50"></text></g><g><title>filldir64 (764 samples, 0.06%)</title><rect x="35.3419%" y="565" width="0.0591%" height="15" fill="rgb(224,124,36)" fg:x="456918" fg:w="764"/><text x="35.5919%" y="575.50"></text></g><g><title>verify_dirent_name (211 samples, 0.02%)</title><rect x="35.3846%" y="549" width="0.0163%" height="15" fill="rgb(246,68,51)" fg:x="457471" fg:w="211"/><text x="35.6346%" y="559.50"></text></g><g><title>memchr (154 samples, 0.01%)</title><rect x="35.3890%" y="533" width="0.0119%" height="15" fill="rgb(253,43,49)" fg:x="457528" fg:w="154"/><text x="35.6390%" y="543.50"></text></g><g><title>btrfs_get_16 (170 samples, 0.01%)</title><rect x="35.4037%" y="581" width="0.0131%" height="15" fill="rgb(219,54,36)" fg:x="457718" fg:w="170"/><text x="35.6537%" y="591.50"></text></g><g><title>btrfs_get_32 (135 samples, 0.01%)</title><rect x="35.4169%" y="581" width="0.0104%" height="15" fill="rgb(227,133,34)" fg:x="457888" fg:w="135"/><text x="35.6669%" y="591.50"></text></g><g><title>btrfs_search_slot (222 samples, 0.02%)</title><rect x="35.4337%" y="565" width="0.0172%" height="15" fill="rgb(247,227,15)" fg:x="458105" fg:w="222"/><text x="35.6837%" y="575.50"></text></g><g><title>btrfs_next_old_leaf (315 samples, 0.02%)</title><rect x="35.4319%" y="581" width="0.0244%" height="15" fill="rgb(229,96,14)" fg:x="458082" fg:w="315"/><text x="35.6819%" y="591.50"></text></g><g><title>btrfs_readdir_get_delayed_items (262 samples, 0.02%)</title><rect x="35.4570%" y="581" width="0.0203%" height="15" fill="rgb(220,79,17)" fg:x="458407" fg:w="262"/><text x="35.7070%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (166 samples, 0.01%)</title><rect x="35.4892%" y="565" width="0.0128%" height="15" fill="rgb(205,131,53)" fg:x="458823" fg:w="166"/><text x="35.7392%" y="575.50"></text></g><g><title>btrfs_release_path (338 samples, 0.03%)</title><rect x="35.4792%" y="581" width="0.0261%" height="15" fill="rgb(209,50,29)" fg:x="458693" fg:w="338"/><text x="35.7292%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (364 samples, 0.03%)</title><rect x="35.5410%" y="517" width="0.0282%" height="15" fill="rgb(245,86,46)" fg:x="459492" fg:w="364"/><text x="35.7910%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (346 samples, 0.03%)</title><rect x="35.5424%" y="501" width="0.0268%" height="15" fill="rgb(235,66,46)" fg:x="459510" fg:w="346"/><text x="35.7924%" y="511.50"></text></g><g><title>prepare_to_wait_event (398 samples, 0.03%)</title><rect x="35.5391%" y="533" width="0.0308%" height="15" fill="rgb(232,148,31)" fg:x="459468" fg:w="398"/><text x="35.7891%" y="543.50"></text></g><g><title>queued_read_lock_slowpath (780 samples, 0.06%)</title><rect x="35.5699%" y="533" width="0.0603%" height="15" fill="rgb(217,149,8)" fg:x="459866" fg:w="780"/><text x="35.8199%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (492 samples, 0.04%)</title><rect x="35.5922%" y="517" width="0.0381%" height="15" fill="rgb(209,183,11)" fg:x="460154" fg:w="492"/><text x="35.8422%" y="527.50"></text></g><g><title>finish_task_switch (139 samples, 0.01%)</title><rect x="35.6420%" y="501" width="0.0108%" height="15" fill="rgb(208,55,20)" fg:x="460798" fg:w="139"/><text x="35.8920%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (1,784 samples, 0.14%)</title><rect x="35.5245%" y="549" width="0.1380%" height="15" fill="rgb(218,39,14)" fg:x="459279" fg:w="1784"/><text x="35.7745%" y="559.50"></text></g><g><title>schedule (417 samples, 0.03%)</title><rect x="35.6302%" y="533" width="0.0323%" height="15" fill="rgb(216,169,33)" fg:x="460646" fg:w="417"/><text x="35.8802%" y="543.50"></text></g><g><title>__schedule (408 samples, 0.03%)</title><rect x="35.6309%" y="517" width="0.0316%" height="15" fill="rgb(233,80,24)" fg:x="460655" fg:w="408"/><text x="35.8809%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (1,946 samples, 0.15%)</title><rect x="35.5236%" y="565" width="0.1505%" height="15" fill="rgb(213,179,31)" fg:x="459267" fg:w="1946"/><text x="35.7736%" y="575.50"></text></g><g><title>btrfs_root_node (150 samples, 0.01%)</title><rect x="35.6625%" y="549" width="0.0116%" height="15" fill="rgb(209,19,5)" fg:x="461063" fg:w="150"/><text x="35.9125%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (432 samples, 0.03%)</title><rect x="35.6741%" y="565" width="0.0334%" height="15" fill="rgb(219,18,35)" fg:x="461213" fg:w="432"/><text x="35.9241%" y="575.50"></text></g><g><title>schedule (347 samples, 0.03%)</title><rect x="35.6807%" y="549" width="0.0268%" height="15" fill="rgb(209,169,16)" fg:x="461298" fg:w="347"/><text x="35.9307%" y="559.50"></text></g><g><title>__schedule (344 samples, 0.03%)</title><rect x="35.6809%" y="533" width="0.0266%" height="15" fill="rgb(245,90,51)" fg:x="461301" fg:w="344"/><text x="35.9309%" y="543.50"></text></g><g><title>ttwu_do_activate (240 samples, 0.02%)</title><rect x="35.7264%" y="501" width="0.0186%" height="15" fill="rgb(220,99,45)" fg:x="461890" fg:w="240"/><text x="35.9764%" y="511.50"></text></g><g><title>__wake_up_common (524 samples, 0.04%)</title><rect x="35.7076%" y="549" width="0.0405%" height="15" fill="rgb(249,89,25)" fg:x="461646" fg:w="524"/><text x="35.9576%" y="559.50"></text></g><g><title>autoremove_wake_function (516 samples, 0.04%)</title><rect x="35.7082%" y="533" width="0.0399%" height="15" fill="rgb(239,193,0)" fg:x="461654" fg:w="516"/><text x="35.9582%" y="543.50"></text></g><g><title>try_to_wake_up (491 samples, 0.04%)</title><rect x="35.7101%" y="517" width="0.0380%" height="15" fill="rgb(231,126,1)" fg:x="461679" fg:w="491"/><text x="35.9601%" y="527.50"></text></g><g><title>__wake_up_common_lock (528 samples, 0.04%)</title><rect x="35.7075%" y="565" width="0.0408%" height="15" fill="rgb(243,166,3)" fg:x="461645" fg:w="528"/><text x="35.9575%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (133 samples, 0.01%)</title><rect x="35.7502%" y="565" width="0.0103%" height="15" fill="rgb(223,22,34)" fg:x="462197" fg:w="133"/><text x="36.0002%" y="575.50"></text></g><g><title>btrfs_tree_read_lock_atomic (642 samples, 0.05%)</title><rect x="35.7605%" y="565" width="0.0497%" height="15" fill="rgb(251,52,51)" fg:x="462330" fg:w="642"/><text x="36.0105%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (555 samples, 0.04%)</title><rect x="35.7672%" y="549" width="0.0429%" height="15" fill="rgb(221,165,28)" fg:x="462417" fg:w="555"/><text x="36.0172%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (552 samples, 0.04%)</title><rect x="35.8185%" y="565" width="0.0427%" height="15" fill="rgb(218,121,47)" fg:x="463080" fg:w="552"/><text x="36.0685%" y="575.50"></text></g><g><title>__radix_tree_lookup (289 samples, 0.02%)</title><rect x="35.8962%" y="533" width="0.0224%" height="15" fill="rgb(209,120,9)" fg:x="464085" fg:w="289"/><text x="36.1462%" y="543.50"></text></g><g><title>mark_extent_buffer_accessed (148 samples, 0.01%)</title><rect x="35.9187%" y="533" width="0.0114%" height="15" fill="rgb(236,68,12)" fg:x="464375" fg:w="148"/><text x="36.1687%" y="543.50"></text></g><g><title>find_extent_buffer (584 samples, 0.05%)</title><rect x="35.8852%" y="549" width="0.0452%" height="15" fill="rgb(225,194,26)" fg:x="463943" fg:w="584"/><text x="36.1352%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (970 samples, 0.08%)</title><rect x="35.8612%" y="565" width="0.0750%" height="15" fill="rgb(231,84,39)" fg:x="463632" fg:w="970"/><text x="36.1112%" y="575.50"></text></g><g><title>btrfs_search_slot (5,661 samples, 0.44%)</title><rect x="35.5053%" y="581" width="0.4379%" height="15" fill="rgb(210,11,45)" fg:x="459031" fg:w="5661"/><text x="35.7553%" y="591.50"></text></g><g><title>filldir64 (148 samples, 0.01%)</title><rect x="35.9487%" y="581" width="0.0114%" height="15" fill="rgb(224,54,52)" fg:x="464763" fg:w="148"/><text x="36.1987%" y="591.50"></text></g><g><title>btrfs_real_readdir (9,610 samples, 0.74%)</title><rect x="35.3026%" y="597" width="0.7433%" height="15" fill="rgb(238,102,14)" fg:x="456411" fg:w="9610"/><text x="35.5526%" y="607.50"></text></g><g><title>read_extent_buffer (837 samples, 0.06%)</title><rect x="35.9812%" y="581" width="0.0647%" height="15" fill="rgb(243,160,52)" fg:x="465184" fg:w="837"/><text x="36.2312%" y="591.50"></text></g><g><title>security_file_permission (180 samples, 0.01%)</title><rect x="36.0531%" y="597" width="0.0139%" height="15" fill="rgb(216,114,19)" fg:x="466113" fg:w="180"/><text x="36.3031%" y="607.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (164 samples, 0.01%)</title><rect x="36.1054%" y="533" width="0.0127%" height="15" fill="rgb(244,166,37)" fg:x="466790" fg:w="164"/><text x="36.3554%" y="543.50"></text></g><g><title>btrfs_block_rsv_add (360 samples, 0.03%)</title><rect x="36.1181%" y="533" width="0.0278%" height="15" fill="rgb(246,29,44)" fg:x="466954" fg:w="360"/><text x="36.3681%" y="543.50"></text></g><g><title>btrfs_reserve_metadata_bytes (307 samples, 0.02%)</title><rect x="36.1222%" y="517" width="0.0237%" height="15" fill="rgb(215,56,53)" fg:x="467007" fg:w="307"/><text x="36.3722%" y="527.50"></text></g><g><title>__reserve_bytes (270 samples, 0.02%)</title><rect x="36.1251%" y="501" width="0.0209%" height="15" fill="rgb(217,60,2)" fg:x="467044" fg:w="270"/><text x="36.3751%" y="511.50"></text></g><g><title>btrfs_delayed_update_inode (722 samples, 0.06%)</title><rect x="36.0994%" y="549" width="0.0558%" height="15" fill="rgb(207,26,24)" fg:x="466712" fg:w="722"/><text x="36.3494%" y="559.50"></text></g><g><title>btrfs_update_inode (812 samples, 0.06%)</title><rect x="36.0980%" y="565" width="0.0628%" height="15" fill="rgb(252,210,15)" fg:x="466694" fg:w="812"/><text x="36.3480%" y="575.50"></text></g><g><title>btrfs_dirty_inode (1,332 samples, 0.10%)</title><rect x="36.0832%" y="581" width="0.1030%" height="15" fill="rgb(253,209,26)" fg:x="466502" fg:w="1332"/><text x="36.3332%" y="591.50"></text></g><g><title>start_transaction (211 samples, 0.02%)</title><rect x="36.1699%" y="565" width="0.0163%" height="15" fill="rgb(238,170,14)" fg:x="467623" fg:w="211"/><text x="36.4199%" y="575.50"></text></g><g><title>touch_atime (1,586 samples, 0.12%)</title><rect x="36.0670%" y="597" width="0.1227%" height="15" fill="rgb(216,178,15)" fg:x="466293" fg:w="1586"/><text x="36.3170%" y="607.50"></text></g><g><title>iterate_dir (11,571 samples, 0.89%)</title><rect x="35.2972%" y="613" width="0.8950%" height="15" fill="rgb(250,197,2)" fg:x="456340" fg:w="11571"/><text x="35.5472%" y="623.50"></text></g><g><title>__x64_sys_getdents64 (11,801 samples, 0.91%)</title><rect x="35.2807%" y="629" width="0.9128%" height="15" fill="rgb(212,70,42)" fg:x="456127" fg:w="11801"/><text x="35.5307%" y="639.50"></text></g><g><title>do_syscall_64 (11,840 samples, 0.92%)</title><rect x="35.2784%" y="645" width="0.9158%" height="15" fill="rgb(227,213,9)" fg:x="456098" fg:w="11840"/><text x="35.5284%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (11,948 samples, 0.92%)</title><rect x="35.2772%" y="661" width="0.9242%" height="15" fill="rgb(245,99,25)" fg:x="456082" fg:w="11948"/><text x="35.5272%" y="671.50"></text></g><g><title>__GI___getdents64 (12,061 samples, 0.93%)</title><rect x="35.2707%" y="677" width="0.9329%" height="15" fill="rgb(250,82,29)" fg:x="455998" fg:w="12061"/><text x="35.5207%" y="687.50"></text></g><g><title>__GI___readdir64 (12,473 samples, 0.96%)</title><rect x="35.2394%" y="693" width="0.9648%" height="15" fill="rgb(241,226,54)" fg:x="455593" fg:w="12473"/><text x="35.4894%" y="703.50"></text></g><g><title>entry_SYSCALL_64 (659 samples, 0.05%)</title><rect x="36.2801%" y="677" width="0.0510%" height="15" fill="rgb(221,99,41)" fg:x="469048" fg:w="659"/><text x="36.5301%" y="687.50"></text></g><g><title>_copy_to_user (644 samples, 0.05%)</title><rect x="36.4144%" y="613" width="0.0498%" height="15" fill="rgb(213,90,21)" fg:x="470784" fg:w="644"/><text x="36.6644%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (562 samples, 0.04%)</title><rect x="36.4207%" y="597" width="0.0435%" height="15" fill="rgb(205,208,24)" fg:x="470866" fg:w="562"/><text x="36.6707%" y="607.50"></text></g><g><title>from_kgid_munged (141 samples, 0.01%)</title><rect x="36.4643%" y="613" width="0.0109%" height="15" fill="rgb(246,31,12)" fg:x="471429" fg:w="141"/><text x="36.7143%" y="623.50"></text></g><g><title>cp_new_stat (1,309 samples, 0.10%)</title><rect x="36.3872%" y="629" width="0.1012%" height="15" fill="rgb(213,154,6)" fg:x="470432" fg:w="1309"/><text x="36.6372%" y="639.50"></text></g><g><title>from_kuid_munged (171 samples, 0.01%)</title><rect x="36.4752%" y="613" width="0.0132%" height="15" fill="rgb(222,163,29)" fg:x="471570" fg:w="171"/><text x="36.7252%" y="623.50"></text></g><g><title>map_id_up (143 samples, 0.01%)</title><rect x="36.4773%" y="597" width="0.0111%" height="15" fill="rgb(227,201,8)" fg:x="471598" fg:w="143"/><text x="36.7273%" y="607.50"></text></g><g><title>_raw_spin_lock (191 samples, 0.01%)</title><rect x="36.5948%" y="597" width="0.0148%" height="15" fill="rgb(233,9,32)" fg:x="473116" fg:w="191"/><text x="36.8448%" y="607.50"></text></g><g><title>generic_fillattr (182 samples, 0.01%)</title><rect x="36.6099%" y="597" width="0.0141%" height="15" fill="rgb(217,54,24)" fg:x="473312" fg:w="182"/><text x="36.8599%" y="607.50"></text></g><g><title>btrfs_getattr (1,642 samples, 0.13%)</title><rect x="36.5174%" y="613" width="0.1270%" height="15" fill="rgb(235,192,0)" fg:x="472116" fg:w="1642"/><text x="36.7674%" y="623.50"></text></g><g><title>inode_get_bytes (264 samples, 0.02%)</title><rect x="36.6240%" y="597" width="0.0204%" height="15" fill="rgb(235,45,9)" fg:x="473494" fg:w="264"/><text x="36.8740%" y="607.50"></text></g><g><title>_raw_spin_lock (226 samples, 0.02%)</title><rect x="36.6269%" y="581" width="0.0175%" height="15" fill="rgb(246,42,40)" fg:x="473532" fg:w="226"/><text x="36.8769%" y="591.50"></text></g><g><title>kmem_cache_free (1,154 samples, 0.09%)</title><rect x="36.6867%" y="597" width="0.0893%" height="15" fill="rgb(248,111,24)" fg:x="474305" fg:w="1154"/><text x="36.9367%" y="607.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (230 samples, 0.02%)</title><rect x="36.7582%" y="581" width="0.0178%" height="15" fill="rgb(249,65,22)" fg:x="475229" fg:w="230"/><text x="37.0082%" y="591.50"></text></g><g><title>__legitimize_mnt (398 samples, 0.03%)</title><rect x="36.8132%" y="533" width="0.0308%" height="15" fill="rgb(238,111,51)" fg:x="475940" fg:w="398"/><text x="37.0632%" y="543.50"></text></g><g><title>__legitimize_path (718 samples, 0.06%)</title><rect x="36.8089%" y="549" width="0.0555%" height="15" fill="rgb(250,118,22)" fg:x="475885" fg:w="718"/><text x="37.0589%" y="559.50"></text></g><g><title>lockref_get_not_dead (265 samples, 0.02%)</title><rect x="36.8440%" y="533" width="0.0205%" height="15" fill="rgb(234,84,26)" fg:x="476338" fg:w="265"/><text x="37.0940%" y="543.50"></text></g><g><title>complete_walk (929 samples, 0.07%)</title><rect x="36.7996%" y="581" width="0.0719%" height="15" fill="rgb(243,172,12)" fg:x="475765" fg:w="929"/><text x="37.0496%" y="591.50"></text></g><g><title>try_to_unlazy (902 samples, 0.07%)</title><rect x="36.8017%" y="565" width="0.0698%" height="15" fill="rgb(236,150,49)" fg:x="475792" fg:w="902"/><text x="37.0517%" y="575.50"></text></g><g><title>btrfs_permission (465 samples, 0.04%)</title><rect x="38.3001%" y="549" width="0.0360%" height="15" fill="rgb(225,197,26)" fg:x="495163" fg:w="465"/><text x="38.5501%" y="559.50"></text></g><g><title>inode_permission.part.0 (10,480 samples, 0.81%)</title><rect x="37.7168%" y="565" width="0.8106%" height="15" fill="rgb(214,17,42)" fg:x="487622" fg:w="10480"/><text x="37.9668%" y="575.50"></text></g><g><title>generic_permission (2,474 samples, 0.19%)</title><rect x="38.3360%" y="549" width="0.1914%" height="15" fill="rgb(224,165,40)" fg:x="495628" fg:w="2474"/><text x="38.5860%" y="559.50"></text></g><g><title>security_inode_permission (1,142 samples, 0.09%)</title><rect x="38.5274%" y="565" width="0.0883%" height="15" fill="rgb(246,100,4)" fg:x="498102" fg:w="1142"/><text x="38.7774%" y="575.50"></text></g><g><title>__d_lookup_rcu (14,199 samples, 1.10%)</title><rect x="39.1739%" y="533" width="1.0983%" height="15" fill="rgb(222,103,0)" fg:x="506461" fg:w="14199"/><text x="39.4239%" y="543.50"></text></g><g><title>lookup_fast (17,603 samples, 1.36%)</title><rect x="38.9118%" y="549" width="1.3616%" height="15" fill="rgb(227,189,26)" fg:x="503072" fg:w="17603"/><text x="39.1618%" y="559.50"></text></g><g><title>page_put_link (473 samples, 0.04%)</title><rect x="40.2734%" y="549" width="0.0366%" height="15" fill="rgb(214,202,17)" fg:x="520675" fg:w="473"/><text x="40.5234%" y="559.50"></text></g><g><title>__lookup_mnt (497 samples, 0.04%)</title><rect x="40.6445%" y="533" width="0.0384%" height="15" fill="rgb(229,111,3)" fg:x="525473" fg:w="497"/><text x="40.8945%" y="543.50"></text></g><g><title>atime_needs_update (424 samples, 0.03%)</title><rect x="40.6850%" y="533" width="0.0328%" height="15" fill="rgb(229,172,15)" fg:x="525997" fg:w="424"/><text x="40.9350%" y="543.50"></text></g><g><title>current_time (249 samples, 0.02%)</title><rect x="40.6985%" y="517" width="0.0193%" height="15" fill="rgb(230,224,35)" fg:x="526172" fg:w="249"/><text x="40.9485%" y="527.50"></text></g><g><title>page_get_link (1,632 samples, 0.13%)</title><rect x="40.7261%" y="533" width="0.1262%" height="15" fill="rgb(251,141,6)" fg:x="526528" fg:w="1632"/><text x="40.9761%" y="543.50"></text></g><g><title>pagecache_get_page (1,475 samples, 0.11%)</title><rect x="40.7382%" y="517" width="0.1141%" height="15" fill="rgb(225,208,6)" fg:x="526685" fg:w="1475"/><text x="40.9882%" y="527.50"></text></g><g><title>find_get_entry (1,311 samples, 0.10%)</title><rect x="40.7509%" y="501" width="0.1014%" height="15" fill="rgb(246,181,16)" fg:x="526849" fg:w="1311"/><text x="41.0009%" y="511.50"></text></g><g><title>xas_load (207 samples, 0.02%)</title><rect x="40.8363%" y="485" width="0.0160%" height="15" fill="rgb(227,129,36)" fg:x="527953" fg:w="207"/><text x="41.0863%" y="495.50"></text></g><g><title>xas_start (193 samples, 0.01%)</title><rect x="40.8374%" y="469" width="0.0149%" height="15" fill="rgb(248,117,24)" fg:x="527967" fg:w="193"/><text x="41.0874%" y="479.50"></text></g><g><title>link_path_walk.part.0 (51,509 samples, 3.98%)</title><rect x="36.8715%" y="581" width="3.9841%" height="15" fill="rgb(214,185,35)" fg:x="476694" fg:w="51509"/><text x="37.1215%" y="591.50">link..</text></g><g><title>walk_component (28,959 samples, 2.24%)</title><rect x="38.6157%" y="565" width="2.2399%" height="15" fill="rgb(236,150,34)" fg:x="499244" fg:w="28959"/><text x="38.8657%" y="575.50">w..</text></g><g><title>step_into (7,055 samples, 0.55%)</title><rect x="40.3100%" y="549" width="0.5457%" height="15" fill="rgb(243,228,27)" fg:x="521148" fg:w="7055"/><text x="40.5600%" y="559.50"></text></g><g><title>path_init (1,251 samples, 0.10%)</title><rect x="40.8556%" y="581" width="0.0968%" height="15" fill="rgb(245,77,44)" fg:x="528203" fg:w="1251"/><text x="41.1056%" y="591.50"></text></g><g><title>nd_jump_root (889 samples, 0.07%)</title><rect x="40.8836%" y="565" width="0.0688%" height="15" fill="rgb(235,214,42)" fg:x="528565" fg:w="889"/><text x="41.1336%" y="575.50"></text></g><g><title>set_root (706 samples, 0.05%)</title><rect x="40.8978%" y="549" width="0.0546%" height="15" fill="rgb(221,74,3)" fg:x="528748" fg:w="706"/><text x="41.1478%" y="559.50"></text></g><g><title>dput (867 samples, 0.07%)</title><rect x="40.9649%" y="565" width="0.0671%" height="15" fill="rgb(206,121,29)" fg:x="529616" fg:w="867"/><text x="41.2149%" y="575.50"></text></g><g><title>lockref_put_or_lock (734 samples, 0.06%)</title><rect x="40.9752%" y="549" width="0.0568%" height="15" fill="rgb(249,131,53)" fg:x="529749" fg:w="734"/><text x="41.2252%" y="559.50"></text></g><g><title>terminate_walk (1,229 samples, 0.10%)</title><rect x="40.9524%" y="581" width="0.0951%" height="15" fill="rgb(236,170,29)" fg:x="529454" fg:w="1229"/><text x="41.2024%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (241 samples, 0.02%)</title><rect x="41.1278%" y="485" width="0.0186%" height="15" fill="rgb(247,96,15)" fg:x="531721" fg:w="241"/><text x="41.3778%" y="495.50"></text></g><g><title>_raw_spin_lock (300 samples, 0.02%)</title><rect x="41.2026%" y="469" width="0.0232%" height="15" fill="rgb(211,210,7)" fg:x="532689" fg:w="300"/><text x="41.4526%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (989 samples, 0.08%)</title><rect x="41.1496%" y="485" width="0.0765%" height="15" fill="rgb(240,88,50)" fg:x="532004" fg:w="989"/><text x="41.3996%" y="495.50"></text></g><g><title>btrfs_free_path (1,743 samples, 0.13%)</title><rect x="41.1092%" y="517" width="0.1348%" height="15" fill="rgb(209,229,26)" fg:x="531481" fg:w="1743"/><text x="41.3592%" y="527.50"></text></g><g><title>btrfs_release_path (1,649 samples, 0.13%)</title><rect x="41.1165%" y="501" width="0.1275%" height="15" fill="rgb(210,68,23)" fg:x="531575" fg:w="1649"/><text x="41.3665%" y="511.50"></text></g><g><title>release_extent_buffer (230 samples, 0.02%)</title><rect x="41.2262%" y="485" width="0.0178%" height="15" fill="rgb(229,180,13)" fg:x="532994" fg:w="230"/><text x="41.4762%" y="495.50"></text></g><g><title>_raw_read_lock (228 samples, 0.02%)</title><rect x="41.3843%" y="453" width="0.0176%" height="15" fill="rgb(236,53,44)" fg:x="535038" fg:w="228"/><text x="41.6343%" y="463.50"></text></g><g><title>finish_wait (516 samples, 0.04%)</title><rect x="41.4028%" y="453" width="0.0399%" height="15" fill="rgb(244,214,29)" fg:x="535277" fg:w="516"/><text x="41.6528%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (490 samples, 0.04%)</title><rect x="41.4048%" y="437" width="0.0379%" height="15" fill="rgb(220,75,29)" fg:x="535303" fg:w="490"/><text x="41.6548%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (461 samples, 0.04%)</title><rect x="41.4071%" y="421" width="0.0357%" height="15" fill="rgb(214,183,37)" fg:x="535332" fg:w="461"/><text x="41.6571%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (1,337 samples, 0.10%)</title><rect x="41.4532%" y="437" width="0.1034%" height="15" fill="rgb(239,117,29)" fg:x="535928" fg:w="1337"/><text x="41.7032%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,256 samples, 0.10%)</title><rect x="41.4594%" y="421" width="0.0971%" height="15" fill="rgb(237,171,35)" fg:x="536009" fg:w="1256"/><text x="41.7094%" y="431.50"></text></g><g><title>prepare_to_wait_event (1,503 samples, 0.12%)</title><rect x="41.4429%" y="453" width="0.1163%" height="15" fill="rgb(229,178,53)" fg:x="535795" fg:w="1503"/><text x="41.6929%" y="463.50"></text></g><g><title>queued_read_lock_slowpath (2,988 samples, 0.23%)</title><rect x="41.5591%" y="453" width="0.2311%" height="15" fill="rgb(210,102,19)" fg:x="537298" fg:w="2988"/><text x="41.8091%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,026 samples, 0.16%)</title><rect x="41.6335%" y="437" width="0.1567%" height="15" fill="rgb(235,127,22)" fg:x="538260" fg:w="2026"/><text x="41.8835%" y="447.50"></text></g><g><title>dequeue_entity (316 samples, 0.02%)</title><rect x="41.8121%" y="405" width="0.0244%" height="15" fill="rgb(244,31,31)" fg:x="540569" fg:w="316"/><text x="42.0621%" y="415.50"></text></g><g><title>dequeue_task_fair (384 samples, 0.03%)</title><rect x="41.8082%" y="421" width="0.0297%" height="15" fill="rgb(231,43,21)" fg:x="540518" fg:w="384"/><text x="42.0582%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (980 samples, 0.08%)</title><rect x="41.8434%" y="405" width="0.0758%" height="15" fill="rgb(217,131,35)" fg:x="540973" fg:w="980"/><text x="42.0934%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (940 samples, 0.07%)</title><rect x="41.8465%" y="389" width="0.0727%" height="15" fill="rgb(221,149,4)" fg:x="541013" fg:w="940"/><text x="42.0965%" y="399.50"></text></g><g><title>native_write_msr (923 samples, 0.07%)</title><rect x="41.8478%" y="373" width="0.0714%" height="15" fill="rgb(232,170,28)" fg:x="541030" fg:w="923"/><text x="42.0978%" y="383.50"></text></g><g><title>finish_task_switch (1,096 samples, 0.08%)</title><rect x="41.8379%" y="421" width="0.0848%" height="15" fill="rgb(238,56,10)" fg:x="540902" fg:w="1096"/><text x="42.0879%" y="431.50"></text></g><g><title>psi_task_change (306 samples, 0.02%)</title><rect x="41.9364%" y="421" width="0.0237%" height="15" fill="rgb(235,196,14)" fg:x="542176" fg:w="306"/><text x="42.1864%" y="431.50"></text></g><g><title>psi_group_change (247 samples, 0.02%)</title><rect x="41.9410%" y="405" width="0.0191%" height="15" fill="rgb(216,45,48)" fg:x="542235" fg:w="247"/><text x="42.1910%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (7,733 samples, 0.60%)</title><rect x="41.3705%" y="469" width="0.5981%" height="15" fill="rgb(238,213,17)" fg:x="534859" fg:w="7733"/><text x="41.6205%" y="479.50"></text></g><g><title>schedule (2,306 samples, 0.18%)</title><rect x="41.7902%" y="453" width="0.1784%" height="15" fill="rgb(212,13,2)" fg:x="540286" fg:w="2306"/><text x="42.0402%" y="463.50"></text></g><g><title>__schedule (2,283 samples, 0.18%)</title><rect x="41.7920%" y="437" width="0.1766%" height="15" fill="rgb(240,114,20)" fg:x="540309" fg:w="2283"/><text x="42.0420%" y="447.50"></text></g><g><title>btrfs_root_node (991 samples, 0.08%)</title><rect x="41.9686%" y="469" width="0.0767%" height="15" fill="rgb(228,41,40)" fg:x="542592" fg:w="991"/><text x="42.2186%" y="479.50"></text></g><g><title>__btrfs_read_lock_root_node (8,808 samples, 0.68%)</title><rect x="41.3641%" y="485" width="0.6813%" height="15" fill="rgb(244,132,35)" fg:x="534776" fg:w="8808"/><text x="41.6141%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (258 samples, 0.02%)</title><rect x="42.0625%" y="453" width="0.0200%" height="15" fill="rgb(253,189,4)" fg:x="543806" fg:w="258"/><text x="42.3125%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (194 samples, 0.02%)</title><rect x="42.0675%" y="437" width="0.0150%" height="15" fill="rgb(224,37,19)" fg:x="543870" fg:w="194"/><text x="42.3175%" y="447.50"></text></g><g><title>prepare_to_wait_event (343 samples, 0.03%)</title><rect x="42.0576%" y="469" width="0.0265%" height="15" fill="rgb(235,223,18)" fg:x="543743" fg:w="343"/><text x="42.3076%" y="479.50"></text></g><g><title>queued_read_lock_slowpath (147 samples, 0.01%)</title><rect x="42.0842%" y="469" width="0.0114%" height="15" fill="rgb(235,163,25)" fg:x="544086" fg:w="147"/><text x="42.3342%" y="479.50"></text></g><g><title>dequeue_entity (281 samples, 0.02%)</title><rect x="42.1145%" y="421" width="0.0217%" height="15" fill="rgb(217,145,28)" fg:x="544478" fg:w="281"/><text x="42.3645%" y="431.50"></text></g><g><title>dequeue_task_fair (345 samples, 0.03%)</title><rect x="42.1116%" y="437" width="0.0267%" height="15" fill="rgb(223,223,32)" fg:x="544441" fg:w="345"/><text x="42.3616%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (1,378 samples, 0.11%)</title><rect x="42.1426%" y="421" width="0.1066%" height="15" fill="rgb(227,189,39)" fg:x="544842" fg:w="1378"/><text x="42.3926%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,337 samples, 0.10%)</title><rect x="42.1458%" y="405" width="0.1034%" height="15" fill="rgb(248,10,22)" fg:x="544883" fg:w="1337"/><text x="42.3958%" y="415.50"></text></g><g><title>native_write_msr (1,312 samples, 0.10%)</title><rect x="42.1477%" y="389" width="0.1015%" height="15" fill="rgb(248,46,39)" fg:x="544908" fg:w="1312"/><text x="42.3977%" y="399.50"></text></g><g><title>finish_task_switch (1,482 samples, 0.11%)</title><rect x="42.1383%" y="437" width="0.1146%" height="15" fill="rgb(248,113,48)" fg:x="544786" fg:w="1482"/><text x="42.3883%" y="447.50"></text></g><g><title>psi_task_change (259 samples, 0.02%)</title><rect x="42.2645%" y="437" width="0.0200%" height="15" fill="rgb(245,16,25)" fg:x="546418" fg:w="259"/><text x="42.5145%" y="447.50"></text></g><g><title>psi_group_change (198 samples, 0.02%)</title><rect x="42.2693%" y="421" width="0.0153%" height="15" fill="rgb(249,152,16)" fg:x="546479" fg:w="198"/><text x="42.5193%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (3,184 samples, 0.25%)</title><rect x="42.0453%" y="485" width="0.2463%" height="15" fill="rgb(250,16,1)" fg:x="543584" fg:w="3184"/><text x="42.2953%" y="495.50"></text></g><g><title>schedule (2,535 samples, 0.20%)</title><rect x="42.0955%" y="469" width="0.1961%" height="15" fill="rgb(249,138,3)" fg:x="544233" fg:w="2535"/><text x="42.3455%" y="479.50"></text></g><g><title>__schedule (2,517 samples, 0.19%)</title><rect x="42.0969%" y="453" width="0.1947%" height="15" fill="rgb(227,71,41)" fg:x="544251" fg:w="2517"/><text x="42.3469%" y="463.50"></text></g><g><title>select_task_rq_fair (172 samples, 0.01%)</title><rect x="42.3055%" y="421" width="0.0133%" height="15" fill="rgb(209,184,23)" fg:x="546947" fg:w="172"/><text x="42.5555%" y="431.50"></text></g><g><title>enqueue_task_fair (177 samples, 0.01%)</title><rect x="42.3214%" y="405" width="0.0137%" height="15" fill="rgb(223,215,31)" fg:x="547153" fg:w="177"/><text x="42.5714%" y="415.50"></text></g><g><title>ttwu_do_activate (358 samples, 0.03%)</title><rect x="42.3200%" y="421" width="0.0277%" height="15" fill="rgb(210,146,28)" fg:x="547135" fg:w="358"/><text x="42.5700%" y="431.50"></text></g><g><title>psi_task_change (161 samples, 0.01%)</title><rect x="42.3352%" y="405" width="0.0125%" height="15" fill="rgb(209,183,41)" fg:x="547332" fg:w="161"/><text x="42.5852%" y="415.50"></text></g><g><title>psi_group_change (143 samples, 0.01%)</title><rect x="42.3366%" y="389" width="0.0111%" height="15" fill="rgb(209,224,45)" fg:x="547350" fg:w="143"/><text x="42.5866%" y="399.50"></text></g><g><title>__wake_up_common (805 samples, 0.06%)</title><rect x="42.2918%" y="469" width="0.0623%" height="15" fill="rgb(224,209,51)" fg:x="546770" fg:w="805"/><text x="42.5418%" y="479.50"></text></g><g><title>autoremove_wake_function (787 samples, 0.06%)</title><rect x="42.2932%" y="453" width="0.0609%" height="15" fill="rgb(223,17,39)" fg:x="546788" fg:w="787"/><text x="42.5432%" y="463.50"></text></g><g><title>try_to_wake_up (760 samples, 0.06%)</title><rect x="42.2953%" y="437" width="0.0588%" height="15" fill="rgb(234,204,37)" fg:x="546815" fg:w="760"/><text x="42.5453%" y="447.50"></text></g><g><title>__wake_up_common_lock (818 samples, 0.06%)</title><rect x="42.2918%" y="485" width="0.0633%" height="15" fill="rgb(236,120,5)" fg:x="546770" fg:w="818"/><text x="42.5418%" y="495.50"></text></g><g><title>btrfs_set_path_blocking (758 samples, 0.06%)</title><rect x="42.3639%" y="485" width="0.0586%" height="15" fill="rgb(248,97,27)" fg:x="547702" fg:w="758"/><text x="42.6139%" y="495.50"></text></g><g><title>btrfs_set_lock_blocking_read (407 samples, 0.03%)</title><rect x="42.3910%" y="469" width="0.0315%" height="15" fill="rgb(240,66,17)" fg:x="548053" fg:w="407"/><text x="42.6410%" y="479.50"></text></g><g><title>_raw_read_lock (345 samples, 0.03%)</title><rect x="42.4379%" y="469" width="0.0267%" height="15" fill="rgb(210,79,3)" fg:x="548659" fg:w="345"/><text x="42.6879%" y="479.50"></text></g><g><title>btrfs_tree_read_lock_atomic (1,609 samples, 0.12%)</title><rect x="42.4225%" y="485" width="0.1245%" height="15" fill="rgb(214,176,27)" fg:x="548460" fg:w="1609"/><text x="42.6725%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (1,064 samples, 0.08%)</title><rect x="42.4646%" y="469" width="0.0823%" height="15" fill="rgb(235,185,3)" fg:x="549005" fg:w="1064"/><text x="42.7146%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (259 samples, 0.02%)</title><rect x="42.5269%" y="453" width="0.0200%" height="15" fill="rgb(227,24,12)" fg:x="549810" fg:w="259"/><text x="42.7769%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (553 samples, 0.04%)</title><rect x="42.5469%" y="485" width="0.0428%" height="15" fill="rgb(252,169,48)" fg:x="550069" fg:w="553"/><text x="42.7969%" y="495.50"></text></g><g><title>generic_bin_search.constprop.0 (3,073 samples, 0.24%)</title><rect x="42.5949%" y="485" width="0.2377%" height="15" fill="rgb(212,65,1)" fg:x="550689" fg:w="3073"/><text x="42.8449%" y="495.50"></text></g><g><title>btrfs_buffer_uptodate (439 samples, 0.03%)</title><rect x="42.8720%" y="469" width="0.0340%" height="15" fill="rgb(242,39,24)" fg:x="554272" fg:w="439"/><text x="43.1220%" y="479.50"></text></g><g><title>verify_parent_transid (306 samples, 0.02%)</title><rect x="42.8823%" y="453" width="0.0237%" height="15" fill="rgb(249,32,23)" fg:x="554405" fg:w="306"/><text x="43.1323%" y="463.50"></text></g><g><title>btrfs_get_64 (546 samples, 0.04%)</title><rect x="42.9060%" y="469" width="0.0422%" height="15" fill="rgb(251,195,23)" fg:x="554711" fg:w="546"/><text x="43.1560%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (140 samples, 0.01%)</title><rect x="42.9374%" y="453" width="0.0108%" height="15" fill="rgb(236,174,8)" fg:x="555117" fg:w="140"/><text x="43.1874%" y="463.50"></text></g><g><title>btrfs_verify_level_key (198 samples, 0.02%)</title><rect x="42.9551%" y="469" width="0.0153%" height="15" fill="rgb(220,197,8)" fg:x="555346" fg:w="198"/><text x="43.2051%" y="479.50"></text></g><g><title>__radix_tree_lookup (1,962 samples, 0.15%)</title><rect x="43.0479%" y="453" width="0.1518%" height="15" fill="rgb(240,108,37)" fg:x="556545" fg:w="1962"/><text x="43.2979%" y="463.50"></text></g><g><title>mark_page_accessed (619 samples, 0.05%)</title><rect x="43.2172%" y="437" width="0.0479%" height="15" fill="rgb(232,176,24)" fg:x="558734" fg:w="619"/><text x="43.4672%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (844 samples, 0.07%)</title><rect x="43.1999%" y="453" width="0.0653%" height="15" fill="rgb(243,35,29)" fg:x="558511" fg:w="844"/><text x="43.4499%" y="463.50"></text></g><g><title>find_extent_buffer (3,841 samples, 0.30%)</title><rect x="42.9704%" y="469" width="0.2971%" height="15" fill="rgb(210,37,18)" fg:x="555544" fg:w="3841"/><text x="43.2204%" y="479.50"></text></g><g><title>read_block_for_search.isra.0 (6,220 samples, 0.48%)</title><rect x="42.8326%" y="485" width="0.4811%" height="15" fill="rgb(224,184,40)" fg:x="553762" fg:w="6220"/><text x="43.0826%" y="495.50"></text></g><g><title>read_extent_buffer (597 samples, 0.05%)</title><rect x="43.2675%" y="469" width="0.0462%" height="15" fill="rgb(236,39,29)" fg:x="559385" fg:w="597"/><text x="43.5175%" y="479.50"></text></g><g><title>btrfs_search_slot (27,043 samples, 2.09%)</title><rect x="41.2593%" y="501" width="2.0917%" height="15" fill="rgb(232,48,39)" fg:x="533422" fg:w="27043"/><text x="41.5093%" y="511.50">b..</text></g><g><title>unlock_up (483 samples, 0.04%)</title><rect x="43.3137%" y="485" width="0.0374%" height="15" fill="rgb(236,34,42)" fg:x="559982" fg:w="483"/><text x="43.5637%" y="495.50"></text></g><g><title>btrfs_lookup_dir_item (27,880 samples, 2.16%)</title><rect x="41.2440%" y="517" width="2.1565%" height="15" fill="rgb(243,106,37)" fg:x="533224" fg:w="27880"/><text x="41.4940%" y="527.50">b..</text></g><g><title>crc32c (639 samples, 0.05%)</title><rect x="43.3511%" y="501" width="0.0494%" height="15" fill="rgb(218,96,6)" fg:x="560465" fg:w="639"/><text x="43.6011%" y="511.50"></text></g><g><title>crypto_shash_update (334 samples, 0.03%)</title><rect x="43.3746%" y="485" width="0.0258%" height="15" fill="rgb(235,130,12)" fg:x="560770" fg:w="334"/><text x="43.6246%" y="495.50"></text></g><g><title>kmem_cache_alloc (638 samples, 0.05%)</title><rect x="43.4005%" y="517" width="0.0493%" height="15" fill="rgb(231,95,0)" fg:x="561104" fg:w="638"/><text x="43.6505%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (139 samples, 0.01%)</title><rect x="43.4391%" y="501" width="0.0108%" height="15" fill="rgb(228,12,23)" fg:x="561603" fg:w="139"/><text x="43.6891%" y="511.50"></text></g><g><title>btrfs_lookup (31,143 samples, 2.41%)</title><rect x="41.0731%" y="549" width="2.4089%" height="15" fill="rgb(216,12,1)" fg:x="531014" fg:w="31143"/><text x="41.3231%" y="559.50">bt..</text></g><g><title>btrfs_lookup_dentry (31,072 samples, 2.40%)</title><rect x="41.0786%" y="533" width="2.4034%" height="15" fill="rgb(219,59,3)" fg:x="531085" fg:w="31072"/><text x="41.3286%" y="543.50">bt..</text></g><g><title>kmem_cache_free (415 samples, 0.03%)</title><rect x="43.4498%" y="517" width="0.0321%" height="15" fill="rgb(215,208,46)" fg:x="561742" fg:w="415"/><text x="43.6998%" y="527.50"></text></g><g><title>d_set_d_op (240 samples, 0.02%)</title><rect x="43.5779%" y="501" width="0.0186%" height="15" fill="rgb(254,224,29)" fg:x="563398" fg:w="240"/><text x="43.8279%" y="511.50"></text></g><g><title>allocate_slab (210 samples, 0.02%)</title><rect x="43.6522%" y="453" width="0.0162%" height="15" fill="rgb(232,14,29)" fg:x="564358" fg:w="210"/><text x="43.9022%" y="463.50"></text></g><g><title>___slab_alloc (511 samples, 0.04%)</title><rect x="43.6338%" y="469" width="0.0395%" height="15" fill="rgb(208,45,52)" fg:x="564120" fg:w="511"/><text x="43.8838%" y="479.50"></text></g><g><title>__slab_alloc (556 samples, 0.04%)</title><rect x="43.6304%" y="485" width="0.0430%" height="15" fill="rgb(234,191,28)" fg:x="564077" fg:w="556"/><text x="43.8804%" y="495.50"></text></g><g><title>__mod_memcg_lruvec_state (265 samples, 0.02%)</title><rect x="43.7432%" y="469" width="0.0205%" height="15" fill="rgb(244,67,43)" fg:x="565535" fg:w="265"/><text x="43.9932%" y="479.50"></text></g><g><title>__mod_memcg_state.part.0 (223 samples, 0.02%)</title><rect x="43.7465%" y="453" width="0.0172%" height="15" fill="rgb(236,189,24)" fg:x="565577" fg:w="223"/><text x="43.9965%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,232 samples, 0.10%)</title><rect x="43.6738%" y="485" width="0.0953%" height="15" fill="rgb(239,214,33)" fg:x="564638" fg:w="1232"/><text x="43.9238%" y="495.50"></text></g><g><title>get_obj_cgroup_from_current (923 samples, 0.07%)</title><rect x="43.7950%" y="469" width="0.0714%" height="15" fill="rgb(226,176,41)" fg:x="566205" fg:w="923"/><text x="44.0450%" y="479.50"></text></g><g><title>obj_cgroup_charge (363 samples, 0.03%)</title><rect x="43.8664%" y="469" width="0.0281%" height="15" fill="rgb(248,47,8)" fg:x="567128" fg:w="363"/><text x="44.1164%" y="479.50"></text></g><g><title>kmem_cache_alloc (3,862 samples, 0.30%)</title><rect x="43.5965%" y="501" width="0.2987%" height="15" fill="rgb(218,81,44)" fg:x="563638" fg:w="3862"/><text x="43.8465%" y="511.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,527 samples, 0.12%)</title><rect x="43.7771%" y="485" width="0.1181%" height="15" fill="rgb(213,98,6)" fg:x="565973" fg:w="1527"/><text x="44.0271%" y="495.50"></text></g><g><title>__d_alloc (4,544 samples, 0.35%)</title><rect x="43.5531%" y="517" width="0.3515%" height="15" fill="rgb(222,85,22)" fg:x="563077" fg:w="4544"/><text x="43.8031%" y="527.50"></text></g><g><title>__list_add_valid (139 samples, 0.01%)</title><rect x="43.9046%" y="517" width="0.0108%" height="15" fill="rgb(239,46,39)" fg:x="567621" fg:w="139"/><text x="44.1546%" y="527.50"></text></g><g><title>d_alloc (4,994 samples, 0.39%)</title><rect x="43.5396%" y="533" width="0.3863%" height="15" fill="rgb(237,12,29)" fg:x="562902" fg:w="4994"/><text x="43.7896%" y="543.50"></text></g><g><title>_raw_spin_lock (136 samples, 0.01%)</title><rect x="43.9153%" y="517" width="0.0105%" height="15" fill="rgb(214,77,8)" fg:x="567760" fg:w="136"/><text x="44.1653%" y="527.50"></text></g><g><title>d_alloc_parallel (5,748 samples, 0.44%)</title><rect x="43.4819%" y="549" width="0.4446%" height="15" fill="rgb(217,168,37)" fg:x="562157" fg:w="5748"/><text x="43.7319%" y="559.50"></text></g><g><title>__wake_up_common (140 samples, 0.01%)</title><rect x="43.9847%" y="485" width="0.0108%" height="15" fill="rgb(221,217,23)" fg:x="568657" fg:w="140"/><text x="44.2347%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (188 samples, 0.01%)</title><rect x="43.9955%" y="485" width="0.0145%" height="15" fill="rgb(243,229,36)" fg:x="568797" fg:w="188"/><text x="44.2455%" y="495.50"></text></g><g><title>__wake_up_common_lock (617 samples, 0.05%)</title><rect x="43.9751%" y="501" width="0.0477%" height="15" fill="rgb(251,163,40)" fg:x="568533" fg:w="617"/><text x="44.2251%" y="511.50"></text></g><g><title>_raw_spin_unlock_irqrestore (165 samples, 0.01%)</title><rect x="44.0101%" y="485" width="0.0128%" height="15" fill="rgb(237,222,12)" fg:x="568985" fg:w="165"/><text x="44.2601%" y="495.50"></text></g><g><title>__d_lookup_done (851 samples, 0.07%)</title><rect x="43.9571%" y="517" width="0.0658%" height="15" fill="rgb(248,132,6)" fg:x="568300" fg:w="851"/><text x="44.2071%" y="527.50"></text></g><g><title>__d_rehash (281 samples, 0.02%)</title><rect x="44.0229%" y="517" width="0.0217%" height="15" fill="rgb(227,167,50)" fg:x="569151" fg:w="281"/><text x="44.2729%" y="527.50"></text></g><g><title>_raw_spin_lock (134 samples, 0.01%)</title><rect x="44.0446%" y="517" width="0.0104%" height="15" fill="rgb(242,84,37)" fg:x="569432" fg:w="134"/><text x="44.2946%" y="527.50"></text></g><g><title>__d_add (1,550 samples, 0.12%)</title><rect x="43.9353%" y="533" width="0.1199%" height="15" fill="rgb(212,4,50)" fg:x="568018" fg:w="1550"/><text x="44.1853%" y="543.50"></text></g><g><title>__lookup_slow (38,652 samples, 2.99%)</title><rect x="41.0657%" y="565" width="2.9897%" height="15" fill="rgb(230,228,32)" fg:x="530919" fg:w="38652"/><text x="41.3157%" y="575.50">__l..</text></g><g><title>d_splice_alias (1,666 samples, 0.13%)</title><rect x="43.9265%" y="549" width="0.1289%" height="15" fill="rgb(248,217,23)" fg:x="567905" fg:w="1666"/><text x="44.1765%" y="559.50"></text></g><g><title>down_read (190 samples, 0.01%)</title><rect x="44.0555%" y="565" width="0.0147%" height="15" fill="rgb(238,197,32)" fg:x="569573" fg:w="190"/><text x="44.3055%" y="575.50"></text></g><g><title>__d_lookup_rcu (2,657 samples, 0.21%)</title><rect x="44.0846%" y="549" width="0.2055%" height="15" fill="rgb(236,106,1)" fg:x="569948" fg:w="2657"/><text x="44.3346%" y="559.50"></text></g><g><title>__legitimize_mnt (391 samples, 0.03%)</title><rect x="44.2986%" y="517" width="0.0302%" height="15" fill="rgb(219,228,13)" fg:x="572715" fg:w="391"/><text x="44.5486%" y="527.50"></text></g><g><title>__legitimize_path (887 samples, 0.07%)</title><rect x="44.2950%" y="533" width="0.0686%" height="15" fill="rgb(238,30,35)" fg:x="572669" fg:w="887"/><text x="44.5450%" y="543.50"></text></g><g><title>lockref_get_not_dead (449 samples, 0.03%)</title><rect x="44.3289%" y="517" width="0.0347%" height="15" fill="rgb(236,70,23)" fg:x="573107" fg:w="449"/><text x="44.5789%" y="527.50"></text></g><g><title>lookup_fast (3,843 samples, 0.30%)</title><rect x="44.0702%" y="565" width="0.2972%" height="15" fill="rgb(249,104,48)" fg:x="569763" fg:w="3843"/><text x="44.3202%" y="575.50"></text></g><g><title>try_to_unlazy (999 samples, 0.08%)</title><rect x="44.2902%" y="549" width="0.0773%" height="15" fill="rgb(254,117,50)" fg:x="572607" fg:w="999"/><text x="44.5402%" y="559.50"></text></g><g><title>_cond_resched (151 samples, 0.01%)</title><rect x="44.4052%" y="533" width="0.0117%" height="15" fill="rgb(223,152,4)" fg:x="574093" fg:w="151"/><text x="44.6552%" y="543.50"></text></g><g><title>btrfs_dentry_delete (296 samples, 0.02%)</title><rect x="44.4169%" y="533" width="0.0229%" height="15" fill="rgb(245,6,2)" fg:x="574245" fg:w="296"/><text x="44.6669%" y="543.50"></text></g><g><title>__list_add_valid (382 samples, 0.03%)</title><rect x="44.4993%" y="501" width="0.0295%" height="15" fill="rgb(249,150,24)" fg:x="575310" fg:w="382"/><text x="44.7493%" y="511.50"></text></g><g><title>_raw_spin_lock (576 samples, 0.04%)</title><rect x="44.5288%" y="501" width="0.0446%" height="15" fill="rgb(228,185,42)" fg:x="575692" fg:w="576"/><text x="44.7788%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (162 samples, 0.01%)</title><rect x="44.5609%" y="485" width="0.0125%" height="15" fill="rgb(226,39,33)" fg:x="576106" fg:w="162"/><text x="44.8109%" y="495.50"></text></g><g><title>d_lru_add (1,819 samples, 0.14%)</title><rect x="44.4398%" y="533" width="0.1407%" height="15" fill="rgb(221,166,19)" fg:x="574541" fg:w="1819"/><text x="44.6898%" y="543.50"></text></g><g><title>list_lru_add (1,698 samples, 0.13%)</title><rect x="44.4492%" y="517" width="0.1313%" height="15" fill="rgb(209,109,2)" fg:x="574662" fg:w="1698"/><text x="44.6992%" y="527.50"></text></g><g><title>lockref_put_or_lock (173 samples, 0.01%)</title><rect x="44.5805%" y="533" width="0.0134%" height="15" fill="rgb(252,216,26)" fg:x="576360" fg:w="173"/><text x="44.8305%" y="543.50"></text></g><g><title>step_into (2,938 samples, 0.23%)</title><rect x="44.3675%" y="565" width="0.2272%" height="15" fill="rgb(227,173,36)" fg:x="573606" fg:w="2938"/><text x="44.6175%" y="575.50"></text></g><g><title>dput (2,610 samples, 0.20%)</title><rect x="44.3929%" y="549" width="0.2019%" height="15" fill="rgb(209,90,7)" fg:x="573934" fg:w="2610"/><text x="44.6429%" y="559.50"></text></g><g><title>path_lookupat (101,299 samples, 7.84%)</title><rect x="36.7760%" y="597" width="7.8353%" height="15" fill="rgb(250,194,11)" fg:x="475459" fg:w="101299"/><text x="37.0260%" y="607.50">path_lookup..</text></g><g><title>walk_component (46,075 samples, 3.56%)</title><rect x="41.0475%" y="581" width="3.5638%" height="15" fill="rgb(220,72,50)" fg:x="530683" fg:w="46075"/><text x="41.2975%" y="591.50">walk..</text></g><g><title>up_read (214 samples, 0.02%)</title><rect x="44.5947%" y="565" width="0.0166%" height="15" fill="rgb(222,106,48)" fg:x="576544" fg:w="214"/><text x="44.8447%" y="575.50"></text></g><g><title>filename_lookup (103,077 samples, 7.97%)</title><rect x="36.6444%" y="613" width="7.9728%" height="15" fill="rgb(216,220,45)" fg:x="473758" fg:w="103077"/><text x="36.8944%" y="623.50">filename_lo..</text></g><g><title>_cond_resched (149 samples, 0.01%)</title><rect x="44.6374%" y="581" width="0.0115%" height="15" fill="rgb(234,112,18)" fg:x="577096" fg:w="149"/><text x="44.8874%" y="591.50"></text></g><g><title>btrfs_dentry_delete (167 samples, 0.01%)</title><rect x="44.6493%" y="581" width="0.0129%" height="15" fill="rgb(206,179,9)" fg:x="577250" fg:w="167"/><text x="44.8993%" y="591.50"></text></g><g><title>lockref_put_or_lock (243 samples, 0.02%)</title><rect x="44.6623%" y="581" width="0.0188%" height="15" fill="rgb(215,115,40)" fg:x="577417" fg:w="243"/><text x="44.9123%" y="591.50"></text></g><g><title>_raw_spin_lock (196 samples, 0.02%)</title><rect x="44.6659%" y="565" width="0.0152%" height="15" fill="rgb(222,69,34)" fg:x="577464" fg:w="196"/><text x="44.9159%" y="575.50"></text></g><g><title>path_put (682 samples, 0.05%)</title><rect x="44.6287%" y="613" width="0.0528%" height="15" fill="rgb(209,161,10)" fg:x="576983" fg:w="682"/><text x="44.8787%" y="623.50"></text></g><g><title>dput (668 samples, 0.05%)</title><rect x="44.6298%" y="597" width="0.0517%" height="15" fill="rgb(217,6,38)" fg:x="576997" fg:w="668"/><text x="44.8798%" y="607.50"></text></g><g><title>apparmor_inode_getattr (212 samples, 0.02%)</title><rect x="44.7442%" y="597" width="0.0164%" height="15" fill="rgb(229,229,48)" fg:x="578476" fg:w="212"/><text x="44.9942%" y="607.50"></text></g><g><title>security_inode_getattr (1,983 samples, 0.15%)</title><rect x="44.6815%" y="613" width="0.1534%" height="15" fill="rgb(225,21,28)" fg:x="577666" fg:w="1983"/><text x="44.9315%" y="623.50"></text></g><g><title>tomoyo_path_perm (945 samples, 0.07%)</title><rect x="44.7618%" y="597" width="0.0731%" height="15" fill="rgb(206,33,13)" fg:x="578704" fg:w="945"/><text x="45.0118%" y="607.50"></text></g><g><title>tomoyo_init_request_info (608 samples, 0.05%)</title><rect x="44.7879%" y="581" width="0.0470%" height="15" fill="rgb(242,178,17)" fg:x="579041" fg:w="608"/><text x="45.0379%" y="591.50"></text></g><g><title>tomoyo_domain (318 samples, 0.02%)</title><rect x="44.8103%" y="565" width="0.0246%" height="15" fill="rgb(220,162,5)" fg:x="579331" fg:w="318"/><text x="45.0603%" y="575.50"></text></g><g><title>memcg_slab_post_alloc_hook (139 samples, 0.01%)</title><rect x="44.9257%" y="565" width="0.0108%" height="15" fill="rgb(210,33,43)" fg:x="580823" fg:w="139"/><text x="45.1757%" y="575.50"></text></g><g><title>memset_erms (2,447 samples, 0.19%)</title><rect x="44.9371%" y="565" width="0.1893%" height="15" fill="rgb(216,116,54)" fg:x="580970" fg:w="2447"/><text x="45.1871%" y="575.50"></text></g><g><title>_cond_resched (187 samples, 0.01%)</title><rect x="45.1640%" y="549" width="0.0145%" height="15" fill="rgb(249,92,24)" fg:x="583904" fg:w="187"/><text x="45.4140%" y="559.50"></text></g><g><title>kmem_cache_alloc (4,002 samples, 0.31%)</title><rect x="44.8701%" y="581" width="0.3095%" height="15" fill="rgb(231,189,14)" fg:x="580104" fg:w="4002"/><text x="45.1201%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (689 samples, 0.05%)</title><rect x="45.1264%" y="565" width="0.0533%" height="15" fill="rgb(230,8,41)" fg:x="583417" fg:w="689"/><text x="45.3764%" y="575.50"></text></g><g><title>__check_heap_object (461 samples, 0.04%)</title><rect x="45.3864%" y="549" width="0.0357%" height="15" fill="rgb(249,7,27)" fg:x="586779" fg:w="461"/><text x="45.6364%" y="559.50"></text></g><g><title>__virt_addr_valid (734 samples, 0.06%)</title><rect x="45.4221%" y="549" width="0.0568%" height="15" fill="rgb(232,86,5)" fg:x="587240" fg:w="734"/><text x="45.6721%" y="559.50"></text></g><g><title>__check_object_size (1,602 samples, 0.12%)</title><rect x="45.3613%" y="565" width="0.1239%" height="15" fill="rgb(224,175,18)" fg:x="586454" fg:w="1602"/><text x="45.6113%" y="575.50"></text></g><g><title>user_path_at_empty (8,416 samples, 0.65%)</title><rect x="44.8349%" y="613" width="0.6510%" height="15" fill="rgb(220,129,12)" fg:x="579649" fg:w="8416"/><text x="45.0849%" y="623.50"></text></g><g><title>getname_flags.part.0 (8,236 samples, 0.64%)</title><rect x="44.8488%" y="597" width="0.6370%" height="15" fill="rgb(210,19,36)" fg:x="579829" fg:w="8236"/><text x="45.0988%" y="607.50"></text></g><g><title>strncpy_from_user (3,959 samples, 0.31%)</title><rect x="45.1796%" y="581" width="0.3062%" height="15" fill="rgb(219,96,14)" fg:x="584106" fg:w="3959"/><text x="45.4296%" y="591.50"></text></g><g><title>__do_sys_newstat (118,307 samples, 9.15%)</title><rect x="36.3677%" y="645" width="9.1509%" height="15" fill="rgb(249,106,1)" fg:x="470180" fg:w="118307"/><text x="36.6177%" y="655.50">__do_sys_news..</text></g><g><title>vfs_statx (116,746 samples, 9.03%)</title><rect x="36.4884%" y="629" width="9.0301%" height="15" fill="rgb(249,155,20)" fg:x="471741" fg:w="116746"/><text x="36.7384%" y="639.50">vfs_statx</text></g><g><title>vfs_getattr_nosec (422 samples, 0.03%)</title><rect x="45.4859%" y="613" width="0.0326%" height="15" fill="rgb(244,168,9)" fg:x="588065" fg:w="422"/><text x="45.7359%" y="623.50"></text></g><g><title>do_syscall_64 (118,621 samples, 9.18%)</title><rect x="36.3533%" y="661" width="9.1751%" height="15" fill="rgb(216,23,50)" fg:x="469995" fg:w="118621"/><text x="36.6033%" y="671.50">do_syscall_64</text></g><g><title>fpregs_assert_state_consistent (148 samples, 0.01%)</title><rect x="45.5496%" y="629" width="0.0114%" height="15" fill="rgb(224,219,20)" fg:x="588889" fg:w="148"/><text x="45.7996%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (119,433 samples, 9.24%)</title><rect x="36.3311%" y="677" width="9.2379%" height="15" fill="rgb(222,156,15)" fg:x="469707" fg:w="119433"/><text x="36.5811%" y="687.50">entry_SYSCALL..</text></g><g><title>syscall_exit_to_user_mode (524 samples, 0.04%)</title><rect x="45.5285%" y="661" width="0.0405%" height="15" fill="rgb(231,97,17)" fg:x="588616" fg:w="524"/><text x="45.7785%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (401 samples, 0.03%)</title><rect x="45.5380%" y="645" width="0.0310%" height="15" fill="rgb(218,70,48)" fg:x="588739" fg:w="401"/><text x="45.7880%" y="655.50"></text></g><g><title>syscall_return_via_sysret (386 samples, 0.03%)</title><rect x="45.5723%" y="677" width="0.0299%" height="15" fill="rgb(212,196,52)" fg:x="589182" fg:w="386"/><text x="45.8223%" y="687.50"></text></g><g><title>__GI___xstat (121,504 samples, 9.40%)</title><rect x="36.2044%" y="693" width="9.3981%" height="15" fill="rgb(243,203,18)" fg:x="468069" fg:w="121504"/><text x="36.4544%" y="703.50">__GI___xstat</text></g><g><title>crc32c_pcl_intel_update (283 samples, 0.02%)</title><rect x="45.6600%" y="677" width="0.0219%" height="15" fill="rgb(252,125,41)" fg:x="590316" fg:w="283"/><text x="45.9100%" y="687.50"></text></g><g><title>entry_SYSCALL_64 (357 samples, 0.03%)</title><rect x="45.6819%" y="677" width="0.0276%" height="15" fill="rgb(223,180,33)" fg:x="590599" fg:w="357"/><text x="45.9319%" y="687.50"></text></g><g><title>getname_flags (227 samples, 0.02%)</title><rect x="45.7638%" y="629" width="0.0176%" height="15" fill="rgb(254,159,46)" fg:x="591658" fg:w="227"/><text x="46.0138%" y="639.50"></text></g><g><title>memset_erms (1,402 samples, 0.11%)</title><rect x="45.8285%" y="597" width="0.1084%" height="15" fill="rgb(254,38,10)" fg:x="592495" fg:w="1402"/><text x="46.0785%" y="607.50"></text></g><g><title>kmem_cache_alloc (2,088 samples, 0.16%)</title><rect x="45.7922%" y="613" width="0.1615%" height="15" fill="rgb(208,217,32)" fg:x="592026" fg:w="2088"/><text x="46.0422%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (217 samples, 0.02%)</title><rect x="45.9370%" y="597" width="0.0168%" height="15" fill="rgb(221,120,13)" fg:x="593897" fg:w="217"/><text x="46.1870%" y="607.50"></text></g><g><title>__check_heap_object (176 samples, 0.01%)</title><rect x="46.0275%" y="581" width="0.0136%" height="15" fill="rgb(246,54,52)" fg:x="595067" fg:w="176"/><text x="46.2775%" y="591.50"></text></g><g><title>__virt_addr_valid (622 samples, 0.05%)</title><rect x="46.0411%" y="581" width="0.0481%" height="15" fill="rgb(242,34,25)" fg:x="595243" fg:w="622"/><text x="46.2911%" y="591.50"></text></g><g><title>__check_object_size (1,104 samples, 0.09%)</title><rect x="46.0111%" y="597" width="0.0854%" height="15" fill="rgb(247,209,9)" fg:x="594855" fg:w="1104"/><text x="46.2611%" y="607.50"></text></g><g><title>getname_flags.part.0 (4,080 samples, 0.32%)</title><rect x="45.7813%" y="629" width="0.3156%" height="15" fill="rgb(228,71,26)" fg:x="591885" fg:w="4080"/><text x="46.0313%" y="639.50"></text></g><g><title>strncpy_from_user (1,851 samples, 0.14%)</title><rect x="45.9538%" y="613" width="0.1432%" height="15" fill="rgb(222,145,49)" fg:x="594114" fg:w="1851"/><text x="46.2038%" y="623.50"></text></g><g><title>__x64_sys_unlinkat (4,363 samples, 0.34%)</title><rect x="45.7597%" y="645" width="0.3375%" height="15" fill="rgb(218,121,17)" fg:x="591605" fg:w="4363"/><text x="46.0097%" y="655.50"></text></g><g><title>d_lru_add (178 samples, 0.01%)</title><rect x="46.1179%" y="613" width="0.0138%" height="15" fill="rgb(244,50,7)" fg:x="596236" fg:w="178"/><text x="46.3679%" y="623.50"></text></g><g><title>list_lru_add (173 samples, 0.01%)</title><rect x="46.1183%" y="597" width="0.0134%" height="15" fill="rgb(246,229,37)" fg:x="596241" fg:w="173"/><text x="46.3683%" y="607.50"></text></g><g><title>dput (337 samples, 0.03%)</title><rect x="46.1089%" y="629" width="0.0261%" height="15" fill="rgb(225,18,5)" fg:x="596120" fg:w="337"/><text x="46.3589%" y="639.50"></text></g><g><title>path_init (143 samples, 0.01%)</title><rect x="46.1503%" y="597" width="0.0111%" height="15" fill="rgb(213,204,8)" fg:x="596655" fg:w="143"/><text x="46.4003%" y="607.50"></text></g><g><title>filename_parentat (376 samples, 0.03%)</title><rect x="46.1350%" y="629" width="0.0291%" height="15" fill="rgb(238,103,6)" fg:x="596457" fg:w="376"/><text x="46.3850%" y="639.50"></text></g><g><title>path_parentat (351 samples, 0.03%)</title><rect x="46.1369%" y="613" width="0.0271%" height="15" fill="rgb(222,25,35)" fg:x="596482" fg:w="351"/><text x="46.3869%" y="623.50"></text></g><g><title>security_path_rmdir (175 samples, 0.01%)</title><rect x="46.1812%" y="629" width="0.0135%" height="15" fill="rgb(213,203,35)" fg:x="597054" fg:w="175"/><text x="46.4312%" y="639.50"></text></g><g><title>btrfs_trans_release_metadata (130 samples, 0.01%)</title><rect x="46.2157%" y="581" width="0.0101%" height="15" fill="rgb(221,79,53)" fg:x="597501" fg:w="130"/><text x="46.4657%" y="591.50"></text></g><g><title>__btrfs_end_transaction (294 samples, 0.02%)</title><rect x="46.2071%" y="597" width="0.0227%" height="15" fill="rgb(243,200,35)" fg:x="597390" fg:w="294"/><text x="46.4571%" y="607.50"></text></g><g><title>__wake_up_common (342 samples, 0.03%)</title><rect x="46.2453%" y="517" width="0.0265%" height="15" fill="rgb(248,60,25)" fg:x="597883" fg:w="342"/><text x="46.4953%" y="527.50"></text></g><g><title>autoremove_wake_function (331 samples, 0.03%)</title><rect x="46.2461%" y="501" width="0.0256%" height="15" fill="rgb(227,53,46)" fg:x="597894" fg:w="331"/><text x="46.4961%" y="511.50"></text></g><g><title>try_to_wake_up (323 samples, 0.02%)</title><rect x="46.2467%" y="485" width="0.0250%" height="15" fill="rgb(216,120,32)" fg:x="597902" fg:w="323"/><text x="46.4967%" y="495.50"></text></g><g><title>__wake_up_common_lock (419 samples, 0.03%)</title><rect x="46.2450%" y="533" width="0.0324%" height="15" fill="rgb(220,134,1)" fg:x="597879" fg:w="419"/><text x="46.4950%" y="543.50"></text></g><g><title>btrfs_free_path (502 samples, 0.04%)</title><rect x="46.2437%" y="565" width="0.0388%" height="15" fill="rgb(237,168,5)" fg:x="597863" fg:w="502"/><text x="46.4937%" y="575.50"></text></g><g><title>btrfs_release_path (496 samples, 0.04%)</title><rect x="46.2442%" y="549" width="0.0384%" height="15" fill="rgb(231,100,33)" fg:x="597869" fg:w="496"/><text x="46.4942%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (178 samples, 0.01%)</title><rect x="46.2890%" y="517" width="0.0138%" height="15" fill="rgb(236,177,47)" fg:x="598448" fg:w="178"/><text x="46.5390%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (186 samples, 0.01%)</title><rect x="46.2890%" y="533" width="0.0144%" height="15" fill="rgb(235,7,49)" fg:x="598448" fg:w="186"/><text x="46.5390%" y="543.50"></text></g><g><title>prepare_to_wait_event (132 samples, 0.01%)</title><rect x="46.3123%" y="501" width="0.0102%" height="15" fill="rgb(232,119,22)" fg:x="598750" fg:w="132"/><text x="46.5623%" y="511.50"></text></g><g><title>__btrfs_tree_lock (290 samples, 0.02%)</title><rect x="46.3062%" y="517" width="0.0224%" height="15" fill="rgb(254,73,53)" fg:x="598671" fg:w="290"/><text x="46.5562%" y="527.50"></text></g><g><title>btrfs_lock_root_node (309 samples, 0.02%)</title><rect x="46.3062%" y="533" width="0.0239%" height="15" fill="rgb(251,35,20)" fg:x="598670" fg:w="309"/><text x="46.5562%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (131 samples, 0.01%)</title><rect x="46.3410%" y="533" width="0.0101%" height="15" fill="rgb(241,119,20)" fg:x="599121" fg:w="131"/><text x="46.5910%" y="543.50"></text></g><g><title>btrfs_lookup_dir_index_item (913 samples, 0.07%)</title><rect x="46.2826%" y="565" width="0.0706%" height="15" fill="rgb(207,102,14)" fg:x="598365" fg:w="913"/><text x="46.5326%" y="575.50"></text></g><g><title>btrfs_search_slot (902 samples, 0.07%)</title><rect x="46.2834%" y="549" width="0.0698%" height="15" fill="rgb(248,201,50)" fg:x="598376" fg:w="902"/><text x="46.5334%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (234 samples, 0.02%)</title><rect x="46.3700%" y="485" width="0.0181%" height="15" fill="rgb(222,185,44)" fg:x="599495" fg:w="234"/><text x="46.6200%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (223 samples, 0.02%)</title><rect x="46.3708%" y="469" width="0.0172%" height="15" fill="rgb(218,107,18)" fg:x="599506" fg:w="223"/><text x="46.6208%" y="479.50"></text></g><g><title>prepare_to_wait_event (247 samples, 0.02%)</title><rect x="46.3693%" y="501" width="0.0191%" height="15" fill="rgb(237,177,39)" fg:x="599486" fg:w="247"/><text x="46.6193%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (559 samples, 0.04%)</title><rect x="46.3605%" y="517" width="0.0432%" height="15" fill="rgb(246,69,6)" fg:x="599373" fg:w="559"/><text x="46.6105%" y="527.50"></text></g><g><title>schedule (184 samples, 0.01%)</title><rect x="46.3895%" y="501" width="0.0142%" height="15" fill="rgb(234,208,37)" fg:x="599748" fg:w="184"/><text x="46.6395%" y="511.50"></text></g><g><title>__schedule (180 samples, 0.01%)</title><rect x="46.3898%" y="485" width="0.0139%" height="15" fill="rgb(225,4,6)" fg:x="599752" fg:w="180"/><text x="46.6398%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (582 samples, 0.05%)</title><rect x="46.3603%" y="533" width="0.0450%" height="15" fill="rgb(233,45,0)" fg:x="599370" fg:w="582"/><text x="46.6103%" y="543.50"></text></g><g><title>prepare_to_wait_event (133 samples, 0.01%)</title><rect x="46.4164%" y="501" width="0.0103%" height="15" fill="rgb(226,136,5)" fg:x="600095" fg:w="133"/><text x="46.6664%" y="511.50"></text></g><g><title>__btrfs_tree_lock (315 samples, 0.02%)</title><rect x="46.4089%" y="517" width="0.0244%" height="15" fill="rgb(211,91,47)" fg:x="599998" fg:w="315"/><text x="46.6589%" y="527.50"></text></g><g><title>btrfs_lock_root_node (328 samples, 0.03%)</title><rect x="46.4088%" y="533" width="0.0254%" height="15" fill="rgb(242,88,51)" fg:x="599997" fg:w="328"/><text x="46.6588%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (139 samples, 0.01%)</title><rect x="46.4449%" y="533" width="0.0108%" height="15" fill="rgb(230,91,28)" fg:x="600464" fg:w="139"/><text x="46.6949%" y="543.50"></text></g><g><title>btrfs_search_slot (1,347 samples, 0.10%)</title><rect x="46.3543%" y="549" width="0.1042%" height="15" fill="rgb(254,186,29)" fg:x="599292" fg:w="1347"/><text x="46.6043%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (1,376 samples, 0.11%)</title><rect x="46.3532%" y="565" width="0.1064%" height="15" fill="rgb(238,6,4)" fg:x="599278" fg:w="1376"/><text x="46.6032%" y="575.50"></text></g><g><title>__wake_up_common (313 samples, 0.02%)</title><rect x="46.4615%" y="533" width="0.0242%" height="15" fill="rgb(221,151,16)" fg:x="600678" fg:w="313"/><text x="46.7115%" y="543.50"></text></g><g><title>autoremove_wake_function (307 samples, 0.02%)</title><rect x="46.4619%" y="517" width="0.0237%" height="15" fill="rgb(251,143,52)" fg:x="600684" fg:w="307"/><text x="46.7119%" y="527.50"></text></g><g><title>try_to_wake_up (300 samples, 0.02%)</title><rect x="46.4625%" y="501" width="0.0232%" height="15" fill="rgb(206,90,15)" fg:x="600691" fg:w="300"/><text x="46.7125%" y="511.50"></text></g><g><title>__wake_up_common_lock (401 samples, 0.03%)</title><rect x="46.4614%" y="549" width="0.0310%" height="15" fill="rgb(218,35,8)" fg:x="600677" fg:w="401"/><text x="46.7114%" y="559.50"></text></g><g><title>btrfs_release_path (495 samples, 0.04%)</title><rect x="46.4596%" y="565" width="0.0383%" height="15" fill="rgb(239,215,6)" fg:x="600654" fg:w="495"/><text x="46.7096%" y="575.50"></text></g><g><title>btrfs_del_dir_entries_in_log (3,481 samples, 0.27%)</title><rect x="46.2376%" y="581" width="0.2692%" height="15" fill="rgb(245,116,39)" fg:x="597784" fg:w="3481"/><text x="46.4876%" y="591.50"></text></g><g><title>ttwu_do_activate (164 samples, 0.01%)</title><rect x="46.5499%" y="453" width="0.0127%" height="15" fill="rgb(242,65,28)" fg:x="601821" fg:w="164"/><text x="46.7999%" y="463.50"></text></g><g><title>__wake_up_common (682 samples, 0.05%)</title><rect x="46.5145%" y="501" width="0.0528%" height="15" fill="rgb(252,132,53)" fg:x="601364" fg:w="682"/><text x="46.7645%" y="511.50"></text></g><g><title>autoremove_wake_function (659 samples, 0.05%)</title><rect x="46.5163%" y="485" width="0.0510%" height="15" fill="rgb(224,159,50)" fg:x="601387" fg:w="659"/><text x="46.7663%" y="495.50"></text></g><g><title>try_to_wake_up (651 samples, 0.05%)</title><rect x="46.5169%" y="469" width="0.0504%" height="15" fill="rgb(224,93,4)" fg:x="601395" fg:w="651"/><text x="46.7669%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (295 samples, 0.02%)</title><rect x="46.5673%" y="501" width="0.0228%" height="15" fill="rgb(208,81,34)" fg:x="602046" fg:w="295"/><text x="46.8173%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (285 samples, 0.02%)</title><rect x="46.5681%" y="485" width="0.0220%" height="15" fill="rgb(233,92,54)" fg:x="602056" fg:w="285"/><text x="46.8181%" y="495.50"></text></g><g><title>__wake_up_common_lock (985 samples, 0.08%)</title><rect x="46.5145%" y="517" width="0.0762%" height="15" fill="rgb(237,21,14)" fg:x="601363" fg:w="985"/><text x="46.7645%" y="527.50"></text></g><g><title>btrfs_free_path (1,179 samples, 0.09%)</title><rect x="46.5109%" y="549" width="0.0912%" height="15" fill="rgb(249,128,51)" fg:x="601317" fg:w="1179"/><text x="46.7609%" y="559.50"></text></g><g><title>btrfs_release_path (1,168 samples, 0.09%)</title><rect x="46.5117%" y="533" width="0.0903%" height="15" fill="rgb(223,129,24)" fg:x="601328" fg:w="1168"/><text x="46.7617%" y="543.50"></text></g><g><title>finish_wait (160 samples, 0.01%)</title><rect x="46.6215%" y="501" width="0.0124%" height="15" fill="rgb(231,168,25)" fg:x="602747" fg:w="160"/><text x="46.8715%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (149 samples, 0.01%)</title><rect x="46.6224%" y="485" width="0.0115%" height="15" fill="rgb(224,39,20)" fg:x="602758" fg:w="149"/><text x="46.8724%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (140 samples, 0.01%)</title><rect x="46.6230%" y="469" width="0.0108%" height="15" fill="rgb(225,152,53)" fg:x="602767" fg:w="140"/><text x="46.8730%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (359 samples, 0.03%)</title><rect x="46.6366%" y="485" width="0.0278%" height="15" fill="rgb(252,17,24)" fg:x="602942" fg:w="359"/><text x="46.8866%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (338 samples, 0.03%)</title><rect x="46.6382%" y="469" width="0.0261%" height="15" fill="rgb(250,114,30)" fg:x="602963" fg:w="338"/><text x="46.8882%" y="479.50"></text></g><g><title>prepare_to_wait_event (402 samples, 0.03%)</title><rect x="46.6339%" y="501" width="0.0311%" height="15" fill="rgb(229,5,4)" fg:x="602907" fg:w="402"/><text x="46.8839%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (1,032 samples, 0.08%)</title><rect x="46.6148%" y="517" width="0.0798%" height="15" fill="rgb(225,176,49)" fg:x="602660" fg:w="1032"/><text x="46.8648%" y="527.50"></text></g><g><title>schedule (359 samples, 0.03%)</title><rect x="46.6668%" y="501" width="0.0278%" height="15" fill="rgb(224,221,49)" fg:x="603333" fg:w="359"/><text x="46.9168%" y="511.50"></text></g><g><title>__schedule (355 samples, 0.03%)</title><rect x="46.6671%" y="485" width="0.0275%" height="15" fill="rgb(253,169,27)" fg:x="603337" fg:w="355"/><text x="46.9171%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (1,121 samples, 0.09%)</title><rect x="46.6142%" y="533" width="0.0867%" height="15" fill="rgb(211,206,16)" fg:x="602652" fg:w="1121"/><text x="46.8642%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (207 samples, 0.02%)</title><rect x="46.7193%" y="485" width="0.0160%" height="15" fill="rgb(244,87,35)" fg:x="604011" fg:w="207"/><text x="46.9693%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (199 samples, 0.02%)</title><rect x="46.7199%" y="469" width="0.0154%" height="15" fill="rgb(246,28,10)" fg:x="604019" fg:w="199"/><text x="46.9699%" y="479.50"></text></g><g><title>prepare_to_wait_event (235 samples, 0.02%)</title><rect x="46.7176%" y="501" width="0.0182%" height="15" fill="rgb(229,12,44)" fg:x="603990" fg:w="235"/><text x="46.9676%" y="511.50"></text></g><g><title>__btrfs_tree_lock (562 samples, 0.04%)</title><rect x="46.7056%" y="517" width="0.0435%" height="15" fill="rgb(210,145,37)" fg:x="603834" fg:w="562"/><text x="46.9556%" y="527.50"></text></g><g><title>schedule (130 samples, 0.01%)</title><rect x="46.7390%" y="501" width="0.0101%" height="15" fill="rgb(227,112,52)" fg:x="604266" fg:w="130"/><text x="46.9890%" y="511.50"></text></g><g><title>btrfs_lock_root_node (598 samples, 0.05%)</title><rect x="46.7053%" y="533" width="0.0463%" height="15" fill="rgb(238,155,34)" fg:x="603831" fg:w="598"/><text x="46.9553%" y="543.50"></text></g><g><title>find_extent_buffer (241 samples, 0.02%)</title><rect x="46.7817%" y="517" width="0.0186%" height="15" fill="rgb(239,226,36)" fg:x="604818" fg:w="241"/><text x="47.0317%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (421 samples, 0.03%)</title><rect x="46.7718%" y="533" width="0.0326%" height="15" fill="rgb(230,16,23)" fg:x="604690" fg:w="421"/><text x="47.0218%" y="543.50"></text></g><g><title>btrfs_search_slot (2,665 samples, 0.21%)</title><rect x="46.6021%" y="549" width="0.2061%" height="15" fill="rgb(236,171,36)" fg:x="602496" fg:w="2665"/><text x="46.8521%" y="559.50"></text></g><g><title>btrfs_del_inode_ref (4,104 samples, 0.32%)</title><rect x="46.5089%" y="565" width="0.3174%" height="15" fill="rgb(221,22,14)" fg:x="601291" fg:w="4104"/><text x="46.7589%" y="575.50"></text></g><g><title>btrfs_del_inode_ref_in_log (4,235 samples, 0.33%)</title><rect x="46.5069%" y="581" width="0.3276%" height="15" fill="rgb(242,43,11)" fg:x="601265" fg:w="4235"/><text x="46.7569%" y="591.50"></text></g><g><title>btrfs_get_token_32 (662 samples, 0.05%)</title><rect x="46.8613%" y="565" width="0.0512%" height="15" fill="rgb(232,69,23)" fg:x="605847" fg:w="662"/><text x="47.1113%" y="575.50"></text></g><g><title>btrfs_set_token_32 (487 samples, 0.04%)</title><rect x="46.9157%" y="565" width="0.0377%" height="15" fill="rgb(216,180,54)" fg:x="606551" fg:w="487"/><text x="47.1657%" y="575.50"></text></g><g><title>memmove_extent_buffer (351 samples, 0.03%)</title><rect x="46.9635%" y="565" width="0.0271%" height="15" fill="rgb(216,5,24)" fg:x="607168" fg:w="351"/><text x="47.2135%" y="575.50"></text></g><g><title>memmove (272 samples, 0.02%)</title><rect x="46.9696%" y="549" width="0.0210%" height="15" fill="rgb(225,89,9)" fg:x="607247" fg:w="272"/><text x="47.2196%" y="559.50"></text></g><g><title>__push_leaf_right (136 samples, 0.01%)</title><rect x="46.9946%" y="549" width="0.0105%" height="15" fill="rgb(243,75,33)" fg:x="607571" fg:w="136"/><text x="47.2446%" y="559.50"></text></g><g><title>push_leaf_right (161 samples, 0.01%)</title><rect x="46.9944%" y="565" width="0.0125%" height="15" fill="rgb(247,141,45)" fg:x="607568" fg:w="161"/><text x="47.2444%" y="575.50"></text></g><g><title>btrfs_del_items (2,239 samples, 0.17%)</title><rect x="46.8344%" y="581" width="0.1732%" height="15" fill="rgb(232,177,36)" fg:x="605500" fg:w="2239"/><text x="47.0844%" y="591.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (311 samples, 0.02%)</title><rect x="47.0076%" y="581" width="0.0241%" height="15" fill="rgb(219,125,36)" fg:x="607739" fg:w="311"/><text x="47.2576%" y="591.50"></text></g><g><title>btrfs_delete_delayed_dir_index (503 samples, 0.04%)</title><rect x="47.0317%" y="581" width="0.0389%" height="15" fill="rgb(227,94,9)" fg:x="608050" fg:w="503"/><text x="47.2817%" y="591.50"></text></g><g><title>btrfs_match_dir_item_name (141 samples, 0.01%)</title><rect x="47.0762%" y="565" width="0.0109%" height="15" fill="rgb(240,34,52)" fg:x="608625" fg:w="141"/><text x="47.3262%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (322 samples, 0.02%)</title><rect x="47.1105%" y="517" width="0.0249%" height="15" fill="rgb(216,45,12)" fg:x="609069" fg:w="322"/><text x="47.3605%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (189 samples, 0.01%)</title><rect x="47.1208%" y="501" width="0.0146%" height="15" fill="rgb(246,21,19)" fg:x="609202" fg:w="189"/><text x="47.3708%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (646 samples, 0.05%)</title><rect x="47.0952%" y="533" width="0.0500%" height="15" fill="rgb(213,98,42)" fg:x="608871" fg:w="646"/><text x="47.3452%" y="543.50"></text></g><g><title>__btrfs_read_lock_root_node (696 samples, 0.05%)</title><rect x="47.0948%" y="549" width="0.0538%" height="15" fill="rgb(250,136,47)" fg:x="608866" fg:w="696"/><text x="47.3448%" y="559.50"></text></g><g><title>__btrfs_tree_lock (187 samples, 0.01%)</title><rect x="47.1486%" y="549" width="0.0145%" height="15" fill="rgb(251,124,27)" fg:x="609562" fg:w="187"/><text x="47.3986%" y="559.50"></text></g><g><title>schedule (165 samples, 0.01%)</title><rect x="47.1503%" y="533" width="0.0128%" height="15" fill="rgb(229,180,14)" fg:x="609584" fg:w="165"/><text x="47.4003%" y="543.50"></text></g><g><title>__schedule (164 samples, 0.01%)</title><rect x="47.1504%" y="517" width="0.0127%" height="15" fill="rgb(245,216,25)" fg:x="609585" fg:w="164"/><text x="47.4004%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (146 samples, 0.01%)</title><rect x="47.1759%" y="501" width="0.0113%" height="15" fill="rgb(251,43,5)" fg:x="609914" fg:w="146"/><text x="47.4259%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (140 samples, 0.01%)</title><rect x="47.1763%" y="485" width="0.0108%" height="15" fill="rgb(250,128,24)" fg:x="609920" fg:w="140"/><text x="47.4263%" y="495.50"></text></g><g><title>prepare_to_wait_event (173 samples, 0.01%)</title><rect x="47.1742%" y="517" width="0.0134%" height="15" fill="rgb(217,117,27)" fg:x="609893" fg:w="173"/><text x="47.4242%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (467 samples, 0.04%)</title><rect x="47.1876%" y="517" width="0.0361%" height="15" fill="rgb(245,147,4)" fg:x="610066" fg:w="467"/><text x="47.4376%" y="527.50"></text></g><g><title>__btrfs_tree_lock (1,032 samples, 0.08%)</title><rect x="47.1648%" y="533" width="0.0798%" height="15" fill="rgb(242,201,35)" fg:x="609771" fg:w="1032"/><text x="47.4148%" y="543.50"></text></g><g><title>schedule (270 samples, 0.02%)</title><rect x="47.2237%" y="517" width="0.0209%" height="15" fill="rgb(218,181,1)" fg:x="610533" fg:w="270"/><text x="47.4737%" y="527.50"></text></g><g><title>__schedule (267 samples, 0.02%)</title><rect x="47.2240%" y="501" width="0.0207%" height="15" fill="rgb(222,6,29)" fg:x="610536" fg:w="267"/><text x="47.4740%" y="511.50"></text></g><g><title>btrfs_lock_root_node (1,059 samples, 0.08%)</title><rect x="47.1646%" y="549" width="0.0819%" height="15" fill="rgb(208,186,3)" fg:x="609768" fg:w="1059"/><text x="47.4146%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (347 samples, 0.03%)</title><rect x="47.2502%" y="549" width="0.0268%" height="15" fill="rgb(216,36,26)" fg:x="610875" fg:w="347"/><text x="47.5002%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (321 samples, 0.02%)</title><rect x="47.2522%" y="533" width="0.0248%" height="15" fill="rgb(248,201,23)" fg:x="610901" fg:w="321"/><text x="47.5022%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (300 samples, 0.02%)</title><rect x="47.2788%" y="549" width="0.0232%" height="15" fill="rgb(251,170,31)" fg:x="611245" fg:w="300"/><text x="47.5288%" y="559.50"></text></g><g><title>__radix_tree_lookup (136 samples, 0.01%)</title><rect x="47.3205%" y="517" width="0.0105%" height="15" fill="rgb(207,110,25)" fg:x="611784" fg:w="136"/><text x="47.5705%" y="527.50"></text></g><g><title>find_extent_buffer (312 samples, 0.02%)</title><rect x="47.3131%" y="533" width="0.0241%" height="15" fill="rgb(250,54,15)" fg:x="611689" fg:w="312"/><text x="47.5631%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (510 samples, 0.04%)</title><rect x="47.3020%" y="549" width="0.0394%" height="15" fill="rgb(227,68,33)" fg:x="611545" fg:w="510"/><text x="47.5520%" y="559.50"></text></g><g><title>reada_for_balance (172 samples, 0.01%)</title><rect x="47.3415%" y="549" width="0.0133%" height="15" fill="rgb(238,34,41)" fg:x="612055" fg:w="172"/><text x="47.5915%" y="559.50"></text></g><g><title>enqueue_task_fair (146 samples, 0.01%)</title><rect x="47.3975%" y="453" width="0.0113%" height="15" fill="rgb(220,11,15)" fg:x="612779" fg:w="146"/><text x="47.6475%" y="463.50"></text></g><g><title>ttwu_do_activate (269 samples, 0.02%)</title><rect x="47.3967%" y="469" width="0.0208%" height="15" fill="rgb(246,111,35)" fg:x="612769" fg:w="269"/><text x="47.6467%" y="479.50"></text></g><g><title>__wake_up_common (825 samples, 0.06%)</title><rect x="47.3594%" y="517" width="0.0638%" height="15" fill="rgb(209,88,53)" fg:x="612287" fg:w="825"/><text x="47.6094%" y="527.50"></text></g><g><title>autoremove_wake_function (812 samples, 0.06%)</title><rect x="47.3604%" y="501" width="0.0628%" height="15" fill="rgb(231,185,47)" fg:x="612300" fg:w="812"/><text x="47.6104%" y="511.50"></text></g><g><title>try_to_wake_up (792 samples, 0.06%)</title><rect x="47.3620%" y="485" width="0.0613%" height="15" fill="rgb(233,154,1)" fg:x="612320" fg:w="792"/><text x="47.6120%" y="495.50"></text></g><g><title>__wake_up_common_lock (875 samples, 0.07%)</title><rect x="47.3594%" y="533" width="0.0677%" height="15" fill="rgb(225,15,46)" fg:x="612287" fg:w="875"/><text x="47.6094%" y="543.50"></text></g><g><title>btrfs_search_slot (4,419 samples, 0.34%)</title><rect x="47.0871%" y="565" width="0.3418%" height="15" fill="rgb(211,135,41)" fg:x="608766" fg:w="4419"/><text x="47.3371%" y="575.50"></text></g><g><title>unlock_up (949 samples, 0.07%)</title><rect x="47.3555%" y="549" width="0.0734%" height="15" fill="rgb(208,54,0)" fg:x="612236" fg:w="949"/><text x="47.6055%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (4,641 samples, 0.36%)</title><rect x="47.0745%" y="581" width="0.3590%" height="15" fill="rgb(244,136,14)" fg:x="608603" fg:w="4641"/><text x="47.3245%" y="591.50"></text></g><g><title>__wake_up_common (324 samples, 0.03%)</title><rect x="47.4340%" y="549" width="0.0251%" height="15" fill="rgb(241,56,14)" fg:x="613251" fg:w="324"/><text x="47.6840%" y="559.50"></text></g><g><title>autoremove_wake_function (321 samples, 0.02%)</title><rect x="47.4342%" y="533" width="0.0248%" height="15" fill="rgb(205,80,24)" fg:x="613254" fg:w="321"/><text x="47.6842%" y="543.50"></text></g><g><title>try_to_wake_up (313 samples, 0.02%)</title><rect x="47.4348%" y="517" width="0.0242%" height="15" fill="rgb(220,57,4)" fg:x="613262" fg:w="313"/><text x="47.6848%" y="527.50"></text></g><g><title>__wake_up_common_lock (328 samples, 0.03%)</title><rect x="47.4339%" y="565" width="0.0254%" height="15" fill="rgb(226,193,50)" fg:x="613250" fg:w="328"/><text x="47.6839%" y="575.50"></text></g><g><title>btrfs_release_path (434 samples, 0.03%)</title><rect x="47.4334%" y="581" width="0.0336%" height="15" fill="rgb(231,168,22)" fg:x="613244" fg:w="434"/><text x="47.6834%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (291 samples, 0.02%)</title><rect x="47.4694%" y="565" width="0.0225%" height="15" fill="rgb(254,215,14)" fg:x="613709" fg:w="291"/><text x="47.7194%" y="575.50"></text></g><g><title>btrfs_update_inode (390 samples, 0.03%)</title><rect x="47.4670%" y="581" width="0.0302%" height="15" fill="rgb(211,115,16)" fg:x="613678" fg:w="390"/><text x="47.7170%" y="591.50"></text></g><g><title>__btrfs_unlink_inode (16,497 samples, 1.28%)</title><rect x="46.2299%" y="597" width="1.2760%" height="15" fill="rgb(236,210,16)" fg:x="597684" fg:w="16497"/><text x="46.4799%" y="607.50"></text></g><g><title>btrfs_btree_balance_dirty (232 samples, 0.02%)</title><rect x="47.5105%" y="597" width="0.0179%" height="15" fill="rgb(221,94,12)" fg:x="614241" fg:w="232"/><text x="47.7605%" y="607.50"></text></g><g><title>queue_work_on (163 samples, 0.01%)</title><rect x="47.5159%" y="581" width="0.0126%" height="15" fill="rgb(235,218,49)" fg:x="614310" fg:w="163"/><text x="47.7659%" y="591.50"></text></g><g><title>__queue_work (159 samples, 0.01%)</title><rect x="47.5162%" y="565" width="0.0123%" height="15" fill="rgb(217,114,14)" fg:x="614314" fg:w="159"/><text x="47.7662%" y="575.50"></text></g><g><title>btrfs_free_path (160 samples, 0.01%)</title><rect x="47.5306%" y="565" width="0.0124%" height="15" fill="rgb(216,145,22)" fg:x="614500" fg:w="160"/><text x="47.7806%" y="575.50"></text></g><g><title>btrfs_release_path (147 samples, 0.01%)</title><rect x="47.5316%" y="549" width="0.0114%" height="15" fill="rgb(217,112,39)" fg:x="614513" fg:w="147"/><text x="47.7816%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (166 samples, 0.01%)</title><rect x="47.5654%" y="485" width="0.0128%" height="15" fill="rgb(225,85,32)" fg:x="614950" fg:w="166"/><text x="47.8154%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (159 samples, 0.01%)</title><rect x="47.5659%" y="469" width="0.0123%" height="15" fill="rgb(245,209,47)" fg:x="614957" fg:w="159"/><text x="47.8159%" y="479.50"></text></g><g><title>prepare_to_wait_event (194 samples, 0.02%)</title><rect x="47.5637%" y="501" width="0.0150%" height="15" fill="rgb(218,220,15)" fg:x="614928" fg:w="194"/><text x="47.8137%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (349 samples, 0.03%)</title><rect x="47.5787%" y="501" width="0.0270%" height="15" fill="rgb(222,202,31)" fg:x="615122" fg:w="349"/><text x="47.8287%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (214 samples, 0.02%)</title><rect x="47.5891%" y="485" width="0.0166%" height="15" fill="rgb(243,203,4)" fg:x="615257" fg:w="214"/><text x="47.8391%" y="495.50"></text></g><g><title>finish_task_switch (133 samples, 0.01%)</title><rect x="47.6120%" y="469" width="0.0103%" height="15" fill="rgb(237,92,17)" fg:x="615553" fg:w="133"/><text x="47.8620%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (937 samples, 0.07%)</title><rect x="47.5556%" y="517" width="0.0725%" height="15" fill="rgb(231,119,7)" fg:x="614823" fg:w="937"/><text x="47.8056%" y="527.50"></text></g><g><title>schedule (289 samples, 0.02%)</title><rect x="47.6057%" y="501" width="0.0224%" height="15" fill="rgb(237,82,41)" fg:x="615471" fg:w="289"/><text x="47.8557%" y="511.50"></text></g><g><title>__schedule (286 samples, 0.02%)</title><rect x="47.6059%" y="485" width="0.0221%" height="15" fill="rgb(226,81,48)" fg:x="615474" fg:w="286"/><text x="47.8559%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (1,027 samples, 0.08%)</title><rect x="47.5547%" y="533" width="0.0794%" height="15" fill="rgb(234,70,51)" fg:x="614812" fg:w="1027"/><text x="47.8047%" y="543.50"></text></g><g><title>__btrfs_tree_lock (220 samples, 0.02%)</title><rect x="47.6341%" y="533" width="0.0170%" height="15" fill="rgb(251,86,4)" fg:x="615839" fg:w="220"/><text x="47.8841%" y="543.50"></text></g><g><title>schedule (175 samples, 0.01%)</title><rect x="47.6376%" y="517" width="0.0135%" height="15" fill="rgb(244,144,28)" fg:x="615884" fg:w="175"/><text x="47.8876%" y="527.50"></text></g><g><title>__schedule (173 samples, 0.01%)</title><rect x="47.6378%" y="501" width="0.0134%" height="15" fill="rgb(232,161,39)" fg:x="615886" fg:w="173"/><text x="47.8878%" y="511.50"></text></g><g><title>btrfs_try_tree_write_lock (234 samples, 0.02%)</title><rect x="47.6626%" y="533" width="0.0181%" height="15" fill="rgb(247,34,51)" fg:x="616207" fg:w="234"/><text x="47.9126%" y="543.50"></text></g><g><title>queued_write_lock_slowpath (198 samples, 0.02%)</title><rect x="47.6654%" y="517" width="0.0153%" height="15" fill="rgb(225,132,2)" fg:x="616243" fg:w="198"/><text x="47.9154%" y="527.50"></text></g><g><title>generic_bin_search.constprop.0 (277 samples, 0.02%)</title><rect x="47.6807%" y="533" width="0.0214%" height="15" fill="rgb(209,159,44)" fg:x="616441" fg:w="277"/><text x="47.9307%" y="543.50"></text></g><g><title>__radix_tree_lookup (176 samples, 0.01%)</title><rect x="47.7215%" y="501" width="0.0136%" height="15" fill="rgb(251,214,1)" fg:x="616968" fg:w="176"/><text x="47.9715%" y="511.50"></text></g><g><title>find_extent_buffer (361 samples, 0.03%)</title><rect x="47.7134%" y="517" width="0.0279%" height="15" fill="rgb(247,84,47)" fg:x="616864" fg:w="361"/><text x="47.9634%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (565 samples, 0.04%)</title><rect x="47.7021%" y="533" width="0.0437%" height="15" fill="rgb(240,111,43)" fg:x="616718" fg:w="565"/><text x="47.9521%" y="543.50"></text></g><g><title>btrfs_search_slot (2,834 samples, 0.22%)</title><rect x="47.5448%" y="549" width="0.2192%" height="15" fill="rgb(215,214,35)" fg:x="614684" fg:w="2834"/><text x="47.7948%" y="559.50"></text></g><g><title>unlock_up (225 samples, 0.02%)</title><rect x="47.7466%" y="533" width="0.0174%" height="15" fill="rgb(248,207,23)" fg:x="617293" fg:w="225"/><text x="47.9966%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (3,201 samples, 0.25%)</title><rect x="47.5430%" y="565" width="0.2476%" height="15" fill="rgb(214,186,4)" fg:x="614660" fg:w="3201"/><text x="47.7930%" y="575.50"></text></g><g><title>setup_items_for_insert (343 samples, 0.03%)</title><rect x="47.7640%" y="549" width="0.0265%" height="15" fill="rgb(220,133,22)" fg:x="617518" fg:w="343"/><text x="48.0140%" y="559.50"></text></g><g><title>btrfs_orphan_add (3,477 samples, 0.27%)</title><rect x="47.5286%" y="597" width="0.2689%" height="15" fill="rgb(239,134,19)" fg:x="614475" fg:w="3477"/><text x="47.7786%" y="607.50"></text></g><g><title>btrfs_insert_orphan_item (3,468 samples, 0.27%)</title><rect x="47.5293%" y="581" width="0.2682%" height="15" fill="rgb(250,140,9)" fg:x="614484" fg:w="3468"/><text x="47.7793%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (197 samples, 0.02%)</title><rect x="47.7997%" y="581" width="0.0152%" height="15" fill="rgb(225,59,14)" fg:x="617980" fg:w="197"/><text x="48.0497%" y="591.50"></text></g><g><title>btrfs_update_inode (227 samples, 0.02%)</title><rect x="47.7986%" y="597" width="0.0176%" height="15" fill="rgb(214,152,51)" fg:x="617965" fg:w="227"/><text x="48.0486%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (375 samples, 0.03%)</title><rect x="47.8260%" y="581" width="0.0290%" height="15" fill="rgb(251,227,43)" fg:x="618319" fg:w="375"/><text x="48.0760%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (328 samples, 0.03%)</title><rect x="47.8296%" y="565" width="0.0254%" height="15" fill="rgb(241,96,17)" fg:x="618366" fg:w="328"/><text x="48.0796%" y="575.50"></text></g><g><title>__reserve_bytes (295 samples, 0.02%)</title><rect x="47.8322%" y="549" width="0.0228%" height="15" fill="rgb(234,198,43)" fg:x="618399" fg:w="295"/><text x="48.0822%" y="559.50"></text></g><g><title>btrfs_rmdir (21,538 samples, 1.67%)</title><rect x="46.2007%" y="613" width="1.6659%" height="15" fill="rgb(220,108,29)" fg:x="597307" fg:w="21538"/><text x="46.4507%" y="623.50"></text></g><g><title>start_transaction (620 samples, 0.05%)</title><rect x="47.8187%" y="597" width="0.0480%" height="15" fill="rgb(226,163,33)" fg:x="618225" fg:w="620"/><text x="48.0687%" y="607.50"></text></g><g><title>dentry_unlink_inode (155 samples, 0.01%)</title><rect x="47.8742%" y="613" width="0.0120%" height="15" fill="rgb(205,194,45)" fg:x="618943" fg:w="155"/><text x="48.1242%" y="623.50"></text></g><g><title>__destroy_inode (180 samples, 0.01%)</title><rect x="47.8865%" y="597" width="0.0139%" height="15" fill="rgb(206,143,44)" fg:x="619101" fg:w="180"/><text x="48.1365%" y="607.50"></text></g><g><title>alloc_extent_map (172 samples, 0.01%)</title><rect x="47.9077%" y="565" width="0.0133%" height="15" fill="rgb(236,136,36)" fg:x="619376" fg:w="172"/><text x="48.1577%" y="575.50"></text></g><g><title>kmem_cache_alloc (154 samples, 0.01%)</title><rect x="47.9091%" y="549" width="0.0119%" height="15" fill="rgb(249,172,42)" fg:x="619394" fg:w="154"/><text x="48.1591%" y="559.50"></text></g><g><title>btrfs_drop_extent_cache (305 samples, 0.02%)</title><rect x="47.9045%" y="581" width="0.0236%" height="15" fill="rgb(216,139,23)" fg:x="619334" fg:w="305"/><text x="48.1545%" y="591.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (150 samples, 0.01%)</title><rect x="47.9281%" y="581" width="0.0116%" height="15" fill="rgb(207,166,20)" fg:x="619639" fg:w="150"/><text x="48.1781%" y="591.50"></text></g><g><title>clear_record_extent_bits (210 samples, 0.02%)</title><rect x="47.9466%" y="565" width="0.0162%" height="15" fill="rgb(210,209,22)" fg:x="619879" fg:w="210"/><text x="48.1966%" y="575.50"></text></g><g><title>__clear_extent_bit (177 samples, 0.01%)</title><rect x="47.9492%" y="549" width="0.0137%" height="15" fill="rgb(232,118,20)" fg:x="619912" fg:w="177"/><text x="48.1992%" y="559.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (276 samples, 0.02%)</title><rect x="47.9442%" y="581" width="0.0213%" height="15" fill="rgb(238,113,42)" fg:x="619848" fg:w="276"/><text x="48.1942%" y="591.50"></text></g><g><title>btrfs_destroy_inode (1,040 samples, 0.08%)</title><rect x="47.9004%" y="597" width="0.0804%" height="15" fill="rgb(231,42,5)" fg:x="619281" fg:w="1040"/><text x="48.1504%" y="607.50"></text></g><g><title>rb_erase (197 samples, 0.02%)</title><rect x="47.9656%" y="581" width="0.0152%" height="15" fill="rgb(243,166,24)" fg:x="620124" fg:w="197"/><text x="48.2156%" y="591.50"></text></g><g><title>destroy_inode (1,242 samples, 0.10%)</title><rect x="47.8862%" y="613" width="0.0961%" height="15" fill="rgb(237,226,12)" fg:x="619098" fg:w="1242"/><text x="48.1362%" y="623.50"></text></g><g><title>btrfs_trans_release_metadata (234 samples, 0.02%)</title><rect x="48.0230%" y="565" width="0.0181%" height="15" fill="rgb(229,133,24)" fg:x="620866" fg:w="234"/><text x="48.2730%" y="575.50"></text></g><g><title>btrfs_block_rsv_release (218 samples, 0.02%)</title><rect x="48.0242%" y="549" width="0.0169%" height="15" fill="rgb(238,33,43)" fg:x="620882" fg:w="218"/><text x="48.2742%" y="559.50"></text></g><g><title>__btrfs_end_transaction (520 samples, 0.04%)</title><rect x="48.0068%" y="581" width="0.0402%" height="15" fill="rgb(227,59,38)" fg:x="620657" fg:w="520"/><text x="48.2568%" y="591.50"></text></g><g><title>__radix_tree_lookup (183 samples, 0.01%)</title><rect x="48.0618%" y="549" width="0.0142%" height="15" fill="rgb(230,97,0)" fg:x="621368" fg:w="183"/><text x="48.3118%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (386 samples, 0.03%)</title><rect x="48.0470%" y="581" width="0.0299%" height="15" fill="rgb(250,173,50)" fg:x="621177" fg:w="386"/><text x="48.2970%" y="591.50"></text></g><g><title>radix_tree_delete_item (238 samples, 0.02%)</title><rect x="48.0585%" y="565" width="0.0184%" height="15" fill="rgb(240,15,50)" fg:x="621325" fg:w="238"/><text x="48.3085%" y="575.50"></text></g><g><title>btrfs_alloc_block_rsv (143 samples, 0.01%)</title><rect x="48.0827%" y="581" width="0.0111%" height="15" fill="rgb(221,93,22)" fg:x="621638" fg:w="143"/><text x="48.3327%" y="591.50"></text></g><g><title>btrfs_btree_balance_dirty (148 samples, 0.01%)</title><rect x="48.0937%" y="581" width="0.0114%" height="15" fill="rgb(245,180,53)" fg:x="621781" fg:w="148"/><text x="48.3437%" y="591.50"></text></g><g><title>__btrfs_end_transaction (142 samples, 0.01%)</title><rect x="48.1076%" y="565" width="0.0110%" height="15" fill="rgb(231,88,51)" fg:x="621960" fg:w="142"/><text x="48.3576%" y="575.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (183 samples, 0.01%)</title><rect x="48.1186%" y="565" width="0.0142%" height="15" fill="rgb(240,58,21)" fg:x="622102" fg:w="183"/><text x="48.3686%" y="575.50"></text></g><g><title>btrfs_get_token_32 (881 samples, 0.07%)</title><rect x="48.1598%" y="533" width="0.0681%" height="15" fill="rgb(237,21,10)" fg:x="622635" fg:w="881"/><text x="48.4098%" y="543.50"></text></g><g><title>check_setget_bounds.isra.0 (132 samples, 0.01%)</title><rect x="48.2177%" y="517" width="0.0102%" height="15" fill="rgb(218,43,11)" fg:x="623384" fg:w="132"/><text x="48.4677%" y="527.50"></text></g><g><title>btrfs_set_token_32 (614 samples, 0.05%)</title><rect x="48.2308%" y="533" width="0.0475%" height="15" fill="rgb(218,221,29)" fg:x="623553" fg:w="614"/><text x="48.4808%" y="543.50"></text></g><g><title>memmove_extent_buffer (390 samples, 0.03%)</title><rect x="48.2891%" y="533" width="0.0302%" height="15" fill="rgb(214,118,42)" fg:x="624307" fg:w="390"/><text x="48.5391%" y="543.50"></text></g><g><title>memmove (315 samples, 0.02%)</title><rect x="48.2949%" y="517" width="0.0244%" height="15" fill="rgb(251,200,26)" fg:x="624382" fg:w="315"/><text x="48.5449%" y="527.50"></text></g><g><title>btrfs_del_items (2,419 samples, 0.19%)</title><rect x="48.1384%" y="549" width="0.1871%" height="15" fill="rgb(237,101,39)" fg:x="622358" fg:w="2419"/><text x="48.3884%" y="559.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (139 samples, 0.01%)</title><rect x="48.3255%" y="549" width="0.0108%" height="15" fill="rgb(251,117,11)" fg:x="624777" fg:w="139"/><text x="48.5755%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (183 samples, 0.01%)</title><rect x="48.3579%" y="469" width="0.0142%" height="15" fill="rgb(216,223,23)" fg:x="625196" fg:w="183"/><text x="48.6079%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (168 samples, 0.01%)</title><rect x="48.3591%" y="453" width="0.0130%" height="15" fill="rgb(251,54,12)" fg:x="625211" fg:w="168"/><text x="48.6091%" y="463.50"></text></g><g><title>prepare_to_wait_event (206 samples, 0.02%)</title><rect x="48.3565%" y="485" width="0.0159%" height="15" fill="rgb(254,176,54)" fg:x="625178" fg:w="206"/><text x="48.6065%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (346 samples, 0.03%)</title><rect x="48.3724%" y="485" width="0.0268%" height="15" fill="rgb(210,32,8)" fg:x="625384" fg:w="346"/><text x="48.6224%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (226 samples, 0.02%)</title><rect x="48.3817%" y="469" width="0.0175%" height="15" fill="rgb(235,52,38)" fg:x="625504" fg:w="226"/><text x="48.6317%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (838 samples, 0.06%)</title><rect x="48.3491%" y="501" width="0.0648%" height="15" fill="rgb(231,4,44)" fg:x="625082" fg:w="838"/><text x="48.5991%" y="511.50"></text></g><g><title>schedule (190 samples, 0.01%)</title><rect x="48.3992%" y="485" width="0.0147%" height="15" fill="rgb(249,2,32)" fg:x="625730" fg:w="190"/><text x="48.6492%" y="495.50"></text></g><g><title>__schedule (189 samples, 0.01%)</title><rect x="48.3993%" y="469" width="0.0146%" height="15" fill="rgb(224,65,26)" fg:x="625731" fg:w="189"/><text x="48.6493%" y="479.50"></text></g><g><title>__btrfs_read_lock_root_node (912 samples, 0.07%)</title><rect x="48.3486%" y="517" width="0.0705%" height="15" fill="rgb(250,73,40)" fg:x="625076" fg:w="912"/><text x="48.5986%" y="527.50"></text></g><g><title>__btrfs_tree_lock (245 samples, 0.02%)</title><rect x="48.4192%" y="517" width="0.0190%" height="15" fill="rgb(253,177,16)" fg:x="625988" fg:w="245"/><text x="48.6692%" y="527.50"></text></g><g><title>schedule (222 samples, 0.02%)</title><rect x="48.4209%" y="501" width="0.0172%" height="15" fill="rgb(217,32,34)" fg:x="626011" fg:w="222"/><text x="48.6709%" y="511.50"></text></g><g><title>__schedule (221 samples, 0.02%)</title><rect x="48.4210%" y="485" width="0.0171%" height="15" fill="rgb(212,7,10)" fg:x="626012" fg:w="221"/><text x="48.6710%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (152 samples, 0.01%)</title><rect x="48.4507%" y="469" width="0.0118%" height="15" fill="rgb(245,89,8)" fg:x="626396" fg:w="152"/><text x="48.7007%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (137 samples, 0.01%)</title><rect x="48.4519%" y="453" width="0.0106%" height="15" fill="rgb(237,16,53)" fg:x="626411" fg:w="137"/><text x="48.7019%" y="463.50"></text></g><g><title>prepare_to_wait_event (176 samples, 0.01%)</title><rect x="48.4492%" y="485" width="0.0136%" height="15" fill="rgb(250,204,30)" fg:x="626377" fg:w="176"/><text x="48.6992%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (471 samples, 0.04%)</title><rect x="48.4629%" y="485" width="0.0364%" height="15" fill="rgb(208,77,27)" fg:x="626553" fg:w="471"/><text x="48.7129%" y="495.50"></text></g><g><title>finish_task_switch (132 samples, 0.01%)</title><rect x="48.5063%" y="453" width="0.0102%" height="15" fill="rgb(250,204,28)" fg:x="627115" fg:w="132"/><text x="48.7563%" y="463.50"></text></g><g><title>__btrfs_tree_lock (1,049 samples, 0.08%)</title><rect x="48.4403%" y="501" width="0.0811%" height="15" fill="rgb(244,63,21)" fg:x="626261" fg:w="1049"/><text x="48.6903%" y="511.50"></text></g><g><title>schedule (286 samples, 0.02%)</title><rect x="48.4993%" y="485" width="0.0221%" height="15" fill="rgb(236,85,44)" fg:x="627024" fg:w="286"/><text x="48.7493%" y="495.50"></text></g><g><title>__schedule (282 samples, 0.02%)</title><rect x="48.4996%" y="469" width="0.0218%" height="15" fill="rgb(215,98,4)" fg:x="627028" fg:w="282"/><text x="48.7496%" y="479.50"></text></g><g><title>btrfs_lock_root_node (1,071 samples, 0.08%)</title><rect x="48.4401%" y="517" width="0.0828%" height="15" fill="rgb(235,38,11)" fg:x="626259" fg:w="1071"/><text x="48.6901%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (296 samples, 0.02%)</title><rect x="48.5273%" y="517" width="0.0229%" height="15" fill="rgb(254,186,25)" fg:x="627386" fg:w="296"/><text x="48.7773%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (268 samples, 0.02%)</title><rect x="48.5295%" y="501" width="0.0207%" height="15" fill="rgb(225,55,31)" fg:x="627414" fg:w="268"/><text x="48.7795%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (225 samples, 0.02%)</title><rect x="48.5526%" y="517" width="0.0174%" height="15" fill="rgb(211,15,21)" fg:x="627713" fg:w="225"/><text x="48.8026%" y="527.50"></text></g><g><title>__radix_tree_lookup (165 samples, 0.01%)</title><rect x="48.5890%" y="485" width="0.0128%" height="15" fill="rgb(215,187,41)" fg:x="628184" fg:w="165"/><text x="48.8390%" y="495.50"></text></g><g><title>find_extent_buffer (301 samples, 0.02%)</title><rect x="48.5829%" y="501" width="0.0233%" height="15" fill="rgb(248,69,32)" fg:x="628105" fg:w="301"/><text x="48.8329%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (513 samples, 0.04%)</title><rect x="48.5700%" y="517" width="0.0397%" height="15" fill="rgb(252,102,52)" fg:x="627938" fg:w="513"/><text x="48.8200%" y="527.50"></text></g><g><title>reada_for_balance (138 samples, 0.01%)</title><rect x="48.6097%" y="517" width="0.0107%" height="15" fill="rgb(253,140,32)" fg:x="628451" fg:w="138"/><text x="48.8597%" y="527.50"></text></g><g><title>select_task_rq_fair (138 samples, 0.01%)</title><rect x="48.6510%" y="437" width="0.0107%" height="15" fill="rgb(216,56,42)" fg:x="628986" fg:w="138"/><text x="48.9010%" y="447.50"></text></g><g><title>enqueue_task_fair (158 samples, 0.01%)</title><rect x="48.6636%" y="421" width="0.0122%" height="15" fill="rgb(216,184,14)" fg:x="629148" fg:w="158"/><text x="48.9136%" y="431.50"></text></g><g><title>ttwu_do_activate (349 samples, 0.03%)</title><rect x="48.6626%" y="437" width="0.0270%" height="15" fill="rgb(237,187,27)" fg:x="629136" fg:w="349"/><text x="48.9126%" y="447.50"></text></g><g><title>psi_task_change (178 samples, 0.01%)</title><rect x="48.6759%" y="421" width="0.0138%" height="15" fill="rgb(219,65,3)" fg:x="629307" fg:w="178"/><text x="48.9259%" y="431.50"></text></g><g><title>psi_group_change (159 samples, 0.01%)</title><rect x="48.6773%" y="405" width="0.0123%" height="15" fill="rgb(245,83,25)" fg:x="629326" fg:w="159"/><text x="48.9273%" y="415.50"></text></g><g><title>__wake_up_common (931 samples, 0.07%)</title><rect x="48.6248%" y="485" width="0.0720%" height="15" fill="rgb(214,205,45)" fg:x="628647" fg:w="931"/><text x="48.8748%" y="495.50"></text></g><g><title>autoremove_wake_function (909 samples, 0.07%)</title><rect x="48.6265%" y="469" width="0.0703%" height="15" fill="rgb(241,20,18)" fg:x="628669" fg:w="909"/><text x="48.8765%" y="479.50"></text></g><g><title>try_to_wake_up (889 samples, 0.07%)</title><rect x="48.6281%" y="453" width="0.0688%" height="15" fill="rgb(232,163,23)" fg:x="628689" fg:w="889"/><text x="48.8781%" y="463.50"></text></g><g><title>__wake_up_common_lock (989 samples, 0.08%)</title><rect x="48.6248%" y="501" width="0.0765%" height="15" fill="rgb(214,5,46)" fg:x="628647" fg:w="989"/><text x="48.8748%" y="511.50"></text></g><g><title>btrfs_lookup_inode (4,723 samples, 0.37%)</title><rect x="48.3379%" y="549" width="0.3653%" height="15" fill="rgb(229,78,17)" fg:x="624937" fg:w="4723"/><text x="48.5879%" y="559.50"></text></g><g><title>btrfs_search_slot (4,705 samples, 0.36%)</title><rect x="48.3393%" y="533" width="0.3639%" height="15" fill="rgb(248,89,10)" fg:x="624955" fg:w="4705"/><text x="48.5893%" y="543.50"></text></g><g><title>unlock_up (1,065 samples, 0.08%)</title><rect x="48.6208%" y="517" width="0.0824%" height="15" fill="rgb(248,54,15)" fg:x="628595" fg:w="1065"/><text x="48.8708%" y="527.50"></text></g><g><title>__wake_up_common (287 samples, 0.02%)</title><rect x="48.7104%" y="517" width="0.0222%" height="15" fill="rgb(223,116,6)" fg:x="629754" fg:w="287"/><text x="48.9604%" y="527.50"></text></g><g><title>autoremove_wake_function (278 samples, 0.02%)</title><rect x="48.7111%" y="501" width="0.0215%" height="15" fill="rgb(205,125,38)" fg:x="629763" fg:w="278"/><text x="48.9611%" y="511.50"></text></g><g><title>try_to_wake_up (273 samples, 0.02%)</title><rect x="48.7115%" y="485" width="0.0211%" height="15" fill="rgb(251,78,38)" fg:x="629768" fg:w="273"/><text x="48.9615%" y="495.50"></text></g><g><title>__wake_up_common_lock (300 samples, 0.02%)</title><rect x="48.7104%" y="533" width="0.0232%" height="15" fill="rgb(253,78,28)" fg:x="629754" fg:w="300"/><text x="48.9604%" y="543.50"></text></g><g><title>btrfs_release_path (443 samples, 0.03%)</title><rect x="48.7094%" y="549" width="0.0343%" height="15" fill="rgb(209,120,3)" fg:x="629741" fg:w="443"/><text x="48.9594%" y="559.50"></text></g><g><title>__btrfs_update_delayed_inode (8,077 samples, 0.62%)</title><rect x="48.1327%" y="565" width="0.6247%" height="15" fill="rgb(238,229,9)" fg:x="622285" fg:w="8077"/><text x="48.3827%" y="575.50"></text></g><g><title>btrfs_btree_balance_dirty (181 samples, 0.01%)</title><rect x="48.7624%" y="565" width="0.0140%" height="15" fill="rgb(253,159,18)" fg:x="630426" fg:w="181"/><text x="49.0124%" y="575.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (9,065 samples, 0.70%)</title><rect x="48.1052%" y="581" width="0.7012%" height="15" fill="rgb(244,42,34)" fg:x="621929" fg:w="9065"/><text x="48.3552%" y="591.50"></text></g><g><title>start_transaction (197 samples, 0.02%)</title><rect x="48.7911%" y="565" width="0.0152%" height="15" fill="rgb(224,8,7)" fg:x="630797" fg:w="197"/><text x="49.0411%" y="575.50"></text></g><g><title>btrfs_del_items (163 samples, 0.01%)</title><rect x="48.8081%" y="565" width="0.0126%" height="15" fill="rgb(210,201,45)" fg:x="631016" fg:w="163"/><text x="49.0581%" y="575.50"></text></g><g><title>__wake_up_common (171 samples, 0.01%)</title><rect x="48.8217%" y="517" width="0.0132%" height="15" fill="rgb(252,185,21)" fg:x="631192" fg:w="171"/><text x="49.0717%" y="527.50"></text></g><g><title>autoremove_wake_function (168 samples, 0.01%)</title><rect x="48.8219%" y="501" width="0.0130%" height="15" fill="rgb(223,131,1)" fg:x="631195" fg:w="168"/><text x="49.0719%" y="511.50"></text></g><g><title>try_to_wake_up (165 samples, 0.01%)</title><rect x="48.8221%" y="485" width="0.0128%" height="15" fill="rgb(245,141,16)" fg:x="631198" fg:w="165"/><text x="49.0721%" y="495.50"></text></g><g><title>__wake_up_common_lock (174 samples, 0.01%)</title><rect x="48.8216%" y="533" width="0.0135%" height="15" fill="rgb(229,55,45)" fg:x="631191" fg:w="174"/><text x="49.0716%" y="543.50"></text></g><g><title>btrfs_free_path (305 samples, 0.02%)</title><rect x="48.8207%" y="565" width="0.0236%" height="15" fill="rgb(208,92,15)" fg:x="631179" fg:w="305"/><text x="49.0707%" y="575.50"></text></g><g><title>btrfs_release_path (300 samples, 0.02%)</title><rect x="48.8211%" y="549" width="0.0232%" height="15" fill="rgb(234,185,47)" fg:x="631184" fg:w="300"/><text x="49.0711%" y="559.50"></text></g><g><title>finish_wait (145 samples, 0.01%)</title><rect x="48.8605%" y="517" width="0.0112%" height="15" fill="rgb(253,104,50)" fg:x="631694" fg:w="145"/><text x="49.1105%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (138 samples, 0.01%)</title><rect x="48.8610%" y="501" width="0.0107%" height="15" fill="rgb(205,70,7)" fg:x="631701" fg:w="138"/><text x="49.1110%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (131 samples, 0.01%)</title><rect x="48.8616%" y="485" width="0.0101%" height="15" fill="rgb(240,178,43)" fg:x="631708" fg:w="131"/><text x="49.1116%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (456 samples, 0.04%)</title><rect x="48.8751%" y="501" width="0.0353%" height="15" fill="rgb(214,112,2)" fg:x="631883" fg:w="456"/><text x="49.1251%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (439 samples, 0.03%)</title><rect x="48.8764%" y="485" width="0.0340%" height="15" fill="rgb(206,46,17)" fg:x="631900" fg:w="439"/><text x="49.1264%" y="495.50"></text></g><g><title>prepare_to_wait_event (512 samples, 0.04%)</title><rect x="48.8717%" y="517" width="0.0396%" height="15" fill="rgb(225,220,16)" fg:x="631839" fg:w="512"/><text x="49.1217%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (397 samples, 0.03%)</title><rect x="48.9113%" y="517" width="0.0307%" height="15" fill="rgb(238,65,40)" fg:x="632351" fg:w="397"/><text x="49.1613%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (248 samples, 0.02%)</title><rect x="48.9228%" y="501" width="0.0192%" height="15" fill="rgb(230,151,21)" fg:x="632500" fg:w="248"/><text x="49.1728%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (458 samples, 0.04%)</title><rect x="48.9579%" y="469" width="0.0354%" height="15" fill="rgb(218,58,49)" fg:x="632953" fg:w="458"/><text x="49.2079%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (431 samples, 0.03%)</title><rect x="48.9600%" y="453" width="0.0333%" height="15" fill="rgb(219,179,14)" fg:x="632980" fg:w="431"/><text x="49.2100%" y="463.50"></text></g><g><title>native_write_msr (427 samples, 0.03%)</title><rect x="48.9603%" y="437" width="0.0330%" height="15" fill="rgb(223,72,1)" fg:x="632984" fg:w="427"/><text x="49.2103%" y="447.50"></text></g><g><title>finish_task_switch (502 samples, 0.04%)</title><rect x="48.9556%" y="485" width="0.0388%" height="15" fill="rgb(238,126,10)" fg:x="632923" fg:w="502"/><text x="49.2056%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (1,939 samples, 0.15%)</title><rect x="48.8562%" y="533" width="0.1500%" height="15" fill="rgb(224,206,38)" fg:x="631638" fg:w="1939"/><text x="49.1062%" y="543.50"></text></g><g><title>schedule (829 samples, 0.06%)</title><rect x="48.9420%" y="517" width="0.0641%" height="15" fill="rgb(212,201,54)" fg:x="632748" fg:w="829"/><text x="49.1920%" y="527.50"></text></g><g><title>__schedule (821 samples, 0.06%)</title><rect x="48.9426%" y="501" width="0.0635%" height="15" fill="rgb(218,154,48)" fg:x="632756" fg:w="821"/><text x="49.1926%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (1,989 samples, 0.15%)</title><rect x="48.8555%" y="549" width="0.1538%" height="15" fill="rgb(232,93,24)" fg:x="631629" fg:w="1989"/><text x="49.1055%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (217 samples, 0.02%)</title><rect x="49.0305%" y="501" width="0.0168%" height="15" fill="rgb(245,30,21)" fg:x="633892" fg:w="217"/><text x="49.2805%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (197 samples, 0.02%)</title><rect x="49.0321%" y="485" width="0.0152%" height="15" fill="rgb(242,148,29)" fg:x="633912" fg:w="197"/><text x="49.2821%" y="495.50"></text></g><g><title>prepare_to_wait_event (254 samples, 0.02%)</title><rect x="49.0285%" y="517" width="0.0196%" height="15" fill="rgb(244,153,54)" fg:x="633866" fg:w="254"/><text x="49.2785%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (607 samples, 0.05%)</title><rect x="49.0482%" y="517" width="0.0470%" height="15" fill="rgb(252,87,22)" fg:x="634120" fg:w="607"/><text x="49.2982%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (202 samples, 0.02%)</title><rect x="49.0795%" y="501" width="0.0156%" height="15" fill="rgb(210,51,29)" fg:x="634525" fg:w="202"/><text x="49.3295%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (280 samples, 0.02%)</title><rect x="49.1076%" y="469" width="0.0217%" height="15" fill="rgb(242,136,47)" fg:x="634889" fg:w="280"/><text x="49.3576%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (264 samples, 0.02%)</title><rect x="49.1089%" y="453" width="0.0204%" height="15" fill="rgb(238,68,4)" fg:x="634905" fg:w="264"/><text x="49.3589%" y="463.50"></text></g><g><title>native_write_msr (259 samples, 0.02%)</title><rect x="49.1093%" y="437" width="0.0200%" height="15" fill="rgb(242,161,30)" fg:x="634910" fg:w="259"/><text x="49.3593%" y="447.50"></text></g><g><title>finish_task_switch (306 samples, 0.02%)</title><rect x="49.1062%" y="485" width="0.0237%" height="15" fill="rgb(218,58,44)" fg:x="634870" fg:w="306"/><text x="49.3562%" y="495.50"></text></g><g><title>__btrfs_tree_lock (1,583 samples, 0.12%)</title><rect x="49.0181%" y="533" width="0.1224%" height="15" fill="rgb(252,125,32)" fg:x="633732" fg:w="1583"/><text x="49.2681%" y="543.50"></text></g><g><title>schedule (588 samples, 0.05%)</title><rect x="49.0951%" y="517" width="0.0455%" height="15" fill="rgb(219,178,0)" fg:x="634727" fg:w="588"/><text x="49.3451%" y="527.50"></text></g><g><title>__schedule (587 samples, 0.05%)</title><rect x="49.0952%" y="501" width="0.0454%" height="15" fill="rgb(213,152,7)" fg:x="634728" fg:w="587"/><text x="49.3452%" y="511.50"></text></g><g><title>btrfs_lock_root_node (1,609 samples, 0.12%)</title><rect x="49.0178%" y="549" width="0.1245%" height="15" fill="rgb(249,109,34)" fg:x="633727" fg:w="1609"/><text x="49.2678%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (141 samples, 0.01%)</title><rect x="49.1489%" y="549" width="0.0109%" height="15" fill="rgb(232,96,21)" fg:x="635423" fg:w="141"/><text x="49.3989%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (253 samples, 0.02%)</title><rect x="49.1619%" y="549" width="0.0196%" height="15" fill="rgb(228,27,39)" fg:x="635590" fg:w="253"/><text x="49.4119%" y="559.50"></text></g><g><title>__radix_tree_lookup (147 samples, 0.01%)</title><rect x="49.1991%" y="517" width="0.0114%" height="15" fill="rgb(211,182,52)" fg:x="636072" fg:w="147"/><text x="49.4491%" y="527.50"></text></g><g><title>find_extent_buffer (297 samples, 0.02%)</title><rect x="49.1927%" y="533" width="0.0230%" height="15" fill="rgb(234,178,38)" fg:x="635989" fg:w="297"/><text x="49.4427%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (501 samples, 0.04%)</title><rect x="49.1814%" y="549" width="0.0388%" height="15" fill="rgb(221,111,3)" fg:x="635843" fg:w="501"/><text x="49.4314%" y="559.50"></text></g><g><title>__wake_up_common (317 samples, 0.02%)</title><rect x="49.2267%" y="517" width="0.0245%" height="15" fill="rgb(228,175,21)" fg:x="636429" fg:w="317"/><text x="49.4767%" y="527.50"></text></g><g><title>autoremove_wake_function (316 samples, 0.02%)</title><rect x="49.2268%" y="501" width="0.0244%" height="15" fill="rgb(228,174,43)" fg:x="636430" fg:w="316"/><text x="49.4768%" y="511.50"></text></g><g><title>try_to_wake_up (311 samples, 0.02%)</title><rect x="49.2272%" y="485" width="0.0241%" height="15" fill="rgb(211,191,0)" fg:x="636435" fg:w="311"/><text x="49.4772%" y="495.50"></text></g><g><title>__wake_up_common_lock (339 samples, 0.03%)</title><rect x="49.2267%" y="533" width="0.0262%" height="15" fill="rgb(253,117,3)" fg:x="636428" fg:w="339"/><text x="49.4767%" y="543.50"></text></g><g><title>btrfs_search_slot (5,307 samples, 0.41%)</title><rect x="48.8443%" y="565" width="0.4105%" height="15" fill="rgb(241,127,19)" fg:x="631484" fg:w="5307"/><text x="49.0943%" y="575.50"></text></g><g><title>unlock_up (425 samples, 0.03%)</title><rect x="49.2219%" y="549" width="0.0329%" height="15" fill="rgb(218,103,12)" fg:x="636366" fg:w="425"/><text x="49.4719%" y="559.50"></text></g><g><title>btrfs_del_orphan_item (5,880 samples, 0.45%)</title><rect x="48.8064%" y="581" width="0.4548%" height="15" fill="rgb(236,214,43)" fg:x="630994" fg:w="5880"/><text x="49.0564%" y="591.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (157 samples, 0.01%)</title><rect x="49.2847%" y="565" width="0.0121%" height="15" fill="rgb(244,144,19)" fg:x="637178" fg:w="157"/><text x="49.5347%" y="575.50"></text></g><g><title>clear_state_bit (216 samples, 0.02%)</title><rect x="49.3091%" y="549" width="0.0167%" height="15" fill="rgb(246,188,10)" fg:x="637494" fg:w="216"/><text x="49.5591%" y="559.50"></text></g><g><title>__clear_extent_bit (424 samples, 0.03%)</title><rect x="49.2968%" y="565" width="0.0328%" height="15" fill="rgb(212,193,33)" fg:x="637335" fg:w="424"/><text x="49.5468%" y="575.50"></text></g><g><title>btrfs_free_tree_block (184 samples, 0.01%)</title><rect x="49.3496%" y="533" width="0.0142%" height="15" fill="rgb(241,51,29)" fg:x="638017" fg:w="184"/><text x="49.5996%" y="543.50"></text></g><g><title>btrfs_del_leaf (234 samples, 0.02%)</title><rect x="49.3494%" y="549" width="0.0181%" height="15" fill="rgb(211,58,19)" fg:x="638015" fg:w="234"/><text x="49.5994%" y="559.50"></text></g><g><title>btrfs_get_token_32 (951 samples, 0.07%)</title><rect x="49.3736%" y="549" width="0.0736%" height="15" fill="rgb(229,111,26)" fg:x="638328" fg:w="951"/><text x="49.6236%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (154 samples, 0.01%)</title><rect x="49.4353%" y="533" width="0.0119%" height="15" fill="rgb(213,115,40)" fg:x="639125" fg:w="154"/><text x="49.6853%" y="543.50"></text></g><g><title>btrfs_set_token_32 (684 samples, 0.05%)</title><rect x="49.4507%" y="549" width="0.0529%" height="15" fill="rgb(209,56,44)" fg:x="639325" fg:w="684"/><text x="49.7007%" y="559.50"></text></g><g><title>memmove_extent_buffer (401 samples, 0.03%)</title><rect x="49.5189%" y="549" width="0.0310%" height="15" fill="rgb(230,108,32)" fg:x="640206" fg:w="401"/><text x="49.7689%" y="559.50"></text></g><g><title>memmove (307 samples, 0.02%)</title><rect x="49.5262%" y="533" width="0.0237%" height="15" fill="rgb(216,165,31)" fg:x="640300" fg:w="307"/><text x="49.7762%" y="543.50"></text></g><g><title>push_leaf_left (176 samples, 0.01%)</title><rect x="49.5499%" y="549" width="0.0136%" height="15" fill="rgb(218,122,21)" fg:x="640607" fg:w="176"/><text x="49.7999%" y="559.50"></text></g><g><title>push_leaf_right (160 samples, 0.01%)</title><rect x="49.5635%" y="549" width="0.0124%" height="15" fill="rgb(223,224,47)" fg:x="640783" fg:w="160"/><text x="49.8135%" y="559.50"></text></g><g><title>btrfs_del_items (3,202 samples, 0.25%)</title><rect x="49.3299%" y="565" width="0.2477%" height="15" fill="rgb(238,102,44)" fg:x="637762" fg:w="3202"/><text x="49.5799%" y="575.50"></text></g><g><title>alloc_extent_map (250 samples, 0.02%)</title><rect x="49.5815%" y="549" width="0.0193%" height="15" fill="rgb(236,46,40)" fg:x="641015" fg:w="250"/><text x="49.8315%" y="559.50"></text></g><g><title>kmem_cache_alloc (190 samples, 0.01%)</title><rect x="49.5861%" y="533" width="0.0147%" height="15" fill="rgb(247,202,50)" fg:x="641075" fg:w="190"/><text x="49.8361%" y="543.50"></text></g><g><title>btrfs_drop_extent_cache (425 samples, 0.03%)</title><rect x="49.5775%" y="565" width="0.0329%" height="15" fill="rgb(209,99,20)" fg:x="640964" fg:w="425"/><text x="49.8275%" y="575.50"></text></g><g><title>enqueue_task_fair (154 samples, 0.01%)</title><rect x="49.6466%" y="453" width="0.0119%" height="15" fill="rgb(252,27,34)" fg:x="641857" fg:w="154"/><text x="49.8966%" y="463.50"></text></g><g><title>ttwu_do_activate (280 samples, 0.02%)</title><rect x="49.6461%" y="469" width="0.0217%" height="15" fill="rgb(215,206,23)" fg:x="641851" fg:w="280"/><text x="49.8961%" y="479.50"></text></g><g><title>__wake_up_common (791 samples, 0.06%)</title><rect x="49.6130%" y="517" width="0.0612%" height="15" fill="rgb(212,135,36)" fg:x="641423" fg:w="791"/><text x="49.8630%" y="527.50"></text></g><g><title>autoremove_wake_function (773 samples, 0.06%)</title><rect x="49.6144%" y="501" width="0.0598%" height="15" fill="rgb(240,189,1)" fg:x="641441" fg:w="773"/><text x="49.8644%" y="511.50"></text></g><g><title>try_to_wake_up (761 samples, 0.06%)</title><rect x="49.6153%" y="485" width="0.0589%" height="15" fill="rgb(242,56,20)" fg:x="641453" fg:w="761"/><text x="49.8653%" y="495.50"></text></g><g><title>__wake_up_common_lock (809 samples, 0.06%)</title><rect x="49.6128%" y="533" width="0.0626%" height="15" fill="rgb(247,132,33)" fg:x="641420" fg:w="809"/><text x="49.8628%" y="543.50"></text></g><g><title>btrfs_free_path (989 samples, 0.08%)</title><rect x="49.6104%" y="565" width="0.0765%" height="15" fill="rgb(208,149,11)" fg:x="641389" fg:w="989"/><text x="49.8604%" y="575.50"></text></g><g><title>btrfs_release_path (983 samples, 0.08%)</title><rect x="49.6109%" y="549" width="0.0760%" height="15" fill="rgb(211,33,11)" fg:x="641395" fg:w="983"/><text x="49.8609%" y="559.50"></text></g><g><title>_raw_spin_lock (172 samples, 0.01%)</title><rect x="49.7051%" y="517" width="0.0133%" height="15" fill="rgb(221,29,38)" fg:x="642613" fg:w="172"/><text x="49.9551%" y="527.50"></text></g><g><title>btrfs_block_rsv_release (261 samples, 0.02%)</title><rect x="49.7006%" y="533" width="0.0202%" height="15" fill="rgb(206,182,49)" fg:x="642555" fg:w="261"/><text x="49.9506%" y="543.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (355 samples, 0.03%)</title><rect x="49.7208%" y="533" width="0.0275%" height="15" fill="rgb(216,140,1)" fg:x="642816" fg:w="355"/><text x="49.9708%" y="543.50"></text></g><g><title>kfree (211 samples, 0.02%)</title><rect x="49.7482%" y="533" width="0.0163%" height="15" fill="rgb(232,57,40)" fg:x="643171" fg:w="211"/><text x="49.9982%" y="543.50"></text></g><g><title>__btrfs_kill_delayed_node (951 samples, 0.07%)</title><rect x="49.6957%" y="549" width="0.0736%" height="15" fill="rgb(224,186,18)" fg:x="642492" fg:w="951"/><text x="49.9457%" y="559.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,006 samples, 0.08%)</title><rect x="49.6949%" y="565" width="0.0778%" height="15" fill="rgb(215,121,11)" fg:x="642481" fg:w="1006"/><text x="49.9449%" y="575.50"></text></g><g><title>_raw_spin_lock_irqsave (254 samples, 0.02%)</title><rect x="49.7993%" y="501" width="0.0196%" height="15" fill="rgb(245,147,10)" fg:x="643831" fg:w="254"/><text x="50.0493%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (239 samples, 0.02%)</title><rect x="49.8004%" y="485" width="0.0185%" height="15" fill="rgb(238,153,13)" fg:x="643846" fg:w="239"/><text x="50.0504%" y="495.50"></text></g><g><title>prepare_to_wait_event (282 samples, 0.02%)</title><rect x="49.7975%" y="517" width="0.0218%" height="15" fill="rgb(233,108,0)" fg:x="643808" fg:w="282"/><text x="50.0475%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (438 samples, 0.03%)</title><rect x="49.8193%" y="517" width="0.0339%" height="15" fill="rgb(212,157,17)" fg:x="644090" fg:w="438"/><text x="50.0693%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (296 samples, 0.02%)</title><rect x="49.8303%" y="501" width="0.0229%" height="15" fill="rgb(225,213,38)" fg:x="644232" fg:w="296"/><text x="50.0803%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (1,110 samples, 0.09%)</title><rect x="49.7878%" y="533" width="0.0859%" height="15" fill="rgb(248,16,11)" fg:x="643682" fg:w="1110"/><text x="50.0378%" y="543.50"></text></g><g><title>schedule (264 samples, 0.02%)</title><rect x="49.8532%" y="517" width="0.0204%" height="15" fill="rgb(241,33,4)" fg:x="644528" fg:w="264"/><text x="50.1032%" y="527.50"></text></g><g><title>__schedule (260 samples, 0.02%)</title><rect x="49.8535%" y="501" width="0.0201%" height="15" fill="rgb(222,26,43)" fg:x="644532" fg:w="260"/><text x="50.1035%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (1,187 samples, 0.09%)</title><rect x="49.7870%" y="549" width="0.0918%" height="15" fill="rgb(243,29,36)" fg:x="643672" fg:w="1187"/><text x="50.0370%" y="559.50"></text></g><g><title>__btrfs_tree_lock (286 samples, 0.02%)</title><rect x="49.8788%" y="549" width="0.0221%" height="15" fill="rgb(241,9,27)" fg:x="644859" fg:w="286"/><text x="50.1288%" y="559.50"></text></g><g><title>schedule (254 samples, 0.02%)</title><rect x="49.8813%" y="533" width="0.0196%" height="15" fill="rgb(205,117,26)" fg:x="644891" fg:w="254"/><text x="50.1313%" y="543.50"></text></g><g><title>__schedule (252 samples, 0.02%)</title><rect x="49.8814%" y="517" width="0.0195%" height="15" fill="rgb(209,80,39)" fg:x="644893" fg:w="252"/><text x="50.1314%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (159 samples, 0.01%)</title><rect x="49.9152%" y="501" width="0.0123%" height="15" fill="rgb(239,155,6)" fg:x="645330" fg:w="159"/><text x="50.1652%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (145 samples, 0.01%)</title><rect x="49.9163%" y="485" width="0.0112%" height="15" fill="rgb(212,104,12)" fg:x="645344" fg:w="145"/><text x="50.1663%" y="495.50"></text></g><g><title>prepare_to_wait_event (183 samples, 0.01%)</title><rect x="49.9135%" y="517" width="0.0142%" height="15" fill="rgb(234,204,3)" fg:x="645308" fg:w="183"/><text x="50.1635%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (543 samples, 0.04%)</title><rect x="49.9277%" y="517" width="0.0420%" height="15" fill="rgb(251,218,7)" fg:x="645491" fg:w="543"/><text x="50.1777%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (163 samples, 0.01%)</title><rect x="49.9571%" y="501" width="0.0126%" height="15" fill="rgb(221,81,32)" fg:x="645871" fg:w="163"/><text x="50.2071%" y="511.50"></text></g><g><title>__schedule (278 samples, 0.02%)</title><rect x="49.9699%" y="501" width="0.0215%" height="15" fill="rgb(214,152,26)" fg:x="646037" fg:w="278"/><text x="50.2199%" y="511.50"></text></g><g><title>__btrfs_tree_lock (1,109 samples, 0.09%)</title><rect x="49.9057%" y="533" width="0.0858%" height="15" fill="rgb(223,22,3)" fg:x="645207" fg:w="1109"/><text x="50.1557%" y="543.50"></text></g><g><title>schedule (282 samples, 0.02%)</title><rect x="49.9697%" y="517" width="0.0218%" height="15" fill="rgb(207,174,7)" fg:x="646034" fg:w="282"/><text x="50.2197%" y="527.50"></text></g><g><title>btrfs_lock_root_node (1,138 samples, 0.09%)</title><rect x="49.9056%" y="549" width="0.0880%" height="15" fill="rgb(224,19,52)" fg:x="645206" fg:w="1138"/><text x="50.1556%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (398 samples, 0.03%)</title><rect x="50.0043%" y="549" width="0.0308%" height="15" fill="rgb(228,24,14)" fg:x="646482" fg:w="398"/><text x="50.2543%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (371 samples, 0.03%)</title><rect x="50.0064%" y="533" width="0.0287%" height="15" fill="rgb(230,153,43)" fg:x="646509" fg:w="371"/><text x="50.2564%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (294 samples, 0.02%)</title><rect x="50.0377%" y="549" width="0.0227%" height="15" fill="rgb(231,106,12)" fg:x="646914" fg:w="294"/><text x="50.2877%" y="559.50"></text></g><g><title>find_extent_buffer (246 samples, 0.02%)</title><rect x="50.0710%" y="533" width="0.0190%" height="15" fill="rgb(215,92,2)" fg:x="647344" fg:w="246"/><text x="50.3210%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (440 samples, 0.03%)</title><rect x="50.0605%" y="549" width="0.0340%" height="15" fill="rgb(249,143,25)" fg:x="647208" fg:w="440"/><text x="50.3105%" y="559.50"></text></g><g><title>reada_for_balance (152 samples, 0.01%)</title><rect x="50.0945%" y="549" width="0.0118%" height="15" fill="rgb(252,7,35)" fg:x="647648" fg:w="152"/><text x="50.3445%" y="559.50"></text></g><g><title>select_task_rq_fair (175 samples, 0.01%)</title><rect x="50.1395%" y="469" width="0.0135%" height="15" fill="rgb(216,69,40)" fg:x="648229" fg:w="175"/><text x="50.3895%" y="479.50"></text></g><g><title>enqueue_entity (157 samples, 0.01%)</title><rect x="50.1567%" y="437" width="0.0121%" height="15" fill="rgb(240,36,33)" fg:x="648452" fg:w="157"/><text x="50.4067%" y="447.50"></text></g><g><title>enqueue_task_fair (187 samples, 0.01%)</title><rect x="50.1553%" y="453" width="0.0145%" height="15" fill="rgb(231,128,14)" fg:x="648434" fg:w="187"/><text x="50.4053%" y="463.50"></text></g><g><title>ttwu_do_activate (361 samples, 0.03%)</title><rect x="50.1542%" y="469" width="0.0279%" height="15" fill="rgb(245,143,14)" fg:x="648420" fg:w="361"/><text x="50.4042%" y="479.50"></text></g><g><title>psi_task_change (160 samples, 0.01%)</title><rect x="50.1698%" y="453" width="0.0124%" height="15" fill="rgb(222,130,28)" fg:x="648621" fg:w="160"/><text x="50.4198%" y="463.50"></text></g><g><title>psi_group_change (143 samples, 0.01%)</title><rect x="50.1711%" y="437" width="0.0111%" height="15" fill="rgb(212,10,48)" fg:x="648638" fg:w="143"/><text x="50.4211%" y="447.50"></text></g><g><title>__wake_up_common (1,019 samples, 0.08%)</title><rect x="50.1113%" y="517" width="0.0788%" height="15" fill="rgb(254,118,45)" fg:x="647865" fg:w="1019"/><text x="50.3613%" y="527.50"></text></g><g><title>autoremove_wake_function (1,003 samples, 0.08%)</title><rect x="50.1125%" y="501" width="0.0776%" height="15" fill="rgb(228,6,45)" fg:x="647881" fg:w="1003"/><text x="50.3625%" y="511.50"></text></g><g><title>try_to_wake_up (989 samples, 0.08%)</title><rect x="50.1136%" y="485" width="0.0765%" height="15" fill="rgb(241,18,35)" fg:x="647895" fg:w="989"/><text x="50.3636%" y="495.50"></text></g><g><title>__wake_up_common_lock (1,085 samples, 0.08%)</title><rect x="50.1112%" y="533" width="0.0839%" height="15" fill="rgb(227,214,53)" fg:x="647864" fg:w="1085"/><text x="50.3612%" y="543.50"></text></g><g><title>btrfs_search_slot (5,430 samples, 0.42%)</title><rect x="49.7775%" y="565" width="0.4200%" height="15" fill="rgb(224,107,51)" fg:x="643549" fg:w="5430"/><text x="50.0275%" y="575.50"></text></g><g><title>unlock_up (1,176 samples, 0.09%)</title><rect x="50.1065%" y="549" width="0.0910%" height="15" fill="rgb(248,60,28)" fg:x="647803" fg:w="1176"/><text x="50.3565%" y="559.50"></text></g><g><title>__set_extent_bit (349 samples, 0.03%)</title><rect x="50.2073%" y="549" width="0.0270%" height="15" fill="rgb(249,101,23)" fg:x="649106" fg:w="349"/><text x="50.4573%" y="559.50"></text></g><g><title>lock_extent_bits (377 samples, 0.03%)</title><rect x="50.2052%" y="565" width="0.0292%" height="15" fill="rgb(228,51,19)" fg:x="649079" fg:w="377"/><text x="50.4552%" y="575.50"></text></g><g><title>btrfs_truncate_inode_items (12,586 samples, 0.97%)</title><rect x="49.2707%" y="581" width="0.9735%" height="15" fill="rgb(213,20,6)" fg:x="636997" fg:w="12586"/><text x="49.5207%" y="591.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (217 samples, 0.02%)</title><rect x="50.2721%" y="517" width="0.0168%" height="15" fill="rgb(212,124,10)" fg:x="649944" fg:w="217"/><text x="50.5221%" y="527.50"></text></g><g><title>btrfs_block_rsv_refill (631 samples, 0.05%)</title><rect x="50.2529%" y="565" width="0.0488%" height="15" fill="rgb(248,3,40)" fg:x="649696" fg:w="631"/><text x="50.5029%" y="575.50"></text></g><g><title>btrfs_reserve_metadata_bytes (537 samples, 0.04%)</title><rect x="50.2602%" y="549" width="0.0415%" height="15" fill="rgb(223,178,23)" fg:x="649790" fg:w="537"/><text x="50.5102%" y="559.50"></text></g><g><title>__reserve_bytes (515 samples, 0.04%)</title><rect x="50.2619%" y="533" width="0.0398%" height="15" fill="rgb(240,132,45)" fg:x="649812" fg:w="515"/><text x="50.5119%" y="543.50"></text></g><g><title>calc_available_free_space.isra.0 (166 samples, 0.01%)</title><rect x="50.2889%" y="517" width="0.0128%" height="15" fill="rgb(245,164,36)" fg:x="650161" fg:w="166"/><text x="50.5389%" y="527.50"></text></g><g><title>evict_refill_and_join (1,069 samples, 0.08%)</title><rect x="50.2442%" y="581" width="0.0827%" height="15" fill="rgb(231,188,53)" fg:x="649583" fg:w="1069"/><text x="50.4942%" y="591.50"></text></g><g><title>start_transaction (311 samples, 0.02%)</title><rect x="50.3028%" y="565" width="0.0241%" height="15" fill="rgb(237,198,39)" fg:x="650341" fg:w="311"/><text x="50.5528%" y="575.50"></text></g><g><title>kmem_cache_free (132 samples, 0.01%)</title><rect x="50.3355%" y="581" width="0.0102%" height="15" fill="rgb(223,120,35)" fg:x="650763" fg:w="132"/><text x="50.5855%" y="591.50"></text></g><g><title>btrfs_evict_inode (30,361 samples, 2.35%)</title><rect x="48.0012%" y="597" width="2.3484%" height="15" fill="rgb(253,107,49)" fg:x="620585" fg:w="30361"/><text x="48.2512%" y="607.50">b..</text></g><g><title>evict (30,650 samples, 2.37%)</title><rect x="47.9852%" y="613" width="2.3707%" height="15" fill="rgb(216,44,31)" fg:x="620377" fg:w="30650"/><text x="48.2352%" y="623.50">ev..</text></g><g><title>_raw_spin_lock (237 samples, 0.02%)</title><rect x="50.4017%" y="581" width="0.0183%" height="15" fill="rgb(253,87,21)" fg:x="651620" fg:w="237"/><text x="50.6517%" y="591.50"></text></g><g><title>__list_del_entry_valid (484 samples, 0.04%)</title><rect x="50.4508%" y="533" width="0.0374%" height="15" fill="rgb(226,18,2)" fg:x="652254" fg:w="484"/><text x="50.7008%" y="543.50"></text></g><g><title>_raw_spin_lock (195 samples, 0.02%)</title><rect x="50.4882%" y="533" width="0.0151%" height="15" fill="rgb(216,8,46)" fg:x="652738" fg:w="195"/><text x="50.7382%" y="543.50"></text></g><g><title>d_lru_del (1,368 samples, 0.11%)</title><rect x="50.4258%" y="565" width="0.1058%" height="15" fill="rgb(226,140,39)" fg:x="651931" fg:w="1368"/><text x="50.6758%" y="575.50"></text></g><g><title>list_lru_del (1,322 samples, 0.10%)</title><rect x="50.4294%" y="549" width="0.1023%" height="15" fill="rgb(221,194,54)" fg:x="651977" fg:w="1322"/><text x="50.6794%" y="559.50"></text></g><g><title>mem_cgroup_from_obj (364 samples, 0.03%)</title><rect x="50.5035%" y="533" width="0.0282%" height="15" fill="rgb(213,92,11)" fg:x="652935" fg:w="364"/><text x="50.7535%" y="543.50"></text></g><g><title>d_walk (2,083 samples, 0.16%)</title><rect x="50.3741%" y="597" width="0.1611%" height="15" fill="rgb(229,162,46)" fg:x="651263" fg:w="2083"/><text x="50.6241%" y="607.50"></text></g><g><title>select_collect (1,487 samples, 0.12%)</title><rect x="50.4202%" y="581" width="0.1150%" height="15" fill="rgb(214,111,36)" fg:x="651859" fg:w="1487"/><text x="50.6702%" y="591.50"></text></g><g><title>___d_drop (867 samples, 0.07%)</title><rect x="50.5462%" y="565" width="0.0671%" height="15" fill="rgb(207,6,21)" fg:x="653487" fg:w="867"/><text x="50.7962%" y="575.50"></text></g><g><title>call_rcu (578 samples, 0.04%)</title><rect x="50.6227%" y="565" width="0.0447%" height="15" fill="rgb(213,127,38)" fg:x="654476" fg:w="578"/><text x="50.8727%" y="575.50"></text></g><g><title>rcu_segcblist_enqueue (323 samples, 0.02%)</title><rect x="50.6424%" y="549" width="0.0250%" height="15" fill="rgb(238,118,32)" fg:x="654731" fg:w="323"/><text x="50.8924%" y="559.50"></text></g><g><title>__dentry_kill (1,674 samples, 0.13%)</title><rect x="50.5392%" y="581" width="0.1295%" height="15" fill="rgb(240,139,39)" fg:x="653397" fg:w="1674"/><text x="50.7892%" y="591.50"></text></g><g><title>__dput_to_list (188 samples, 0.01%)</title><rect x="50.6687%" y="581" width="0.0145%" height="15" fill="rgb(235,10,37)" fg:x="655071" fg:w="188"/><text x="50.9187%" y="591.50"></text></g><g><title>d_lru_del (146 samples, 0.01%)</title><rect x="50.6719%" y="565" width="0.0113%" height="15" fill="rgb(249,171,38)" fg:x="655113" fg:w="146"/><text x="50.9219%" y="575.50"></text></g><g><title>list_lru_del (140 samples, 0.01%)</title><rect x="50.6724%" y="549" width="0.0108%" height="15" fill="rgb(242,144,32)" fg:x="655119" fg:w="140"/><text x="50.9224%" y="559.50"></text></g><g><title>_raw_spin_lock (153 samples, 0.01%)</title><rect x="50.6876%" y="581" width="0.0118%" height="15" fill="rgb(217,117,21)" fg:x="655316" fg:w="153"/><text x="50.9376%" y="591.50"></text></g><g><title>_raw_spin_trylock (150 samples, 0.01%)</title><rect x="50.7105%" y="565" width="0.0116%" height="15" fill="rgb(249,87,1)" fg:x="655612" fg:w="150"/><text x="50.9605%" y="575.50"></text></g><g><title>shrink_dcache_parent (4,548 samples, 0.35%)</title><rect x="50.3704%" y="613" width="0.3518%" height="15" fill="rgb(248,196,48)" fg:x="651215" fg:w="4548"/><text x="50.6204%" y="623.50"></text></g><g><title>shrink_dentry_list (2,417 samples, 0.19%)</title><rect x="50.5353%" y="597" width="0.1870%" height="15" fill="rgb(251,206,33)" fg:x="653346" fg:w="2417"/><text x="50.7853%" y="607.50"></text></g><g><title>shrink_lock_dentry.part.0 (183 samples, 0.01%)</title><rect x="50.7080%" y="581" width="0.0142%" height="15" fill="rgb(232,141,28)" fg:x="655580" fg:w="183"/><text x="50.9580%" y="591.50"></text></g><g><title>do_rmdir (59,821 samples, 4.63%)</title><rect x="46.0972%" y="645" width="4.6271%" height="15" fill="rgb(209,167,14)" fg:x="595968" fg:w="59821"/><text x="46.3472%" y="655.50">do_rm..</text></g><g><title>vfs_rmdir.part.0 (58,525 samples, 4.53%)</title><rect x="46.1974%" y="629" width="4.5268%" height="15" fill="rgb(225,11,50)" fg:x="597264" fg:w="58525"/><text x="46.4474%" y="639.50">vfs_r..</text></g><g><title>_raw_spin_lock (234 samples, 0.02%)</title><rect x="50.9170%" y="565" width="0.0181%" height="15" fill="rgb(209,50,20)" fg:x="658282" fg:w="234"/><text x="51.1670%" y="575.50"></text></g><g><title>lookup_dcache (2,233 samples, 0.17%)</title><rect x="50.7642%" y="613" width="0.1727%" height="15" fill="rgb(212,17,46)" fg:x="656306" fg:w="2233"/><text x="51.0142%" y="623.50"></text></g><g><title>d_lookup (2,192 samples, 0.17%)</title><rect x="50.7674%" y="597" width="0.1695%" height="15" fill="rgb(216,101,39)" fg:x="656347" fg:w="2192"/><text x="51.0174%" y="607.50"></text></g><g><title>__d_lookup (2,077 samples, 0.16%)</title><rect x="50.7763%" y="581" width="0.1607%" height="15" fill="rgb(212,228,48)" fg:x="656462" fg:w="2077"/><text x="51.0263%" y="591.50"></text></g><g><title>__lookup_hash (2,290 samples, 0.18%)</title><rect x="50.7599%" y="629" width="0.1771%" height="15" fill="rgb(250,6,50)" fg:x="656250" fg:w="2290"/><text x="51.0099%" y="639.50"></text></g><g><title>down_write (240 samples, 0.02%)</title><rect x="50.9376%" y="629" width="0.0186%" height="15" fill="rgb(250,160,48)" fg:x="658548" fg:w="240"/><text x="51.1876%" y="639.50"></text></g><g><title>__schedule (262 samples, 0.02%)</title><rect x="50.9812%" y="597" width="0.0203%" height="15" fill="rgb(244,216,33)" fg:x="659112" fg:w="262"/><text x="51.2312%" y="607.50"></text></g><g><title>_cond_resched (331 samples, 0.03%)</title><rect x="50.9784%" y="613" width="0.0256%" height="15" fill="rgb(207,157,5)" fg:x="659075" fg:w="331"/><text x="51.2284%" y="623.50"></text></g><g><title>btrfs_dentry_delete (350 samples, 0.03%)</title><rect x="51.0041%" y="613" width="0.0271%" height="15" fill="rgb(228,199,8)" fg:x="659407" fg:w="350"/><text x="51.2541%" y="623.50"></text></g><g><title>lockref_put_or_lock (430 samples, 0.03%)</title><rect x="51.0311%" y="613" width="0.0333%" height="15" fill="rgb(227,80,20)" fg:x="659757" fg:w="430"/><text x="51.2811%" y="623.50"></text></g><g><title>_raw_spin_lock (135 samples, 0.01%)</title><rect x="51.0539%" y="597" width="0.0104%" height="15" fill="rgb(222,9,33)" fg:x="660052" fg:w="135"/><text x="51.3039%" y="607.50"></text></g><g><title>dput (1,423 samples, 0.11%)</title><rect x="50.9562%" y="629" width="0.1101%" height="15" fill="rgb(239,44,28)" fg:x="658788" fg:w="1423"/><text x="51.2062%" y="639.50"></text></g><g><title>__legitimize_mnt (266 samples, 0.02%)</title><rect x="51.1376%" y="549" width="0.0206%" height="15" fill="rgb(249,187,43)" fg:x="661133" fg:w="266"/><text x="51.3876%" y="559.50"></text></g><g><title>__legitimize_path (547 samples, 0.04%)</title><rect x="51.1267%" y="565" width="0.0423%" height="15" fill="rgb(216,141,28)" fg:x="660992" fg:w="547"/><text x="51.3767%" y="575.50"></text></g><g><title>lockref_get_not_dead (138 samples, 0.01%)</title><rect x="51.1583%" y="549" width="0.0107%" height="15" fill="rgb(230,154,53)" fg:x="661401" fg:w="138"/><text x="51.4083%" y="559.50"></text></g><g><title>legitimize_links (158 samples, 0.01%)</title><rect x="51.1690%" y="565" width="0.0122%" height="15" fill="rgb(227,82,4)" fg:x="661539" fg:w="158"/><text x="51.4190%" y="575.50"></text></g><g><title>complete_walk (954 samples, 0.07%)</title><rect x="51.1089%" y="597" width="0.0738%" height="15" fill="rgb(220,107,16)" fg:x="660763" fg:w="954"/><text x="51.3589%" y="607.50"></text></g><g><title>try_to_unlazy (853 samples, 0.07%)</title><rect x="51.1168%" y="581" width="0.0660%" height="15" fill="rgb(207,187,2)" fg:x="660864" fg:w="853"/><text x="51.3668%" y="591.50"></text></g><g><title>inode_permission.part.0 (409 samples, 0.03%)</title><rect x="51.2099%" y="581" width="0.0316%" height="15" fill="rgb(210,162,52)" fg:x="662068" fg:w="409"/><text x="51.4599%" y="591.50"></text></g><g><title>generic_permission (238 samples, 0.02%)</title><rect x="51.2231%" y="565" width="0.0184%" height="15" fill="rgb(217,216,49)" fg:x="662239" fg:w="238"/><text x="51.4731%" y="575.50"></text></g><g><title>link_path_walk.part.0 (798 samples, 0.06%)</title><rect x="51.1827%" y="597" width="0.0617%" height="15" fill="rgb(218,146,49)" fg:x="661717" fg:w="798"/><text x="51.4327%" y="607.50"></text></g><g><title>__fget_files (648 samples, 0.05%)</title><rect x="51.2930%" y="565" width="0.0501%" height="15" fill="rgb(216,55,40)" fg:x="663142" fg:w="648"/><text x="51.5430%" y="575.50"></text></g><g><title>__fget_light (944 samples, 0.07%)</title><rect x="51.2704%" y="581" width="0.0730%" height="15" fill="rgb(208,196,21)" fg:x="662850" fg:w="944"/><text x="51.5204%" y="591.50"></text></g><g><title>path_init (1,376 samples, 0.11%)</title><rect x="51.2445%" y="597" width="0.1064%" height="15" fill="rgb(242,117,42)" fg:x="662515" fg:w="1376"/><text x="51.4945%" y="607.50"></text></g><g><title>path_parentat (3,656 samples, 0.28%)</title><rect x="51.1011%" y="613" width="0.2828%" height="15" fill="rgb(210,11,23)" fg:x="660662" fg:w="3656"/><text x="51.3511%" y="623.50"></text></g><g><title>terminate_walk (427 samples, 0.03%)</title><rect x="51.3509%" y="597" width="0.0330%" height="15" fill="rgb(217,110,2)" fg:x="663891" fg:w="427"/><text x="51.6009%" y="607.50"></text></g><g><title>filename_parentat (4,046 samples, 0.31%)</title><rect x="51.0710%" y="629" width="0.3130%" height="15" fill="rgb(229,77,54)" fg:x="660273" fg:w="4046"/><text x="51.3210%" y="639.50"></text></g><g><title>ihold (884 samples, 0.07%)</title><rect x="51.3840%" y="629" width="0.0684%" height="15" fill="rgb(218,53,16)" fg:x="664319" fg:w="884"/><text x="51.6340%" y="639.50"></text></g><g><title>iput.part.0 (136 samples, 0.01%)</title><rect x="51.4528%" y="629" width="0.0105%" height="15" fill="rgb(215,38,13)" fg:x="665208" fg:w="136"/><text x="51.7028%" y="639.50"></text></g><g><title>kmem_cache_free (669 samples, 0.05%)</title><rect x="51.4633%" y="629" width="0.0517%" height="15" fill="rgb(235,42,18)" fg:x="665344" fg:w="669"/><text x="51.7133%" y="639.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (228 samples, 0.02%)</title><rect x="51.4974%" y="613" width="0.0176%" height="15" fill="rgb(219,66,54)" fg:x="665785" fg:w="228"/><text x="51.7474%" y="623.50"></text></g><g><title>mnt_drop_write (224 samples, 0.02%)</title><rect x="51.5150%" y="629" width="0.0173%" height="15" fill="rgb(222,205,4)" fg:x="666013" fg:w="224"/><text x="51.7650%" y="639.50"></text></g><g><title>__mnt_want_write (259 samples, 0.02%)</title><rect x="51.5463%" y="613" width="0.0200%" height="15" fill="rgb(227,213,46)" fg:x="666417" fg:w="259"/><text x="51.7963%" y="623.50"></text></g><g><title>mnt_want_write (528 samples, 0.04%)</title><rect x="51.5323%" y="629" width="0.0408%" height="15" fill="rgb(250,145,42)" fg:x="666237" fg:w="528"/><text x="51.7823%" y="639.50"></text></g><g><title>putname (311 samples, 0.02%)</title><rect x="51.5841%" y="629" width="0.0241%" height="15" fill="rgb(219,15,2)" fg:x="666906" fg:w="311"/><text x="51.8341%" y="639.50"></text></g><g><title>apparmor_path_unlink (195 samples, 0.02%)</title><rect x="51.6114%" y="613" width="0.0151%" height="15" fill="rgb(231,181,52)" fg:x="667259" fg:w="195"/><text x="51.8614%" y="623.50"></text></g><g><title>security_path_unlink (1,052 samples, 0.08%)</title><rect x="51.6082%" y="629" width="0.0814%" height="15" fill="rgb(235,1,42)" fg:x="667217" fg:w="1052"/><text x="51.8582%" y="639.50"></text></g><g><title>tomoyo_path_unlink (814 samples, 0.06%)</title><rect x="51.6266%" y="613" width="0.0630%" height="15" fill="rgb(249,88,27)" fg:x="667455" fg:w="814"/><text x="51.8766%" y="623.50"></text></g><g><title>tomoyo_path_perm (788 samples, 0.06%)</title><rect x="51.6286%" y="597" width="0.0610%" height="15" fill="rgb(235,145,16)" fg:x="667481" fg:w="788"/><text x="51.8786%" y="607.50"></text></g><g><title>tomoyo_init_request_info (550 samples, 0.04%)</title><rect x="51.6470%" y="581" width="0.0425%" height="15" fill="rgb(237,114,19)" fg:x="667719" fg:w="550"/><text x="51.8970%" y="591.50"></text></g><g><title>tomoyo_domain (307 samples, 0.02%)</title><rect x="51.6658%" y="565" width="0.0237%" height="15" fill="rgb(238,51,50)" fg:x="667962" fg:w="307"/><text x="51.9158%" y="575.50"></text></g><g><title>up_write (161 samples, 0.01%)</title><rect x="51.6895%" y="629" width="0.0125%" height="15" fill="rgb(205,194,25)" fg:x="668269" fg:w="161"/><text x="51.9395%" y="639.50"></text></g><g><title>_raw_spin_lock (154 samples, 0.01%)</title><rect x="51.7269%" y="613" width="0.0119%" height="15" fill="rgb(215,203,17)" fg:x="668752" fg:w="154"/><text x="51.9769%" y="623.50"></text></g><g><title>btrfs_create_pending_block_groups (216 samples, 0.02%)</title><rect x="51.8298%" y="581" width="0.0167%" height="15" fill="rgb(233,112,49)" fg:x="670083" fg:w="216"/><text x="52.0798%" y="591.50"></text></g><g><title>btrfs_put_transaction (153 samples, 0.01%)</title><rect x="51.8465%" y="581" width="0.0118%" height="15" fill="rgb(241,130,26)" fg:x="670299" fg:w="153"/><text x="52.0965%" y="591.50"></text></g><g><title>_raw_spin_lock (843 samples, 0.07%)</title><rect x="51.8892%" y="549" width="0.0652%" height="15" fill="rgb(252,223,19)" fg:x="670850" fg:w="843"/><text x="52.1392%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (280 samples, 0.02%)</title><rect x="51.9327%" y="533" width="0.0217%" height="15" fill="rgb(211,95,25)" fg:x="671413" fg:w="280"/><text x="52.1827%" y="543.50"></text></g><g><title>btrfs_trans_release_metadata (1,260 samples, 0.10%)</title><rect x="51.8667%" y="581" width="0.0975%" height="15" fill="rgb(251,182,27)" fg:x="670560" fg:w="1260"/><text x="52.1167%" y="591.50"></text></g><g><title>btrfs_block_rsv_release (1,201 samples, 0.09%)</title><rect x="51.8713%" y="565" width="0.0929%" height="15" fill="rgb(238,24,4)" fg:x="670619" fg:w="1201"/><text x="52.1213%" y="575.50"></text></g><g><title>__btrfs_end_transaction (3,249 samples, 0.25%)</title><rect x="51.7557%" y="597" width="0.2513%" height="15" fill="rgb(224,220,25)" fg:x="669125" fg:w="3249"/><text x="52.0057%" y="607.50"></text></g><g><title>kmem_cache_free (554 samples, 0.04%)</title><rect x="51.9642%" y="581" width="0.0429%" height="15" fill="rgb(239,133,26)" fg:x="671820" fg:w="554"/><text x="52.2142%" y="591.50"></text></g><g><title>btrfs_end_log_trans (242 samples, 0.02%)</title><rect x="52.1408%" y="565" width="0.0187%" height="15" fill="rgb(211,94,48)" fg:x="674104" fg:w="242"/><text x="52.3908%" y="575.50"></text></g><g><title>select_task_rq_fair (376 samples, 0.03%)</title><rect x="52.3830%" y="469" width="0.0291%" height="15" fill="rgb(239,87,6)" fg:x="677235" fg:w="376"/><text x="52.6330%" y="479.50"></text></g><g><title>update_cfs_rq_h_load (130 samples, 0.01%)</title><rect x="52.4021%" y="453" width="0.0101%" height="15" fill="rgb(227,62,0)" fg:x="677481" fg:w="130"/><text x="52.6521%" y="463.50"></text></g><g><title>enqueue_entity (418 samples, 0.03%)</title><rect x="52.4231%" y="437" width="0.0323%" height="15" fill="rgb(211,226,4)" fg:x="677753" fg:w="418"/><text x="52.6731%" y="447.50"></text></g><g><title>enqueue_task_fair (544 samples, 0.04%)</title><rect x="52.4154%" y="453" width="0.0421%" height="15" fill="rgb(253,38,52)" fg:x="677654" fg:w="544"/><text x="52.6654%" y="463.50"></text></g><g><title>ttwu_do_activate (1,197 samples, 0.09%)</title><rect x="52.4126%" y="469" width="0.0926%" height="15" fill="rgb(229,126,40)" fg:x="677617" fg:w="1197"/><text x="52.6626%" y="479.50"></text></g><g><title>psi_task_change (616 samples, 0.05%)</title><rect x="52.4575%" y="453" width="0.0476%" height="15" fill="rgb(229,165,44)" fg:x="678198" fg:w="616"/><text x="52.7075%" y="463.50"></text></g><g><title>psi_group_change (550 samples, 0.04%)</title><rect x="52.4626%" y="437" width="0.0425%" height="15" fill="rgb(247,95,47)" fg:x="678264" fg:w="550"/><text x="52.7126%" y="447.50"></text></g><g><title>__wake_up_common (4,584 samples, 0.35%)</title><rect x="52.1759%" y="517" width="0.3546%" height="15" fill="rgb(216,140,30)" fg:x="674557" fg:w="4584"/><text x="52.4259%" y="527.50"></text></g><g><title>autoremove_wake_function (4,461 samples, 0.35%)</title><rect x="52.1854%" y="501" width="0.3451%" height="15" fill="rgb(246,214,8)" fg:x="674680" fg:w="4461"/><text x="52.4354%" y="511.50"></text></g><g><title>try_to_wake_up (4,396 samples, 0.34%)</title><rect x="52.1904%" y="485" width="0.3400%" height="15" fill="rgb(227,224,15)" fg:x="674745" fg:w="4396"/><text x="52.4404%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (985 samples, 0.08%)</title><rect x="52.5305%" y="517" width="0.0762%" height="15" fill="rgb(233,175,4)" fg:x="679141" fg:w="985"/><text x="52.7805%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (941 samples, 0.07%)</title><rect x="52.5339%" y="501" width="0.0728%" height="15" fill="rgb(221,66,45)" fg:x="679185" fg:w="941"/><text x="52.7839%" y="511.50"></text></g><g><title>__wake_up_common_lock (5,634 samples, 0.44%)</title><rect x="52.1744%" y="533" width="0.4358%" height="15" fill="rgb(221,178,18)" fg:x="674538" fg:w="5634"/><text x="52.4244%" y="543.50"></text></g><g><title>btrfs_tree_unlock (370 samples, 0.03%)</title><rect x="52.6105%" y="533" width="0.0286%" height="15" fill="rgb(213,81,29)" fg:x="680176" fg:w="370"/><text x="52.8605%" y="543.50"></text></g><g><title>_raw_spin_lock (148 samples, 0.01%)</title><rect x="52.6512%" y="517" width="0.0114%" height="15" fill="rgb(220,89,49)" fg:x="680702" fg:w="148"/><text x="52.9012%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (296 samples, 0.02%)</title><rect x="52.6398%" y="533" width="0.0229%" height="15" fill="rgb(227,60,33)" fg:x="680555" fg:w="296"/><text x="52.8898%" y="543.50"></text></g><g><title>btrfs_free_path (6,711 samples, 0.52%)</title><rect x="52.1596%" y="565" width="0.5191%" height="15" fill="rgb(205,113,12)" fg:x="674346" fg:w="6711"/><text x="52.4096%" y="575.50"></text></g><g><title>btrfs_release_path (6,655 samples, 0.51%)</title><rect x="52.1639%" y="549" width="0.5148%" height="15" fill="rgb(211,32,1)" fg:x="674402" fg:w="6655"/><text x="52.4139%" y="559.50"></text></g><g><title>release_extent_buffer (206 samples, 0.02%)</title><rect x="52.6627%" y="533" width="0.0159%" height="15" fill="rgb(246,2,12)" fg:x="680851" fg:w="206"/><text x="52.9127%" y="543.50"></text></g><g><title>_raw_read_lock (216 samples, 0.02%)</title><rect x="52.7627%" y="501" width="0.0167%" height="15" fill="rgb(243,37,27)" fg:x="682144" fg:w="216"/><text x="53.0127%" y="511.50"></text></g><g><title>finish_wait (577 samples, 0.04%)</title><rect x="52.7800%" y="501" width="0.0446%" height="15" fill="rgb(248,211,31)" fg:x="682367" fg:w="577"/><text x="53.0300%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (555 samples, 0.04%)</title><rect x="52.7817%" y="485" width="0.0429%" height="15" fill="rgb(242,146,47)" fg:x="682389" fg:w="555"/><text x="53.0317%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (537 samples, 0.04%)</title><rect x="52.7831%" y="469" width="0.0415%" height="15" fill="rgb(206,70,20)" fg:x="682407" fg:w="537"/><text x="53.0331%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,042 samples, 0.08%)</title><rect x="52.8324%" y="485" width="0.0806%" height="15" fill="rgb(215,10,51)" fg:x="683045" fg:w="1042"/><text x="53.0824%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (992 samples, 0.08%)</title><rect x="52.8363%" y="469" width="0.0767%" height="15" fill="rgb(243,178,53)" fg:x="683095" fg:w="992"/><text x="53.0863%" y="479.50"></text></g><g><title>prepare_to_wait_event (1,152 samples, 0.09%)</title><rect x="52.8247%" y="501" width="0.0891%" height="15" fill="rgb(233,221,20)" fg:x="682945" fg:w="1152"/><text x="53.0747%" y="511.50"></text></g><g><title>dequeue_task_fair (145 samples, 0.01%)</title><rect x="52.9298%" y="469" width="0.0112%" height="15" fill="rgb(218,95,35)" fg:x="684304" fg:w="145"/><text x="53.1798%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (2,728 samples, 0.21%)</title><rect x="52.7507%" y="517" width="0.2110%" height="15" fill="rgb(229,13,5)" fg:x="681988" fg:w="2728"/><text x="53.0007%" y="527.50"></text></g><g><title>schedule (498 samples, 0.04%)</title><rect x="52.9231%" y="501" width="0.0385%" height="15" fill="rgb(252,164,30)" fg:x="684218" fg:w="498"/><text x="53.1731%" y="511.50"></text></g><g><title>__schedule (486 samples, 0.04%)</title><rect x="52.9241%" y="485" width="0.0376%" height="15" fill="rgb(232,68,36)" fg:x="684230" fg:w="486"/><text x="53.1741%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (2,969 samples, 0.23%)</title><rect x="52.7481%" y="533" width="0.2296%" height="15" fill="rgb(219,59,54)" fg:x="681955" fg:w="2969"/><text x="52.9981%" y="543.50"></text></g><g><title>btrfs_root_node (208 samples, 0.02%)</title><rect x="52.9617%" y="517" width="0.0161%" height="15" fill="rgb(250,92,33)" fg:x="684716" fg:w="208"/><text x="53.2117%" y="527.50"></text></g><g><title>balance_level (335 samples, 0.03%)</title><rect x="52.9787%" y="533" width="0.0259%" height="15" fill="rgb(229,162,54)" fg:x="684936" fg:w="335"/><text x="53.2287%" y="543.50"></text></g><g><title>_cond_resched (138 samples, 0.01%)</title><rect x="53.0310%" y="501" width="0.0107%" height="15" fill="rgb(244,114,52)" fg:x="685612" fg:w="138"/><text x="53.2810%" y="511.50"></text></g><g><title>_raw_write_lock (221 samples, 0.02%)</title><rect x="53.0420%" y="501" width="0.0171%" height="15" fill="rgb(212,211,43)" fg:x="685755" fg:w="221"/><text x="53.2920%" y="511.50"></text></g><g><title>finish_wait (603 samples, 0.05%)</title><rect x="53.0592%" y="501" width="0.0466%" height="15" fill="rgb(226,147,8)" fg:x="685977" fg:w="603"/><text x="53.3092%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (592 samples, 0.05%)</title><rect x="53.0601%" y="485" width="0.0458%" height="15" fill="rgb(226,23,13)" fg:x="685988" fg:w="592"/><text x="53.3101%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (555 samples, 0.04%)</title><rect x="53.0629%" y="469" width="0.0429%" height="15" fill="rgb(240,63,4)" fg:x="686025" fg:w="555"/><text x="53.3129%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,446 samples, 0.11%)</title><rect x="53.1147%" y="485" width="0.1118%" height="15" fill="rgb(221,1,32)" fg:x="686694" fg:w="1446"/><text x="53.3647%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,346 samples, 0.10%)</title><rect x="53.1224%" y="469" width="0.1041%" height="15" fill="rgb(242,117,10)" fg:x="686794" fg:w="1346"/><text x="53.3724%" y="479.50"></text></g><g><title>prepare_to_wait_event (1,582 samples, 0.12%)</title><rect x="53.1062%" y="501" width="0.1224%" height="15" fill="rgb(249,172,44)" fg:x="686584" fg:w="1582"/><text x="53.3562%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (273 samples, 0.02%)</title><rect x="53.2285%" y="501" width="0.0211%" height="15" fill="rgb(244,46,45)" fg:x="688166" fg:w="273"/><text x="53.4785%" y="511.50"></text></g><g><title>dequeue_entity (218 samples, 0.02%)</title><rect x="53.2615%" y="453" width="0.0169%" height="15" fill="rgb(206,43,17)" fg:x="688592" fg:w="218"/><text x="53.5115%" y="463.50"></text></g><g><title>dequeue_task_fair (252 samples, 0.02%)</title><rect x="53.2596%" y="469" width="0.0195%" height="15" fill="rgb(239,218,39)" fg:x="688568" fg:w="252"/><text x="53.5096%" y="479.50"></text></g><g><title>finish_task_switch (173 samples, 0.01%)</title><rect x="53.2791%" y="469" width="0.0134%" height="15" fill="rgb(208,169,54)" fg:x="688820" fg:w="173"/><text x="53.5291%" y="479.50"></text></g><g><title>psi_task_change (170 samples, 0.01%)</title><rect x="53.2993%" y="469" width="0.0131%" height="15" fill="rgb(247,25,42)" fg:x="689081" fg:w="170"/><text x="53.5493%" y="479.50"></text></g><g><title>psi_group_change (146 samples, 0.01%)</title><rect x="53.3012%" y="453" width="0.0113%" height="15" fill="rgb(226,23,31)" fg:x="689105" fg:w="146"/><text x="53.5512%" y="463.50"></text></g><g><title>__btrfs_tree_lock (3,906 samples, 0.30%)</title><rect x="53.0140%" y="517" width="0.3021%" height="15" fill="rgb(247,16,28)" fg:x="685393" fg:w="3906"/><text x="53.2640%" y="527.50"></text></g><g><title>schedule (860 samples, 0.07%)</title><rect x="53.2496%" y="501" width="0.0665%" height="15" fill="rgb(231,147,38)" fg:x="688439" fg:w="860"/><text x="53.4996%" y="511.50"></text></g><g><title>__schedule (849 samples, 0.07%)</title><rect x="53.2505%" y="485" width="0.0657%" height="15" fill="rgb(253,81,48)" fg:x="688450" fg:w="849"/><text x="53.5005%" y="495.50"></text></g><g><title>btrfs_lock_root_node (4,096 samples, 0.32%)</title><rect x="53.0123%" y="533" width="0.3168%" height="15" fill="rgb(249,222,43)" fg:x="685371" fg:w="4096"/><text x="53.2623%" y="543.50"></text></g><g><title>btrfs_root_node (168 samples, 0.01%)</title><rect x="53.3162%" y="517" width="0.0130%" height="15" fill="rgb(221,3,27)" fg:x="689299" fg:w="168"/><text x="53.5662%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (460 samples, 0.04%)</title><rect x="53.3292%" y="533" width="0.0356%" height="15" fill="rgb(228,180,5)" fg:x="689467" fg:w="460"/><text x="53.5792%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (190 samples, 0.01%)</title><rect x="53.3647%" y="533" width="0.0147%" height="15" fill="rgb(227,131,42)" fg:x="689927" fg:w="190"/><text x="53.6147%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (161 samples, 0.01%)</title><rect x="53.3889%" y="533" width="0.0125%" height="15" fill="rgb(212,3,39)" fg:x="690239" fg:w="161"/><text x="53.6389%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (742 samples, 0.06%)</title><rect x="53.4013%" y="533" width="0.0574%" height="15" fill="rgb(226,45,5)" fg:x="690400" fg:w="742"/><text x="53.6513%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (134 samples, 0.01%)</title><rect x="53.4736%" y="517" width="0.0104%" height="15" fill="rgb(215,167,45)" fg:x="691335" fg:w="134"/><text x="53.7236%" y="527.50"></text></g><g><title>btrfs_get_64 (246 samples, 0.02%)</title><rect x="53.4840%" y="517" width="0.0190%" height="15" fill="rgb(250,218,53)" fg:x="691469" fg:w="246"/><text x="53.7340%" y="527.50"></text></g><g><title>btrfs_verify_level_key (132 samples, 0.01%)</title><rect x="53.5038%" y="517" width="0.0102%" height="15" fill="rgb(207,140,0)" fg:x="691725" fg:w="132"/><text x="53.7538%" y="527.50"></text></g><g><title>__radix_tree_lookup (392 samples, 0.03%)</title><rect x="53.5279%" y="501" width="0.0303%" height="15" fill="rgb(238,133,51)" fg:x="692037" fg:w="392"/><text x="53.7779%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (363 samples, 0.03%)</title><rect x="53.5583%" y="501" width="0.0281%" height="15" fill="rgb(218,203,53)" fg:x="692430" fg:w="363"/><text x="53.8083%" y="511.50"></text></g><g><title>mark_page_accessed (241 samples, 0.02%)</title><rect x="53.5678%" y="485" width="0.0186%" height="15" fill="rgb(226,184,25)" fg:x="692552" fg:w="241"/><text x="53.8178%" y="495.50"></text></g><g><title>find_extent_buffer (946 samples, 0.07%)</title><rect x="53.5140%" y="517" width="0.0732%" height="15" fill="rgb(231,121,21)" fg:x="691857" fg:w="946"/><text x="53.7640%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (1,894 samples, 0.15%)</title><rect x="53.4587%" y="533" width="0.1465%" height="15" fill="rgb(251,14,34)" fg:x="691142" fg:w="1894"/><text x="53.7087%" y="543.50"></text></g><g><title>read_extent_buffer (233 samples, 0.02%)</title><rect x="53.5872%" y="517" width="0.0180%" height="15" fill="rgb(249,193,11)" fg:x="692803" fg:w="233"/><text x="53.8372%" y="527.50"></text></g><g><title>btrfs_lookup_dir_index_item (12,369 samples, 0.96%)</title><rect x="52.6787%" y="565" width="0.9567%" height="15" fill="rgb(220,172,37)" fg:x="681057" fg:w="12369"/><text x="52.9287%" y="575.50"></text></g><g><title>btrfs_search_slot (12,287 samples, 0.95%)</title><rect x="52.6850%" y="549" width="0.9504%" height="15" fill="rgb(231,229,43)" fg:x="681139" fg:w="12287"/><text x="52.9350%" y="559.50"></text></g><g><title>unlock_up (272 samples, 0.02%)</title><rect x="53.6143%" y="533" width="0.0210%" height="15" fill="rgb(250,161,5)" fg:x="693154" fg:w="272"/><text x="53.8643%" y="543.50"></text></g><g><title>_raw_read_lock (265 samples, 0.02%)</title><rect x="53.7399%" y="501" width="0.0205%" height="15" fill="rgb(218,225,18)" fg:x="694777" fg:w="265"/><text x="53.9899%" y="511.50"></text></g><g><title>finish_wait (1,079 samples, 0.08%)</title><rect x="53.7617%" y="501" width="0.0835%" height="15" fill="rgb(245,45,42)" fg:x="695059" fg:w="1079"/><text x="54.0117%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,030 samples, 0.08%)</title><rect x="53.7655%" y="485" width="0.0797%" height="15" fill="rgb(211,115,1)" fg:x="695108" fg:w="1030"/><text x="54.0155%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (979 samples, 0.08%)</title><rect x="53.7694%" y="469" width="0.0757%" height="15" fill="rgb(248,133,52)" fg:x="695159" fg:w="979"/><text x="54.0194%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (2,701 samples, 0.21%)</title><rect x="53.8633%" y="485" width="0.2089%" height="15" fill="rgb(238,100,21)" fg:x="696373" fg:w="2701"/><text x="54.1133%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,548 samples, 0.20%)</title><rect x="53.8752%" y="469" width="0.1971%" height="15" fill="rgb(247,144,11)" fg:x="696526" fg:w="2548"/><text x="54.1252%" y="479.50"></text></g><g><title>prepare_to_wait_event (2,970 samples, 0.23%)</title><rect x="53.8455%" y="501" width="0.2297%" height="15" fill="rgb(206,164,16)" fg:x="696143" fg:w="2970"/><text x="54.0955%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (279 samples, 0.02%)</title><rect x="54.0753%" y="501" width="0.0216%" height="15" fill="rgb(222,34,3)" fg:x="699113" fg:w="279"/><text x="54.3253%" y="511.50"></text></g><g><title>update_curr (150 samples, 0.01%)</title><rect x="54.1398%" y="437" width="0.0116%" height="15" fill="rgb(248,82,4)" fg:x="699948" fg:w="150"/><text x="54.3898%" y="447.50"></text></g><g><title>dequeue_entity (468 samples, 0.04%)</title><rect x="54.1275%" y="453" width="0.0362%" height="15" fill="rgb(228,81,46)" fg:x="699788" fg:w="468"/><text x="54.3775%" y="463.50"></text></g><g><title>update_load_avg (158 samples, 0.01%)</title><rect x="54.1514%" y="437" width="0.0122%" height="15" fill="rgb(227,67,47)" fg:x="700098" fg:w="158"/><text x="54.4014%" y="447.50"></text></g><g><title>dequeue_task_fair (539 samples, 0.04%)</title><rect x="54.1234%" y="469" width="0.0417%" height="15" fill="rgb(215,93,53)" fg:x="699736" fg:w="539"/><text x="54.3734%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (426 samples, 0.03%)</title><rect x="54.1725%" y="453" width="0.0330%" height="15" fill="rgb(248,194,39)" fg:x="700370" fg:w="426"/><text x="54.4225%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (398 samples, 0.03%)</title><rect x="54.1746%" y="437" width="0.0308%" height="15" fill="rgb(215,5,19)" fg:x="700398" fg:w="398"/><text x="54.4246%" y="447.50"></text></g><g><title>native_write_msr (384 samples, 0.03%)</title><rect x="54.1757%" y="421" width="0.0297%" height="15" fill="rgb(226,215,51)" fg:x="700412" fg:w="384"/><text x="54.4257%" y="431.50"></text></g><g><title>finish_task_switch (549 samples, 0.04%)</title><rect x="54.1651%" y="469" width="0.0425%" height="15" fill="rgb(225,56,26)" fg:x="700275" fg:w="549"/><text x="54.4151%" y="479.50"></text></g><g><title>psi_task_change (454 samples, 0.04%)</title><rect x="54.2229%" y="469" width="0.0351%" height="15" fill="rgb(222,75,29)" fg:x="701022" fg:w="454"/><text x="54.4729%" y="479.50"></text></g><g><title>psi_group_change (388 samples, 0.03%)</title><rect x="54.2280%" y="453" width="0.0300%" height="15" fill="rgb(236,139,6)" fg:x="701088" fg:w="388"/><text x="54.4780%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (7,073 samples, 0.55%)</title><rect x="53.7205%" y="517" width="0.5471%" height="15" fill="rgb(223,137,36)" fg:x="694527" fg:w="7073"/><text x="53.9705%" y="527.50"></text></g><g><title>schedule (2,208 samples, 0.17%)</title><rect x="54.0968%" y="501" width="0.1708%" height="15" fill="rgb(226,99,2)" fg:x="699392" fg:w="2208"/><text x="54.3468%" y="511.50"></text></g><g><title>__schedule (2,169 samples, 0.17%)</title><rect x="54.0999%" y="485" width="0.1678%" height="15" fill="rgb(206,133,23)" fg:x="699431" fg:w="2169"/><text x="54.3499%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (7,538 samples, 0.58%)</title><rect x="53.7172%" y="533" width="0.5831%" height="15" fill="rgb(243,173,15)" fg:x="694484" fg:w="7538"/><text x="53.9672%" y="543.50"></text></g><g><title>btrfs_root_node (422 samples, 0.03%)</title><rect x="54.2676%" y="517" width="0.0326%" height="15" fill="rgb(228,69,28)" fg:x="701600" fg:w="422"/><text x="54.5176%" y="527.50"></text></g><g><title>balance_level (360 samples, 0.03%)</title><rect x="54.3006%" y="533" width="0.0278%" height="15" fill="rgb(212,51,22)" fg:x="702026" fg:w="360"/><text x="54.5506%" y="543.50"></text></g><g><title>_raw_write_lock (193 samples, 0.01%)</title><rect x="54.3549%" y="501" width="0.0149%" height="15" fill="rgb(227,113,0)" fg:x="702728" fg:w="193"/><text x="54.6049%" y="511.50"></text></g><g><title>finish_wait (620 samples, 0.05%)</title><rect x="54.3701%" y="501" width="0.0480%" height="15" fill="rgb(252,84,27)" fg:x="702925" fg:w="620"/><text x="54.6201%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (598 samples, 0.05%)</title><rect x="54.3718%" y="485" width="0.0463%" height="15" fill="rgb(223,145,39)" fg:x="702947" fg:w="598"/><text x="54.6218%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (568 samples, 0.04%)</title><rect x="54.3741%" y="469" width="0.0439%" height="15" fill="rgb(239,219,30)" fg:x="702977" fg:w="568"/><text x="54.6241%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,480 samples, 0.11%)</title><rect x="54.4280%" y="485" width="0.1145%" height="15" fill="rgb(224,196,39)" fg:x="703673" fg:w="1480"/><text x="54.6780%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,413 samples, 0.11%)</title><rect x="54.4331%" y="469" width="0.1093%" height="15" fill="rgb(205,35,43)" fg:x="703740" fg:w="1413"/><text x="54.6831%" y="479.50"></text></g><g><title>prepare_to_wait_event (1,620 samples, 0.13%)</title><rect x="54.4184%" y="501" width="0.1253%" height="15" fill="rgb(228,201,21)" fg:x="703550" fg:w="1620"/><text x="54.6684%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (293 samples, 0.02%)</title><rect x="54.5438%" y="501" width="0.0227%" height="15" fill="rgb(237,118,16)" fg:x="705170" fg:w="293"/><text x="54.7938%" y="511.50"></text></g><g><title>dequeue_entity (210 samples, 0.02%)</title><rect x="54.5767%" y="453" width="0.0162%" height="15" fill="rgb(241,17,19)" fg:x="705596" fg:w="210"/><text x="54.8267%" y="463.50"></text></g><g><title>dequeue_task_fair (235 samples, 0.02%)</title><rect x="54.5752%" y="469" width="0.0182%" height="15" fill="rgb(214,10,25)" fg:x="705577" fg:w="235"/><text x="54.8252%" y="479.50"></text></g><g><title>finish_task_switch (163 samples, 0.01%)</title><rect x="54.5934%" y="469" width="0.0126%" height="15" fill="rgb(238,37,29)" fg:x="705812" fg:w="163"/><text x="54.8434%" y="479.50"></text></g><g><title>psi_task_change (192 samples, 0.01%)</title><rect x="54.6124%" y="469" width="0.0149%" height="15" fill="rgb(253,83,25)" fg:x="706057" fg:w="192"/><text x="54.8624%" y="479.50"></text></g><g><title>psi_group_change (164 samples, 0.01%)</title><rect x="54.6145%" y="453" width="0.0127%" height="15" fill="rgb(234,192,12)" fg:x="706085" fg:w="164"/><text x="54.8645%" y="463.50"></text></g><g><title>__btrfs_tree_lock (3,832 samples, 0.30%)</title><rect x="54.3348%" y="517" width="0.2964%" height="15" fill="rgb(241,216,45)" fg:x="702468" fg:w="3832"/><text x="54.5848%" y="527.50"></text></g><g><title>schedule (837 samples, 0.06%)</title><rect x="54.5664%" y="501" width="0.0647%" height="15" fill="rgb(242,22,33)" fg:x="705463" fg:w="837"/><text x="54.8164%" y="511.50"></text></g><g><title>__schedule (803 samples, 0.06%)</title><rect x="54.5690%" y="485" width="0.0621%" height="15" fill="rgb(231,105,49)" fg:x="705497" fg:w="803"/><text x="54.8190%" y="495.50"></text></g><g><title>btrfs_lock_root_node (4,040 samples, 0.31%)</title><rect x="54.3331%" y="533" width="0.3125%" height="15" fill="rgb(218,204,15)" fg:x="702446" fg:w="4040"/><text x="54.5831%" y="543.50"></text></g><g><title>btrfs_root_node (186 samples, 0.01%)</title><rect x="54.6312%" y="517" width="0.0144%" height="15" fill="rgb(235,138,41)" fg:x="706300" fg:w="186"/><text x="54.8812%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (572 samples, 0.04%)</title><rect x="54.6455%" y="533" width="0.0442%" height="15" fill="rgb(246,0,9)" fg:x="706486" fg:w="572"/><text x="54.8955%" y="543.50"></text></g><g><title>btrfs_set_lock_blocking_write (150 samples, 0.01%)</title><rect x="54.6782%" y="517" width="0.0116%" height="15" fill="rgb(210,74,4)" fg:x="706908" fg:w="150"/><text x="54.9282%" y="527.50"></text></g><g><title>btrfs_tree_read_unlock (154 samples, 0.01%)</title><rect x="54.6898%" y="533" width="0.0119%" height="15" fill="rgb(250,60,41)" fg:x="707058" fg:w="154"/><text x="54.9398%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (162 samples, 0.01%)</title><rect x="54.7017%" y="533" width="0.0125%" height="15" fill="rgb(220,115,12)" fg:x="707212" fg:w="162"/><text x="54.9517%" y="543.50"></text></g><g><title>_raw_write_lock (130 samples, 0.01%)</title><rect x="54.7042%" y="517" width="0.0101%" height="15" fill="rgb(237,100,13)" fg:x="707244" fg:w="130"/><text x="54.9542%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (203 samples, 0.02%)</title><rect x="54.7145%" y="533" width="0.0157%" height="15" fill="rgb(213,55,26)" fg:x="707377" fg:w="203"/><text x="54.9645%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (1,015 samples, 0.08%)</title><rect x="54.7302%" y="533" width="0.0785%" height="15" fill="rgb(216,17,4)" fg:x="707580" fg:w="1015"/><text x="54.9802%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (172 samples, 0.01%)</title><rect x="54.8245%" y="517" width="0.0133%" height="15" fill="rgb(220,153,47)" fg:x="708800" fg:w="172"/><text x="55.0745%" y="527.50"></text></g><g><title>verify_parent_transid (143 samples, 0.01%)</title><rect x="54.8268%" y="501" width="0.0111%" height="15" fill="rgb(215,131,9)" fg:x="708829" fg:w="143"/><text x="55.0768%" y="511.50"></text></g><g><title>btrfs_get_64 (222 samples, 0.02%)</title><rect x="54.8378%" y="517" width="0.0172%" height="15" fill="rgb(233,46,42)" fg:x="708972" fg:w="222"/><text x="55.0878%" y="527.50"></text></g><g><title>__radix_tree_lookup (657 samples, 0.05%)</title><rect x="54.9080%" y="501" width="0.0508%" height="15" fill="rgb(226,86,7)" fg:x="709879" fg:w="657"/><text x="55.1580%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (372 samples, 0.03%)</title><rect x="54.9590%" y="501" width="0.0288%" height="15" fill="rgb(239,226,21)" fg:x="710538" fg:w="372"/><text x="55.2090%" y="511.50"></text></g><g><title>mark_page_accessed (284 samples, 0.02%)</title><rect x="54.9658%" y="485" width="0.0220%" height="15" fill="rgb(244,137,22)" fg:x="710626" fg:w="284"/><text x="55.2158%" y="495.50"></text></g><g><title>find_extent_buffer (1,616 samples, 0.12%)</title><rect x="54.8631%" y="517" width="0.1250%" height="15" fill="rgb(211,139,35)" fg:x="709299" fg:w="1616"/><text x="55.1131%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (2,569 samples, 0.20%)</title><rect x="54.8087%" y="533" width="0.1987%" height="15" fill="rgb(214,62,50)" fg:x="708595" fg:w="2569"/><text x="55.0587%" y="543.50"></text></g><g><title>read_extent_buffer (249 samples, 0.02%)</title><rect x="54.9881%" y="517" width="0.0193%" height="15" fill="rgb(212,113,44)" fg:x="710915" fg:w="249"/><text x="55.2381%" y="527.50"></text></g><g><title>btrfs_search_slot (17,887 samples, 1.38%)</title><rect x="53.6518%" y="549" width="1.3835%" height="15" fill="rgb(226,150,43)" fg:x="693638" fg:w="17887"/><text x="53.9018%" y="559.50"></text></g><g><title>unlock_up (214 samples, 0.02%)</title><rect x="55.0187%" y="533" width="0.0166%" height="15" fill="rgb(250,71,37)" fg:x="711311" fg:w="214"/><text x="55.2687%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (18,384 samples, 1.42%)</title><rect x="53.6354%" y="565" width="1.4220%" height="15" fill="rgb(219,76,19)" fg:x="693426" fg:w="18384"/><text x="53.8854%" y="575.50"></text></g><g><title>crc32c (285 samples, 0.02%)</title><rect x="55.0353%" y="549" width="0.0220%" height="15" fill="rgb(250,39,11)" fg:x="711525" fg:w="285"/><text x="55.2853%" y="559.50"></text></g><g><title>crypto_shash_update (164 samples, 0.01%)</title><rect x="55.0447%" y="533" width="0.0127%" height="15" fill="rgb(230,64,31)" fg:x="711646" fg:w="164"/><text x="55.2947%" y="543.50"></text></g><g><title>select_task_rq_fair (340 samples, 0.03%)</title><rect x="55.2663%" y="485" width="0.0263%" height="15" fill="rgb(208,222,23)" fg:x="714511" fg:w="340"/><text x="55.5163%" y="495.50"></text></g><g><title>enqueue_entity (433 samples, 0.03%)</title><rect x="55.3014%" y="453" width="0.0335%" height="15" fill="rgb(227,125,18)" fg:x="714965" fg:w="433"/><text x="55.5514%" y="463.50"></text></g><g><title>update_load_avg (153 samples, 0.01%)</title><rect x="55.3230%" y="437" width="0.0118%" height="15" fill="rgb(234,210,9)" fg:x="715245" fg:w="153"/><text x="55.5730%" y="447.50"></text></g><g><title>enqueue_task_fair (530 samples, 0.04%)</title><rect x="55.2952%" y="469" width="0.0410%" height="15" fill="rgb(217,127,24)" fg:x="714885" fg:w="530"/><text x="55.5452%" y="479.50"></text></g><g><title>ttwu_do_activate (1,119 samples, 0.09%)</title><rect x="55.2932%" y="485" width="0.0866%" height="15" fill="rgb(239,141,48)" fg:x="714859" fg:w="1119"/><text x="55.5432%" y="495.50"></text></g><g><title>psi_task_change (563 samples, 0.04%)</title><rect x="55.3362%" y="469" width="0.0435%" height="15" fill="rgb(227,109,8)" fg:x="715415" fg:w="563"/><text x="55.5862%" y="479.50"></text></g><g><title>psi_group_change (500 samples, 0.04%)</title><rect x="55.3411%" y="453" width="0.0387%" height="15" fill="rgb(235,184,23)" fg:x="715478" fg:w="500"/><text x="55.5911%" y="463.50"></text></g><g><title>__wake_up_common (4,261 samples, 0.33%)</title><rect x="55.0773%" y="533" width="0.3296%" height="15" fill="rgb(227,226,48)" fg:x="712068" fg:w="4261"/><text x="55.3273%" y="543.50"></text></g><g><title>autoremove_wake_function (4,144 samples, 0.32%)</title><rect x="55.0864%" y="517" width="0.3205%" height="15" fill="rgb(206,150,11)" fg:x="712185" fg:w="4144"/><text x="55.3364%" y="527.50"></text></g><g><title>try_to_wake_up (4,094 samples, 0.32%)</title><rect x="55.0902%" y="501" width="0.3167%" height="15" fill="rgb(254,2,33)" fg:x="712235" fg:w="4094"/><text x="55.3402%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,542 samples, 0.12%)</title><rect x="55.4069%" y="533" width="0.1193%" height="15" fill="rgb(243,160,20)" fg:x="716329" fg:w="1542"/><text x="55.6569%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,495 samples, 0.12%)</title><rect x="55.4105%" y="517" width="0.1156%" height="15" fill="rgb(218,208,30)" fg:x="716376" fg:w="1495"/><text x="55.6605%" y="527.50"></text></g><g><title>__wake_up_common_lock (5,872 samples, 0.45%)</title><rect x="55.0758%" y="549" width="0.4542%" height="15" fill="rgb(224,120,49)" fg:x="712048" fg:w="5872"/><text x="55.3258%" y="559.50"></text></g><g><title>btrfs_tree_unlock (408 samples, 0.03%)</title><rect x="55.5302%" y="549" width="0.0316%" height="15" fill="rgb(246,12,2)" fg:x="717923" fg:w="408"/><text x="55.7802%" y="559.50"></text></g><g><title>_raw_spin_lock (171 samples, 0.01%)</title><rect x="55.5743%" y="533" width="0.0132%" height="15" fill="rgb(236,117,3)" fg:x="718494" fg:w="171"/><text x="55.8243%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (327 samples, 0.03%)</title><rect x="55.5624%" y="549" width="0.0253%" height="15" fill="rgb(216,128,52)" fg:x="718339" fg:w="327"/><text x="55.8124%" y="559.50"></text></g><g><title>btrfs_release_path (7,044 samples, 0.54%)</title><rect x="55.0573%" y="565" width="0.5448%" height="15" fill="rgb(246,145,19)" fg:x="711810" fg:w="7044"/><text x="55.3073%" y="575.50"></text></g><g><title>release_extent_buffer (188 samples, 0.01%)</title><rect x="55.5876%" y="549" width="0.0145%" height="15" fill="rgb(222,11,46)" fg:x="718666" fg:w="188"/><text x="55.8376%" y="559.50"></text></g><g><title>kmem_cache_alloc (391 samples, 0.03%)</title><rect x="55.6023%" y="565" width="0.0302%" height="15" fill="rgb(245,82,36)" fg:x="718856" fg:w="391"/><text x="55.8523%" y="575.50"></text></g><g><title>kmem_cache_free (476 samples, 0.04%)</title><rect x="55.6326%" y="565" width="0.0368%" height="15" fill="rgb(250,73,51)" fg:x="719247" fg:w="476"/><text x="55.8826%" y="575.50"></text></g><g><title>mutex_lock (428 samples, 0.03%)</title><rect x="55.6694%" y="565" width="0.0331%" height="15" fill="rgb(221,189,23)" fg:x="719723" fg:w="428"/><text x="55.9194%" y="575.50"></text></g><g><title>btrfs_del_dir_entries_in_log (46,882 samples, 3.63%)</title><rect x="52.0981%" y="581" width="3.6262%" height="15" fill="rgb(210,33,7)" fg:x="673551" fg:w="46882"/><text x="52.3481%" y="591.50">btrf..</text></g><g><title>mutex_unlock (282 samples, 0.02%)</title><rect x="55.7025%" y="565" width="0.0218%" height="15" fill="rgb(210,107,22)" fg:x="720151" fg:w="282"/><text x="55.9525%" y="575.50"></text></g><g><title>btrfs_get_32 (401 samples, 0.03%)</title><rect x="55.8891%" y="549" width="0.0310%" height="15" fill="rgb(222,116,37)" fg:x="722563" fg:w="401"/><text x="56.1391%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (961 samples, 0.07%)</title><rect x="56.4077%" y="533" width="0.0743%" height="15" fill="rgb(254,17,48)" fg:x="729268" fg:w="961"/><text x="56.6577%" y="543.50"></text></g><g><title>btrfs_get_token_32 (7,266 samples, 0.56%)</title><rect x="55.9201%" y="549" width="0.5620%" height="15" fill="rgb(224,36,32)" fg:x="722964" fg:w="7266"/><text x="56.1701%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (491 samples, 0.04%)</title><rect x="56.4821%" y="549" width="0.0380%" height="15" fill="rgb(232,90,46)" fg:x="730230" fg:w="491"/><text x="56.7321%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (235 samples, 0.02%)</title><rect x="56.5019%" y="533" width="0.0182%" height="15" fill="rgb(241,66,40)" fg:x="730486" fg:w="235"/><text x="56.7519%" y="543.50"></text></g><g><title>btrfs_set_token_32 (5,197 samples, 0.40%)</title><rect x="56.5201%" y="549" width="0.4020%" height="15" fill="rgb(249,184,29)" fg:x="730721" fg:w="5197"/><text x="56.7701%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (767 samples, 0.06%)</title><rect x="56.8627%" y="533" width="0.0593%" height="15" fill="rgb(231,181,1)" fg:x="735151" fg:w="767"/><text x="57.1127%" y="543.50"></text></g><g><title>leaf_space_used (426 samples, 0.03%)</title><rect x="56.9224%" y="549" width="0.0330%" height="15" fill="rgb(224,94,2)" fg:x="735922" fg:w="426"/><text x="57.1724%" y="559.50"></text></g><g><title>btrfs_get_32 (333 samples, 0.03%)</title><rect x="56.9296%" y="533" width="0.0258%" height="15" fill="rgb(229,170,15)" fg:x="736015" fg:w="333"/><text x="57.1796%" y="543.50"></text></g><g><title>memcpy_extent_buffer (991 samples, 0.08%)</title><rect x="56.9553%" y="549" width="0.0767%" height="15" fill="rgb(240,127,35)" fg:x="736348" fg:w="991"/><text x="57.2053%" y="559.50"></text></g><g><title>memmove (756 samples, 0.06%)</title><rect x="56.9735%" y="533" width="0.0585%" height="15" fill="rgb(248,196,34)" fg:x="736583" fg:w="756"/><text x="57.2235%" y="543.50"></text></g><g><title>copy_pages (893 samples, 0.07%)</title><rect x="57.0635%" y="533" width="0.0691%" height="15" fill="rgb(236,137,7)" fg:x="737746" fg:w="893"/><text x="57.3135%" y="543.50"></text></g><g><title>memmove_extent_buffer (7,903 samples, 0.61%)</title><rect x="57.0320%" y="549" width="0.6113%" height="15" fill="rgb(235,127,16)" fg:x="737339" fg:w="7903"/><text x="57.2820%" y="559.50"></text></g><g><title>memmove (6,603 samples, 0.51%)</title><rect x="57.1325%" y="533" width="0.5107%" height="15" fill="rgb(250,192,54)" fg:x="738639" fg:w="6603"/><text x="57.3825%" y="543.50"></text></g><g><title>btrfs_del_items (24,511 samples, 1.90%)</title><rect x="55.7475%" y="565" width="1.8959%" height="15" fill="rgb(218,98,20)" fg:x="720733" fg:w="24511"/><text x="55.9975%" y="575.50">b..</text></g><g><title>btrfs_get_16 (690 samples, 0.05%)</title><rect x="57.6616%" y="549" width="0.0534%" height="15" fill="rgb(230,176,47)" fg:x="745479" fg:w="690"/><text x="57.9116%" y="559.50"></text></g><g><title>btrfs_get_32 (281 samples, 0.02%)</title><rect x="57.7150%" y="549" width="0.0217%" height="15" fill="rgb(244,2,33)" fg:x="746169" fg:w="281"/><text x="57.9650%" y="559.50"></text></g><g><title>btrfs_find_name_in_backref (1,552 samples, 0.12%)</title><rect x="57.6434%" y="565" width="0.1200%" height="15" fill="rgb(231,100,17)" fg:x="745244" fg:w="1552"/><text x="57.8934%" y="575.50"></text></g><g><title>memcmp_extent_buffer (346 samples, 0.03%)</title><rect x="57.7367%" y="549" width="0.0268%" height="15" fill="rgb(245,23,12)" fg:x="746450" fg:w="346"/><text x="57.9867%" y="559.50"></text></g><g><title>memcmp (230 samples, 0.02%)</title><rect x="57.7457%" y="533" width="0.0178%" height="15" fill="rgb(249,55,22)" fg:x="746566" fg:w="230"/><text x="57.9957%" y="543.50"></text></g><g><title>_raw_spin_lock (385 samples, 0.03%)</title><rect x="57.8322%" y="517" width="0.0298%" height="15" fill="rgb(207,134,9)" fg:x="747685" fg:w="385"/><text x="58.0822%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (982 samples, 0.08%)</title><rect x="57.7863%" y="533" width="0.0760%" height="15" fill="rgb(218,134,0)" fg:x="747091" fg:w="982"/><text x="58.0363%" y="543.50"></text></g><g><title>btrfs_free_path (1,565 samples, 0.12%)</title><rect x="57.7635%" y="565" width="0.1211%" height="15" fill="rgb(213,212,33)" fg:x="746796" fg:w="1565"/><text x="58.0135%" y="575.50"></text></g><g><title>btrfs_release_path (1,552 samples, 0.12%)</title><rect x="57.7645%" y="549" width="0.1200%" height="15" fill="rgb(252,106,18)" fg:x="746809" fg:w="1552"/><text x="58.0145%" y="559.50"></text></g><g><title>release_extent_buffer (288 samples, 0.02%)</title><rect x="57.8622%" y="533" width="0.0223%" height="15" fill="rgb(208,126,42)" fg:x="748073" fg:w="288"/><text x="58.1122%" y="543.50"></text></g><g><title>btrfs_get_64 (152 samples, 0.01%)</title><rect x="57.8928%" y="565" width="0.0118%" height="15" fill="rgb(246,175,29)" fg:x="748468" fg:w="152"/><text x="58.1428%" y="575.50"></text></g><g><title>_raw_read_lock (354 samples, 0.03%)</title><rect x="58.0423%" y="517" width="0.0274%" height="15" fill="rgb(215,13,50)" fg:x="750401" fg:w="354"/><text x="58.2923%" y="527.50"></text></g><g><title>finish_wait (980 samples, 0.08%)</title><rect x="58.0716%" y="517" width="0.0758%" height="15" fill="rgb(216,172,15)" fg:x="750780" fg:w="980"/><text x="58.3216%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (931 samples, 0.07%)</title><rect x="58.0754%" y="501" width="0.0720%" height="15" fill="rgb(212,103,13)" fg:x="750829" fg:w="931"/><text x="58.3254%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (884 samples, 0.07%)</title><rect x="58.0790%" y="485" width="0.0684%" height="15" fill="rgb(231,171,36)" fg:x="750876" fg:w="884"/><text x="58.3290%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (3,376 samples, 0.26%)</title><rect x="58.1695%" y="501" width="0.2611%" height="15" fill="rgb(250,123,20)" fg:x="752046" fg:w="3376"/><text x="58.4195%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,214 samples, 0.25%)</title><rect x="58.1821%" y="485" width="0.2486%" height="15" fill="rgb(212,53,50)" fg:x="752208" fg:w="3214"/><text x="58.4321%" y="495.50"></text></g><g><title>prepare_to_wait_event (3,719 samples, 0.29%)</title><rect x="58.1481%" y="517" width="0.2877%" height="15" fill="rgb(243,54,12)" fg:x="751769" fg:w="3719"/><text x="58.3981%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (5,111 samples, 0.40%)</title><rect x="58.4358%" y="517" width="0.3953%" height="15" fill="rgb(234,101,34)" fg:x="755488" fg:w="5111"/><text x="58.6858%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,508 samples, 0.27%)</title><rect x="58.5598%" y="501" width="0.2713%" height="15" fill="rgb(254,67,22)" fg:x="757091" fg:w="3508"/><text x="58.8098%" y="511.50"></text></g><g><title>update_curr (204 samples, 0.02%)</title><rect x="58.8797%" y="453" width="0.0158%" height="15" fill="rgb(250,35,47)" fg:x="761228" fg:w="204"/><text x="59.1297%" y="463.50"></text></g><g><title>dequeue_entity (539 samples, 0.04%)</title><rect x="58.8668%" y="469" width="0.0417%" height="15" fill="rgb(226,126,38)" fg:x="761061" fg:w="539"/><text x="59.1168%" y="479.50"></text></g><g><title>update_load_avg (168 samples, 0.01%)</title><rect x="58.8955%" y="453" width="0.0130%" height="15" fill="rgb(216,138,53)" fg:x="761432" fg:w="168"/><text x="59.1455%" y="463.50"></text></g><g><title>dequeue_task_fair (696 samples, 0.05%)</title><rect x="58.8586%" y="485" width="0.0538%" height="15" fill="rgb(246,199,43)" fg:x="760954" fg:w="696"/><text x="59.1086%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (1,311 samples, 0.10%)</title><rect x="58.9229%" y="469" width="0.1014%" height="15" fill="rgb(232,125,11)" fg:x="761786" fg:w="1311"/><text x="59.1729%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,259 samples, 0.10%)</title><rect x="58.9269%" y="453" width="0.0974%" height="15" fill="rgb(218,219,45)" fg:x="761838" fg:w="1259"/><text x="59.1769%" y="463.50"></text></g><g><title>native_write_msr (1,238 samples, 0.10%)</title><rect x="58.9286%" y="437" width="0.0958%" height="15" fill="rgb(216,102,54)" fg:x="761859" fg:w="1238"/><text x="59.1786%" y="447.50"></text></g><g><title>finish_task_switch (1,513 samples, 0.12%)</title><rect x="58.9124%" y="485" width="0.1170%" height="15" fill="rgb(250,228,7)" fg:x="761650" fg:w="1513"/><text x="59.1624%" y="495.50"></text></g><g><title>pick_next_task_fair (177 samples, 0.01%)</title><rect x="59.0296%" y="485" width="0.0137%" height="15" fill="rgb(226,125,25)" fg:x="763165" fg:w="177"/><text x="59.2796%" y="495.50"></text></g><g><title>psi_task_change (522 samples, 0.04%)</title><rect x="59.0525%" y="485" width="0.0404%" height="15" fill="rgb(224,165,27)" fg:x="763461" fg:w="522"/><text x="59.3025%" y="495.50"></text></g><g><title>psi_group_change (462 samples, 0.04%)</title><rect x="59.0571%" y="469" width="0.0357%" height="15" fill="rgb(233,86,3)" fg:x="763521" fg:w="462"/><text x="59.3071%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (14,076 samples, 1.09%)</title><rect x="58.0201%" y="533" width="1.0888%" height="15" fill="rgb(228,116,20)" fg:x="750114" fg:w="14076"/><text x="58.2701%" y="543.50"></text></g><g><title>schedule (3,591 samples, 0.28%)</title><rect x="58.8311%" y="517" width="0.2778%" height="15" fill="rgb(209,192,17)" fg:x="760599" fg:w="3591"/><text x="59.0811%" y="527.50"></text></g><g><title>__schedule (3,545 samples, 0.27%)</title><rect x="58.8347%" y="501" width="0.2742%" height="15" fill="rgb(224,88,34)" fg:x="760645" fg:w="3545"/><text x="59.0847%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (14,612 samples, 1.13%)</title><rect x="58.0146%" y="549" width="1.1302%" height="15" fill="rgb(233,38,6)" fg:x="750043" fg:w="14612"/><text x="58.2646%" y="559.50"></text></g><g><title>btrfs_root_node (465 samples, 0.04%)</title><rect x="59.1089%" y="533" width="0.0360%" height="15" fill="rgb(212,59,30)" fg:x="764190" fg:w="465"/><text x="59.3589%" y="543.50"></text></g><g><title>alloc_tree_block_no_bg_flush (201 samples, 0.02%)</title><rect x="59.1630%" y="517" width="0.0155%" height="15" fill="rgb(213,80,3)" fg:x="764890" fg:w="201"/><text x="59.4130%" y="527.50"></text></g><g><title>btrfs_alloc_tree_block (201 samples, 0.02%)</title><rect x="59.1630%" y="501" width="0.0155%" height="15" fill="rgb(251,178,7)" fg:x="764890" fg:w="201"/><text x="59.4130%" y="511.50"></text></g><g><title>__btrfs_cow_block (409 samples, 0.03%)</title><rect x="59.1624%" y="533" width="0.0316%" height="15" fill="rgb(213,154,26)" fg:x="764882" fg:w="409"/><text x="59.4124%" y="543.50"></text></g><g><title>btrfs_cow_block (413 samples, 0.03%)</title><rect x="59.1623%" y="549" width="0.0319%" height="15" fill="rgb(238,165,49)" fg:x="764881" fg:w="413"/><text x="59.4123%" y="559.50"></text></g><g><title>_cond_resched (135 samples, 0.01%)</title><rect x="59.2194%" y="517" width="0.0104%" height="15" fill="rgb(248,91,46)" fg:x="765619" fg:w="135"/><text x="59.4694%" y="527.50"></text></g><g><title>_raw_write_lock (289 samples, 0.02%)</title><rect x="59.2305%" y="517" width="0.0224%" height="15" fill="rgb(244,21,52)" fg:x="765763" fg:w="289"/><text x="59.4805%" y="527.50"></text></g><g><title>finish_wait (690 samples, 0.05%)</title><rect x="59.2531%" y="517" width="0.0534%" height="15" fill="rgb(247,122,20)" fg:x="766055" fg:w="690"/><text x="59.5031%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (654 samples, 0.05%)</title><rect x="59.2559%" y="501" width="0.0506%" height="15" fill="rgb(218,27,9)" fg:x="766091" fg:w="654"/><text x="59.5059%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (618 samples, 0.05%)</title><rect x="59.2587%" y="485" width="0.0478%" height="15" fill="rgb(246,7,6)" fg:x="766127" fg:w="618"/><text x="59.5087%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (2,051 samples, 0.16%)</title><rect x="59.3265%" y="501" width="0.1586%" height="15" fill="rgb(227,135,54)" fg:x="767004" fg:w="2051"/><text x="59.5765%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,902 samples, 0.15%)</title><rect x="59.3380%" y="485" width="0.1471%" height="15" fill="rgb(247,14,11)" fg:x="767153" fg:w="1902"/><text x="59.5880%" y="495.50"></text></g><g><title>prepare_to_wait_event (2,361 samples, 0.18%)</title><rect x="59.3072%" y="517" width="0.1826%" height="15" fill="rgb(206,149,34)" fg:x="766754" fg:w="2361"/><text x="59.5572%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (7,185 samples, 0.56%)</title><rect x="59.4898%" y="517" width="0.5557%" height="15" fill="rgb(227,228,4)" fg:x="769115" fg:w="7185"/><text x="59.7398%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,232 samples, 0.17%)</title><rect x="59.8729%" y="501" width="0.1726%" height="15" fill="rgb(238,218,28)" fg:x="774068" fg:w="2232"/><text x="60.1229%" y="511.50"></text></g><g><title>update_curr (177 samples, 0.01%)</title><rect x="60.0934%" y="453" width="0.0137%" height="15" fill="rgb(252,86,40)" fg:x="776919" fg:w="177"/><text x="60.3434%" y="463.50"></text></g><g><title>dequeue_entity (546 samples, 0.04%)</title><rect x="60.0797%" y="469" width="0.0422%" height="15" fill="rgb(251,225,11)" fg:x="776741" fg:w="546"/><text x="60.3297%" y="479.50"></text></g><g><title>update_load_avg (191 samples, 0.01%)</title><rect x="60.1071%" y="453" width="0.0148%" height="15" fill="rgb(206,46,49)" fg:x="777096" fg:w="191"/><text x="60.3571%" y="463.50"></text></g><g><title>dequeue_task_fair (676 samples, 0.05%)</title><rect x="60.0735%" y="485" width="0.0523%" height="15" fill="rgb(245,128,24)" fg:x="776662" fg:w="676"/><text x="60.3235%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (1,182 samples, 0.09%)</title><rect x="60.1337%" y="469" width="0.0914%" height="15" fill="rgb(219,177,34)" fg:x="777440" fg:w="1182"/><text x="60.3837%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,126 samples, 0.09%)</title><rect x="60.1381%" y="453" width="0.0871%" height="15" fill="rgb(218,60,48)" fg:x="777496" fg:w="1126"/><text x="60.3881%" y="463.50"></text></g><g><title>native_write_msr (1,105 samples, 0.09%)</title><rect x="60.1397%" y="437" width="0.0855%" height="15" fill="rgb(221,11,5)" fg:x="777517" fg:w="1105"/><text x="60.3897%" y="447.50"></text></g><g><title>finish_task_switch (1,346 samples, 0.10%)</title><rect x="60.1258%" y="485" width="0.1041%" height="15" fill="rgb(220,148,13)" fg:x="777338" fg:w="1346"/><text x="60.3758%" y="495.50"></text></g><g><title>pick_next_task_fair (153 samples, 0.01%)</title><rect x="60.2299%" y="485" width="0.0118%" height="15" fill="rgb(210,16,3)" fg:x="778684" fg:w="153"/><text x="60.4799%" y="495.50"></text></g><g><title>psi_task_change (519 samples, 0.04%)</title><rect x="60.2515%" y="485" width="0.0401%" height="15" fill="rgb(236,80,2)" fg:x="778963" fg:w="519"/><text x="60.5015%" y="495.50"></text></g><g><title>psi_group_change (448 samples, 0.03%)</title><rect x="60.2570%" y="469" width="0.0347%" height="15" fill="rgb(239,129,19)" fg:x="779034" fg:w="448"/><text x="60.5070%" y="479.50"></text></g><g><title>__btrfs_tree_lock (14,352 samples, 1.11%)</title><rect x="59.1961%" y="533" width="1.1101%" height="15" fill="rgb(220,106,35)" fg:x="765318" fg:w="14352"/><text x="59.4461%" y="543.50"></text></g><g><title>schedule (3,370 samples, 0.26%)</title><rect x="60.0455%" y="517" width="0.2607%" height="15" fill="rgb(252,139,45)" fg:x="776300" fg:w="3370"/><text x="60.2955%" y="527.50"></text></g><g><title>__schedule (3,315 samples, 0.26%)</title><rect x="60.0498%" y="501" width="0.2564%" height="15" fill="rgb(229,8,36)" fg:x="776355" fg:w="3315"/><text x="60.2998%" y="511.50"></text></g><g><title>btrfs_lock_root_node (14,686 samples, 1.14%)</title><rect x="59.1942%" y="549" width="1.1359%" height="15" fill="rgb(230,126,33)" fg:x="765294" fg:w="14686"/><text x="59.4442%" y="559.50"></text></g><g><title>btrfs_root_node (309 samples, 0.02%)</title><rect x="60.3063%" y="533" width="0.0239%" height="15" fill="rgb(239,140,21)" fg:x="779671" fg:w="309"/><text x="60.5563%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (281 samples, 0.02%)</title><rect x="60.3306%" y="549" width="0.0217%" height="15" fill="rgb(254,104,9)" fg:x="779986" fg:w="281"/><text x="60.5806%" y="559.50"></text></g><g><title>_raw_write_lock (289 samples, 0.02%)</title><rect x="60.3584%" y="533" width="0.0224%" height="15" fill="rgb(239,52,14)" fg:x="780345" fg:w="289"/><text x="60.6084%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (2,209 samples, 0.17%)</title><rect x="60.3524%" y="549" width="0.1709%" height="15" fill="rgb(208,227,44)" fg:x="780267" fg:w="2209"/><text x="60.6024%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (1,840 samples, 0.14%)</title><rect x="60.3809%" y="533" width="0.1423%" height="15" fill="rgb(246,18,19)" fg:x="780636" fg:w="1840"/><text x="60.6309%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (337 samples, 0.03%)</title><rect x="60.5239%" y="549" width="0.0261%" height="15" fill="rgb(235,228,25)" fg:x="782484" fg:w="337"/><text x="60.7739%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (3,913 samples, 0.30%)</title><rect x="60.5499%" y="549" width="0.3027%" height="15" fill="rgb(240,156,20)" fg:x="782821" fg:w="3913"/><text x="60.7999%" y="559.50"></text></g><g><title>btrfs_buffer_uptodate (609 samples, 0.05%)</title><rect x="60.8869%" y="533" width="0.0471%" height="15" fill="rgb(224,8,20)" fg:x="787177" fg:w="609"/><text x="61.1369%" y="543.50"></text></g><g><title>verify_parent_transid (547 samples, 0.04%)</title><rect x="60.8917%" y="517" width="0.0423%" height="15" fill="rgb(214,12,52)" fg:x="787239" fg:w="547"/><text x="61.1417%" y="527.50"></text></g><g><title>btrfs_get_64 (500 samples, 0.04%)</title><rect x="60.9340%" y="533" width="0.0387%" height="15" fill="rgb(211,220,47)" fg:x="787786" fg:w="500"/><text x="61.1840%" y="543.50"></text></g><g><title>btrfs_verify_level_key (141 samples, 0.01%)</title><rect x="60.9769%" y="533" width="0.0109%" height="15" fill="rgb(250,173,5)" fg:x="788341" fg:w="141"/><text x="61.2269%" y="543.50"></text></g><g><title>__radix_tree_lookup (1,843 samples, 0.14%)</title><rect x="61.0744%" y="517" width="0.1426%" height="15" fill="rgb(250,125,52)" fg:x="789602" fg:w="1843"/><text x="61.3244%" y="527.50"></text></g><g><title>mark_page_accessed (955 samples, 0.07%)</title><rect x="61.2360%" y="501" width="0.0739%" height="15" fill="rgb(209,133,18)" fg:x="791691" fg:w="955"/><text x="61.4860%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (1,195 samples, 0.09%)</title><rect x="61.2177%" y="517" width="0.0924%" height="15" fill="rgb(216,173,22)" fg:x="791454" fg:w="1195"/><text x="61.4677%" y="527.50"></text></g><g><title>find_extent_buffer (4,184 samples, 0.32%)</title><rect x="60.9878%" y="533" width="0.3236%" height="15" fill="rgb(205,3,22)" fg:x="788482" fg:w="4184"/><text x="61.2378%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (6,478 samples, 0.50%)</title><rect x="60.8526%" y="549" width="0.5011%" height="15" fill="rgb(248,22,20)" fg:x="786734" fg:w="6478"/><text x="61.1026%" y="559.50"></text></g><g><title>read_extent_buffer (546 samples, 0.04%)</title><rect x="61.3114%" y="533" width="0.0422%" height="15" fill="rgb(233,6,29)" fg:x="792666" fg:w="546"/><text x="61.5614%" y="543.50"></text></g><g><title>__wake_up_common_lock (130 samples, 0.01%)</title><rect x="61.3986%" y="533" width="0.0101%" height="15" fill="rgb(240,22,54)" fg:x="793793" fg:w="130"/><text x="61.6486%" y="543.50"></text></g><g><title>btrfs_search_slot (45,451 samples, 3.52%)</title><rect x="57.9045%" y="565" width="3.5156%" height="15" fill="rgb(231,133,32)" fg:x="748620" fg:w="45451"/><text x="58.1545%" y="575.50">btr..</text></g><g><title>unlock_up (842 samples, 0.07%)</title><rect x="61.3550%" y="549" width="0.0651%" height="15" fill="rgb(248,193,4)" fg:x="793229" fg:w="842"/><text x="61.6050%" y="559.50"></text></g><g><title>btrfs_tree_unlock (141 samples, 0.01%)</title><rect x="61.4092%" y="533" width="0.0109%" height="15" fill="rgb(211,178,46)" fg:x="793930" fg:w="141"/><text x="61.6592%" y="543.50"></text></g><g><title>__schedule (286 samples, 0.02%)</title><rect x="61.4683%" y="517" width="0.0221%" height="15" fill="rgb(224,5,42)" fg:x="794694" fg:w="286"/><text x="61.7183%" y="527.50"></text></g><g><title>_cond_resched (374 samples, 0.03%)</title><rect x="61.4641%" y="533" width="0.0289%" height="15" fill="rgb(239,176,25)" fg:x="794640" fg:w="374"/><text x="61.7141%" y="543.50"></text></g><g><title>kmem_cache_alloc (938 samples, 0.07%)</title><rect x="61.4207%" y="565" width="0.0726%" height="15" fill="rgb(245,187,50)" fg:x="794079" fg:w="938"/><text x="61.6707%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (476 samples, 0.04%)</title><rect x="61.4565%" y="549" width="0.0368%" height="15" fill="rgb(248,24,15)" fg:x="794541" fg:w="476"/><text x="61.7065%" y="559.50"></text></g><g><title>btrfs_del_inode_ref (75,005 samples, 5.80%)</title><rect x="55.7243%" y="581" width="5.8015%" height="15" fill="rgb(205,166,13)" fg:x="720433" fg:w="75005"/><text x="55.9743%" y="591.50">btrfs_d..</text></g><g><title>kmem_cache_free (421 samples, 0.03%)</title><rect x="61.4933%" y="565" width="0.0326%" height="15" fill="rgb(208,114,23)" fg:x="795017" fg:w="421"/><text x="61.7433%" y="575.50"></text></g><g><title>_raw_spin_lock_irqsave (142 samples, 0.01%)</title><rect x="61.8642%" y="453" width="0.0110%" height="15" fill="rgb(239,127,18)" fg:x="799813" fg:w="142"/><text x="62.1142%" y="463.50"></text></g><g><title>select_task_rq_fair (539 samples, 0.04%)</title><rect x="61.8765%" y="453" width="0.0417%" height="15" fill="rgb(219,154,28)" fg:x="799972" fg:w="539"/><text x="62.1265%" y="463.50"></text></g><g><title>update_cfs_rq_h_load (193 samples, 0.01%)</title><rect x="61.9033%" y="437" width="0.0149%" height="15" fill="rgb(225,157,23)" fg:x="800318" fg:w="193"/><text x="62.1533%" y="447.50"></text></g><g><title>enqueue_entity (639 samples, 0.05%)</title><rect x="61.9338%" y="421" width="0.0494%" height="15" fill="rgb(219,8,6)" fg:x="800712" fg:w="639"/><text x="62.1838%" y="431.50"></text></g><g><title>update_load_avg (222 samples, 0.02%)</title><rect x="61.9660%" y="405" width="0.0172%" height="15" fill="rgb(212,47,6)" fg:x="801129" fg:w="222"/><text x="62.2160%" y="415.50"></text></g><g><title>enqueue_task_fair (810 samples, 0.06%)</title><rect x="61.9235%" y="437" width="0.0627%" height="15" fill="rgb(224,190,4)" fg:x="800579" fg:w="810"/><text x="62.1735%" y="447.50"></text></g><g><title>ttwu_do_activate (1,629 samples, 0.13%)</title><rect x="61.9201%" y="453" width="0.1260%" height="15" fill="rgb(239,183,29)" fg:x="800535" fg:w="1629"/><text x="62.1701%" y="463.50"></text></g><g><title>psi_task_change (773 samples, 0.06%)</title><rect x="61.9863%" y="437" width="0.0598%" height="15" fill="rgb(213,57,7)" fg:x="801391" fg:w="773"/><text x="62.2363%" y="447.50"></text></g><g><title>psi_group_change (695 samples, 0.05%)</title><rect x="61.9923%" y="421" width="0.0538%" height="15" fill="rgb(216,148,1)" fg:x="801469" fg:w="695"/><text x="62.2423%" y="431.50"></text></g><g><title>ttwu_do_wakeup (183 samples, 0.01%)</title><rect x="62.0461%" y="453" width="0.0142%" height="15" fill="rgb(236,182,29)" fg:x="802164" fg:w="183"/><text x="62.2961%" y="463.50"></text></g><g><title>check_preempt_curr (173 samples, 0.01%)</title><rect x="62.0469%" y="437" width="0.0134%" height="15" fill="rgb(244,120,48)" fg:x="802174" fg:w="173"/><text x="62.2969%" y="447.50"></text></g><g><title>ttwu_queue_wakelist (195 samples, 0.02%)</title><rect x="62.0602%" y="453" width="0.0151%" height="15" fill="rgb(206,71,34)" fg:x="802347" fg:w="195"/><text x="62.3102%" y="463.50"></text></g><g><title>__wake_up_common (6,402 samples, 0.50%)</title><rect x="61.5919%" y="501" width="0.4952%" height="15" fill="rgb(242,32,6)" fg:x="796292" fg:w="6402"/><text x="61.8419%" y="511.50"></text></g><g><title>autoremove_wake_function (6,208 samples, 0.48%)</title><rect x="61.6069%" y="485" width="0.4802%" height="15" fill="rgb(241,35,3)" fg:x="796486" fg:w="6208"/><text x="61.8569%" y="495.50"></text></g><g><title>try_to_wake_up (6,122 samples, 0.47%)</title><rect x="61.6135%" y="469" width="0.4735%" height="15" fill="rgb(222,62,19)" fg:x="796572" fg:w="6122"/><text x="61.8635%" y="479.50"></text></g><g><title>update_rq_clock (152 samples, 0.01%)</title><rect x="62.0753%" y="453" width="0.0118%" height="15" fill="rgb(223,110,41)" fg:x="802542" fg:w="152"/><text x="62.3253%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (2,773 samples, 0.21%)</title><rect x="62.0871%" y="501" width="0.2145%" height="15" fill="rgb(208,224,4)" fg:x="802694" fg:w="2773"/><text x="62.3371%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,697 samples, 0.21%)</title><rect x="62.0930%" y="485" width="0.2086%" height="15" fill="rgb(241,137,19)" fg:x="802770" fg:w="2697"/><text x="62.3430%" y="495.50"></text></g><g><title>__wake_up_common_lock (9,284 samples, 0.72%)</title><rect x="61.5894%" y="517" width="0.7181%" height="15" fill="rgb(244,24,17)" fg:x="796260" fg:w="9284"/><text x="61.8394%" y="527.50"></text></g><g><title>btrfs_tree_unlock (411 samples, 0.03%)</title><rect x="62.3078%" y="517" width="0.0318%" height="15" fill="rgb(245,178,49)" fg:x="805547" fg:w="411"/><text x="62.5578%" y="527.50"></text></g><g><title>_raw_spin_lock (224 samples, 0.02%)</title><rect x="62.3621%" y="501" width="0.0173%" height="15" fill="rgb(219,160,38)" fg:x="806250" fg:w="224"/><text x="62.6121%" y="511.50"></text></g><g><title>free_extent_buffer.part.0 (505 samples, 0.04%)</title><rect x="62.3405%" y="517" width="0.0391%" height="15" fill="rgb(228,137,14)" fg:x="805970" fg:w="505"/><text x="62.5905%" y="527.50"></text></g><g><title>btrfs_free_path (10,844 samples, 0.84%)</title><rect x="61.5636%" y="549" width="0.8388%" height="15" fill="rgb(237,134,11)" fg:x="795926" fg:w="10844"/><text x="61.8136%" y="559.50"></text></g><g><title>btrfs_release_path (10,770 samples, 0.83%)</title><rect x="61.5693%" y="533" width="0.8330%" height="15" fill="rgb(211,126,44)" fg:x="796000" fg:w="10770"/><text x="61.8193%" y="543.50"></text></g><g><title>release_extent_buffer (295 samples, 0.02%)</title><rect x="62.3795%" y="517" width="0.0228%" height="15" fill="rgb(226,171,33)" fg:x="806475" fg:w="295"/><text x="62.6295%" y="527.50"></text></g><g><title>_raw_read_lock (384 samples, 0.03%)</title><rect x="62.5301%" y="501" width="0.0297%" height="15" fill="rgb(253,99,13)" fg:x="808422" fg:w="384"/><text x="62.7801%" y="511.50"></text></g><g><title>finish_wait (1,272 samples, 0.10%)</title><rect x="62.5612%" y="501" width="0.0984%" height="15" fill="rgb(244,48,7)" fg:x="808824" fg:w="1272"/><text x="62.8112%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,214 samples, 0.09%)</title><rect x="62.5657%" y="485" width="0.0939%" height="15" fill="rgb(244,217,54)" fg:x="808882" fg:w="1214"/><text x="62.8157%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,134 samples, 0.09%)</title><rect x="62.5719%" y="469" width="0.0877%" height="15" fill="rgb(224,15,18)" fg:x="808962" fg:w="1134"/><text x="62.8219%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (3,213 samples, 0.25%)</title><rect x="62.6832%" y="485" width="0.2485%" height="15" fill="rgb(244,99,12)" fg:x="810401" fg:w="3213"/><text x="62.9332%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,024 samples, 0.23%)</title><rect x="62.6978%" y="469" width="0.2339%" height="15" fill="rgb(233,226,8)" fg:x="810590" fg:w="3024"/><text x="62.9478%" y="479.50"></text></g><g><title>prepare_to_wait_event (3,573 samples, 0.28%)</title><rect x="62.6599%" y="501" width="0.2764%" height="15" fill="rgb(229,211,3)" fg:x="810100" fg:w="3573"/><text x="62.9099%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (350 samples, 0.03%)</title><rect x="62.9363%" y="501" width="0.0271%" height="15" fill="rgb(216,140,21)" fg:x="813673" fg:w="350"/><text x="63.1863%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (135 samples, 0.01%)</title><rect x="62.9529%" y="485" width="0.0104%" height="15" fill="rgb(234,122,30)" fg:x="813888" fg:w="135"/><text x="63.2029%" y="495.50"></text></g><g><title>__perf_event_task_sched_out (138 samples, 0.01%)</title><rect x="62.9869%" y="469" width="0.0107%" height="15" fill="rgb(236,25,46)" fg:x="814327" fg:w="138"/><text x="63.2369%" y="479.50"></text></g><g><title>update_curr (234 samples, 0.02%)</title><rect x="63.0249%" y="437" width="0.0181%" height="15" fill="rgb(217,52,54)" fg:x="814819" fg:w="234"/><text x="63.2749%" y="447.50"></text></g><g><title>dequeue_entity (684 samples, 0.05%)</title><rect x="63.0060%" y="453" width="0.0529%" height="15" fill="rgb(222,29,26)" fg:x="814574" fg:w="684"/><text x="63.2560%" y="463.50"></text></g><g><title>update_load_avg (205 samples, 0.02%)</title><rect x="63.0430%" y="437" width="0.0159%" height="15" fill="rgb(216,177,29)" fg:x="815053" fg:w="205"/><text x="63.2930%" y="447.50"></text></g><g><title>dequeue_task_fair (800 samples, 0.06%)</title><rect x="63.0003%" y="469" width="0.0619%" height="15" fill="rgb(247,136,51)" fg:x="814501" fg:w="800"/><text x="63.2503%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (464 samples, 0.04%)</title><rect x="63.0699%" y="453" width="0.0359%" height="15" fill="rgb(231,47,47)" fg:x="815401" fg:w="464"/><text x="63.3199%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (434 samples, 0.03%)</title><rect x="63.0723%" y="437" width="0.0336%" height="15" fill="rgb(211,192,36)" fg:x="815431" fg:w="434"/><text x="63.3223%" y="447.50"></text></g><g><title>native_write_msr (419 samples, 0.03%)</title><rect x="63.0734%" y="421" width="0.0324%" height="15" fill="rgb(229,156,32)" fg:x="815446" fg:w="419"/><text x="63.3234%" y="431.50"></text></g><g><title>finish_task_switch (601 samples, 0.05%)</title><rect x="63.0622%" y="469" width="0.0465%" height="15" fill="rgb(248,213,20)" fg:x="815301" fg:w="601"/><text x="63.3122%" y="479.50"></text></g><g><title>pick_next_task_fair (164 samples, 0.01%)</title><rect x="63.1087%" y="469" width="0.0127%" height="15" fill="rgb(217,64,7)" fg:x="815902" fg:w="164"/><text x="63.3587%" y="479.50"></text></g><g><title>pick_next_task_idle (130 samples, 0.01%)</title><rect x="63.1214%" y="469" width="0.0101%" height="15" fill="rgb(232,142,8)" fg:x="816066" fg:w="130"/><text x="63.3714%" y="479.50"></text></g><g><title>psi_task_change (643 samples, 0.05%)</title><rect x="63.1314%" y="469" width="0.0497%" height="15" fill="rgb(224,92,44)" fg:x="816196" fg:w="643"/><text x="63.3814%" y="479.50"></text></g><g><title>psi_group_change (543 samples, 0.04%)</title><rect x="63.1392%" y="453" width="0.0420%" height="15" fill="rgb(214,169,17)" fg:x="816296" fg:w="543"/><text x="63.3892%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (8,920 samples, 0.69%)</title><rect x="62.5048%" y="517" width="0.6899%" height="15" fill="rgb(210,59,37)" fg:x="808095" fg:w="8920"/><text x="62.7548%" y="527.50"></text></g><g><title>schedule (2,992 samples, 0.23%)</title><rect x="62.9634%" y="501" width="0.2314%" height="15" fill="rgb(214,116,48)" fg:x="814023" fg:w="2992"/><text x="63.2134%" y="511.50"></text></g><g><title>__schedule (2,940 samples, 0.23%)</title><rect x="62.9674%" y="485" width="0.2274%" height="15" fill="rgb(244,191,6)" fg:x="814075" fg:w="2940"/><text x="63.2174%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (9,818 samples, 0.76%)</title><rect x="62.4989%" y="533" width="0.7594%" height="15" fill="rgb(241,50,52)" fg:x="808018" fg:w="9818"/><text x="62.7489%" y="543.50"></text></g><g><title>btrfs_root_node (820 samples, 0.06%)</title><rect x="63.1949%" y="517" width="0.0634%" height="15" fill="rgb(236,75,39)" fg:x="817016" fg:w="820"/><text x="63.4449%" y="527.50"></text></g><g><title>btrfs_get_64 (187 samples, 0.01%)</title><rect x="63.2894%" y="517" width="0.0145%" height="15" fill="rgb(236,99,0)" fg:x="818238" fg:w="187"/><text x="63.5394%" y="527.50"></text></g><g><title>balance_level (581 samples, 0.04%)</title><rect x="63.2590%" y="533" width="0.0449%" height="15" fill="rgb(207,202,15)" fg:x="817845" fg:w="581"/><text x="63.5090%" y="543.50"></text></g><g><title>_raw_write_lock (263 samples, 0.02%)</title><rect x="63.3449%" y="501" width="0.0203%" height="15" fill="rgb(233,207,14)" fg:x="818956" fg:w="263"/><text x="63.5949%" y="511.50"></text></g><g><title>finish_wait (951 samples, 0.07%)</title><rect x="63.3654%" y="501" width="0.0736%" height="15" fill="rgb(226,27,51)" fg:x="819221" fg:w="951"/><text x="63.6154%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (916 samples, 0.07%)</title><rect x="63.3681%" y="485" width="0.0709%" height="15" fill="rgb(206,104,42)" fg:x="819256" fg:w="916"/><text x="63.6181%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (859 samples, 0.07%)</title><rect x="63.3725%" y="469" width="0.0664%" height="15" fill="rgb(212,225,4)" fg:x="819313" fg:w="859"/><text x="63.6225%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (2,118 samples, 0.16%)</title><rect x="63.4533%" y="485" width="0.1638%" height="15" fill="rgb(233,96,42)" fg:x="820357" fg:w="2118"/><text x="63.7033%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,033 samples, 0.16%)</title><rect x="63.4599%" y="469" width="0.1572%" height="15" fill="rgb(229,21,32)" fg:x="820442" fg:w="2033"/><text x="63.7099%" y="479.50"></text></g><g><title>prepare_to_wait_event (2,331 samples, 0.18%)</title><rect x="63.4395%" y="501" width="0.1803%" height="15" fill="rgb(226,216,24)" fg:x="820179" fg:w="2331"/><text x="63.6895%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (384 samples, 0.03%)</title><rect x="63.6198%" y="501" width="0.0297%" height="15" fill="rgb(221,163,17)" fg:x="822510" fg:w="384"/><text x="63.8698%" y="511.50"></text></g><g><title>dequeue_entity (325 samples, 0.03%)</title><rect x="63.6683%" y="453" width="0.0251%" height="15" fill="rgb(216,216,42)" fg:x="823137" fg:w="325"/><text x="63.9183%" y="463.50"></text></g><g><title>dequeue_task_fair (370 samples, 0.03%)</title><rect x="63.6654%" y="469" width="0.0286%" height="15" fill="rgb(240,118,7)" fg:x="823100" fg:w="370"/><text x="63.9154%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (164 samples, 0.01%)</title><rect x="63.6989%" y="453" width="0.0127%" height="15" fill="rgb(221,67,37)" fg:x="823532" fg:w="164"/><text x="63.9489%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (150 samples, 0.01%)</title><rect x="63.6999%" y="437" width="0.0116%" height="15" fill="rgb(241,32,44)" fg:x="823546" fg:w="150"/><text x="63.9499%" y="447.50"></text></g><g><title>native_write_msr (142 samples, 0.01%)</title><rect x="63.7006%" y="421" width="0.0110%" height="15" fill="rgb(235,204,43)" fg:x="823554" fg:w="142"/><text x="63.9506%" y="431.50"></text></g><g><title>finish_task_switch (237 samples, 0.02%)</title><rect x="63.6941%" y="469" width="0.0183%" height="15" fill="rgb(213,116,10)" fg:x="823470" fg:w="237"/><text x="63.9441%" y="479.50"></text></g><g><title>psi_task_change (297 samples, 0.02%)</title><rect x="63.7218%" y="469" width="0.0230%" height="15" fill="rgb(239,15,48)" fg:x="823828" fg:w="297"/><text x="63.9718%" y="479.50"></text></g><g><title>psi_group_change (252 samples, 0.02%)</title><rect x="63.7252%" y="453" width="0.0195%" height="15" fill="rgb(207,123,36)" fg:x="823873" fg:w="252"/><text x="63.9752%" y="463.50"></text></g><g><title>__btrfs_tree_lock (5,639 samples, 0.44%)</title><rect x="63.3149%" y="517" width="0.4362%" height="15" fill="rgb(209,103,30)" fg:x="818568" fg:w="5639"/><text x="63.5649%" y="527.50"></text></g><g><title>schedule (1,313 samples, 0.10%)</title><rect x="63.6495%" y="501" width="0.1016%" height="15" fill="rgb(238,100,19)" fg:x="822894" fg:w="1313"/><text x="63.8995%" y="511.50"></text></g><g><title>__schedule (1,281 samples, 0.10%)</title><rect x="63.6520%" y="485" width="0.0991%" height="15" fill="rgb(244,30,14)" fg:x="822926" fg:w="1281"/><text x="63.9020%" y="495.50"></text></g><g><title>btrfs_lock_root_node (5,978 samples, 0.46%)</title><rect x="63.3124%" y="533" width="0.4624%" height="15" fill="rgb(249,174,6)" fg:x="818535" fg:w="5978"/><text x="63.5624%" y="543.50"></text></g><g><title>btrfs_root_node (306 samples, 0.02%)</title><rect x="63.7511%" y="517" width="0.0237%" height="15" fill="rgb(235,213,41)" fg:x="824207" fg:w="306"/><text x="64.0011%" y="527.50"></text></g><g><title>btrfs_set_lock_blocking_write (167 samples, 0.01%)</title><rect x="63.7977%" y="517" width="0.0129%" height="15" fill="rgb(213,118,6)" fg:x="824810" fg:w="167"/><text x="64.0477%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (465 samples, 0.04%)</title><rect x="63.7747%" y="533" width="0.0360%" height="15" fill="rgb(235,44,51)" fg:x="824513" fg:w="465"/><text x="64.0247%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (258 samples, 0.02%)</title><rect x="63.8107%" y="533" width="0.0200%" height="15" fill="rgb(217,9,53)" fg:x="824978" fg:w="258"/><text x="64.0607%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (232 samples, 0.02%)</title><rect x="63.8307%" y="533" width="0.0179%" height="15" fill="rgb(237,172,34)" fg:x="825236" fg:w="232"/><text x="64.0807%" y="543.50"></text></g><g><title>_raw_write_lock (188 samples, 0.01%)</title><rect x="63.8341%" y="517" width="0.0145%" height="15" fill="rgb(206,206,11)" fg:x="825280" fg:w="188"/><text x="64.0841%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (338 samples, 0.03%)</title><rect x="63.8491%" y="533" width="0.0261%" height="15" fill="rgb(214,149,29)" fg:x="825475" fg:w="338"/><text x="64.0991%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (1,610 samples, 0.12%)</title><rect x="63.8753%" y="533" width="0.1245%" height="15" fill="rgb(208,123,3)" fg:x="825813" fg:w="1610"/><text x="64.1253%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (260 samples, 0.02%)</title><rect x="64.0247%" y="517" width="0.0201%" height="15" fill="rgb(229,126,4)" fg:x="827744" fg:w="260"/><text x="64.2747%" y="527.50"></text></g><g><title>verify_parent_transid (196 samples, 0.02%)</title><rect x="64.0296%" y="501" width="0.0152%" height="15" fill="rgb(222,92,36)" fg:x="827808" fg:w="196"/><text x="64.2796%" y="511.50"></text></g><g><title>btrfs_get_64 (322 samples, 0.02%)</title><rect x="64.0448%" y="517" width="0.0249%" height="15" fill="rgb(216,39,41)" fg:x="828004" fg:w="322"/><text x="64.2948%" y="527.50"></text></g><g><title>btrfs_verify_level_key (143 samples, 0.01%)</title><rect x="64.0708%" y="517" width="0.0111%" height="15" fill="rgb(253,127,28)" fg:x="828340" fg:w="143"/><text x="64.3208%" y="527.50"></text></g><g><title>__radix_tree_lookup (879 samples, 0.07%)</title><rect x="64.1239%" y="501" width="0.0680%" height="15" fill="rgb(249,152,51)" fg:x="829027" fg:w="879"/><text x="64.3739%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (526 samples, 0.04%)</title><rect x="64.1921%" y="501" width="0.0407%" height="15" fill="rgb(209,123,42)" fg:x="829909" fg:w="526"/><text x="64.4421%" y="511.50"></text></g><g><title>mark_page_accessed (389 samples, 0.03%)</title><rect x="64.2027%" y="485" width="0.0301%" height="15" fill="rgb(241,118,22)" fg:x="830046" fg:w="389"/><text x="64.4527%" y="495.50"></text></g><g><title>find_extent_buffer (1,968 samples, 0.15%)</title><rect x="64.0818%" y="517" width="0.1522%" height="15" fill="rgb(208,25,7)" fg:x="828483" fg:w="1968"/><text x="64.3318%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (3,367 samples, 0.26%)</title><rect x="63.9998%" y="533" width="0.2604%" height="15" fill="rgb(243,144,39)" fg:x="827423" fg:w="3367"/><text x="64.2498%" y="543.50"></text></g><g><title>read_extent_buffer (339 samples, 0.03%)</title><rect x="64.2340%" y="517" width="0.0262%" height="15" fill="rgb(250,50,5)" fg:x="830451" fg:w="339"/><text x="64.4840%" y="527.50"></text></g><g><title>btrfs_search_slot (24,610 samples, 1.90%)</title><rect x="62.4023%" y="549" width="1.9035%" height="15" fill="rgb(207,67,11)" fg:x="806770" fg:w="24610"/><text x="62.6523%" y="559.50">b..</text></g><g><title>unlock_up (356 samples, 0.03%)</title><rect x="64.2784%" y="533" width="0.0275%" height="15" fill="rgb(245,204,40)" fg:x="831024" fg:w="356"/><text x="64.5284%" y="543.50"></text></g><g><title>crc32c (362 samples, 0.03%)</title><rect x="64.3059%" y="549" width="0.0280%" height="15" fill="rgb(238,228,24)" fg:x="831380" fg:w="362"/><text x="64.5559%" y="559.50"></text></g><g><title>crypto_shash_update (231 samples, 0.02%)</title><rect x="64.3160%" y="533" width="0.0179%" height="15" fill="rgb(217,116,22)" fg:x="831511" fg:w="231"/><text x="64.5660%" y="543.50"></text></g><g><title>memset_erms (198 samples, 0.02%)</title><rect x="64.3653%" y="533" width="0.0153%" height="15" fill="rgb(234,98,12)" fg:x="832148" fg:w="198"/><text x="64.6153%" y="543.50"></text></g><g><title>kmem_cache_alloc (803 samples, 0.06%)</title><rect x="64.3339%" y="549" width="0.0621%" height="15" fill="rgb(242,170,50)" fg:x="831742" fg:w="803"/><text x="64.5839%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (199 samples, 0.02%)</title><rect x="64.3806%" y="533" width="0.0154%" height="15" fill="rgb(235,7,5)" fg:x="832346" fg:w="199"/><text x="64.6306%" y="543.50"></text></g><g><title>btrfs_del_inode_ref (37,412 samples, 2.89%)</title><rect x="61.5456%" y="565" width="2.8938%" height="15" fill="rgb(241,114,28)" fg:x="795694" fg:w="37412"/><text x="61.7956%" y="575.50">bt..</text></g><g><title>kmem_cache_free (561 samples, 0.04%)</title><rect x="64.3960%" y="549" width="0.0434%" height="15" fill="rgb(246,112,42)" fg:x="832545" fg:w="561"/><text x="64.6460%" y="559.50"></text></g><g><title>btrfs_end_log_trans (217 samples, 0.02%)</title><rect x="64.4394%" y="565" width="0.0168%" height="15" fill="rgb(248,228,14)" fg:x="833106" fg:w="217"/><text x="64.6894%" y="575.50"></text></g><g><title>mutex_lock (362 samples, 0.03%)</title><rect x="64.4562%" y="565" width="0.0280%" height="15" fill="rgb(208,133,18)" fg:x="833323" fg:w="362"/><text x="64.7062%" y="575.50"></text></g><g><title>btrfs_del_inode_ref_in_log (38,472 samples, 2.98%)</title><rect x="61.5258%" y="581" width="2.9757%" height="15" fill="rgb(207,35,49)" fg:x="795438" fg:w="38472"/><text x="61.7758%" y="591.50">btr..</text></g><g><title>mutex_unlock (225 samples, 0.02%)</title><rect x="64.4842%" y="565" width="0.0174%" height="15" fill="rgb(205,68,36)" fg:x="833685" fg:w="225"/><text x="64.7342%" y="575.50"></text></g><g><title>__btrfs_add_free_space (209 samples, 0.02%)</title><rect x="64.7247%" y="533" width="0.0162%" height="15" fill="rgb(245,62,40)" fg:x="836795" fg:w="209"/><text x="64.9747%" y="543.50"></text></g><g><title>btrfs_free_tree_block (421 samples, 0.03%)</title><rect x="64.7243%" y="549" width="0.0326%" height="15" fill="rgb(228,27,24)" fg:x="836790" fg:w="421"/><text x="64.9743%" y="559.50"></text></g><g><title>btrfs_del_leaf (509 samples, 0.04%)</title><rect x="64.7243%" y="565" width="0.0394%" height="15" fill="rgb(253,19,12)" fg:x="836790" fg:w="509"/><text x="64.9743%" y="575.50"></text></g><g><title>btrfs_get_32 (451 samples, 0.03%)</title><rect x="64.7637%" y="565" width="0.0349%" height="15" fill="rgb(232,28,20)" fg:x="837299" fg:w="451"/><text x="65.0137%" y="575.50"></text></g><g><title>check_setget_bounds.isra.0 (1,552 samples, 0.12%)</title><rect x="65.5713%" y="549" width="0.1200%" height="15" fill="rgb(218,35,51)" fg:x="847740" fg:w="1552"/><text x="65.8213%" y="559.50"></text></g><g><title>btrfs_get_token_32 (11,544 samples, 0.89%)</title><rect x="64.7986%" y="565" width="0.8929%" height="15" fill="rgb(212,90,40)" fg:x="837750" fg:w="11544"/><text x="65.0486%" y="575.50"></text></g><g><title>btrfs_mark_buffer_dirty (651 samples, 0.05%)</title><rect x="65.6915%" y="565" width="0.0504%" height="15" fill="rgb(220,172,12)" fg:x="849294" fg:w="651"/><text x="65.9415%" y="575.50"></text></g><g><title>set_extent_buffer_dirty (203 samples, 0.02%)</title><rect x="65.7262%" y="549" width="0.0157%" height="15" fill="rgb(226,159,20)" fg:x="849742" fg:w="203"/><text x="65.9762%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (1,258 samples, 0.10%)</title><rect x="66.2952%" y="549" width="0.0973%" height="15" fill="rgb(234,205,16)" fg:x="857099" fg:w="1258"/><text x="66.5452%" y="559.50"></text></g><g><title>btrfs_set_token_32 (8,395 samples, 0.65%)</title><rect x="65.7433%" y="565" width="0.6493%" height="15" fill="rgb(207,9,39)" fg:x="849963" fg:w="8395"/><text x="65.9933%" y="575.50"></text></g><g><title>leaf_space_used (418 samples, 0.03%)</title><rect x="66.3941%" y="565" width="0.0323%" height="15" fill="rgb(249,143,15)" fg:x="858378" fg:w="418"/><text x="66.6441%" y="575.50"></text></g><g><title>btrfs_get_32 (297 samples, 0.02%)</title><rect x="66.4035%" y="549" width="0.0230%" height="15" fill="rgb(253,133,29)" fg:x="858499" fg:w="297"/><text x="66.6535%" y="559.50"></text></g><g><title>copy_pages (176 samples, 0.01%)</title><rect x="66.4421%" y="549" width="0.0136%" height="15" fill="rgb(221,187,0)" fg:x="858998" fg:w="176"/><text x="66.6921%" y="559.50"></text></g><g><title>memcpy_extent_buffer (1,402 samples, 0.11%)</title><rect x="66.4265%" y="565" width="0.1084%" height="15" fill="rgb(205,204,26)" fg:x="858796" fg:w="1402"/><text x="66.6765%" y="575.50"></text></g><g><title>memmove (1,024 samples, 0.08%)</title><rect x="66.4557%" y="549" width="0.0792%" height="15" fill="rgb(224,68,54)" fg:x="859174" fg:w="1024"/><text x="66.7057%" y="559.50"></text></g><g><title>copy_pages (581 samples, 0.04%)</title><rect x="66.5656%" y="549" width="0.0449%" height="15" fill="rgb(209,67,4)" fg:x="860595" fg:w="581"/><text x="66.8156%" y="559.50"></text></g><g><title>memmove_extent_buffer (5,195 samples, 0.40%)</title><rect x="66.5349%" y="565" width="0.4018%" height="15" fill="rgb(228,229,18)" fg:x="860198" fg:w="5195"/><text x="66.7849%" y="575.50"></text></g><g><title>memmove (4,217 samples, 0.33%)</title><rect x="66.6106%" y="549" width="0.3262%" height="15" fill="rgb(231,89,13)" fg:x="861176" fg:w="4217"/><text x="66.8606%" y="559.50"></text></g><g><title>__push_leaf_left (307 samples, 0.02%)</title><rect x="66.9391%" y="549" width="0.0237%" height="15" fill="rgb(210,182,18)" fg:x="865423" fg:w="307"/><text x="67.1891%" y="559.50"></text></g><g><title>push_leaf_left (486 samples, 0.04%)</title><rect x="66.9367%" y="565" width="0.0376%" height="15" fill="rgb(240,105,2)" fg:x="865393" fg:w="486"/><text x="67.1867%" y="575.50"></text></g><g><title>__push_leaf_right (360 samples, 0.03%)</title><rect x="66.9755%" y="549" width="0.0278%" height="15" fill="rgb(207,170,50)" fg:x="865894" fg:w="360"/><text x="67.2255%" y="559.50"></text></g><g><title>push_leaf_right (561 samples, 0.04%)</title><rect x="66.9743%" y="565" width="0.0434%" height="15" fill="rgb(232,133,24)" fg:x="865879" fg:w="561"/><text x="67.2243%" y="575.50"></text></g><g><title>btrfs_del_items (32,574 samples, 2.52%)</title><rect x="64.5016%" y="581" width="2.5195%" height="15" fill="rgb(235,166,27)" fg:x="833910" fg:w="32574"/><text x="64.7516%" y="591.50">bt..</text></g><g><title>btrfs_comp_cpu_keys (476 samples, 0.04%)</title><rect x="67.0956%" y="549" width="0.0368%" height="15" fill="rgb(209,19,13)" fg:x="867447" fg:w="476"/><text x="67.3456%" y="559.50"></text></g><g><title>__btrfs_add_delayed_item (1,465 samples, 0.11%)</title><rect x="67.0425%" y="565" width="0.1133%" height="15" fill="rgb(226,79,39)" fg:x="866760" fg:w="1465"/><text x="67.2925%" y="575.50"></text></g><g><title>rb_insert_color (302 samples, 0.02%)</title><rect x="67.1324%" y="549" width="0.0234%" height="15" fill="rgb(222,163,10)" fg:x="867923" fg:w="302"/><text x="67.3824%" y="559.50"></text></g><g><title>__list_add_valid (258 samples, 0.02%)</title><rect x="67.1744%" y="549" width="0.0200%" height="15" fill="rgb(214,44,19)" fg:x="868465" fg:w="258"/><text x="67.4244%" y="559.50"></text></g><g><title>__list_del_entry_valid (189 samples, 0.01%)</title><rect x="67.1943%" y="549" width="0.0146%" height="15" fill="rgb(210,217,13)" fg:x="868723" fg:w="189"/><text x="67.4443%" y="559.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.02%)</title><rect x="67.2090%" y="549" width="0.0190%" height="15" fill="rgb(237,61,54)" fg:x="868913" fg:w="246"/><text x="67.4590%" y="559.50"></text></g><g><title>mutex_lock (140 samples, 0.01%)</title><rect x="67.2280%" y="549" width="0.0108%" height="15" fill="rgb(226,184,24)" fg:x="869159" fg:w="140"/><text x="67.4780%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,629 samples, 0.13%)</title><rect x="67.1558%" y="565" width="0.1260%" height="15" fill="rgb(223,226,4)" fg:x="868225" fg:w="1629"/><text x="67.4058%" y="575.50"></text></g><g><title>mutex_unlock (555 samples, 0.04%)</title><rect x="67.2389%" y="549" width="0.0429%" height="15" fill="rgb(210,26,41)" fg:x="869299" fg:w="555"/><text x="67.4889%" y="559.50"></text></g><g><title>mutex_spin_on_owner (617 samples, 0.05%)</title><rect x="67.2832%" y="549" width="0.0477%" height="15" fill="rgb(220,221,6)" fg:x="869872" fg:w="617"/><text x="67.5332%" y="559.50"></text></g><g><title>__schedule (147 samples, 0.01%)</title><rect x="67.3314%" y="517" width="0.0114%" height="15" fill="rgb(225,89,49)" fg:x="870495" fg:w="147"/><text x="67.5814%" y="527.50"></text></g><g><title>__mutex_lock.constprop.0 (789 samples, 0.06%)</title><rect x="67.2818%" y="565" width="0.0610%" height="15" fill="rgb(218,70,45)" fg:x="869854" fg:w="789"/><text x="67.5318%" y="575.50"></text></g><g><title>schedule_preempt_disabled (148 samples, 0.01%)</title><rect x="67.3314%" y="549" width="0.0114%" height="15" fill="rgb(238,166,21)" fg:x="870495" fg:w="148"/><text x="67.5814%" y="559.50"></text></g><g><title>schedule (148 samples, 0.01%)</title><rect x="67.3314%" y="533" width="0.0114%" height="15" fill="rgb(224,141,44)" fg:x="870495" fg:w="148"/><text x="67.5814%" y="543.50"></text></g><g><title>_raw_spin_lock (1,041 samples, 0.08%)</title><rect x="67.3682%" y="533" width="0.0805%" height="15" fill="rgb(230,12,49)" fg:x="870971" fg:w="1041"/><text x="67.6182%" y="543.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,351 samples, 0.10%)</title><rect x="67.3443%" y="565" width="0.1045%" height="15" fill="rgb(212,174,12)" fg:x="870662" fg:w="1351"/><text x="67.5943%" y="575.50"></text></g><g><title>btrfs_block_rsv_migrate (1,152 samples, 0.09%)</title><rect x="67.3597%" y="549" width="0.0891%" height="15" fill="rgb(246,67,9)" fg:x="870861" fg:w="1152"/><text x="67.6097%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (565 samples, 0.04%)</title><rect x="67.4488%" y="565" width="0.0437%" height="15" fill="rgb(239,35,23)" fg:x="872013" fg:w="565"/><text x="67.6988%" y="575.50"></text></g><g><title>btrfs_get_delayed_node (363 samples, 0.03%)</title><rect x="67.4644%" y="549" width="0.0281%" height="15" fill="rgb(211,167,0)" fg:x="872215" fg:w="363"/><text x="67.7144%" y="559.50"></text></g><g><title>kmem_cache_alloc_trace (870 samples, 0.07%)</title><rect x="67.4926%" y="565" width="0.0673%" height="15" fill="rgb(225,119,45)" fg:x="872579" fg:w="870"/><text x="67.7426%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (187 samples, 0.01%)</title><rect x="67.5454%" y="549" width="0.0145%" height="15" fill="rgb(210,162,6)" fg:x="873262" fg:w="187"/><text x="67.7954%" y="559.50"></text></g><g><title>__schedule (215 samples, 0.02%)</title><rect x="67.5898%" y="533" width="0.0166%" height="15" fill="rgb(208,118,35)" fg:x="873836" fg:w="215"/><text x="67.8398%" y="543.50"></text></g><g><title>_cond_resched (263 samples, 0.02%)</title><rect x="67.5869%" y="549" width="0.0203%" height="15" fill="rgb(239,4,53)" fg:x="873798" fg:w="263"/><text x="67.8369%" y="559.50"></text></g><g><title>mutex_lock (613 samples, 0.05%)</title><rect x="67.5599%" y="565" width="0.0474%" height="15" fill="rgb(213,130,21)" fg:x="873449" fg:w="613"/><text x="67.8099%" y="575.50"></text></g><g><title>btrfs_delete_delayed_dir_index (7,798 samples, 0.60%)</title><rect x="67.0211%" y="581" width="0.6032%" height="15" fill="rgb(235,148,0)" fg:x="866484" fg:w="7798"/><text x="67.2711%" y="591.50"></text></g><g><title>mutex_unlock (220 samples, 0.02%)</title><rect x="67.6073%" y="565" width="0.0170%" height="15" fill="rgb(244,224,18)" fg:x="874062" fg:w="220"/><text x="67.8573%" y="575.50"></text></g><g><title>btrfs_get_16 (192 samples, 0.01%)</title><rect x="67.6449%" y="565" width="0.0149%" height="15" fill="rgb(211,214,4)" fg:x="874548" fg:w="192"/><text x="67.8949%" y="575.50"></text></g><g><title>btrfs_delete_one_dir_name (598 samples, 0.05%)</title><rect x="67.6243%" y="581" width="0.0463%" height="15" fill="rgb(206,119,25)" fg:x="874282" fg:w="598"/><text x="67.8743%" y="591.50"></text></g><g><title>btrfs_get_32 (140 samples, 0.01%)</title><rect x="67.6597%" y="565" width="0.0108%" height="15" fill="rgb(243,93,47)" fg:x="874740" fg:w="140"/><text x="67.9097%" y="575.50"></text></g><g><title>btrfs_get_16 (409 samples, 0.03%)</title><rect x="67.7270%" y="549" width="0.0316%" height="15" fill="rgb(224,194,6)" fg:x="875610" fg:w="409"/><text x="67.9770%" y="559.50"></text></g><g><title>btrfs_get_32 (281 samples, 0.02%)</title><rect x="67.7586%" y="549" width="0.0217%" height="15" fill="rgb(243,229,6)" fg:x="876019" fg:w="281"/><text x="68.0086%" y="559.50"></text></g><g><title>btrfs_match_dir_item_name (1,743 samples, 0.13%)</title><rect x="67.6994%" y="565" width="0.1348%" height="15" fill="rgb(207,23,50)" fg:x="875253" fg:w="1743"/><text x="67.9494%" y="575.50"></text></g><g><title>memcmp_extent_buffer (696 samples, 0.05%)</title><rect x="67.7804%" y="549" width="0.0538%" height="15" fill="rgb(253,192,32)" fg:x="876300" fg:w="696"/><text x="68.0304%" y="559.50"></text></g><g><title>memcmp (367 samples, 0.03%)</title><rect x="67.8058%" y="533" width="0.0284%" height="15" fill="rgb(213,21,6)" fg:x="876629" fg:w="367"/><text x="68.0558%" y="543.50"></text></g><g><title>_raw_read_lock (290 samples, 0.02%)</title><rect x="67.9574%" y="517" width="0.0224%" height="15" fill="rgb(243,151,13)" fg:x="878589" fg:w="290"/><text x="68.2074%" y="527.50"></text></g><g><title>finish_wait (744 samples, 0.06%)</title><rect x="67.9810%" y="517" width="0.0575%" height="15" fill="rgb(233,165,41)" fg:x="878894" fg:w="744"/><text x="68.2310%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (711 samples, 0.05%)</title><rect x="67.9836%" y="501" width="0.0550%" height="15" fill="rgb(246,176,45)" fg:x="878927" fg:w="711"/><text x="68.2336%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (667 samples, 0.05%)</title><rect x="67.9870%" y="485" width="0.0516%" height="15" fill="rgb(217,170,52)" fg:x="878971" fg:w="667"/><text x="68.2370%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (2,357 samples, 0.18%)</title><rect x="68.0551%" y="501" width="0.1823%" height="15" fill="rgb(214,203,54)" fg:x="879852" fg:w="2357"/><text x="68.3051%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,255 samples, 0.17%)</title><rect x="68.0630%" y="485" width="0.1744%" height="15" fill="rgb(248,215,49)" fg:x="879954" fg:w="2255"/><text x="68.3130%" y="495.50"></text></g><g><title>prepare_to_wait_event (2,625 samples, 0.20%)</title><rect x="68.0389%" y="517" width="0.2030%" height="15" fill="rgb(208,46,10)" fg:x="879642" fg:w="2625"/><text x="68.2889%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (4,205 samples, 0.33%)</title><rect x="68.2419%" y="517" width="0.3252%" height="15" fill="rgb(254,5,31)" fg:x="882267" fg:w="4205"/><text x="68.4919%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,746 samples, 0.21%)</title><rect x="68.3548%" y="501" width="0.2124%" height="15" fill="rgb(222,104,33)" fg:x="883726" fg:w="2746"/><text x="68.6048%" y="511.50"></text></g><g><title>update_curr (181 samples, 0.01%)</title><rect x="68.6051%" y="453" width="0.0140%" height="15" fill="rgb(248,49,16)" fg:x="886962" fg:w="181"/><text x="68.8551%" y="463.50"></text></g><g><title>dequeue_entity (469 samples, 0.04%)</title><rect x="68.5932%" y="469" width="0.0363%" height="15" fill="rgb(232,198,41)" fg:x="886809" fg:w="469"/><text x="68.8432%" y="479.50"></text></g><g><title>update_load_avg (135 samples, 0.01%)</title><rect x="68.6191%" y="453" width="0.0104%" height="15" fill="rgb(214,125,3)" fg:x="887143" fg:w="135"/><text x="68.8691%" y="463.50"></text></g><g><title>dequeue_task_fair (561 samples, 0.04%)</title><rect x="68.5882%" y="485" width="0.0434%" height="15" fill="rgb(229,220,28)" fg:x="886744" fg:w="561"/><text x="68.8382%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (840 samples, 0.06%)</title><rect x="68.6400%" y="469" width="0.0650%" height="15" fill="rgb(222,64,37)" fg:x="887413" fg:w="840"/><text x="68.8900%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (810 samples, 0.06%)</title><rect x="68.6423%" y="453" width="0.0627%" height="15" fill="rgb(249,184,13)" fg:x="887443" fg:w="810"/><text x="68.8923%" y="463.50"></text></g><g><title>native_write_msr (798 samples, 0.06%)</title><rect x="68.6432%" y="437" width="0.0617%" height="15" fill="rgb(252,176,6)" fg:x="887455" fg:w="798"/><text x="68.8932%" y="447.50"></text></g><g><title>finish_task_switch (986 samples, 0.08%)</title><rect x="68.6316%" y="485" width="0.0763%" height="15" fill="rgb(228,153,7)" fg:x="887305" fg:w="986"/><text x="68.8816%" y="495.50"></text></g><g><title>psi_task_change (379 samples, 0.03%)</title><rect x="68.7248%" y="485" width="0.0293%" height="15" fill="rgb(242,193,5)" fg:x="888510" fg:w="379"/><text x="68.9748%" y="495.50"></text></g><g><title>psi_group_change (315 samples, 0.02%)</title><rect x="68.7298%" y="469" width="0.0244%" height="15" fill="rgb(232,140,9)" fg:x="888574" fg:w="315"/><text x="68.9798%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (10,653 samples, 0.82%)</title><rect x="67.9402%" y="533" width="0.8240%" height="15" fill="rgb(213,222,16)" fg:x="878366" fg:w="10653"/><text x="68.1902%" y="543.50"></text></g><g><title>schedule (2,547 samples, 0.20%)</title><rect x="68.5672%" y="517" width="0.1970%" height="15" fill="rgb(222,75,50)" fg:x="886472" fg:w="2547"/><text x="68.8172%" y="527.50"></text></g><g><title>__schedule (2,527 samples, 0.20%)</title><rect x="68.5687%" y="501" width="0.1955%" height="15" fill="rgb(205,180,2)" fg:x="886492" fg:w="2527"/><text x="68.8187%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (11,522 samples, 0.89%)</title><rect x="67.9351%" y="549" width="0.8912%" height="15" fill="rgb(216,34,7)" fg:x="878300" fg:w="11522"/><text x="68.1851%" y="559.50"></text></g><g><title>btrfs_root_node (803 samples, 0.06%)</title><rect x="68.7642%" y="533" width="0.0621%" height="15" fill="rgb(253,16,32)" fg:x="889019" fg:w="803"/><text x="69.0142%" y="543.50"></text></g><g><title>prepare_to_wait_event (162 samples, 0.01%)</title><rect x="68.8352%" y="533" width="0.0125%" height="15" fill="rgb(208,97,28)" fg:x="889937" fg:w="162"/><text x="69.0852%" y="543.50"></text></g><g><title>dequeue_entity (331 samples, 0.03%)</title><rect x="68.8708%" y="485" width="0.0256%" height="15" fill="rgb(225,92,11)" fg:x="890398" fg:w="331"/><text x="69.1208%" y="495.50"></text></g><g><title>dequeue_task_fair (429 samples, 0.03%)</title><rect x="68.8667%" y="501" width="0.0332%" height="15" fill="rgb(243,38,12)" fg:x="890345" fg:w="429"/><text x="69.1167%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (890 samples, 0.07%)</title><rect x="68.9069%" y="485" width="0.0688%" height="15" fill="rgb(208,139,16)" fg:x="890864" fg:w="890"/><text x="69.1569%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (868 samples, 0.07%)</title><rect x="68.9086%" y="469" width="0.0671%" height="15" fill="rgb(227,24,9)" fg:x="890886" fg:w="868"/><text x="69.1586%" y="479.50"></text></g><g><title>native_write_msr (861 samples, 0.07%)</title><rect x="68.9091%" y="453" width="0.0666%" height="15" fill="rgb(206,62,11)" fg:x="890893" fg:w="861"/><text x="69.1591%" y="463.50"></text></g><g><title>finish_task_switch (1,019 samples, 0.08%)</title><rect x="68.8999%" y="501" width="0.0788%" height="15" fill="rgb(228,134,27)" fg:x="890774" fg:w="1019"/><text x="69.1499%" y="511.50"></text></g><g><title>psi_task_change (326 samples, 0.03%)</title><rect x="68.9926%" y="501" width="0.0252%" height="15" fill="rgb(205,55,33)" fg:x="891972" fg:w="326"/><text x="69.2426%" y="511.50"></text></g><g><title>psi_group_change (270 samples, 0.02%)</title><rect x="68.9969%" y="485" width="0.0209%" height="15" fill="rgb(243,75,43)" fg:x="892028" fg:w="270"/><text x="69.2469%" y="495.50"></text></g><g><title>__btrfs_tree_lock (2,594 samples, 0.20%)</title><rect x="68.8263%" y="549" width="0.2006%" height="15" fill="rgb(223,27,42)" fg:x="889822" fg:w="2594"/><text x="69.0763%" y="559.50"></text></g><g><title>schedule (2,317 samples, 0.18%)</title><rect x="68.8477%" y="533" width="0.1792%" height="15" fill="rgb(232,189,33)" fg:x="890099" fg:w="2317"/><text x="69.0977%" y="543.50"></text></g><g><title>__schedule (2,298 samples, 0.18%)</title><rect x="68.8492%" y="517" width="0.1777%" height="15" fill="rgb(210,9,39)" fg:x="890118" fg:w="2298"/><text x="69.0992%" y="527.50"></text></g><g><title>alloc_tree_block_no_bg_flush (133 samples, 0.01%)</title><rect x="69.0438%" y="517" width="0.0103%" height="15" fill="rgb(242,85,26)" fg:x="892634" fg:w="133"/><text x="69.2938%" y="527.50"></text></g><g><title>__btrfs_cow_block (275 samples, 0.02%)</title><rect x="69.0435%" y="533" width="0.0213%" height="15" fill="rgb(248,44,4)" fg:x="892630" fg:w="275"/><text x="69.2935%" y="543.50"></text></g><g><title>btrfs_cow_block (278 samples, 0.02%)</title><rect x="69.0433%" y="549" width="0.0215%" height="15" fill="rgb(250,96,46)" fg:x="892628" fg:w="278"/><text x="69.2933%" y="559.50"></text></g><g><title>_cond_resched (135 samples, 0.01%)</title><rect x="69.0875%" y="517" width="0.0104%" height="15" fill="rgb(229,116,26)" fg:x="893199" fg:w="135"/><text x="69.3375%" y="527.50"></text></g><g><title>_raw_write_lock (259 samples, 0.02%)</title><rect x="69.0987%" y="517" width="0.0200%" height="15" fill="rgb(246,94,34)" fg:x="893344" fg:w="259"/><text x="69.3487%" y="527.50"></text></g><g><title>finish_wait (603 samples, 0.05%)</title><rect x="69.1189%" y="517" width="0.0466%" height="15" fill="rgb(251,73,21)" fg:x="893605" fg:w="603"/><text x="69.3689%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (560 samples, 0.04%)</title><rect x="69.1222%" y="501" width="0.0433%" height="15" fill="rgb(254,121,25)" fg:x="893648" fg:w="560"/><text x="69.3722%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (520 samples, 0.04%)</title><rect x="69.1253%" y="485" width="0.0402%" height="15" fill="rgb(215,161,49)" fg:x="893688" fg:w="520"/><text x="69.3753%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (1,817 samples, 0.14%)</title><rect x="69.1830%" y="501" width="0.1405%" height="15" fill="rgb(221,43,13)" fg:x="894434" fg:w="1817"/><text x="69.4330%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,680 samples, 0.13%)</title><rect x="69.1936%" y="485" width="0.1299%" height="15" fill="rgb(249,5,37)" fg:x="894571" fg:w="1680"/><text x="69.4436%" y="495.50"></text></g><g><title>prepare_to_wait_event (2,091 samples, 0.16%)</title><rect x="69.1663%" y="517" width="0.1617%" height="15" fill="rgb(226,25,44)" fg:x="894218" fg:w="2091"/><text x="69.4163%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (5,752 samples, 0.44%)</title><rect x="69.3280%" y="517" width="0.4449%" height="15" fill="rgb(238,189,16)" fg:x="896309" fg:w="5752"/><text x="69.5780%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,771 samples, 0.14%)</title><rect x="69.6360%" y="501" width="0.1370%" height="15" fill="rgb(251,186,8)" fg:x="900290" fg:w="1771"/><text x="69.8860%" y="511.50"></text></g><g><title>update_curr (175 samples, 0.01%)</title><rect x="69.8221%" y="453" width="0.0135%" height="15" fill="rgb(254,34,31)" fg:x="902696" fg:w="175"/><text x="70.0721%" y="463.50"></text></g><g><title>dequeue_entity (548 samples, 0.04%)</title><rect x="69.8082%" y="469" width="0.0424%" height="15" fill="rgb(225,215,27)" fg:x="902517" fg:w="548"/><text x="70.0582%" y="479.50"></text></g><g><title>update_load_avg (194 samples, 0.02%)</title><rect x="69.8356%" y="453" width="0.0150%" height="15" fill="rgb(221,192,48)" fg:x="902871" fg:w="194"/><text x="70.0856%" y="463.50"></text></g><g><title>dequeue_task_fair (673 samples, 0.05%)</title><rect x="69.8021%" y="485" width="0.0521%" height="15" fill="rgb(219,137,20)" fg:x="902438" fg:w="673"/><text x="70.0521%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (1,579 samples, 0.12%)</title><rect x="69.8622%" y="469" width="0.1221%" height="15" fill="rgb(219,84,11)" fg:x="903215" fg:w="1579"/><text x="70.1122%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,516 samples, 0.12%)</title><rect x="69.8671%" y="453" width="0.1173%" height="15" fill="rgb(224,10,23)" fg:x="903278" fg:w="1516"/><text x="70.1171%" y="463.50"></text></g><g><title>native_write_msr (1,492 samples, 0.12%)</title><rect x="69.8689%" y="437" width="0.1154%" height="15" fill="rgb(248,22,39)" fg:x="903302" fg:w="1492"/><text x="70.1189%" y="447.50"></text></g><g><title>finish_task_switch (1,765 samples, 0.14%)</title><rect x="69.8542%" y="485" width="0.1365%" height="15" fill="rgb(212,154,20)" fg:x="903111" fg:w="1765"/><text x="70.1042%" y="495.50"></text></g><g><title>pick_next_task_idle (130 samples, 0.01%)</title><rect x="70.0007%" y="485" width="0.0101%" height="15" fill="rgb(236,199,50)" fg:x="905005" fg:w="130"/><text x="70.2507%" y="495.50"></text></g><g><title>psi_task_change (473 samples, 0.04%)</title><rect x="70.0107%" y="485" width="0.0366%" height="15" fill="rgb(211,9,17)" fg:x="905135" fg:w="473"/><text x="70.2607%" y="495.50"></text></g><g><title>psi_group_change (388 samples, 0.03%)</title><rect x="70.0173%" y="469" width="0.0300%" height="15" fill="rgb(243,216,36)" fg:x="905220" fg:w="388"/><text x="70.2673%" y="479.50"></text></g><g><title>__btrfs_tree_lock (12,839 samples, 0.99%)</title><rect x="69.0672%" y="533" width="0.9931%" height="15" fill="rgb(250,2,10)" fg:x="892937" fg:w="12839"/><text x="69.3172%" y="543.50"></text></g><g><title>schedule (3,715 samples, 0.29%)</title><rect x="69.7730%" y="517" width="0.2873%" height="15" fill="rgb(226,50,48)" fg:x="902061" fg:w="3715"/><text x="70.0230%" y="527.50"></text></g><g><title>__schedule (3,667 samples, 0.28%)</title><rect x="69.7767%" y="501" width="0.2836%" height="15" fill="rgb(243,81,16)" fg:x="902109" fg:w="3667"/><text x="70.0267%" y="511.50"></text></g><g><title>btrfs_lock_root_node (13,155 samples, 1.02%)</title><rect x="69.0648%" y="549" width="1.0175%" height="15" fill="rgb(250,14,2)" fg:x="892906" fg:w="13155"/><text x="69.3148%" y="559.50"></text></g><g><title>btrfs_root_node (285 samples, 0.02%)</title><rect x="70.0603%" y="533" width="0.0220%" height="15" fill="rgb(233,135,29)" fg:x="905776" fg:w="285"/><text x="70.3103%" y="543.50"></text></g><g><title>btrfs_set_path_blocking (266 samples, 0.02%)</title><rect x="70.0823%" y="549" width="0.0206%" height="15" fill="rgb(224,64,43)" fg:x="906061" fg:w="266"/><text x="70.3323%" y="559.50"></text></g><g><title>btrfs_tree_read_unlock (243 samples, 0.02%)</title><rect x="70.1031%" y="549" width="0.0188%" height="15" fill="rgb(238,84,13)" fg:x="906329" fg:w="243"/><text x="70.3531%" y="559.50"></text></g><g><title>_raw_write_lock (286 samples, 0.02%)</title><rect x="70.1301%" y="533" width="0.0221%" height="15" fill="rgb(253,48,26)" fg:x="906678" fg:w="286"/><text x="70.3801%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (3,811 samples, 0.29%)</title><rect x="70.1219%" y="549" width="0.2948%" height="15" fill="rgb(205,223,31)" fg:x="906572" fg:w="3811"/><text x="70.3719%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (3,417 samples, 0.26%)</title><rect x="70.1523%" y="533" width="0.2643%" height="15" fill="rgb(221,41,32)" fg:x="906966" fg:w="3417"/><text x="70.4023%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (310 samples, 0.02%)</title><rect x="70.4171%" y="549" width="0.0240%" height="15" fill="rgb(213,158,31)" fg:x="910389" fg:w="310"/><text x="70.6671%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (3,490 samples, 0.27%)</title><rect x="70.4412%" y="549" width="0.2699%" height="15" fill="rgb(245,126,43)" fg:x="910700" fg:w="3490"/><text x="70.6912%" y="559.50"></text></g><g><title>btrfs_buffer_uptodate (470 samples, 0.04%)</title><rect x="70.7499%" y="533" width="0.0364%" height="15" fill="rgb(227,7,22)" fg:x="914692" fg:w="470"/><text x="70.9999%" y="543.50"></text></g><g><title>verify_parent_transid (354 samples, 0.03%)</title><rect x="70.7589%" y="517" width="0.0274%" height="15" fill="rgb(252,90,44)" fg:x="914808" fg:w="354"/><text x="71.0089%" y="527.50"></text></g><g><title>btrfs_get_64 (516 samples, 0.04%)</title><rect x="70.7863%" y="533" width="0.0399%" height="15" fill="rgb(253,91,0)" fg:x="915162" fg:w="516"/><text x="71.0363%" y="543.50"></text></g><g><title>check_setget_bounds.isra.0 (137 samples, 0.01%)</title><rect x="70.8156%" y="517" width="0.0106%" height="15" fill="rgb(252,175,49)" fg:x="915541" fg:w="137"/><text x="71.0656%" y="527.50"></text></g><g><title>btrfs_verify_level_key (189 samples, 0.01%)</title><rect x="70.8321%" y="533" width="0.0146%" height="15" fill="rgb(246,150,1)" fg:x="915754" fg:w="189"/><text x="71.0821%" y="543.50"></text></g><g><title>__radix_tree_lookup (1,862 samples, 0.14%)</title><rect x="70.9203%" y="517" width="0.1440%" height="15" fill="rgb(241,192,25)" fg:x="916894" fg:w="1862"/><text x="71.1703%" y="527.50"></text></g><g><title>mark_page_accessed (676 samples, 0.05%)</title><rect x="71.0822%" y="501" width="0.0523%" height="15" fill="rgb(239,187,11)" fg:x="918987" fg:w="676"/><text x="71.3322%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (899 samples, 0.07%)</title><rect x="71.0651%" y="517" width="0.0695%" height="15" fill="rgb(218,202,51)" fg:x="918766" fg:w="899"/><text x="71.3151%" y="527.50"></text></g><g><title>find_extent_buffer (3,755 samples, 0.29%)</title><rect x="70.8467%" y="533" width="0.2904%" height="15" fill="rgb(225,176,8)" fg:x="915943" fg:w="3755"/><text x="71.0967%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (6,048 samples, 0.47%)</title><rect x="70.7111%" y="549" width="0.4678%" height="15" fill="rgb(219,122,41)" fg:x="914190" fg:w="6048"/><text x="70.9611%" y="559.50"></text></g><g><title>read_extent_buffer (540 samples, 0.04%)</title><rect x="71.1371%" y="533" width="0.0418%" height="15" fill="rgb(248,140,20)" fg:x="919698" fg:w="540"/><text x="71.3871%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (146 samples, 0.01%)</title><rect x="71.1870%" y="533" width="0.0113%" height="15" fill="rgb(245,41,37)" fg:x="920343" fg:w="146"/><text x="71.4370%" y="543.50"></text></g><g><title>btrfs_get_64 (164 samples, 0.01%)</title><rect x="71.1983%" y="533" width="0.0127%" height="15" fill="rgb(235,82,39)" fg:x="920489" fg:w="164"/><text x="71.4483%" y="543.50"></text></g><g><title>__radix_tree_lookup (531 samples, 0.04%)</title><rect x="71.2440%" y="517" width="0.0411%" height="15" fill="rgb(230,108,42)" fg:x="921079" fg:w="531"/><text x="71.4940%" y="527.50"></text></g><g><title>mark_extent_buffer_accessed (287 samples, 0.02%)</title><rect x="71.2853%" y="517" width="0.0222%" height="15" fill="rgb(215,150,50)" fg:x="921613" fg:w="287"/><text x="71.5353%" y="527.50"></text></g><g><title>mark_page_accessed (212 samples, 0.02%)</title><rect x="71.2911%" y="501" width="0.0164%" height="15" fill="rgb(233,212,5)" fg:x="921688" fg:w="212"/><text x="71.5411%" y="511.50"></text></g><g><title>find_extent_buffer (1,252 samples, 0.10%)</title><rect x="71.2110%" y="533" width="0.0968%" height="15" fill="rgb(245,80,22)" fg:x="920653" fg:w="1252"/><text x="71.4610%" y="543.50"></text></g><g><title>reada_for_balance (1,781 samples, 0.14%)</title><rect x="71.1789%" y="549" width="0.1378%" height="15" fill="rgb(238,129,16)" fg:x="920238" fg:w="1781"/><text x="71.4289%" y="559.50"></text></g><g><title>__list_del_entry_valid (208 samples, 0.02%)</title><rect x="71.3925%" y="485" width="0.0161%" height="15" fill="rgb(240,19,0)" fg:x="923000" fg:w="208"/><text x="71.6425%" y="495.50"></text></g><g><title>_raw_spin_lock (394 samples, 0.03%)</title><rect x="71.6556%" y="469" width="0.0305%" height="15" fill="rgb(232,42,35)" fg:x="926401" fg:w="394"/><text x="71.9056%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (269 samples, 0.02%)</title><rect x="71.6653%" y="453" width="0.0208%" height="15" fill="rgb(223,130,24)" fg:x="926526" fg:w="269"/><text x="71.9153%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (340 samples, 0.03%)</title><rect x="71.6861%" y="469" width="0.0263%" height="15" fill="rgb(237,16,22)" fg:x="926795" fg:w="340"/><text x="71.9361%" y="479.50"></text></g><g><title>available_idle_cpu (361 samples, 0.03%)</title><rect x="71.7769%" y="453" width="0.0279%" height="15" fill="rgb(248,192,20)" fg:x="927969" fg:w="361"/><text x="72.0269%" y="463.50"></text></g><g><title>select_task_rq_fair (1,668 samples, 0.13%)</title><rect x="71.7166%" y="469" width="0.1290%" height="15" fill="rgb(233,167,2)" fg:x="927190" fg:w="1668"/><text x="71.9666%" y="479.50"></text></g><g><title>update_cfs_rq_h_load (300 samples, 0.02%)</title><rect x="71.8225%" y="453" width="0.0232%" height="15" fill="rgb(252,71,44)" fg:x="928558" fg:w="300"/><text x="72.0725%" y="463.50"></text></g><g><title>update_curr (177 samples, 0.01%)</title><rect x="71.9440%" y="421" width="0.0137%" height="15" fill="rgb(238,37,47)" fg:x="930130" fg:w="177"/><text x="72.1940%" y="431.50"></text></g><g><title>enqueue_entity (1,434 samples, 0.11%)</title><rect x="71.8870%" y="437" width="0.1109%" height="15" fill="rgb(214,202,54)" fg:x="929393" fg:w="1434"/><text x="72.1370%" y="447.50"></text></g><g><title>update_load_avg (520 samples, 0.04%)</title><rect x="71.9577%" y="421" width="0.0402%" height="15" fill="rgb(254,165,40)" fg:x="930307" fg:w="520"/><text x="72.2077%" y="431.50"></text></g><g><title>enqueue_task_fair (1,805 samples, 0.14%)</title><rect x="71.8668%" y="453" width="0.1396%" height="15" fill="rgb(246,173,38)" fg:x="929132" fg:w="1805"/><text x="72.1168%" y="463.50"></text></g><g><title>ttwu_do_activate (3,682 samples, 0.28%)</title><rect x="71.8556%" y="469" width="0.2848%" height="15" fill="rgb(215,3,27)" fg:x="928986" fg:w="3682"/><text x="72.1056%" y="479.50"></text></g><g><title>psi_task_change (1,729 samples, 0.13%)</title><rect x="72.0066%" y="453" width="0.1337%" height="15" fill="rgb(239,169,51)" fg:x="930939" fg:w="1729"/><text x="72.2566%" y="463.50"></text></g><g><title>psi_group_change (1,533 samples, 0.12%)</title><rect x="72.0218%" y="437" width="0.1186%" height="15" fill="rgb(212,5,25)" fg:x="931135" fg:w="1533"/><text x="72.2718%" y="447.50"></text></g><g><title>record_times (255 samples, 0.02%)</title><rect x="72.1206%" y="421" width="0.0197%" height="15" fill="rgb(243,45,17)" fg:x="932413" fg:w="255"/><text x="72.3706%" y="431.50"></text></g><g><title>sched_clock_cpu (159 samples, 0.01%)</title><rect x="72.1281%" y="405" width="0.0123%" height="15" fill="rgb(242,97,9)" fg:x="932509" fg:w="159"/><text x="72.3781%" y="415.50"></text></g><g><title>sched_clock (133 samples, 0.01%)</title><rect x="72.1301%" y="389" width="0.0103%" height="15" fill="rgb(228,71,31)" fg:x="932535" fg:w="133"/><text x="72.3801%" y="399.50"></text></g><g><title>check_preempt_wakeup (147 samples, 0.01%)</title><rect x="72.1511%" y="437" width="0.0114%" height="15" fill="rgb(252,184,16)" fg:x="932807" fg:w="147"/><text x="72.4011%" y="447.50"></text></g><g><title>resched_curr (147 samples, 0.01%)</title><rect x="72.1626%" y="437" width="0.0114%" height="15" fill="rgb(236,169,46)" fg:x="932955" fg:w="147"/><text x="72.4126%" y="447.50"></text></g><g><title>ttwu_do_wakeup (436 samples, 0.03%)</title><rect x="72.1404%" y="469" width="0.0337%" height="15" fill="rgb(207,17,47)" fg:x="932668" fg:w="436"/><text x="72.3904%" y="479.50"></text></g><g><title>check_preempt_curr (403 samples, 0.03%)</title><rect x="72.1429%" y="453" width="0.0312%" height="15" fill="rgb(206,201,28)" fg:x="932701" fg:w="403"/><text x="72.3929%" y="463.50"></text></g><g><title>ttwu_queue_wakelist (239 samples, 0.02%)</title><rect x="72.1741%" y="469" width="0.0185%" height="15" fill="rgb(224,184,23)" fg:x="933104" fg:w="239"/><text x="72.4241%" y="479.50"></text></g><g><title>__wake_up_common (10,879 samples, 0.84%)</title><rect x="71.3784%" y="517" width="0.8415%" height="15" fill="rgb(208,139,48)" fg:x="922817" fg:w="10879"/><text x="71.6284%" y="527.50"></text></g><g><title>autoremove_wake_function (10,724 samples, 0.83%)</title><rect x="71.3904%" y="501" width="0.8295%" height="15" fill="rgb(208,130,10)" fg:x="922972" fg:w="10724"/><text x="71.6404%" y="511.50"></text></g><g><title>try_to_wake_up (10,477 samples, 0.81%)</title><rect x="71.4095%" y="485" width="0.8104%" height="15" fill="rgb(211,213,45)" fg:x="923219" fg:w="10477"/><text x="71.6595%" y="495.50"></text></g><g><title>update_rq_clock (353 samples, 0.03%)</title><rect x="72.1926%" y="469" width="0.0273%" height="15" fill="rgb(235,100,30)" fg:x="933343" fg:w="353"/><text x="72.4426%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (562 samples, 0.04%)</title><rect x="72.2199%" y="517" width="0.0435%" height="15" fill="rgb(206,144,31)" fg:x="933696" fg:w="562"/><text x="72.4699%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (494 samples, 0.04%)</title><rect x="72.2251%" y="501" width="0.0382%" height="15" fill="rgb(224,200,26)" fg:x="933764" fg:w="494"/><text x="72.4751%" y="511.50"></text></g><g><title>__wake_up_common_lock (11,555 samples, 0.89%)</title><rect x="71.3750%" y="533" width="0.8938%" height="15" fill="rgb(247,104,53)" fg:x="922773" fg:w="11555"/><text x="71.6250%" y="543.50"></text></g><g><title>btrfs_search_slot (57,649 samples, 4.46%)</title><rect x="67.8342%" y="565" width="4.4591%" height="15" fill="rgb(220,14,17)" fg:x="876996" fg:w="57649"/><text x="68.0842%" y="575.50">btrfs..</text></g><g><title>unlock_up (12,571 samples, 0.97%)</title><rect x="71.3209%" y="549" width="0.9723%" height="15" fill="rgb(230,140,40)" fg:x="922074" fg:w="12571"/><text x="71.5709%" y="559.50"></text></g><g><title>btrfs_tree_unlock (316 samples, 0.02%)</title><rect x="72.2688%" y="533" width="0.0244%" height="15" fill="rgb(229,2,41)" fg:x="934329" fg:w="316"/><text x="72.5188%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (60,128 samples, 4.65%)</title><rect x="67.6793%" y="581" width="4.6508%" height="15" fill="rgb(232,89,16)" fg:x="874993" fg:w="60128"/><text x="67.9293%" y="591.50">btrfs..</text></g><g><title>crc32c (476 samples, 0.04%)</title><rect x="72.2933%" y="565" width="0.0368%" height="15" fill="rgb(247,59,52)" fg:x="934645" fg:w="476"/><text x="72.5433%" y="575.50"></text></g><g><title>crypto_shash_update (305 samples, 0.02%)</title><rect x="72.3065%" y="549" width="0.0236%" height="15" fill="rgb(226,110,21)" fg:x="934816" fg:w="305"/><text x="72.5565%" y="559.50"></text></g><g><title>_raw_spin_lock (186 samples, 0.01%)</title><rect x="72.4055%" y="501" width="0.0144%" height="15" fill="rgb(224,176,43)" fg:x="936096" fg:w="186"/><text x="72.6555%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (155 samples, 0.01%)</title><rect x="72.4079%" y="485" width="0.0120%" height="15" fill="rgb(221,73,6)" fg:x="936127" fg:w="155"/><text x="72.6579%" y="495.50"></text></g><g><title>select_task_rq_fair (468 samples, 0.04%)</title><rect x="72.4292%" y="501" width="0.0362%" height="15" fill="rgb(232,78,19)" fg:x="936402" fg:w="468"/><text x="72.6792%" y="511.50"></text></g><g><title>enqueue_entity (463 samples, 0.04%)</title><rect x="72.4788%" y="469" width="0.0358%" height="15" fill="rgb(233,112,48)" fg:x="937044" fg:w="463"/><text x="72.7288%" y="479.50"></text></g><g><title>update_load_avg (159 samples, 0.01%)</title><rect x="72.5023%" y="453" width="0.0123%" height="15" fill="rgb(243,131,47)" fg:x="937348" fg:w="159"/><text x="72.7523%" y="463.50"></text></g><g><title>enqueue_task_fair (570 samples, 0.04%)</title><rect x="72.4721%" y="485" width="0.0441%" height="15" fill="rgb(226,51,1)" fg:x="936957" fg:w="570"/><text x="72.7221%" y="495.50"></text></g><g><title>ttwu_do_activate (1,239 samples, 0.10%)</title><rect x="72.4692%" y="501" width="0.0958%" height="15" fill="rgb(247,58,7)" fg:x="936920" fg:w="1239"/><text x="72.7192%" y="511.50"></text></g><g><title>psi_task_change (632 samples, 0.05%)</title><rect x="72.5162%" y="485" width="0.0489%" height="15" fill="rgb(209,7,32)" fg:x="937527" fg:w="632"/><text x="72.7662%" y="495.50"></text></g><g><title>psi_group_change (557 samples, 0.04%)</title><rect x="72.5220%" y="469" width="0.0431%" height="15" fill="rgb(209,39,41)" fg:x="937602" fg:w="557"/><text x="72.7720%" y="479.50"></text></g><g><title>ttwu_do_wakeup (137 samples, 0.01%)</title><rect x="72.5651%" y="501" width="0.0106%" height="15" fill="rgb(226,182,46)" fg:x="938159" fg:w="137"/><text x="72.8151%" y="511.50"></text></g><g><title>__wake_up_common (3,275 samples, 0.25%)</title><rect x="72.3413%" y="549" width="0.2533%" height="15" fill="rgb(230,219,10)" fg:x="935266" fg:w="3275"/><text x="72.5913%" y="559.50"></text></g><g><title>autoremove_wake_function (3,211 samples, 0.25%)</title><rect x="72.3463%" y="533" width="0.2484%" height="15" fill="rgb(227,175,30)" fg:x="935330" fg:w="3211"/><text x="72.5963%" y="543.50"></text></g><g><title>try_to_wake_up (3,146 samples, 0.24%)</title><rect x="72.3513%" y="517" width="0.2433%" height="15" fill="rgb(217,2,50)" fg:x="935395" fg:w="3146"/><text x="72.6013%" y="527.50"></text></g><g><title>update_rq_clock (142 samples, 0.01%)</title><rect x="72.5836%" y="501" width="0.0110%" height="15" fill="rgb(229,160,0)" fg:x="938399" fg:w="142"/><text x="72.8336%" y="511.50"></text></g><g><title>__wake_up_common_lock (3,371 samples, 0.26%)</title><rect x="72.3398%" y="565" width="0.2607%" height="15" fill="rgb(207,78,37)" fg:x="935247" fg:w="3371"/><text x="72.5898%" y="575.50"></text></g><g><title>btrfs_tree_unlock (249 samples, 0.02%)</title><rect x="72.6006%" y="565" width="0.0193%" height="15" fill="rgb(225,57,0)" fg:x="938618" fg:w="249"/><text x="72.8506%" y="575.50"></text></g><g><title>_raw_spin_lock (321 samples, 0.02%)</title><rect x="72.6672%" y="549" width="0.0248%" height="15" fill="rgb(232,154,2)" fg:x="939479" fg:w="321"/><text x="72.9172%" y="559.50"></text></g><g><title>free_extent_buffer.part.0 (923 samples, 0.07%)</title><rect x="72.6211%" y="565" width="0.0714%" height="15" fill="rgb(241,212,25)" fg:x="938883" fg:w="923"/><text x="72.8711%" y="575.50"></text></g><g><title>btrfs_release_path (5,017 samples, 0.39%)</title><rect x="72.3301%" y="581" width="0.3881%" height="15" fill="rgb(226,69,20)" fg:x="935121" fg:w="5017"/><text x="72.5801%" y="591.50"></text></g><g><title>release_extent_buffer (332 samples, 0.03%)</title><rect x="72.6925%" y="565" width="0.0257%" height="15" fill="rgb(247,184,54)" fg:x="939806" fg:w="332"/><text x="72.9425%" y="575.50"></text></g><g><title>__list_add_valid (165 samples, 0.01%)</title><rect x="72.7761%" y="533" width="0.0128%" height="15" fill="rgb(210,145,0)" fg:x="940887" fg:w="165"/><text x="73.0261%" y="543.50"></text></g><g><title>__list_del_entry_valid (132 samples, 0.01%)</title><rect x="72.7888%" y="533" width="0.0102%" height="15" fill="rgb(253,82,12)" fg:x="941052" fg:w="132"/><text x="73.0388%" y="543.50"></text></g><g><title>_raw_spin_lock (257 samples, 0.02%)</title><rect x="72.7994%" y="533" width="0.0199%" height="15" fill="rgb(245,42,11)" fg:x="941188" fg:w="257"/><text x="73.0494%" y="543.50"></text></g><g><title>mutex_lock (285 samples, 0.02%)</title><rect x="72.8193%" y="533" width="0.0220%" height="15" fill="rgb(219,147,32)" fg:x="941446" fg:w="285"/><text x="73.0693%" y="543.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,558 samples, 0.12%)</title><rect x="72.7513%" y="549" width="0.1205%" height="15" fill="rgb(246,12,7)" fg:x="940567" fg:w="1558"/><text x="73.0013%" y="559.50"></text></g><g><title>mutex_unlock (394 samples, 0.03%)</title><rect x="72.8414%" y="533" width="0.0305%" height="15" fill="rgb(243,50,9)" fg:x="941731" fg:w="394"/><text x="73.0914%" y="543.50"></text></g><g><title>mutex_spin_on_owner (304 samples, 0.02%)</title><rect x="72.8728%" y="533" width="0.0235%" height="15" fill="rgb(219,149,6)" fg:x="942137" fg:w="304"/><text x="73.1228%" y="543.50"></text></g><g><title>__mutex_lock.constprop.0 (378 samples, 0.03%)</title><rect x="72.8718%" y="549" width="0.0292%" height="15" fill="rgb(241,51,42)" fg:x="942125" fg:w="378"/><text x="73.1218%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (340 samples, 0.03%)</title><rect x="72.9036%" y="549" width="0.0263%" height="15" fill="rgb(226,128,27)" fg:x="942536" fg:w="340"/><text x="73.1536%" y="559.50"></text></g><g><title>btrfs_get_delayed_node (316 samples, 0.02%)</title><rect x="72.9055%" y="533" width="0.0244%" height="15" fill="rgb(244,144,4)" fg:x="942560" fg:w="316"/><text x="73.1555%" y="543.50"></text></g><g><title>inode_get_bytes (201 samples, 0.02%)</title><rect x="72.9387%" y="533" width="0.0155%" height="15" fill="rgb(221,4,13)" fg:x="942990" fg:w="201"/><text x="73.1887%" y="543.50"></text></g><g><title>_raw_spin_lock (137 samples, 0.01%)</title><rect x="72.9437%" y="517" width="0.0106%" height="15" fill="rgb(208,170,28)" fg:x="943054" fg:w="137"/><text x="73.1937%" y="527.50"></text></g><g><title>fill_stack_inode_item (459 samples, 0.04%)</title><rect x="72.9299%" y="549" width="0.0355%" height="15" fill="rgb(226,131,13)" fg:x="942876" fg:w="459"/><text x="73.1799%" y="559.50"></text></g><g><title>map_id_up (144 samples, 0.01%)</title><rect x="72.9543%" y="533" width="0.0111%" height="15" fill="rgb(215,72,41)" fg:x="943191" fg:w="144"/><text x="73.2043%" y="543.50"></text></g><g><title>mutex_lock (183 samples, 0.01%)</title><rect x="72.9654%" y="549" width="0.0142%" height="15" fill="rgb(243,108,20)" fg:x="943335" fg:w="183"/><text x="73.2154%" y="559.50"></text></g><g><title>btrfs_delayed_update_inode (3,234 samples, 0.25%)</title><rect x="72.7445%" y="565" width="0.2501%" height="15" fill="rgb(230,189,17)" fg:x="940479" fg:w="3234"/><text x="72.9945%" y="575.50"></text></g><g><title>mutex_unlock (195 samples, 0.02%)</title><rect x="72.9796%" y="549" width="0.0151%" height="15" fill="rgb(220,50,17)" fg:x="943518" fg:w="195"/><text x="73.2296%" y="559.50"></text></g><g><title>_raw_spin_lock (417 samples, 0.03%)</title><rect x="73.0005%" y="549" width="0.0323%" height="15" fill="rgb(248,152,48)" fg:x="943789" fg:w="417"/><text x="73.2505%" y="559.50"></text></g><g><title>btrfs_update_inode (4,384 samples, 0.34%)</title><rect x="72.7181%" y="581" width="0.3391%" height="15" fill="rgb(244,91,11)" fg:x="940138" fg:w="4384"/><text x="72.9681%" y="591.50"></text></g><g><title>btrfs_update_root_times (809 samples, 0.06%)</title><rect x="72.9947%" y="565" width="0.0626%" height="15" fill="rgb(220,157,5)" fg:x="943713" fg:w="809"/><text x="73.2447%" y="575.50"></text></g><g><title>ktime_get_real_ts64 (316 samples, 0.02%)</title><rect x="73.0328%" y="549" width="0.0244%" height="15" fill="rgb(253,137,8)" fg:x="944206" fg:w="316"/><text x="73.2828%" y="559.50"></text></g><g><title>kmem_cache_alloc (530 samples, 0.04%)</title><rect x="73.0655%" y="581" width="0.0410%" height="15" fill="rgb(217,137,51)" fg:x="944629" fg:w="530"/><text x="73.3155%" y="591.50"></text></g><g><title>__btrfs_unlink_inode (273,219 samples, 21.13%)</title><rect x="52.0070%" y="597" width="21.1330%" height="15" fill="rgb(218,209,53)" fg:x="672374" fg:w="273219"/><text x="52.2570%" y="607.50">__btrfs_unlink_inode</text></g><g><title>kmem_cache_free (434 samples, 0.03%)</title><rect x="73.1065%" y="581" width="0.0336%" height="15" fill="rgb(249,137,25)" fg:x="945159" fg:w="434"/><text x="73.3565%" y="591.50"></text></g><g><title>__radix_tree_lookup (232 samples, 0.02%)</title><rect x="73.1692%" y="581" width="0.0179%" height="15" fill="rgb(239,155,26)" fg:x="945970" fg:w="232"/><text x="73.4192%" y="591.50"></text></g><g><title>balance_dirty_pages_ratelimited (618 samples, 0.05%)</title><rect x="73.1402%" y="597" width="0.0478%" height="15" fill="rgb(227,85,46)" fg:x="945594" fg:w="618"/><text x="73.3902%" y="607.50"></text></g><g><title>__percpu_counter_compare (157 samples, 0.01%)</title><rect x="73.1999%" y="581" width="0.0121%" height="15" fill="rgb(251,107,43)" fg:x="946367" fg:w="157"/><text x="73.4499%" y="591.50"></text></g><g><title>btrfs_balance_delayed_items (385 samples, 0.03%)</title><rect x="73.2122%" y="581" width="0.0298%" height="15" fill="rgb(234,170,33)" fg:x="946525" fg:w="385"/><text x="73.4622%" y="591.50"></text></g><g><title>_raw_spin_lock (386 samples, 0.03%)</title><rect x="73.2663%" y="549" width="0.0299%" height="15" fill="rgb(206,29,35)" fg:x="947225" fg:w="386"/><text x="73.5163%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (297 samples, 0.02%)</title><rect x="73.2732%" y="533" width="0.0230%" height="15" fill="rgb(227,138,25)" fg:x="947314" fg:w="297"/><text x="73.5232%" y="543.50"></text></g><g><title>insert_work (133 samples, 0.01%)</title><rect x="73.2962%" y="549" width="0.0103%" height="15" fill="rgb(249,131,35)" fg:x="947611" fg:w="133"/><text x="73.5462%" y="559.50"></text></g><g><title>select_task_rq_fair (452 samples, 0.03%)</title><rect x="73.3400%" y="533" width="0.0350%" height="15" fill="rgb(239,6,40)" fg:x="948178" fg:w="452"/><text x="73.5900%" y="543.50"></text></g><g><title>enqueue_task_fair (310 samples, 0.02%)</title><rect x="73.3791%" y="517" width="0.0240%" height="15" fill="rgb(246,136,47)" fg:x="948683" fg:w="310"/><text x="73.6291%" y="527.50"></text></g><g><title>enqueue_entity (246 samples, 0.02%)</title><rect x="73.3840%" y="501" width="0.0190%" height="15" fill="rgb(253,58,26)" fg:x="948747" fg:w="246"/><text x="73.6340%" y="511.50"></text></g><g><title>ttwu_do_activate (497 samples, 0.04%)</title><rect x="73.3771%" y="533" width="0.0384%" height="15" fill="rgb(237,141,10)" fg:x="948657" fg:w="497"/><text x="73.6271%" y="543.50"></text></g><g><title>psi_task_change (159 samples, 0.01%)</title><rect x="73.4032%" y="517" width="0.0123%" height="15" fill="rgb(234,156,12)" fg:x="948995" fg:w="159"/><text x="73.6532%" y="527.50"></text></g><g><title>check_preempt_wakeup (149 samples, 0.01%)</title><rect x="73.4181%" y="501" width="0.0115%" height="15" fill="rgb(243,224,36)" fg:x="949188" fg:w="149"/><text x="73.6681%" y="511.50"></text></g><g><title>ttwu_do_wakeup (196 samples, 0.02%)</title><rect x="73.4155%" y="533" width="0.0152%" height="15" fill="rgb(205,229,51)" fg:x="949154" fg:w="196"/><text x="73.6655%" y="543.50"></text></g><g><title>check_preempt_curr (189 samples, 0.01%)</title><rect x="73.4161%" y="517" width="0.0146%" height="15" fill="rgb(223,189,4)" fg:x="949161" fg:w="189"/><text x="73.6661%" y="527.50"></text></g><g><title>try_to_wake_up (1,690 samples, 0.13%)</title><rect x="73.3065%" y="549" width="0.1307%" height="15" fill="rgb(249,167,54)" fg:x="947744" fg:w="1690"/><text x="73.5565%" y="559.50"></text></g><g><title>__queue_work (2,359 samples, 0.18%)</title><rect x="73.2548%" y="565" width="0.1825%" height="15" fill="rgb(218,34,28)" fg:x="947076" fg:w="2359"/><text x="73.5048%" y="575.50"></text></g><g><title>btrfs_btree_balance_dirty (3,249 samples, 0.25%)</title><rect x="73.1880%" y="597" width="0.2513%" height="15" fill="rgb(232,109,42)" fg:x="946212" fg:w="3249"/><text x="73.4380%" y="607.50"></text></g><g><title>queue_work_on (2,431 samples, 0.19%)</title><rect x="73.2512%" y="581" width="0.1880%" height="15" fill="rgb(248,214,46)" fg:x="947030" fg:w="2431"/><text x="73.5012%" y="591.50"></text></g><g><title>mutex_lock (747 samples, 0.06%)</title><rect x="73.4458%" y="581" width="0.0578%" height="15" fill="rgb(244,216,40)" fg:x="949546" fg:w="747"/><text x="73.6958%" y="591.50"></text></g><g><title>btrfs_record_unlink_dir (978 samples, 0.08%)</title><rect x="73.4400%" y="597" width="0.0756%" height="15" fill="rgb(231,226,31)" fg:x="949471" fg:w="978"/><text x="73.6900%" y="607.50"></text></g><g><title>mutex_unlock (156 samples, 0.01%)</title><rect x="73.5036%" y="581" width="0.0121%" height="15" fill="rgb(238,38,43)" fg:x="950293" fg:w="156"/><text x="73.7536%" y="591.50"></text></g><g><title>_raw_spin_lock (184 samples, 0.01%)</title><rect x="73.6228%" y="549" width="0.0142%" height="15" fill="rgb(208,88,43)" fg:x="951834" fg:w="184"/><text x="73.8728%" y="559.50"></text></g><g><title>mutex_lock (133 samples, 0.01%)</title><rect x="73.6374%" y="549" width="0.0103%" height="15" fill="rgb(205,136,37)" fg:x="952023" fg:w="133"/><text x="73.8874%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,141 samples, 0.09%)</title><rect x="73.5682%" y="565" width="0.0883%" height="15" fill="rgb(237,34,14)" fg:x="951128" fg:w="1141"/><text x="73.8182%" y="575.50"></text></g><g><title>btrfs_block_rsv_migrate (615 samples, 0.05%)</title><rect x="73.6571%" y="565" width="0.0476%" height="15" fill="rgb(236,193,44)" fg:x="952277" fg:w="615"/><text x="73.9071%" y="575.50"></text></g><g><title>_raw_spin_lock (545 samples, 0.04%)</title><rect x="73.6625%" y="549" width="0.0422%" height="15" fill="rgb(231,48,10)" fg:x="952347" fg:w="545"/><text x="73.9125%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,040 samples, 0.08%)</title><rect x="73.7046%" y="565" width="0.0804%" height="15" fill="rgb(213,141,34)" fg:x="952892" fg:w="1040"/><text x="73.9546%" y="575.50"></text></g><g><title>btrfs_get_delayed_node (1,008 samples, 0.08%)</title><rect x="73.7071%" y="549" width="0.0780%" height="15" fill="rgb(249,130,34)" fg:x="952924" fg:w="1008"/><text x="73.9571%" y="559.50"></text></g><g><title>inode_get_bytes (189 samples, 0.01%)</title><rect x="73.7967%" y="549" width="0.0146%" height="15" fill="rgb(219,42,41)" fg:x="954082" fg:w="189"/><text x="74.0467%" y="559.50"></text></g><g><title>_raw_spin_lock (170 samples, 0.01%)</title><rect x="73.7982%" y="533" width="0.0131%" height="15" fill="rgb(224,100,54)" fg:x="954101" fg:w="170"/><text x="74.0482%" y="543.50"></text></g><g><title>fill_stack_inode_item (418 samples, 0.03%)</title><rect x="73.7851%" y="565" width="0.0323%" height="15" fill="rgb(229,200,27)" fg:x="953932" fg:w="418"/><text x="74.0351%" y="575.50"></text></g><g><title>mutex_lock (420 samples, 0.03%)</title><rect x="73.8174%" y="565" width="0.0325%" height="15" fill="rgb(217,118,10)" fg:x="954350" fg:w="420"/><text x="74.0674%" y="575.50"></text></g><g><title>btrfs_delayed_update_inode (4,180 samples, 0.32%)</title><rect x="73.5352%" y="581" width="0.3233%" height="15" fill="rgb(206,22,3)" fg:x="950701" fg:w="4180"/><text x="73.7852%" y="591.50"></text></g><g><title>_raw_spin_lock (174 samples, 0.01%)</title><rect x="73.8616%" y="565" width="0.0135%" height="15" fill="rgb(232,163,46)" fg:x="954921" fg:w="174"/><text x="74.1116%" y="575.50"></text></g><g><title>btrfs_update_inode (4,829 samples, 0.37%)</title><rect x="73.5166%" y="597" width="0.3735%" height="15" fill="rgb(206,95,13)" fg:x="950461" fg:w="4829"/><text x="73.7666%" y="607.50"></text></g><g><title>btrfs_update_root_times (409 samples, 0.03%)</title><rect x="73.8585%" y="581" width="0.0316%" height="15" fill="rgb(253,154,18)" fg:x="954881" fg:w="409"/><text x="74.1085%" y="591.50"></text></g><g><title>ktime_get_real_ts64 (195 samples, 0.02%)</title><rect x="73.8750%" y="565" width="0.0151%" height="15" fill="rgb(219,32,23)" fg:x="955095" fg:w="195"/><text x="74.1250%" y="575.50"></text></g><g><title>_raw_spin_lock (351 samples, 0.03%)</title><rect x="73.9624%" y="565" width="0.0271%" height="15" fill="rgb(230,191,45)" fg:x="956225" fg:w="351"/><text x="74.2124%" y="575.50"></text></g><g><title>_raw_spin_lock (580 samples, 0.04%)</title><rect x="74.0398%" y="533" width="0.0449%" height="15" fill="rgb(229,64,36)" fg:x="957225" fg:w="580"/><text x="74.2898%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (154 samples, 0.01%)</title><rect x="74.0727%" y="517" width="0.0119%" height="15" fill="rgb(205,129,25)" fg:x="957651" fg:w="154"/><text x="74.3227%" y="527.50"></text></g><g><title>_raw_spin_lock (205 samples, 0.02%)</title><rect x="74.1708%" y="501" width="0.0159%" height="15" fill="rgb(254,112,7)" fg:x="958919" fg:w="205"/><text x="74.4208%" y="511.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,318 samples, 0.10%)</title><rect x="74.0849%" y="533" width="0.1019%" height="15" fill="rgb(226,53,48)" fg:x="957808" fg:w="1318"/><text x="74.3349%" y="543.50"></text></g><g><title>btrfs_reduce_alloc_profile (595 samples, 0.05%)</title><rect x="74.1408%" y="517" width="0.0460%" height="15" fill="rgb(214,153,38)" fg:x="958531" fg:w="595"/><text x="74.3908%" y="527.50"></text></g><g><title>btrfs_get_alloc_profile (170 samples, 0.01%)</title><rect x="74.2064%" y="517" width="0.0131%" height="15" fill="rgb(243,101,7)" fg:x="959379" fg:w="170"/><text x="74.4564%" y="527.50"></text></g><g><title>_raw_spin_lock (240 samples, 0.02%)</title><rect x="74.2347%" y="501" width="0.0186%" height="15" fill="rgb(240,140,22)" fg:x="959745" fg:w="240"/><text x="74.4847%" y="511.50"></text></g><g><title>calc_available_free_space.isra.0 (860 samples, 0.07%)</title><rect x="74.1868%" y="533" width="0.0665%" height="15" fill="rgb(235,114,2)" fg:x="959126" fg:w="860"/><text x="74.4368%" y="543.50"></text></g><g><title>btrfs_reduce_alloc_profile (437 samples, 0.03%)</title><rect x="74.2196%" y="517" width="0.0338%" height="15" fill="rgb(242,59,12)" fg:x="959549" fg:w="437"/><text x="74.4696%" y="527.50"></text></g><g><title>__reserve_bytes (3,106 samples, 0.24%)</title><rect x="74.0132%" y="549" width="0.2402%" height="15" fill="rgb(252,134,9)" fg:x="956881" fg:w="3106"/><text x="74.2632%" y="559.50"></text></g><g><title>btrfs_block_rsv_add (3,843 samples, 0.30%)</title><rect x="73.9563%" y="581" width="0.2972%" height="15" fill="rgb(236,4,44)" fg:x="956145" fg:w="3843"/><text x="74.2063%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (3,412 samples, 0.26%)</title><rect x="73.9896%" y="565" width="0.2639%" height="15" fill="rgb(254,172,41)" fg:x="956576" fg:w="3412"/><text x="74.2396%" y="575.50"></text></g><g><title>join_transaction (643 samples, 0.05%)</title><rect x="74.2582%" y="581" width="0.0497%" height="15" fill="rgb(244,63,20)" fg:x="960049" fg:w="643"/><text x="74.5082%" y="591.50"></text></g><g><title>_raw_spin_lock (259 samples, 0.02%)</title><rect x="74.2879%" y="565" width="0.0200%" height="15" fill="rgb(250,73,31)" fg:x="960433" fg:w="259"/><text x="74.5379%" y="575.50"></text></g><g><title>kmem_cache_alloc (535 samples, 0.04%)</title><rect x="74.3080%" y="581" width="0.0414%" height="15" fill="rgb(241,38,36)" fg:x="960692" fg:w="535"/><text x="74.5580%" y="591.50"></text></g><g><title>_raw_spin_lock (441 samples, 0.03%)</title><rect x="74.3653%" y="565" width="0.0341%" height="15" fill="rgb(245,211,2)" fg:x="961433" fg:w="441"/><text x="74.6153%" y="575.50"></text></g><g><title>btrfs_unlink (292,968 samples, 22.66%)</title><rect x="51.7389%" y="613" width="22.6606%" height="15" fill="rgb(206,120,28)" fg:x="668908" fg:w="292968"/><text x="51.9889%" y="623.50">btrfs_unlink</text></g><g><title>start_transaction (6,486 samples, 0.50%)</title><rect x="73.8979%" y="597" width="0.5017%" height="15" fill="rgb(211,59,34)" fg:x="955390" fg:w="6486"/><text x="74.1479%" y="607.50"></text></g><g><title>wait_current_trans (649 samples, 0.05%)</title><rect x="74.3493%" y="581" width="0.0502%" height="15" fill="rgb(233,168,5)" fg:x="961227" fg:w="649"/><text x="74.5993%" y="591.50"></text></g><g><title>d_delete (325 samples, 0.03%)</title><rect x="74.3995%" y="613" width="0.0251%" height="15" fill="rgb(234,33,13)" fg:x="961876" fg:w="325"/><text x="74.6495%" y="623.50"></text></g><g><title>_raw_spin_lock (203 samples, 0.02%)</title><rect x="74.4090%" y="597" width="0.0157%" height="15" fill="rgb(231,150,26)" fg:x="961998" fg:w="203"/><text x="74.6590%" y="607.50"></text></g><g><title>dentry_unlink_inode (309 samples, 0.02%)</title><rect x="74.4247%" y="613" width="0.0239%" height="15" fill="rgb(217,191,4)" fg:x="962201" fg:w="309"/><text x="74.6747%" y="623.50"></text></g><g><title>down_write (881 samples, 0.07%)</title><rect x="74.4486%" y="613" width="0.0681%" height="15" fill="rgb(246,198,38)" fg:x="962510" fg:w="881"/><text x="74.6986%" y="623.50"></text></g><g><title>fsnotify (623 samples, 0.05%)</title><rect x="74.5167%" y="613" width="0.0482%" height="15" fill="rgb(245,64,37)" fg:x="963391" fg:w="623"/><text x="74.7667%" y="623.50"></text></g><g><title>ihold (173 samples, 0.01%)</title><rect x="74.5649%" y="613" width="0.0134%" height="15" fill="rgb(250,30,36)" fg:x="964014" fg:w="173"/><text x="74.8149%" y="623.50"></text></g><g><title>iput.part.0 (495 samples, 0.04%)</title><rect x="74.5812%" y="613" width="0.0383%" height="15" fill="rgb(217,86,53)" fg:x="964224" fg:w="495"/><text x="74.8312%" y="623.50"></text></g><g><title>_atomic_dec_and_lock (434 samples, 0.03%)</title><rect x="74.5859%" y="597" width="0.0336%" height="15" fill="rgb(228,157,16)" fg:x="964285" fg:w="434"/><text x="74.8359%" y="607.50"></text></g><g><title>btrfs_permission (156 samples, 0.01%)</title><rect x="74.6396%" y="581" width="0.0121%" height="15" fill="rgb(217,59,31)" fg:x="964980" fg:w="156"/><text x="74.8896%" y="591.50"></text></g><g><title>inode_permission.part.0 (303 samples, 0.02%)</title><rect x="74.6309%" y="597" width="0.0234%" height="15" fill="rgb(237,138,41)" fg:x="964867" fg:w="303"/><text x="74.8809%" y="607.50"></text></g><g><title>may_delete (465 samples, 0.04%)</title><rect x="74.6195%" y="613" width="0.0360%" height="15" fill="rgb(227,91,49)" fg:x="964720" fg:w="465"/><text x="74.8695%" y="623.50"></text></g><g><title>do_unlinkat (309,717 samples, 23.96%)</title><rect x="50.7242%" y="645" width="23.9561%" height="15" fill="rgb(247,21,44)" fg:x="655789" fg:w="309717"/><text x="50.9742%" y="655.50">do_unlinkat</text></g><g><title>vfs_unlink (297,076 samples, 22.98%)</title><rect x="51.7020%" y="629" width="22.9783%" height="15" fill="rgb(219,210,51)" fg:x="668430" fg:w="297076"/><text x="51.9520%" y="639.50">vfs_unlink</text></g><g><title>up_write (209 samples, 0.02%)</title><rect x="74.6642%" y="613" width="0.0162%" height="15" fill="rgb(209,140,6)" fg:x="965297" fg:w="209"/><text x="74.9142%" y="623.50"></text></g><g><title>do_syscall_64 (374,373 samples, 28.96%)</title><rect x="45.7309%" y="661" width="28.9571%" height="15" fill="rgb(221,188,24)" fg:x="591233" fg:w="374373"/><text x="45.9809%" y="671.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (375,490 samples, 29.04%)</title><rect x="45.7095%" y="677" width="29.0435%" height="15" fill="rgb(232,154,20)" fg:x="590956" fg:w="375490"/><text x="45.9595%" y="687.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (840 samples, 0.06%)</title><rect x="74.6881%" y="661" width="0.0650%" height="15" fill="rgb(244,137,50)" fg:x="965606" fg:w="840"/><text x="74.9381%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (763 samples, 0.06%)</title><rect x="74.6940%" y="645" width="0.0590%" height="15" fill="rgb(225,185,43)" fg:x="965683" fg:w="763"/><text x="74.9440%" y="655.50"></text></g><g><title>switch_fpu_return (484 samples, 0.04%)</title><rect x="74.7156%" y="629" width="0.0374%" height="15" fill="rgb(213,205,38)" fg:x="965962" fg:w="484"/><text x="74.9656%" y="639.50"></text></g><g><title>copy_kernel_to_fpregs (168 samples, 0.01%)</title><rect x="74.7400%" y="613" width="0.0130%" height="15" fill="rgb(236,73,12)" fg:x="966278" fg:w="168"/><text x="74.9900%" y="623.50"></text></g><g><title>syscall_return_via_sysret (265 samples, 0.02%)</title><rect x="74.7560%" y="677" width="0.0205%" height="15" fill="rgb(235,219,13)" fg:x="966484" fg:w="265"/><text x="75.0060%" y="687.50"></text></g><g><title>__GI_unlinkat (377,055 samples, 29.16%)</title><rect x="45.6119%" y="693" width="29.1646%" height="15" fill="rgb(218,59,36)" fg:x="589695" fg:w="377055"/><text x="45.8619%" y="703.50">__GI_unlinkat</text></g><g><title>_int_free (223 samples, 0.02%)</title><rect x="74.7844%" y="677" width="0.0172%" height="15" fill="rgb(205,110,39)" fg:x="966851" fg:w="223"/><text x="75.0344%" y="687.50"></text></g><g><title>__closedir (306 samples, 0.02%)</title><rect x="74.7780%" y="693" width="0.0237%" height="15" fill="rgb(218,206,42)" fg:x="966769" fg:w="306"/><text x="75.0280%" y="703.50"></text></g><g><title>__dirfd (169 samples, 0.01%)</title><rect x="74.8018%" y="693" width="0.0131%" height="15" fill="rgb(248,125,24)" fg:x="967076" fg:w="169"/><text x="75.0518%" y="703.50"></text></g><g><title>__errno_location (162 samples, 0.01%)</title><rect x="74.8148%" y="693" width="0.0125%" height="15" fill="rgb(242,28,27)" fg:x="967245" fg:w="162"/><text x="75.0648%" y="703.50"></text></g><g><title>__x64_sys_fcntl (135 samples, 0.01%)</title><rect x="74.8322%" y="613" width="0.0104%" height="15" fill="rgb(216,228,15)" fg:x="967469" fg:w="135"/><text x="75.0822%" y="623.50"></text></g><g><title>do_syscall_64 (149 samples, 0.01%)</title><rect x="74.8311%" y="629" width="0.0115%" height="15" fill="rgb(235,116,46)" fg:x="967456" fg:w="149"/><text x="75.0811%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (162 samples, 0.01%)</title><rect x="74.8311%" y="645" width="0.0125%" height="15" fill="rgb(224,18,32)" fg:x="967455" fg:w="162"/><text x="75.0811%" y="655.50"></text></g><g><title>__GI___fcntl64_nocancel (217 samples, 0.02%)</title><rect x="74.8277%" y="677" width="0.0168%" height="15" fill="rgb(252,5,12)" fg:x="967411" fg:w="217"/><text x="75.0777%" y="687.50"></text></g><g><title>__fcntl64_nocancel_adjusted (207 samples, 0.02%)</title><rect x="74.8284%" y="661" width="0.0160%" height="15" fill="rgb(251,36,5)" fg:x="967421" fg:w="207"/><text x="75.0784%" y="671.50"></text></g><g><title>btrfs_getattr (169 samples, 0.01%)</title><rect x="74.8615%" y="597" width="0.0131%" height="15" fill="rgb(217,53,14)" fg:x="967849" fg:w="169"/><text x="75.1115%" y="607.50"></text></g><g><title>__do_sys_newfstat (456 samples, 0.04%)</title><rect x="74.8501%" y="629" width="0.0353%" height="15" fill="rgb(215,86,45)" fg:x="967701" fg:w="456"/><text x="75.1001%" y="639.50"></text></g><g><title>vfs_fstat (350 samples, 0.03%)</title><rect x="74.8583%" y="613" width="0.0271%" height="15" fill="rgb(242,169,11)" fg:x="967807" fg:w="350"/><text x="75.1083%" y="623.50"></text></g><g><title>do_syscall_64 (475 samples, 0.04%)</title><rect x="74.8492%" y="645" width="0.0367%" height="15" fill="rgb(211,213,45)" fg:x="967689" fg:w="475"/><text x="75.0992%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (493 samples, 0.04%)</title><rect x="74.8488%" y="661" width="0.0381%" height="15" fill="rgb(205,88,11)" fg:x="967684" fg:w="493"/><text x="75.0988%" y="671.50"></text></g><g><title>__GI___fxstat (556 samples, 0.04%)</title><rect x="74.8445%" y="677" width="0.0430%" height="15" fill="rgb(252,69,26)" fg:x="967628" fg:w="556"/><text x="75.0945%" y="687.50"></text></g><g><title>__GI___fcntl64_nocancel (156 samples, 0.01%)</title><rect x="74.8886%" y="661" width="0.0121%" height="15" fill="rgb(246,123,37)" fg:x="968199" fg:w="156"/><text x="75.1386%" y="671.50"></text></g><g><title>__fcntl64_nocancel_adjusted (153 samples, 0.01%)</title><rect x="74.8889%" y="645" width="0.0118%" height="15" fill="rgb(212,205,5)" fg:x="968202" fg:w="153"/><text x="75.1389%" y="655.50"></text></g><g><title>malloc_consolidate (151 samples, 0.01%)</title><rect x="74.9216%" y="629" width="0.0117%" height="15" fill="rgb(253,148,0)" fg:x="968626" fg:w="151"/><text x="75.1716%" y="639.50"></text></g><g><title>__GI___libc_malloc (437 samples, 0.03%)</title><rect x="74.9007%" y="661" width="0.0338%" height="15" fill="rgb(239,22,4)" fg:x="968355" fg:w="437"/><text x="75.1507%" y="671.50"></text></g><g><title>_int_malloc (325 samples, 0.03%)</title><rect x="74.9093%" y="645" width="0.0251%" height="15" fill="rgb(226,26,53)" fg:x="968467" fg:w="325"/><text x="75.1593%" y="655.50"></text></g><g><title>__fdopendir (1,414 samples, 0.11%)</title><rect x="74.8274%" y="693" width="0.1094%" height="15" fill="rgb(225,229,45)" fg:x="967407" fg:w="1414"/><text x="75.0774%" y="703.50"></text></g><g><title>__alloc_dir (637 samples, 0.05%)</title><rect x="74.8875%" y="677" width="0.0493%" height="15" fill="rgb(220,60,37)" fg:x="968184" fg:w="637"/><text x="75.1375%" y="687.50"></text></g><g><title>__alloc_fd (134 samples, 0.01%)</title><rect x="74.9591%" y="613" width="0.0104%" height="15" fill="rgb(217,180,35)" fg:x="969110" fg:w="134"/><text x="75.2091%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (136 samples, 0.01%)</title><rect x="74.9958%" y="533" width="0.0105%" height="15" fill="rgb(229,7,53)" fg:x="969585" fg:w="136"/><text x="75.2458%" y="543.50"></text></g><g><title>kmem_cache_alloc (472 samples, 0.04%)</title><rect x="74.9889%" y="549" width="0.0365%" height="15" fill="rgb(254,137,3)" fg:x="969495" fg:w="472"/><text x="75.2389%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (238 samples, 0.02%)</title><rect x="75.0070%" y="533" width="0.0184%" height="15" fill="rgb(215,140,41)" fg:x="969729" fg:w="238"/><text x="75.2570%" y="543.50"></text></g><g><title>__alloc_file (709 samples, 0.05%)</title><rect x="74.9844%" y="565" width="0.0548%" height="15" fill="rgb(250,80,15)" fg:x="969437" fg:w="709"/><text x="75.2344%" y="575.50"></text></g><g><title>security_file_alloc (179 samples, 0.01%)</title><rect x="75.0254%" y="549" width="0.0138%" height="15" fill="rgb(252,191,6)" fg:x="969967" fg:w="179"/><text x="75.2754%" y="559.50"></text></g><g><title>alloc_empty_file (751 samples, 0.06%)</title><rect x="74.9826%" y="581" width="0.0581%" height="15" fill="rgb(246,217,18)" fg:x="969414" fg:w="751"/><text x="75.2326%" y="591.50"></text></g><g><title>memset_erms (143 samples, 0.01%)</title><rect x="75.0709%" y="533" width="0.0111%" height="15" fill="rgb(223,93,7)" fg:x="970555" fg:w="143"/><text x="75.3209%" y="543.50"></text></g><g><title>btrfs_opendir (372 samples, 0.03%)</title><rect x="75.0565%" y="565" width="0.0288%" height="15" fill="rgb(225,55,52)" fg:x="970370" fg:w="372"/><text x="75.3065%" y="575.50"></text></g><g><title>kmem_cache_alloc_trace (341 samples, 0.03%)</title><rect x="75.0589%" y="549" width="0.0264%" height="15" fill="rgb(240,31,24)" fg:x="970401" fg:w="341"/><text x="75.3089%" y="559.50"></text></g><g><title>security_file_open (279 samples, 0.02%)</title><rect x="75.0963%" y="565" width="0.0216%" height="15" fill="rgb(205,56,52)" fg:x="970884" fg:w="279"/><text x="75.3463%" y="575.50"></text></g><g><title>do_dentry_open (916 samples, 0.07%)</title><rect x="75.0472%" y="581" width="0.0709%" height="15" fill="rgb(246,146,12)" fg:x="970249" fg:w="916"/><text x="75.2972%" y="591.50"></text></g><g><title>lookup_fast (161 samples, 0.01%)</title><rect x="75.1252%" y="581" width="0.0125%" height="15" fill="rgb(239,84,36)" fg:x="971258" fg:w="161"/><text x="75.3752%" y="591.50"></text></g><g><title>__d_lookup_rcu (142 samples, 0.01%)</title><rect x="75.1267%" y="565" width="0.0110%" height="15" fill="rgb(207,41,40)" fg:x="971277" fg:w="142"/><text x="75.3767%" y="575.50"></text></g><g><title>path_init (130 samples, 0.01%)</title><rect x="75.1473%" y="581" width="0.0101%" height="15" fill="rgb(241,179,25)" fg:x="971544" fg:w="130"/><text x="75.3973%" y="591.50"></text></g><g><title>do_filp_open (2,437 samples, 0.19%)</title><rect x="74.9732%" y="613" width="0.1885%" height="15" fill="rgb(210,0,34)" fg:x="969293" fg:w="2437"/><text x="75.2232%" y="623.50"></text></g><g><title>path_openat (2,395 samples, 0.19%)</title><rect x="74.9765%" y="597" width="0.1852%" height="15" fill="rgb(225,217,29)" fg:x="969335" fg:w="2395"/><text x="75.2265%" y="607.50"></text></g><g><title>kmem_cache_alloc (137 samples, 0.01%)</title><rect x="75.1715%" y="597" width="0.0106%" height="15" fill="rgb(216,191,38)" fg:x="971856" fg:w="137"/><text x="75.4215%" y="607.50"></text></g><g><title>getname_flags.part.0 (302 samples, 0.02%)</title><rect x="75.1706%" y="613" width="0.0234%" height="15" fill="rgb(232,140,52)" fg:x="971844" fg:w="302"/><text x="75.4206%" y="623.50"></text></g><g><title>strncpy_from_user (153 samples, 0.01%)</title><rect x="75.1821%" y="597" width="0.0118%" height="15" fill="rgb(223,158,51)" fg:x="971993" fg:w="153"/><text x="75.4321%" y="607.50"></text></g><g><title>__x64_sys_openat (3,167 samples, 0.24%)</title><rect x="74.9535%" y="645" width="0.2450%" height="15" fill="rgb(235,29,51)" fg:x="969038" fg:w="3167"/><text x="75.2035%" y="655.50"></text></g><g><title>do_sys_openat2 (3,136 samples, 0.24%)</title><rect x="74.9559%" y="629" width="0.2426%" height="15" fill="rgb(215,181,18)" fg:x="969069" fg:w="3136"/><text x="75.2059%" y="639.50"></text></g><g><title>do_syscall_64 (3,212 samples, 0.25%)</title><rect x="74.9508%" y="661" width="0.2484%" height="15" fill="rgb(227,125,34)" fg:x="969003" fg:w="3212"/><text x="75.2008%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,241 samples, 0.25%)</title><rect x="74.9503%" y="677" width="0.2507%" height="15" fill="rgb(230,197,49)" fg:x="968996" fg:w="3241"/><text x="75.2003%" y="687.50"></text></g><g><title>__libc_openat64 (3,401 samples, 0.26%)</title><rect x="74.9397%" y="693" width="0.2631%" height="15" fill="rgb(239,141,16)" fg:x="968859" fg:w="3401"/><text x="75.1897%" y="703.50"></text></g><g><title>_int_free (836 samples, 0.06%)</title><rect x="75.2081%" y="693" width="0.0647%" height="15" fill="rgb(225,105,43)" fg:x="972330" fg:w="836"/><text x="75.4581%" y="703.50"></text></g><g><title>tcache_put (143 samples, 0.01%)</title><rect x="75.2617%" y="677" width="0.0111%" height="15" fill="rgb(214,131,14)" fg:x="973023" fg:w="143"/><text x="75.5117%" y="687.50"></text></g><g><title>free@plt (493 samples, 0.04%)</title><rect x="75.2788%" y="693" width="0.0381%" height="15" fill="rgb(229,177,11)" fg:x="973244" fg:w="493"/><text x="75.5288%" y="703.50"></text></g><g><title>ThreadStateTransition::transition_from_native (156 samples, 0.01%)</title><rect x="75.3345%" y="677" width="0.0121%" height="15" fill="rgb(231,180,14)" fg:x="973963" fg:w="156"/><text x="75.5845%" y="687.50"></text></g><g><title>jni_ExceptionOccurred (387 samples, 0.03%)</title><rect x="75.3170%" y="693" width="0.0299%" height="15" fill="rgb(232,88,2)" fg:x="973737" fg:w="387"/><text x="75.5670%" y="703.50"></text></g><g><title>HandleMark::pop_and_restore (211 samples, 0.02%)</title><rect x="75.4192%" y="677" width="0.0163%" height="15" fill="rgb(205,220,8)" fg:x="975059" fg:w="211"/><text x="75.6692%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (1,215 samples, 0.09%)</title><rect x="75.4373%" y="677" width="0.0940%" height="15" fill="rgb(225,23,53)" fg:x="975292" fg:w="1215"/><text x="75.6873%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (982 samples, 0.08%)</title><rect x="75.5312%" y="677" width="0.0760%" height="15" fill="rgb(213,62,29)" fg:x="976507" fg:w="982"/><text x="75.7812%" y="687.50"></text></g><g><title>[libc-2.31.so] (1,068 samples, 0.08%)</title><rect x="75.6072%" y="677" width="0.0826%" height="15" fill="rgb(227,75,7)" fg:x="977489" fg:w="1068"/><text x="75.8572%" y="687.50"></text></g><g><title>check_bounds (841 samples, 0.07%)</title><rect x="75.6910%" y="677" width="0.0650%" height="15" fill="rgb(207,105,14)" fg:x="978573" fg:w="841"/><text x="75.9410%" y="687.50"></text></g><g><title>jni_GetByteArrayRegion (5,702 samples, 0.44%)</title><rect x="75.3471%" y="693" width="0.4410%" height="15" fill="rgb(245,62,29)" fg:x="974126" fg:w="5702"/><text x="75.5971%" y="703.50"></text></g><g><title>memmove@plt (414 samples, 0.03%)</title><rect x="75.7561%" y="677" width="0.0320%" height="15" fill="rgb(236,202,4)" fg:x="979414" fg:w="414"/><text x="76.0061%" y="687.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<802934ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 802934ul>::oop_access_barrier (1,507 samples, 0.12%)</title><rect x="75.8627%" y="677" width="0.1166%" height="15" fill="rgb(250,67,1)" fg:x="980793" fg:w="1507"/><text x="76.1127%" y="687.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (1,300 samples, 0.10%)</title><rect x="75.8788%" y="661" width="0.1006%" height="15" fill="rgb(253,115,44)" fg:x="981000" fg:w="1300"/><text x="76.1288%" y="671.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (1,150 samples, 0.09%)</title><rect x="75.8904%" y="645" width="0.0890%" height="15" fill="rgb(251,139,18)" fg:x="981150" fg:w="1150"/><text x="76.1404%" y="655.50"></text></g><g><title>HandleMark::pop_and_restore (677 samples, 0.05%)</title><rect x="75.9793%" y="677" width="0.0524%" height="15" fill="rgb(218,22,32)" fg:x="982300" fg:w="677"/><text x="76.2293%" y="687.50"></text></g><g><title>JNIHandles::make_local (655 samples, 0.05%)</title><rect x="76.0317%" y="677" width="0.0507%" height="15" fill="rgb(243,53,5)" fg:x="982977" fg:w="655"/><text x="76.2817%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (818 samples, 0.06%)</title><rect x="76.0845%" y="677" width="0.0633%" height="15" fill="rgb(227,56,16)" fg:x="983660" fg:w="818"/><text x="76.3345%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,038 samples, 0.08%)</title><rect x="76.1478%" y="677" width="0.0803%" height="15" fill="rgb(245,53,0)" fg:x="984478" fg:w="1038"/><text x="76.3978%" y="687.50"></text></g><g><title>jni_GetObjectField (5,693 samples, 0.44%)</title><rect x="75.7881%" y="693" width="0.4403%" height="15" fill="rgb(216,170,35)" fg:x="979828" fg:w="5693"/><text x="76.0381%" y="703.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<565366ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 565366ul>::oop_access_barrier (134 samples, 0.01%)</title><rect x="76.3140%" y="677" width="0.0104%" height="15" fill="rgb(211,200,8)" fg:x="986627" fg:w="134"/><text x="76.5640%" y="687.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<573558ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 573558ul>::oop_access_barrier (657 samples, 0.05%)</title><rect x="76.3244%" y="677" width="0.0508%" height="15" fill="rgb(228,204,44)" fg:x="986761" fg:w="657"/><text x="76.5744%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (744 samples, 0.06%)</title><rect x="76.3768%" y="677" width="0.0575%" height="15" fill="rgb(214,121,17)" fg:x="987439" fg:w="744"/><text x="76.6268%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,155 samples, 0.09%)</title><rect x="76.4343%" y="677" width="0.0893%" height="15" fill="rgb(233,64,38)" fg:x="988183" fg:w="1155"/><text x="76.6843%" y="687.50"></text></g><g><title>jni_GetStringLength (3,824 samples, 0.30%)</title><rect x="76.2284%" y="693" width="0.2958%" height="15" fill="rgb(253,54,19)" fg:x="985521" fg:w="3824"/><text x="76.4784%" y="703.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (491 samples, 0.04%)</title><rect x="76.8441%" y="629" width="0.0380%" height="15" fill="rgb(253,94,18)" fg:x="993480" fg:w="491"/><text x="77.0941%" y="639.50"></text></g><g><title>ThreadHeapSampler::enabled (158 samples, 0.01%)</title><rect x="76.9085%" y="613" width="0.0122%" height="15" fill="rgb(227,57,52)" fg:x="994313" fg:w="158"/><text x="77.1585%" y="623.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (504 samples, 0.04%)</title><rect x="76.8820%" y="629" width="0.0390%" height="15" fill="rgb(230,228,50)" fg:x="993971" fg:w="504"/><text x="77.1320%" y="639.50"></text></g><g><title>[libc-2.31.so] (384 samples, 0.03%)</title><rect x="76.9512%" y="613" width="0.0297%" height="15" fill="rgb(217,205,27)" fg:x="994865" fg:w="384"/><text x="77.2012%" y="623.50"></text></g><g><title>ObjAllocator::initialize (881 samples, 0.07%)</title><rect x="76.9218%" y="629" width="0.0681%" height="15" fill="rgb(252,71,50)" fg:x="994485" fg:w="881"/><text x="77.1718%" y="639.50"></text></g><g><title>__tls_get_addr (665 samples, 0.05%)</title><rect x="76.9900%" y="629" width="0.0514%" height="15" fill="rgb(209,86,4)" fg:x="995367" fg:w="665"/><text x="77.2400%" y="639.50"></text></g><g><title>__tls_get_addr@plt (268 samples, 0.02%)</title><rect x="77.0415%" y="629" width="0.0207%" height="15" fill="rgb(229,94,0)" fg:x="996032" fg:w="268"/><text x="77.2915%" y="639.50"></text></g><g><title>MemAllocator::allocate (3,519 samples, 0.27%)</title><rect x="76.7905%" y="645" width="0.2722%" height="15" fill="rgb(252,223,21)" fg:x="992788" fg:w="3519"/><text x="77.0405%" y="655.50"></text></g><g><title>CollectedHeap::obj_allocate (3,692 samples, 0.29%)</title><rect x="76.7780%" y="661" width="0.2856%" height="15" fill="rgb(230,210,4)" fg:x="992626" fg:w="3692"/><text x="77.0280%" y="671.50"></text></g><g><title>InstanceKlass::allocate_instance (4,324 samples, 0.33%)</title><rect x="76.7294%" y="677" width="0.3345%" height="15" fill="rgb(240,149,38)" fg:x="991997" fg:w="4324"/><text x="76.9794%" y="687.50"></text></g><g><title>JNIHandles::make_local (745 samples, 0.06%)</title><rect x="77.0647%" y="677" width="0.0576%" height="15" fill="rgb(254,105,20)" fg:x="996332" fg:w="745"/><text x="77.3147%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (602 samples, 0.05%)</title><rect x="77.1285%" y="677" width="0.0466%" height="15" fill="rgb(253,87,46)" fg:x="997157" fg:w="602"/><text x="77.3785%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,118 samples, 0.09%)</title><rect x="77.1750%" y="677" width="0.0865%" height="15" fill="rgb(253,116,33)" fg:x="997759" fg:w="1118"/><text x="77.4250%" y="687.50"></text></g><g><title>InstanceKlass::check_valid_for_instantiation (162 samples, 0.01%)</title><rect x="77.3724%" y="661" width="0.0125%" height="15" fill="rgb(229,198,5)" fg:x="1000311" fg:w="162"/><text x="77.6224%" y="671.50"></text></g><g><title>java_lang_Class::as_Klass (182 samples, 0.01%)</title><rect x="77.3925%" y="661" width="0.0141%" height="15" fill="rgb(242,38,37)" fg:x="1000571" fg:w="182"/><text x="77.6425%" y="671.50"></text></g><g><title>alloc_object (2,323 samples, 0.18%)</title><rect x="77.2615%" y="677" width="0.1797%" height="15" fill="rgb(242,69,53)" fg:x="998877" fg:w="2323"/><text x="77.5115%" y="687.50"></text></g><g><title>oopDesc::metadata_field (447 samples, 0.03%)</title><rect x="77.4066%" y="661" width="0.0346%" height="15" fill="rgb(249,80,16)" fg:x="1000753" fg:w="447"/><text x="77.6566%" y="671.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (2,853 samples, 0.22%)</title><rect x="77.6286%" y="661" width="0.2207%" height="15" fill="rgb(206,128,11)" fg:x="1003623" fg:w="2853"/><text x="77.8786%" y="671.50"></text></g><g><title>HandleMark::~HandleMark (162 samples, 0.01%)</title><rect x="78.0505%" y="645" width="0.0125%" height="15" fill="rgb(212,35,20)" fg:x="1009078" fg:w="162"/><text x="78.3005%" y="655.50"></text></g><g><title>JNIHandleBlock::release_block (321 samples, 0.02%)</title><rect x="78.0645%" y="645" width="0.0248%" height="15" fill="rgb(236,79,13)" fg:x="1009258" fg:w="321"/><text x="78.3145%" y="655.50"></text></g><g><title>JavaCallArguments::parameters (881 samples, 0.07%)</title><rect x="78.0893%" y="645" width="0.0681%" height="15" fill="rgb(233,123,3)" fg:x="1009579" fg:w="881"/><text x="78.3393%" y="655.50"></text></g><g><title>JNIHandleBlock::allocate_block (574 samples, 0.04%)</title><rect x="78.2750%" y="629" width="0.0444%" height="15" fill="rgb(214,93,52)" fg:x="1011980" fg:w="574"/><text x="78.5250%" y="639.50"></text></g><g><title>ThreadShadow::clear_pending_exception (359 samples, 0.03%)</title><rect x="78.3206%" y="629" width="0.0278%" height="15" fill="rgb(251,37,40)" fg:x="1012570" fg:w="359"/><text x="78.5706%" y="639.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (2,481 samples, 0.19%)</title><rect x="78.1574%" y="645" width="0.1919%" height="15" fill="rgb(227,80,54)" fg:x="1010460" fg:w="2481"/><text x="78.4074%" y="655.50"></text></g><g><title>AbstractInterpreter::size_top_interpreter_activation (185 samples, 0.01%)</title><rect x="78.4150%" y="629" width="0.0143%" height="15" fill="rgb(254,48,11)" fg:x="1013790" fg:w="185"/><text x="78.6650%" y="639.50"></text></g><g><title>JavaCalls::call_helper (7,468 samples, 0.58%)</title><rect x="77.8533%" y="661" width="0.5776%" height="15" fill="rgb(235,193,26)" fg:x="1006528" fg:w="7468"/><text x="78.1033%" y="671.50"></text></g><g><title>os::stack_shadow_pages_available (988 samples, 0.08%)</title><rect x="78.3545%" y="645" width="0.0764%" height="15" fill="rgb(229,99,21)" fg:x="1013008" fg:w="988"/><text x="78.6045%" y="655.50"></text></g><g><title>methodHandle::operator= (276 samples, 0.02%)</title><rect x="78.4359%" y="661" width="0.0213%" height="15" fill="rgb(211,140,41)" fg:x="1014060" fg:w="276"/><text x="78.6859%" y="671.50"></text></g><g><title>methodHandle::~methodHandle (648 samples, 0.05%)</title><rect x="78.4572%" y="661" width="0.0501%" height="15" fill="rgb(240,227,30)" fg:x="1014336" fg:w="648"/><text x="78.7072%" y="671.50"></text></g><g><title>__tls_get_addr (133 samples, 0.01%)</title><rect x="78.5503%" y="645" width="0.0103%" height="15" fill="rgb(215,224,45)" fg:x="1015539" fg:w="133"/><text x="78.8003%" y="655.50"></text></g><g><title>jni_invoke_nonstatic (14,482 samples, 1.12%)</title><rect x="77.4430%" y="677" width="1.1202%" height="15" fill="rgb(206,123,31)" fg:x="1001223" fg:w="14482"/><text x="77.6930%" y="687.50"></text></g><g><title>resource_allocate_bytes (681 samples, 0.05%)</title><rect x="78.5105%" y="661" width="0.0527%" height="15" fill="rgb(210,138,16)" fg:x="1015024" fg:w="681"/><text x="78.7605%" y="671.50"></text></g><g><title>jni_NewObjectV (26,386 samples, 2.04%)</title><rect x="76.5244%" y="693" width="2.0409%" height="15" fill="rgb(228,57,28)" fg:x="989347" fg:w="26386"/><text x="76.7744%" y="703.50">j..</text></g><g><title>operator delete (146 samples, 0.01%)</title><rect x="78.5678%" y="693" width="0.0113%" height="15" fill="rgb(242,170,10)" fg:x="1015766" fg:w="146"/><text x="78.8178%" y="703.50"></text></g><g><title>operator delete@plt (577 samples, 0.04%)</title><rect x="78.5791%" y="693" width="0.0446%" height="15" fill="rgb(228,214,39)" fg:x="1015912" fg:w="577"/><text x="78.8291%" y="703.50"></text></g><g><title>operator delete[] (323 samples, 0.02%)</title><rect x="78.6238%" y="693" width="0.0250%" height="15" fill="rgb(218,179,33)" fg:x="1016489" fg:w="323"/><text x="78.8738%" y="703.50"></text></g><g><title>__GI___libc_malloc (1,765 samples, 0.14%)</title><rect x="78.6509%" y="677" width="0.1365%" height="15" fill="rgb(235,193,39)" fg:x="1016840" fg:w="1765"/><text x="78.9009%" y="687.50"></text></g><g><title>tcache_get (772 samples, 0.06%)</title><rect x="78.7277%" y="661" width="0.0597%" height="15" fill="rgb(219,221,36)" fg:x="1017833" fg:w="772"/><text x="78.9777%" y="671.50"></text></g><g><title>operator new (2,201 samples, 0.17%)</title><rect x="78.6488%" y="693" width="0.1702%" height="15" fill="rgb(248,218,19)" fg:x="1016812" fg:w="2201"/><text x="78.8988%" y="703.50"></text></g><g><title>malloc@plt (402 samples, 0.03%)</title><rect x="78.7879%" y="677" width="0.0311%" height="15" fill="rgb(205,50,9)" fg:x="1018611" fg:w="402"/><text x="79.0379%" y="687.50"></text></g><g><title>operator new@plt (610 samples, 0.05%)</title><rect x="78.8190%" y="693" width="0.0472%" height="15" fill="rgb(238,81,28)" fg:x="1019013" fg:w="610"/><text x="79.0690%" y="703.50"></text></g><g><title>operator new[] (326 samples, 0.03%)</title><rect x="78.8662%" y="693" width="0.0252%" height="15" fill="rgb(235,110,19)" fg:x="1019623" fg:w="326"/><text x="79.1162%" y="703.50"></text></g><g><title>_int_malloc (348 samples, 0.03%)</title><rect x="78.9283%" y="645" width="0.0269%" height="15" fill="rgb(214,7,14)" fg:x="1020426" fg:w="348"/><text x="79.1783%" y="655.50"></text></g><g><title>__GI___libc_malloc (737 samples, 0.06%)</title><rect x="78.9039%" y="661" width="0.0570%" height="15" fill="rgb(211,77,3)" fg:x="1020111" fg:w="737"/><text x="79.1539%" y="671.50"></text></g><g><title>operator new (766 samples, 0.06%)</title><rect x="78.9036%" y="677" width="0.0592%" height="15" fill="rgb(229,5,9)" fg:x="1020107" fg:w="766"/><text x="79.1536%" y="687.50"></text></g><g><title>[libunix_jni.so] (863,899 samples, 66.82%)</title><rect x="12.1454%" y="709" width="66.8212%" height="15" fill="rgb(225,90,11)" fg:x="157022" fg:w="863899"/><text x="12.3954%" y="719.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (868 samples, 0.07%)</title><rect x="78.8994%" y="693" width="0.0671%" height="15" fill="rgb(242,56,8)" fg:x="1020053" fg:w="868"/><text x="79.1494%" y="703.50"></text></g><g><title>InstanceKlass::allocate_objArray (175 samples, 0.01%)</title><rect x="89.3894%" y="677" width="0.0135%" height="15" fill="rgb(249,212,39)" fg:x="1155672" fg:w="175"/><text x="89.6394%" y="687.50"></text></g><g><title>InterpreterRuntime::anewarray (251 samples, 0.02%)</title><rect x="89.3848%" y="693" width="0.0194%" height="15" fill="rgb(236,90,9)" fg:x="1155613" fg:w="251"/><text x="89.6348%" y="703.50"></text></g><g><title>TieredThresholdPolicy::event (244 samples, 0.02%)</title><rect x="89.4115%" y="661" width="0.0189%" height="15" fill="rgb(206,88,35)" fg:x="1155959" fg:w="244"/><text x="89.6615%" y="671.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (208 samples, 0.02%)</title><rect x="89.4143%" y="645" width="0.0161%" height="15" fill="rgb(205,126,30)" fg:x="1155995" fg:w="208"/><text x="89.6643%" y="655.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (310 samples, 0.02%)</title><rect x="89.4067%" y="693" width="0.0240%" height="15" fill="rgb(230,176,12)" fg:x="1155896" fg:w="310"/><text x="89.6567%" y="703.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (308 samples, 0.02%)</title><rect x="89.4068%" y="677" width="0.0238%" height="15" fill="rgb(243,19,9)" fg:x="1155898" fg:w="308"/><text x="89.6568%" y="687.50"></text></g><g><title>LinkResolver::resolve_invoke (211 samples, 0.02%)</title><rect x="89.4552%" y="661" width="0.0163%" height="15" fill="rgb(245,171,17)" fg:x="1156523" fg:w="211"/><text x="89.7052%" y="671.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (308 samples, 0.02%)</title><rect x="89.4499%" y="677" width="0.0238%" height="15" fill="rgb(227,52,21)" fg:x="1156455" fg:w="308"/><text x="89.6999%" y="687.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (419 samples, 0.03%)</title><rect x="89.4463%" y="693" width="0.0324%" height="15" fill="rgb(238,69,14)" fg:x="1156408" fg:w="419"/><text x="89.6963%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (296 samples, 0.02%)</title><rect x="89.5248%" y="549" width="0.0229%" height="15" fill="rgb(241,156,39)" fg:x="1157423" fg:w="296"/><text x="89.7748%" y="559.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (322 samples, 0.02%)</title><rect x="89.5229%" y="565" width="0.0249%" height="15" fill="rgb(212,227,28)" fg:x="1157398" fg:w="322"/><text x="89.7729%" y="575.50"></text></g><g><title>ClassFileParser::parse_constant_pool (330 samples, 0.03%)</title><rect x="89.5224%" y="581" width="0.0255%" height="15" fill="rgb(209,118,27)" fg:x="1157392" fg:w="330"/><text x="89.7724%" y="591.50"></text></g><g><title>ClassFileParser::ClassFileParser (416 samples, 0.03%)</title><rect x="89.5219%" y="613" width="0.0322%" height="15" fill="rgb(226,102,5)" fg:x="1157386" fg:w="416"/><text x="89.7719%" y="623.50"></text></g><g><title>ClassFileParser::parse_stream (415 samples, 0.03%)</title><rect x="89.5220%" y="597" width="0.0321%" height="15" fill="rgb(223,34,3)" fg:x="1157387" fg:w="415"/><text x="89.7720%" y="607.50"></text></g><g><title>KlassFactory::create_from_stream (516 samples, 0.04%)</title><rect x="89.5219%" y="629" width="0.0399%" height="15" fill="rgb(221,81,38)" fg:x="1157386" fg:w="516"/><text x="89.7719%" y="639.50"></text></g><g><title>JVM_DefineClassWithSource (539 samples, 0.04%)</title><rect x="89.5214%" y="677" width="0.0417%" height="15" fill="rgb(236,219,28)" fg:x="1157379" fg:w="539"/><text x="89.7714%" y="687.50"></text></g><g><title>jvm_define_class_common (537 samples, 0.04%)</title><rect x="89.5215%" y="661" width="0.0415%" height="15" fill="rgb(213,200,14)" fg:x="1157381" fg:w="537"/><text x="89.7715%" y="671.50"></text></g><g><title>SystemDictionary::resolve_from_stream (532 samples, 0.04%)</title><rect x="89.5219%" y="645" width="0.0411%" height="15" fill="rgb(240,33,19)" fg:x="1157386" fg:w="532"/><text x="89.7719%" y="655.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (564 samples, 0.04%)</title><rect x="89.5213%" y="693" width="0.0436%" height="15" fill="rgb(233,113,27)" fg:x="1157378" fg:w="564"/><text x="89.7713%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (206 samples, 0.02%)</title><rect x="89.5806%" y="597" width="0.0159%" height="15" fill="rgb(220,221,18)" fg:x="1158145" fg:w="206"/><text x="89.8306%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (201 samples, 0.02%)</title><rect x="89.5810%" y="581" width="0.0155%" height="15" fill="rgb(238,92,8)" fg:x="1158150" fg:w="201"/><text x="89.8310%" y="591.50"></text></g><g><title>native_write_msr (201 samples, 0.02%)</title><rect x="89.5810%" y="565" width="0.0155%" height="15" fill="rgb(222,164,16)" fg:x="1158150" fg:w="201"/><text x="89.8310%" y="575.50"></text></g><g><title>schedule_tail (220 samples, 0.02%)</title><rect x="89.5799%" y="629" width="0.0170%" height="15" fill="rgb(241,119,3)" fg:x="1158136" fg:w="220"/><text x="89.8299%" y="639.50"></text></g><g><title>finish_task_switch (220 samples, 0.02%)</title><rect x="89.5799%" y="613" width="0.0170%" height="15" fill="rgb(241,44,8)" fg:x="1158136" fg:w="220"/><text x="89.8299%" y="623.50"></text></g><g><title>__libc_vfork (307 samples, 0.02%)</title><rect x="89.5734%" y="661" width="0.0237%" height="15" fill="rgb(230,36,40)" fg:x="1158052" fg:w="307"/><text x="89.8234%" y="671.50"></text></g><g><title>ret_from_fork (229 samples, 0.02%)</title><rect x="89.5795%" y="645" width="0.0177%" height="15" fill="rgb(243,16,36)" fg:x="1158130" fg:w="229"/><text x="89.8295%" y="655.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (499 samples, 0.04%)</title><rect x="89.5716%" y="693" width="0.0386%" height="15" fill="rgb(231,4,26)" fg:x="1158028" fg:w="499"/><text x="89.8216%" y="703.50"></text></g><g><title>vforkChild (475 samples, 0.04%)</title><rect x="89.5734%" y="677" width="0.0367%" height="15" fill="rgb(240,9,31)" fg:x="1158052" fg:w="475"/><text x="89.8234%" y="687.50"></text></g><g><title>childProcess (168 samples, 0.01%)</title><rect x="89.5972%" y="661" width="0.0130%" height="15" fill="rgb(207,173,15)" fg:x="1158359" fg:w="168"/><text x="89.8472%" y="671.50"></text></g><g><title>do_huge_pmd_anonymous_page (139 samples, 0.01%)</title><rect x="89.6249%" y="549" width="0.0108%" height="15" fill="rgb(224,192,53)" fg:x="1158717" fg:w="139"/><text x="89.8749%" y="559.50"></text></g><g><title>handle_mm_fault (142 samples, 0.01%)</title><rect x="89.6247%" y="565" width="0.0110%" height="15" fill="rgb(223,67,28)" fg:x="1158715" fg:w="142"/><text x="89.8747%" y="575.50"></text></g><g><title>ObjArrayAllocator::initialize (148 samples, 0.01%)</title><rect x="89.6243%" y="629" width="0.0114%" height="15" fill="rgb(211,20,47)" fg:x="1158710" fg:w="148"/><text x="89.8743%" y="639.50"></text></g><g><title>asm_exc_page_fault (146 samples, 0.01%)</title><rect x="89.6245%" y="613" width="0.0113%" height="15" fill="rgb(240,228,2)" fg:x="1158712" fg:w="146"/><text x="89.8745%" y="623.50"></text></g><g><title>exc_page_fault (146 samples, 0.01%)</title><rect x="89.6245%" y="597" width="0.0113%" height="15" fill="rgb(248,151,12)" fg:x="1158712" fg:w="146"/><text x="89.8745%" y="607.50"></text></g><g><title>do_user_addr_fault (145 samples, 0.01%)</title><rect x="89.6246%" y="581" width="0.0112%" height="15" fill="rgb(244,8,39)" fg:x="1158713" fg:w="145"/><text x="89.8746%" y="591.50"></text></g><g><title>TypeArrayKlass::allocate_common (204 samples, 0.02%)</title><rect x="89.6203%" y="677" width="0.0158%" height="15" fill="rgb(222,26,8)" fg:x="1158658" fg:w="204"/><text x="89.8703%" y="687.50"></text></g><g><title>CollectedHeap::array_allocate (201 samples, 0.02%)</title><rect x="89.6205%" y="661" width="0.0155%" height="15" fill="rgb(213,106,44)" fg:x="1158661" fg:w="201"/><text x="89.8705%" y="671.50"></text></g><g><title>MemAllocator::allocate (201 samples, 0.02%)</title><rect x="89.6205%" y="645" width="0.0155%" height="15" fill="rgb(214,129,20)" fg:x="1158661" fg:w="201"/><text x="89.8705%" y="655.50"></text></g><g><title>OptoRuntime::new_array_C (282 samples, 0.02%)</title><rect x="89.6144%" y="693" width="0.0218%" height="15" fill="rgb(212,32,13)" fg:x="1158581" fg:w="282"/><text x="89.8644%" y="703.50"></text></g><g><title>do_huge_pmd_anonymous_page (163 samples, 0.01%)</title><rect x="89.6467%" y="549" width="0.0126%" height="15" fill="rgb(208,168,33)" fg:x="1158999" fg:w="163"/><text x="89.8967%" y="559.50"></text></g><g><title>exc_page_fault (167 samples, 0.01%)</title><rect x="89.6466%" y="597" width="0.0129%" height="15" fill="rgb(231,207,8)" fg:x="1158998" fg:w="167"/><text x="89.8966%" y="607.50"></text></g><g><title>do_user_addr_fault (167 samples, 0.01%)</title><rect x="89.6466%" y="581" width="0.0129%" height="15" fill="rgb(235,219,23)" fg:x="1158998" fg:w="167"/><text x="89.8966%" y="591.50"></text></g><g><title>handle_mm_fault (166 samples, 0.01%)</title><rect x="89.6467%" y="565" width="0.0128%" height="15" fill="rgb(226,216,26)" fg:x="1158999" fg:w="166"/><text x="89.8967%" y="575.50"></text></g><g><title>ObjAllocator::initialize (170 samples, 0.01%)</title><rect x="89.6465%" y="629" width="0.0131%" height="15" fill="rgb(239,137,16)" fg:x="1158996" fg:w="170"/><text x="89.8965%" y="639.50"></text></g><g><title>asm_exc_page_fault (168 samples, 0.01%)</title><rect x="89.6466%" y="613" width="0.0130%" height="15" fill="rgb(207,12,36)" fg:x="1158998" fg:w="168"/><text x="89.8966%" y="623.50"></text></g><g><title>InstanceKlass::allocate_instance (253 samples, 0.02%)</title><rect x="89.6402%" y="677" width="0.0196%" height="15" fill="rgb(210,214,24)" fg:x="1158915" fg:w="253"/><text x="89.8902%" y="687.50"></text></g><g><title>CollectedHeap::obj_allocate (251 samples, 0.02%)</title><rect x="89.6403%" y="661" width="0.0194%" height="15" fill="rgb(206,56,30)" fg:x="1158917" fg:w="251"/><text x="89.8903%" y="671.50"></text></g><g><title>MemAllocator::allocate (251 samples, 0.02%)</title><rect x="89.6403%" y="645" width="0.0194%" height="15" fill="rgb(228,143,26)" fg:x="1158917" fg:w="251"/><text x="89.8903%" y="655.50"></text></g><g><title>OptoRuntime::new_instance_C (279 samples, 0.02%)</title><rect x="89.6390%" y="693" width="0.0216%" height="15" fill="rgb(216,218,46)" fg:x="1158899" fg:w="279"/><text x="89.8890%" y="703.50"></text></g><g><title>Runtime1::counter_overflow (162 samples, 0.01%)</title><rect x="89.6606%" y="693" width="0.0125%" height="15" fill="rgb(206,6,19)" fg:x="1159179" fg:w="162"/><text x="89.9106%" y="703.50"></text></g><g><title>Runtime1::new_instance (131 samples, 0.01%)</title><rect x="89.6784%" y="693" width="0.0101%" height="15" fill="rgb(239,177,51)" fg:x="1159409" fg:w="131"/><text x="89.9284%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (169 samples, 0.01%)</title><rect x="89.7208%" y="469" width="0.0131%" height="15" fill="rgb(216,55,25)" fg:x="1159957" fg:w="169"/><text x="89.9708%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (162 samples, 0.01%)</title><rect x="89.7213%" y="453" width="0.0125%" height="15" fill="rgb(231,163,29)" fg:x="1159964" fg:w="162"/><text x="89.9713%" y="463.50"></text></g><g><title>native_write_msr (161 samples, 0.01%)</title><rect x="89.7214%" y="437" width="0.0125%" height="15" fill="rgb(232,149,50)" fg:x="1159965" fg:w="161"/><text x="89.9714%" y="447.50"></text></g><g><title>finish_task_switch (176 samples, 0.01%)</title><rect x="89.7205%" y="485" width="0.0136%" height="15" fill="rgb(223,142,48)" fg:x="1159953" fg:w="176"/><text x="89.9705%" y="495.50"></text></g><g><title>futex_wait_queue_me (274 samples, 0.02%)</title><rect x="89.7168%" y="533" width="0.0212%" height="15" fill="rgb(245,83,23)" fg:x="1159906" fg:w="274"/><text x="89.9668%" y="543.50"></text></g><g><title>schedule (269 samples, 0.02%)</title><rect x="89.7172%" y="517" width="0.0208%" height="15" fill="rgb(224,63,2)" fg:x="1159911" fg:w="269"/><text x="89.9672%" y="527.50"></text></g><g><title>__schedule (267 samples, 0.02%)</title><rect x="89.7174%" y="501" width="0.0207%" height="15" fill="rgb(218,65,53)" fg:x="1159913" fg:w="267"/><text x="89.9674%" y="511.50"></text></g><g><title>__x64_sys_futex (285 samples, 0.02%)</title><rect x="89.7165%" y="581" width="0.0220%" height="15" fill="rgb(221,84,29)" fg:x="1159901" fg:w="285"/><text x="89.9665%" y="591.50"></text></g><g><title>do_futex (285 samples, 0.02%)</title><rect x="89.7165%" y="565" width="0.0220%" height="15" fill="rgb(234,0,32)" fg:x="1159901" fg:w="285"/><text x="89.9665%" y="575.50"></text></g><g><title>futex_wait (281 samples, 0.02%)</title><rect x="89.7168%" y="549" width="0.0217%" height="15" fill="rgb(206,20,16)" fg:x="1159905" fg:w="281"/><text x="89.9668%" y="559.50"></text></g><g><title>do_syscall_64 (286 samples, 0.02%)</title><rect x="89.7165%" y="597" width="0.0221%" height="15" fill="rgb(244,172,18)" fg:x="1159901" fg:w="286"/><text x="89.9665%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (294 samples, 0.02%)</title><rect x="89.7164%" y="613" width="0.0227%" height="15" fill="rgb(254,133,1)" fg:x="1159900" fg:w="294"/><text x="89.9664%" y="623.50"></text></g><g><title>__pthread_cond_wait (311 samples, 0.02%)</title><rect x="89.7152%" y="661" width="0.0241%" height="15" fill="rgb(222,206,41)" fg:x="1159885" fg:w="311"/><text x="89.9652%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (311 samples, 0.02%)</title><rect x="89.7152%" y="645" width="0.0241%" height="15" fill="rgb(212,3,42)" fg:x="1159885" fg:w="311"/><text x="89.9652%" y="655.50"></text></g><g><title>futex_wait_cancelable (305 samples, 0.02%)</title><rect x="89.7157%" y="629" width="0.0236%" height="15" fill="rgb(241,11,4)" fg:x="1159891" fg:w="305"/><text x="89.9657%" y="639.50"></text></g><g><title>Parker::park (348 samples, 0.03%)</title><rect x="89.7134%" y="677" width="0.0269%" height="15" fill="rgb(205,19,26)" fg:x="1159861" fg:w="348"/><text x="89.9634%" y="687.50"></text></g><g><title>Unsafe_Park (362 samples, 0.03%)</title><rect x="89.7131%" y="693" width="0.0280%" height="15" fill="rgb(210,179,32)" fg:x="1159857" fg:w="362"/><text x="89.9631%" y="703.50"></text></g><g><title>__x64_sys_futex (271 samples, 0.02%)</title><rect x="89.7469%" y="613" width="0.0210%" height="15" fill="rgb(227,116,49)" fg:x="1160294" fg:w="271"/><text x="89.9969%" y="623.50"></text></g><g><title>do_futex (268 samples, 0.02%)</title><rect x="89.7471%" y="597" width="0.0207%" height="15" fill="rgb(211,146,6)" fg:x="1160297" fg:w="268"/><text x="89.9971%" y="607.50"></text></g><g><title>futex_wake (267 samples, 0.02%)</title><rect x="89.7472%" y="581" width="0.0207%" height="15" fill="rgb(219,44,39)" fg:x="1160298" fg:w="267"/><text x="89.9972%" y="591.50"></text></g><g><title>wake_up_q (217 samples, 0.02%)</title><rect x="89.7510%" y="565" width="0.0168%" height="15" fill="rgb(234,128,11)" fg:x="1160348" fg:w="217"/><text x="90.0010%" y="575.50"></text></g><g><title>try_to_wake_up (214 samples, 0.02%)</title><rect x="89.7513%" y="549" width="0.0166%" height="15" fill="rgb(220,183,53)" fg:x="1160351" fg:w="214"/><text x="90.0013%" y="559.50"></text></g><g><title>do_syscall_64 (276 samples, 0.02%)</title><rect x="89.7467%" y="629" width="0.0213%" height="15" fill="rgb(213,219,32)" fg:x="1160292" fg:w="276"/><text x="89.9967%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (293 samples, 0.02%)</title><rect x="89.7466%" y="645" width="0.0227%" height="15" fill="rgb(232,156,16)" fg:x="1160291" fg:w="293"/><text x="89.9966%" y="655.50"></text></g><g><title>__pthread_cond_signal (318 samples, 0.02%)</title><rect x="89.7448%" y="677" width="0.0246%" height="15" fill="rgb(246,135,34)" fg:x="1160267" fg:w="318"/><text x="89.9948%" y="687.50"></text></g><g><title>futex_wake (303 samples, 0.02%)</title><rect x="89.7459%" y="661" width="0.0234%" height="15" fill="rgb(241,99,0)" fg:x="1160282" fg:w="303"/><text x="89.9959%" y="671.50"></text></g><g><title>Unsafe_Unpark (374 samples, 0.03%)</title><rect x="89.7411%" y="693" width="0.0289%" height="15" fill="rgb(222,103,45)" fg:x="1160219" fg:w="374"/><text x="89.9911%" y="703.50"></text></g><g><title>blk_mq_end_request (175 samples, 0.01%)</title><rect x="89.7810%" y="581" width="0.0135%" height="15" fill="rgb(212,57,4)" fg:x="1160736" fg:w="175"/><text x="90.0310%" y="591.50"></text></g><g><title>blk_update_request (173 samples, 0.01%)</title><rect x="89.7812%" y="565" width="0.0134%" height="15" fill="rgb(215,68,47)" fg:x="1160738" fg:w="173"/><text x="90.0312%" y="575.50"></text></g><g><title>__handle_irq_event_percpu (182 samples, 0.01%)</title><rect x="89.7810%" y="629" width="0.0141%" height="15" fill="rgb(230,84,2)" fg:x="1160736" fg:w="182"/><text x="90.0310%" y="639.50"></text></g><g><title>nvme_irq (182 samples, 0.01%)</title><rect x="89.7810%" y="613" width="0.0141%" height="15" fill="rgb(220,102,14)" fg:x="1160736" fg:w="182"/><text x="90.0310%" y="623.50"></text></g><g><title>nvme_process_cq (182 samples, 0.01%)</title><rect x="89.7810%" y="597" width="0.0141%" height="15" fill="rgb(240,10,32)" fg:x="1160736" fg:w="182"/><text x="90.0310%" y="607.50"></text></g><g><title>handle_irq_event (183 samples, 0.01%)</title><rect x="89.7810%" y="645" width="0.0142%" height="15" fill="rgb(215,47,27)" fg:x="1160736" fg:w="183"/><text x="90.0310%" y="655.50"></text></g><g><title>handle_edge_irq (184 samples, 0.01%)</title><rect x="89.7810%" y="661" width="0.0142%" height="15" fill="rgb(233,188,43)" fg:x="1160736" fg:w="184"/><text x="90.0310%" y="671.50"></text></g><g><title>common_interrupt (205 samples, 0.02%)</title><rect x="89.7810%" y="677" width="0.0159%" height="15" fill="rgb(253,190,1)" fg:x="1160736" fg:w="205"/><text x="90.0310%" y="687.50"></text></g><g><title>asm_common_interrupt (207 samples, 0.02%)</title><rect x="89.7810%" y="693" width="0.0160%" height="15" fill="rgb(206,114,52)" fg:x="1160736" fg:w="207"/><text x="90.0310%" y="703.50"></text></g><g><title>__alloc_pages_slowpath.constprop.0 (141 samples, 0.01%)</title><rect x="89.8151%" y="597" width="0.0109%" height="15" fill="rgb(233,120,37)" fg:x="1161176" fg:w="141"/><text x="90.0651%" y="607.50"></text></g><g><title>try_to_free_pages (133 samples, 0.01%)</title><rect x="89.8157%" y="581" width="0.0103%" height="15" fill="rgb(214,52,39)" fg:x="1161184" fg:w="133"/><text x="90.0657%" y="591.50"></text></g><g><title>do_try_to_free_pages (133 samples, 0.01%)</title><rect x="89.8157%" y="565" width="0.0103%" height="15" fill="rgb(223,80,29)" fg:x="1161184" fg:w="133"/><text x="90.0657%" y="575.50"></text></g><g><title>shrink_node (133 samples, 0.01%)</title><rect x="89.8157%" y="549" width="0.0103%" height="15" fill="rgb(230,101,40)" fg:x="1161184" fg:w="133"/><text x="90.0657%" y="559.50"></text></g><g><title>get_page_from_freelist (229 samples, 0.02%)</title><rect x="89.8277%" y="597" width="0.0177%" height="15" fill="rgb(219,211,8)" fg:x="1161339" fg:w="229"/><text x="90.0777%" y="607.50"></text></g><g><title>__alloc_pages_nodemask (411 samples, 0.03%)</title><rect x="89.8139%" y="613" width="0.0318%" height="15" fill="rgb(252,126,28)" fg:x="1161161" fg:w="411"/><text x="90.0639%" y="623.50"></text></g><g><title>alloc_pages_vma (444 samples, 0.03%)</title><rect x="89.8126%" y="629" width="0.0343%" height="15" fill="rgb(215,56,38)" fg:x="1161144" fg:w="444"/><text x="90.0626%" y="639.50"></text></g><g><title>handle_mm_fault (825 samples, 0.06%)</title><rect x="89.8031%" y="645" width="0.0638%" height="15" fill="rgb(249,55,44)" fg:x="1161021" fg:w="825"/><text x="90.0531%" y="655.50"></text></g><g><title>exc_page_fault (911 samples, 0.07%)</title><rect x="89.7973%" y="677" width="0.0705%" height="15" fill="rgb(220,221,32)" fg:x="1160946" fg:w="911"/><text x="90.0473%" y="687.50"></text></g><g><title>do_user_addr_fault (896 samples, 0.07%)</title><rect x="89.7984%" y="661" width="0.0693%" height="15" fill="rgb(212,216,41)" fg:x="1160961" fg:w="896"/><text x="90.0484%" y="671.50"></text></g><g><title>asm_exc_page_fault (929 samples, 0.07%)</title><rect x="89.7971%" y="693" width="0.0719%" height="15" fill="rgb(228,213,43)" fg:x="1160943" fg:w="929"/><text x="90.0471%" y="703.50"></text></g><g><title>__hrtimer_run_queues (167 samples, 0.01%)</title><rect x="89.8746%" y="629" width="0.0129%" height="15" fill="rgb(211,31,26)" fg:x="1161945" fg:w="167"/><text x="90.1246%" y="639.50"></text></g><g><title>hrtimer_interrupt (197 samples, 0.02%)</title><rect x="89.8734%" y="645" width="0.0152%" height="15" fill="rgb(229,202,19)" fg:x="1161930" fg:w="197"/><text x="90.1234%" y="655.50"></text></g><g><title>__sysvec_apic_timer_interrupt (202 samples, 0.02%)</title><rect x="89.8732%" y="661" width="0.0156%" height="15" fill="rgb(229,105,46)" fg:x="1161928" fg:w="202"/><text x="90.1232%" y="671.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (396 samples, 0.03%)</title><rect x="89.8689%" y="693" width="0.0306%" height="15" fill="rgb(235,108,1)" fg:x="1161872" fg:w="396"/><text x="90.1189%" y="703.50"></text></g><g><title>sysvec_apic_timer_interrupt (340 samples, 0.03%)</title><rect x="89.8732%" y="677" width="0.0263%" height="15" fill="rgb(245,111,35)" fg:x="1161928" fg:w="340"/><text x="90.1232%" y="687.50"></text></g><g><title>irq_exit_rcu (138 samples, 0.01%)</title><rect x="89.8889%" y="661" width="0.0107%" height="15" fill="rgb(219,185,31)" fg:x="1162130" fg:w="138"/><text x="90.1389%" y="671.50"></text></g><g><title>do_softirq_own_stack (132 samples, 0.01%)</title><rect x="89.8893%" y="645" width="0.0102%" height="15" fill="rgb(214,4,43)" fg:x="1162136" fg:w="132"/><text x="90.1393%" y="655.50"></text></g><g><title>asm_call_sysvec_on_stack (132 samples, 0.01%)</title><rect x="89.8893%" y="629" width="0.0102%" height="15" fill="rgb(235,227,40)" fg:x="1162136" fg:w="132"/><text x="90.1393%" y="639.50"></text></g><g><title>__softirqentry_text_start (132 samples, 0.01%)</title><rect x="89.8893%" y="613" width="0.0102%" height="15" fill="rgb(230,88,30)" fg:x="1162136" fg:w="132"/><text x="90.1393%" y="623.50"></text></g><g><title>schedule (130 samples, 0.01%)</title><rect x="89.9009%" y="645" width="0.0101%" height="15" fill="rgb(216,217,1)" fg:x="1162286" fg:w="130"/><text x="90.1509%" y="655.50"></text></g><g><title>irqentry_exit_to_user_mode (143 samples, 0.01%)</title><rect x="89.9005%" y="677" width="0.0111%" height="15" fill="rgb(248,139,50)" fg:x="1162281" fg:w="143"/><text x="90.1505%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (140 samples, 0.01%)</title><rect x="89.9008%" y="661" width="0.0108%" height="15" fill="rgb(233,1,21)" fg:x="1162284" fg:w="140"/><text x="90.1508%" y="671.50"></text></g><g><title>asm_sysvec_reschedule_ipi (156 samples, 0.01%)</title><rect x="89.9005%" y="693" width="0.0121%" height="15" fill="rgb(215,183,12)" fg:x="1162281" fg:w="156"/><text x="90.1505%" y="703.50"></text></g><g><title>do_filp_open (267 samples, 0.02%)</title><rect x="89.9462%" y="597" width="0.0207%" height="15" fill="rgb(229,104,42)" fg:x="1162871" fg:w="267"/><text x="90.1962%" y="607.50"></text></g><g><title>path_openat (263 samples, 0.02%)</title><rect x="89.9465%" y="581" width="0.0203%" height="15" fill="rgb(243,34,48)" fg:x="1162875" fg:w="263"/><text x="90.1965%" y="591.50"></text></g><g><title>__x64_sys_openat (346 samples, 0.03%)</title><rect x="89.9440%" y="629" width="0.0268%" height="15" fill="rgb(239,11,44)" fg:x="1162843" fg:w="346"/><text x="90.1940%" y="639.50"></text></g><g><title>do_sys_openat2 (344 samples, 0.03%)</title><rect x="89.9442%" y="613" width="0.0266%" height="15" fill="rgb(231,98,35)" fg:x="1162845" fg:w="344"/><text x="90.1942%" y="623.50"></text></g><g><title>do_syscall_64 (348 samples, 0.03%)</title><rect x="89.9439%" y="645" width="0.0269%" height="15" fill="rgb(233,28,25)" fg:x="1162842" fg:w="348"/><text x="90.1939%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (352 samples, 0.03%)</title><rect x="89.9439%" y="661" width="0.0272%" height="15" fill="rgb(234,123,11)" fg:x="1162841" fg:w="352"/><text x="90.1939%" y="671.50"></text></g><g><title>__libc_open64 (358 samples, 0.03%)</title><rect x="89.9435%" y="677" width="0.0277%" height="15" fill="rgb(220,69,3)" fg:x="1162836" fg:w="358"/><text x="90.1935%" y="687.50"></text></g><g><title>fileOpen (505 samples, 0.04%)</title><rect x="89.9342%" y="693" width="0.0391%" height="15" fill="rgb(214,64,36)" fg:x="1162716" fg:w="505"/><text x="90.1842%" y="703.50"></text></g><g><title>[[vdso]] (1,258 samples, 0.10%)</title><rect x="90.1296%" y="645" width="0.0973%" height="15" fill="rgb(211,138,32)" fg:x="1165242" fg:w="1258"/><text x="90.3796%" y="655.50"></text></g><g><title>__vdso_clock_gettime (2,269 samples, 0.18%)</title><rect x="90.0521%" y="661" width="0.1755%" height="15" fill="rgb(213,118,47)" fg:x="1164241" fg:w="2269"/><text x="90.3021%" y="671.50"></text></g><g><title>__GI___clock_gettime (2,940 samples, 0.23%)</title><rect x="90.0015%" y="677" width="0.2274%" height="15" fill="rgb(243,124,49)" fg:x="1163586" fg:w="2940"/><text x="90.2515%" y="687.50"></text></g><g><title>os::javaTimeNanos (3,254 samples, 0.25%)</title><rect x="89.9776%" y="693" width="0.2517%" height="15" fill="rgb(221,30,28)" fg:x="1163277" fg:w="3254"/><text x="90.2276%" y="703.50"></text></g><g><title>[perf-956514.map] (145,614 samples, 11.26%)</title><rect x="78.9666%" y="709" width="11.2630%" height="15" fill="rgb(246,37,13)" fg:x="1020921" fg:w="145614"/><text x="79.2166%" y="719.50">[perf-956514.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (213 samples, 0.02%)</title><rect x="90.2570%" y="677" width="0.0165%" height="15" fill="rgb(249,66,14)" fg:x="1166889" fg:w="213"/><text x="90.5070%" y="687.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (333 samples, 0.03%)</title><rect x="90.2497%" y="693" width="0.0258%" height="15" fill="rgb(213,166,5)" fg:x="1166795" fg:w="333"/><text x="90.4997%" y="703.50"></text></g><g><title>__GI___clock_gettime (320 samples, 0.02%)</title><rect x="90.2847%" y="693" width="0.0248%" height="15" fill="rgb(221,66,24)" fg:x="1167248" fg:w="320"/><text x="90.5347%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (163 samples, 0.01%)</title><rect x="90.3628%" y="517" width="0.0126%" height="15" fill="rgb(210,132,17)" fg:x="1168257" fg:w="163"/><text x="90.6128%" y="527.50"></text></g><g><title>copy_page_to_iter (172 samples, 0.01%)</title><rect x="90.3622%" y="533" width="0.0133%" height="15" fill="rgb(243,202,5)" fg:x="1168249" fg:w="172"/><text x="90.6122%" y="543.50"></text></g><g><title>btrfs_dirty_inode (142 samples, 0.01%)</title><rect x="90.3822%" y="517" width="0.0110%" height="15" fill="rgb(233,70,48)" fg:x="1168508" fg:w="142"/><text x="90.6322%" y="527.50"></text></g><g><title>touch_atime (167 samples, 0.01%)</title><rect x="90.3806%" y="533" width="0.0129%" height="15" fill="rgb(238,41,26)" fg:x="1168487" fg:w="167"/><text x="90.6306%" y="543.50"></text></g><g><title>new_sync_read (457 samples, 0.04%)</title><rect x="90.3586%" y="565" width="0.0353%" height="15" fill="rgb(241,19,31)" fg:x="1168203" fg:w="457"/><text x="90.6086%" y="575.50"></text></g><g><title>generic_file_buffered_read (442 samples, 0.03%)</title><rect x="90.3598%" y="549" width="0.0342%" height="15" fill="rgb(214,76,10)" fg:x="1168218" fg:w="442"/><text x="90.6098%" y="559.50"></text></g><g><title>ksys_read (540 samples, 0.04%)</title><rect x="90.3545%" y="597" width="0.0418%" height="15" fill="rgb(254,202,22)" fg:x="1168150" fg:w="540"/><text x="90.6045%" y="607.50"></text></g><g><title>vfs_read (502 samples, 0.04%)</title><rect x="90.3574%" y="581" width="0.0388%" height="15" fill="rgb(214,72,24)" fg:x="1168188" fg:w="502"/><text x="90.6074%" y="591.50"></text></g><g><title>do_syscall_64 (548 samples, 0.04%)</title><rect x="90.3542%" y="613" width="0.0424%" height="15" fill="rgb(221,92,46)" fg:x="1168146" fg:w="548"/><text x="90.6042%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (554 samples, 0.04%)</title><rect x="90.3539%" y="629" width="0.0429%" height="15" fill="rgb(246,13,50)" fg:x="1168142" fg:w="554"/><text x="90.6039%" y="639.50"></text></g><g><title>__libc_read (586 samples, 0.05%)</title><rect x="90.3516%" y="661" width="0.0453%" height="15" fill="rgb(240,165,38)" fg:x="1168113" fg:w="586"/><text x="90.6016%" y="671.50"></text></g><g><title>__libc_read (586 samples, 0.05%)</title><rect x="90.3516%" y="645" width="0.0453%" height="15" fill="rgb(241,24,51)" fg:x="1168113" fg:w="586"/><text x="90.6016%" y="655.50"></text></g><g><title>handleRead (591 samples, 0.05%)</title><rect x="90.3514%" y="677" width="0.0457%" height="15" fill="rgb(227,51,44)" fg:x="1168110" fg:w="591"/><text x="90.6014%" y="687.50"></text></g><g><title>readBytes (765 samples, 0.06%)</title><rect x="90.3497%" y="693" width="0.0592%" height="15" fill="rgb(231,121,3)" fg:x="1168088" fg:w="765"/><text x="90.5997%" y="703.50"></text></g><g><title>[unknown] (2,354 samples, 0.18%)</title><rect x="90.2296%" y="709" width="0.1821%" height="15" fill="rgb(245,3,41)" fg:x="1166535" fg:w="2354"/><text x="90.4796%" y="719.50"></text></g><g><title>__GI___clone (146 samples, 0.01%)</title><rect x="90.4117%" y="709" width="0.0113%" height="15" fill="rgb(214,13,26)" fg:x="1168889" fg:w="146"/><text x="90.6617%" y="719.50"></text></g><g><title>__vdso_clock_gettime (461 samples, 0.04%)</title><rect x="90.4235%" y="709" width="0.0357%" height="15" fill="rgb(252,75,11)" fg:x="1169042" fg:w="461"/><text x="90.6735%" y="719.50"></text></g><g><title>asm_exc_page_fault (167 samples, 0.01%)</title><rect x="90.4601%" y="709" width="0.0129%" height="15" fill="rgb(218,226,17)" fg:x="1169515" fg:w="167"/><text x="90.7101%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (243 samples, 0.02%)</title><rect x="90.4800%" y="709" width="0.0188%" height="15" fill="rgb(248,89,38)" fg:x="1169773" fg:w="243"/><text x="90.7300%" y="719.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (584 samples, 0.05%)</title><rect x="90.4988%" y="709" width="0.0452%" height="15" fill="rgb(237,73,46)" fg:x="1170016" fg:w="584"/><text x="90.7488%" y="719.50"></text></g><g><title>jni_GetStringLength (406 samples, 0.03%)</title><rect x="90.5442%" y="709" width="0.0314%" height="15" fill="rgb(242,78,33)" fg:x="1170603" fg:w="406"/><text x="90.7942%" y="719.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<573558ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 573558ul>::oop_access_barrier (345 samples, 0.03%)</title><rect x="90.5490%" y="693" width="0.0267%" height="15" fill="rgb(235,60,3)" fg:x="1170664" fg:w="345"/><text x="90.7990%" y="703.50"></text></g><g><title>skyframe-evalua (1,021,609 samples, 79.02%)</title><rect x="11.5680%" y="725" width="79.0198%" height="15" fill="rgb(216,172,19)" fg:x="149557" fg:w="1021609"/><text x="11.8180%" y="735.50">skyframe-evalua</text></g><g><title>skyframe-invali (149 samples, 0.01%)</title><rect x="90.5878%" y="725" width="0.0115%" height="15" fill="rgb(227,6,42)" fg:x="1171166" fg:w="149"/><text x="90.8378%" y="735.50"></text></g><g><title>kernel_init_free_pages (437 samples, 0.03%)</title><rect x="94.5384%" y="565" width="0.0338%" height="15" fill="rgb(223,207,42)" fg:x="1222241" fg:w="437"/><text x="94.7884%" y="575.50"></text></g><g><title>clear_page_erms (423 samples, 0.03%)</title><rect x="94.5394%" y="549" width="0.0327%" height="15" fill="rgb(246,138,30)" fg:x="1222255" fg:w="423"/><text x="94.7894%" y="559.50"></text></g><g><title>get_page_from_freelist (774 samples, 0.06%)</title><rect x="94.5127%" y="597" width="0.0599%" height="15" fill="rgb(251,199,47)" fg:x="1221909" fg:w="774"/><text x="94.7627%" y="607.50"></text></g><g><title>prep_new_page (469 samples, 0.04%)</title><rect x="94.5363%" y="581" width="0.0363%" height="15" fill="rgb(228,218,44)" fg:x="1222214" fg:w="469"/><text x="94.7863%" y="591.50"></text></g><g><title>__alloc_pages_nodemask (900 samples, 0.07%)</title><rect x="94.5035%" y="613" width="0.0696%" height="15" fill="rgb(220,68,6)" fg:x="1221791" fg:w="900"/><text x="94.7535%" y="623.50"></text></g><g><title>alloc_pages_vma (981 samples, 0.08%)</title><rect x="94.4994%" y="629" width="0.0759%" height="15" fill="rgb(240,60,26)" fg:x="1221737" fg:w="981"/><text x="94.7494%" y="639.50"></text></g><g><title>page_add_file_rmap (275 samples, 0.02%)</title><rect x="94.6600%" y="597" width="0.0213%" height="15" fill="rgb(211,200,19)" fg:x="1223814" fg:w="275"/><text x="94.9100%" y="607.50"></text></g><g><title>alloc_set_pte (407 samples, 0.03%)</title><rect x="94.6514%" y="613" width="0.0315%" height="15" fill="rgb(242,145,30)" fg:x="1223703" fg:w="407"/><text x="94.9014%" y="623.50"></text></g><g><title>filemap_map_pages (1,381 samples, 0.11%)</title><rect x="94.5939%" y="629" width="0.1068%" height="15" fill="rgb(225,64,13)" fg:x="1222959" fg:w="1381"/><text x="94.8439%" y="639.50"></text></g><g><title>__pagevec_lru_add_fn (160 samples, 0.01%)</title><rect x="94.7071%" y="597" width="0.0124%" height="15" fill="rgb(218,103,35)" fg:x="1224423" fg:w="160"/><text x="94.9571%" y="607.50"></text></g><g><title>lru_cache_add (274 samples, 0.02%)</title><rect x="94.7010%" y="629" width="0.0212%" height="15" fill="rgb(216,93,46)" fg:x="1224344" fg:w="274"/><text x="94.9510%" y="639.50"></text></g><g><title>pagevec_lru_move_fn (224 samples, 0.02%)</title><rect x="94.7049%" y="613" width="0.0173%" height="15" fill="rgb(225,159,27)" fg:x="1224394" fg:w="224"/><text x="94.9549%" y="623.50"></text></g><g><title>mem_cgroup_charge (276 samples, 0.02%)</title><rect x="94.7227%" y="629" width="0.0213%" height="15" fill="rgb(225,204,11)" fg:x="1224624" fg:w="276"/><text x="94.9727%" y="639.50"></text></g><g><title>handle_mm_fault (3,969 samples, 0.31%)</title><rect x="94.4561%" y="645" width="0.3070%" height="15" fill="rgb(205,56,4)" fg:x="1221178" fg:w="3969"/><text x="94.7061%" y="655.50"></text></g><g><title>do_user_addr_fault (4,249 samples, 0.33%)</title><rect x="94.4381%" y="661" width="0.3287%" height="15" fill="rgb(206,6,35)" fg:x="1220945" fg:w="4249"/><text x="94.6881%" y="671.50"></text></g><g><title>exc_page_fault (4,281 samples, 0.33%)</title><rect x="94.4361%" y="677" width="0.3311%" height="15" fill="rgb(247,73,52)" fg:x="1220919" fg:w="4281"/><text x="94.6861%" y="687.50"></text></g><g><title>asm_exc_page_fault (4,361 samples, 0.34%)</title><rect x="94.4338%" y="693" width="0.3373%" height="15" fill="rgb(246,97,4)" fg:x="1220889" fg:w="4361"/><text x="94.6838%" y="703.50"></text></g><g><title>rcu_core (140 samples, 0.01%)</title><rect x="94.7784%" y="597" width="0.0108%" height="15" fill="rgb(212,37,15)" fg:x="1225344" fg:w="140"/><text x="95.0284%" y="607.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (246 samples, 0.02%)</title><rect x="94.7711%" y="693" width="0.0190%" height="15" fill="rgb(208,130,40)" fg:x="1225250" fg:w="246"/><text x="95.0211%" y="703.50"></text></g><g><title>sysvec_apic_timer_interrupt (226 samples, 0.02%)</title><rect x="94.7726%" y="677" width="0.0175%" height="15" fill="rgb(236,55,29)" fg:x="1225270" fg:w="226"/><text x="95.0226%" y="687.50"></text></g><g><title>irq_exit_rcu (156 samples, 0.01%)</title><rect x="94.7781%" y="661" width="0.0121%" height="15" fill="rgb(209,156,45)" fg:x="1225340" fg:w="156"/><text x="95.0281%" y="671.50"></text></g><g><title>do_softirq_own_stack (152 samples, 0.01%)</title><rect x="94.7784%" y="645" width="0.0118%" height="15" fill="rgb(249,107,4)" fg:x="1225344" fg:w="152"/><text x="95.0284%" y="655.50"></text></g><g><title>asm_call_sysvec_on_stack (152 samples, 0.01%)</title><rect x="94.7784%" y="629" width="0.0118%" height="15" fill="rgb(227,7,13)" fg:x="1225344" fg:w="152"/><text x="95.0284%" y="639.50"></text></g><g><title>__softirqentry_text_start (152 samples, 0.01%)</title><rect x="94.7784%" y="613" width="0.0118%" height="15" fill="rgb(250,129,14)" fg:x="1225344" fg:w="152"/><text x="95.0284%" y="623.50"></text></g><g><title>entry_SYSCALL_64 (2,087 samples, 0.16%)</title><rect x="94.7954%" y="693" width="0.1614%" height="15" fill="rgb(229,92,13)" fg:x="1225564" fg:w="2087"/><text x="95.0454%" y="703.50"></text></g><g><title>copy_process (148 samples, 0.01%)</title><rect x="95.0321%" y="629" width="0.0114%" height="15" fill="rgb(245,98,39)" fg:x="1228625" fg:w="148"/><text x="95.2821%" y="639.50"></text></g><g><title>__do_sys_clone (164 samples, 0.01%)</title><rect x="95.0321%" y="661" width="0.0127%" height="15" fill="rgb(234,135,48)" fg:x="1228625" fg:w="164"/><text x="95.2821%" y="671.50"></text></g><g><title>kernel_clone (164 samples, 0.01%)</title><rect x="95.0321%" y="645" width="0.0127%" height="15" fill="rgb(230,98,28)" fg:x="1228625" fg:w="164"/><text x="95.2821%" y="655.50"></text></g><g><title>_copy_to_user (358 samples, 0.03%)</title><rect x="95.0550%" y="629" width="0.0277%" height="15" fill="rgb(223,121,0)" fg:x="1228921" fg:w="358"/><text x="95.3050%" y="639.50"></text></g><g><title>copy_user_enhanced_fast_string (320 samples, 0.02%)</title><rect x="95.0580%" y="613" width="0.0248%" height="15" fill="rgb(234,173,33)" fg:x="1228959" fg:w="320"/><text x="95.3080%" y="623.50"></text></g><g><title>cp_new_stat (587 samples, 0.05%)</title><rect x="95.0474%" y="645" width="0.0454%" height="15" fill="rgb(245,47,8)" fg:x="1228822" fg:w="587"/><text x="95.2974%" y="655.50"></text></g><g><title>__fget_light (141 samples, 0.01%)</title><rect x="95.0963%" y="629" width="0.0109%" height="15" fill="rgb(205,17,20)" fg:x="1229454" fg:w="141"/><text x="95.3463%" y="639.50"></text></g><g><title>_raw_spin_lock (137 samples, 0.01%)</title><rect x="95.1762%" y="613" width="0.0106%" height="15" fill="rgb(232,151,16)" fg:x="1230488" fg:w="137"/><text x="95.4262%" y="623.50"></text></g><g><title>btrfs_getattr (1,204 samples, 0.09%)</title><rect x="95.1072%" y="629" width="0.0931%" height="15" fill="rgb(208,30,32)" fg:x="1229595" fg:w="1204"/><text x="95.3572%" y="639.50"></text></g><g><title>security_inode_getattr (565 samples, 0.04%)</title><rect x="95.2073%" y="629" width="0.0437%" height="15" fill="rgb(254,26,3)" fg:x="1230889" fg:w="565"/><text x="95.4573%" y="639.50"></text></g><g><title>tomoyo_path_perm (400 samples, 0.03%)</title><rect x="95.2200%" y="613" width="0.0309%" height="15" fill="rgb(240,177,30)" fg:x="1231054" fg:w="400"/><text x="95.4700%" y="623.50"></text></g><g><title>tomoyo_init_request_info (198 samples, 0.02%)</title><rect x="95.2356%" y="597" width="0.0153%" height="15" fill="rgb(248,76,44)" fg:x="1231256" fg:w="198"/><text x="95.4856%" y="607.50"></text></g><g><title>__do_sys_newfstat (2,891 samples, 0.22%)</title><rect x="95.0448%" y="661" width="0.2236%" height="15" fill="rgb(241,186,54)" fg:x="1228789" fg:w="2891"/><text x="95.2948%" y="671.50"></text></g><g><title>vfs_fstat (2,271 samples, 0.18%)</title><rect x="95.0928%" y="645" width="0.1757%" height="15" fill="rgb(249,171,29)" fg:x="1229409" fg:w="2271"/><text x="95.3428%" y="655.50"></text></g><g><title>vfs_getattr_nosec (226 samples, 0.02%)</title><rect x="95.2510%" y="629" width="0.0175%" height="15" fill="rgb(237,151,44)" fg:x="1231454" fg:w="226"/><text x="95.5010%" y="639.50"></text></g><g><title>__close_fd (205 samples, 0.02%)</title><rect x="95.2758%" y="645" width="0.0159%" height="15" fill="rgb(228,174,30)" fg:x="1231775" fg:w="205"/><text x="95.5258%" y="655.50"></text></g><g><title>pick_file (196 samples, 0.02%)</title><rect x="95.2765%" y="629" width="0.0152%" height="15" fill="rgb(252,14,37)" fg:x="1231784" fg:w="196"/><text x="95.5265%" y="639.50"></text></g><g><title>fput_many (343 samples, 0.03%)</title><rect x="95.2979%" y="629" width="0.0265%" height="15" fill="rgb(207,111,40)" fg:x="1232061" fg:w="343"/><text x="95.5479%" y="639.50"></text></g><g><title>task_work_add (233 samples, 0.02%)</title><rect x="95.3064%" y="613" width="0.0180%" height="15" fill="rgb(248,171,54)" fg:x="1232171" fg:w="233"/><text x="95.5564%" y="623.50"></text></g><g><title>__x64_sys_close (716 samples, 0.06%)</title><rect x="95.2739%" y="661" width="0.0554%" height="15" fill="rgb(211,127,2)" fg:x="1231751" fg:w="716"/><text x="95.5239%" y="671.50"></text></g><g><title>filp_close (486 samples, 0.04%)</title><rect x="95.2917%" y="645" width="0.0376%" height="15" fill="rgb(236,87,47)" fg:x="1231981" fg:w="486"/><text x="95.5417%" y="655.50"></text></g><g><title>bprm_execve (150 samples, 0.01%)</title><rect x="95.3295%" y="629" width="0.0116%" height="15" fill="rgb(223,190,45)" fg:x="1232469" fg:w="150"/><text x="95.5795%" y="639.50"></text></g><g><title>__x64_sys_execve (182 samples, 0.01%)</title><rect x="95.3293%" y="661" width="0.0141%" height="15" fill="rgb(215,5,16)" fg:x="1232467" fg:w="182"/><text x="95.5793%" y="671.50"></text></g><g><title>do_execveat_common (182 samples, 0.01%)</title><rect x="95.3293%" y="645" width="0.0141%" height="15" fill="rgb(252,82,33)" fg:x="1232467" fg:w="182"/><text x="95.5793%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (2,583 samples, 0.20%)</title><rect x="95.3727%" y="549" width="0.1998%" height="15" fill="rgb(247,213,44)" fg:x="1233028" fg:w="2583"/><text x="95.6227%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,556 samples, 0.20%)</title><rect x="95.3748%" y="533" width="0.1977%" height="15" fill="rgb(205,196,44)" fg:x="1233055" fg:w="2556"/><text x="95.6248%" y="543.50"></text></g><g><title>native_write_msr (2,550 samples, 0.20%)</title><rect x="95.3753%" y="517" width="0.1972%" height="15" fill="rgb(237,96,54)" fg:x="1233061" fg:w="2550"/><text x="95.6253%" y="527.50"></text></g><g><title>finish_task_switch (2,749 samples, 0.21%)</title><rect x="95.3695%" y="565" width="0.2126%" height="15" fill="rgb(230,113,34)" fg:x="1232986" fg:w="2749"/><text x="95.6195%" y="575.50"></text></g><g><title>futex_wait_queue_me (3,137 samples, 0.24%)</title><rect x="95.3524%" y="613" width="0.2426%" height="15" fill="rgb(221,224,12)" fg:x="1232765" fg:w="3137"/><text x="95.6024%" y="623.50"></text></g><g><title>schedule (3,109 samples, 0.24%)</title><rect x="95.3545%" y="597" width="0.2405%" height="15" fill="rgb(219,112,44)" fg:x="1232793" fg:w="3109"/><text x="95.6045%" y="607.50"></text></g><g><title>__schedule (3,104 samples, 0.24%)</title><rect x="95.3549%" y="581" width="0.2401%" height="15" fill="rgb(210,31,13)" fg:x="1232798" fg:w="3104"/><text x="95.6049%" y="591.50"></text></g><g><title>futex_wait (3,197 samples, 0.25%)</title><rect x="95.3502%" y="629" width="0.2473%" height="15" fill="rgb(230,25,16)" fg:x="1232737" fg:w="3197"/><text x="95.6002%" y="639.50"></text></g><g><title>__x64_sys_futex (3,559 samples, 0.28%)</title><rect x="95.3478%" y="661" width="0.2753%" height="15" fill="rgb(246,108,53)" fg:x="1232706" fg:w="3559"/><text x="95.5978%" y="671.50"></text></g><g><title>do_futex (3,542 samples, 0.27%)</title><rect x="95.3491%" y="645" width="0.2740%" height="15" fill="rgb(241,172,50)" fg:x="1232723" fg:w="3542"/><text x="95.5991%" y="655.50"></text></g><g><title>futex_wake (331 samples, 0.03%)</title><rect x="95.5975%" y="629" width="0.0256%" height="15" fill="rgb(235,141,10)" fg:x="1235934" fg:w="331"/><text x="95.8475%" y="639.50"></text></g><g><title>wake_up_q (285 samples, 0.02%)</title><rect x="95.6010%" y="613" width="0.0220%" height="15" fill="rgb(220,174,43)" fg:x="1235980" fg:w="285"/><text x="95.8510%" y="623.50"></text></g><g><title>try_to_wake_up (281 samples, 0.02%)</title><rect x="95.6014%" y="597" width="0.0217%" height="15" fill="rgb(215,181,40)" fg:x="1235984" fg:w="281"/><text x="95.8514%" y="607.50"></text></g><g><title>__split_vma (142 samples, 0.01%)</title><rect x="95.6294%" y="613" width="0.0110%" height="15" fill="rgb(230,97,2)" fg:x="1236347" fg:w="142"/><text x="95.8794%" y="623.50"></text></g><g><title>free_unref_page_list (159 samples, 0.01%)</title><rect x="95.6760%" y="565" width="0.0123%" height="15" fill="rgb(211,25,27)" fg:x="1236949" fg:w="159"/><text x="95.9260%" y="575.50"></text></g><g><title>tlb_finish_mmu (472 samples, 0.04%)</title><rect x="95.6563%" y="597" width="0.0365%" height="15" fill="rgb(230,87,26)" fg:x="1236694" fg:w="472"/><text x="95.9063%" y="607.50"></text></g><g><title>release_pages (398 samples, 0.03%)</title><rect x="95.6620%" y="581" width="0.0308%" height="15" fill="rgb(227,160,17)" fg:x="1236768" fg:w="398"/><text x="95.9120%" y="591.50"></text></g><g><title>unmap_page_range (262 samples, 0.02%)</title><rect x="95.6936%" y="581" width="0.0203%" height="15" fill="rgb(244,85,34)" fg:x="1237177" fg:w="262"/><text x="95.9436%" y="591.50"></text></g><g><title>unmap_region (880 samples, 0.07%)</title><rect x="95.6459%" y="613" width="0.0681%" height="15" fill="rgb(207,70,0)" fg:x="1236560" fg:w="880"/><text x="95.8959%" y="623.50"></text></g><g><title>unmap_vmas (267 samples, 0.02%)</title><rect x="95.6933%" y="597" width="0.0207%" height="15" fill="rgb(223,129,7)" fg:x="1237173" fg:w="267"/><text x="95.9433%" y="607.50"></text></g><g><title>__do_munmap (1,118 samples, 0.09%)</title><rect x="95.6277%" y="629" width="0.0865%" height="15" fill="rgb(246,105,7)" fg:x="1236325" fg:w="1118"/><text x="95.8777%" y="639.50"></text></g><g><title>__vm_munmap (1,124 samples, 0.09%)</title><rect x="95.6275%" y="645" width="0.0869%" height="15" fill="rgb(215,154,42)" fg:x="1236322" fg:w="1124"/><text x="95.8775%" y="655.50"></text></g><g><title>__x64_sys_munmap (1,131 samples, 0.09%)</title><rect x="95.6275%" y="661" width="0.0875%" height="15" fill="rgb(220,215,30)" fg:x="1236322" fg:w="1131"/><text x="95.8775%" y="671.50"></text></g><g><title>do_filp_open (221 samples, 0.02%)</title><rect x="95.7156%" y="629" width="0.0171%" height="15" fill="rgb(228,81,51)" fg:x="1237461" fg:w="221"/><text x="95.9656%" y="639.50"></text></g><g><title>path_openat (218 samples, 0.02%)</title><rect x="95.7158%" y="613" width="0.0169%" height="15" fill="rgb(247,71,54)" fg:x="1237464" fg:w="218"/><text x="95.9658%" y="623.50"></text></g><g><title>__x64_sys_open (252 samples, 0.02%)</title><rect x="95.7151%" y="661" width="0.0195%" height="15" fill="rgb(234,176,34)" fg:x="1237455" fg:w="252"/><text x="95.9651%" y="671.50"></text></g><g><title>do_sys_openat2 (252 samples, 0.02%)</title><rect x="95.7151%" y="645" width="0.0195%" height="15" fill="rgb(241,103,54)" fg:x="1237455" fg:w="252"/><text x="95.9651%" y="655.50"></text></g><g><title>_raw_spin_lock (133 samples, 0.01%)</title><rect x="95.7713%" y="613" width="0.0103%" height="15" fill="rgb(228,22,34)" fg:x="1238181" fg:w="133"/><text x="96.0213%" y="623.50"></text></g><g><title>__alloc_fd (519 samples, 0.04%)</title><rect x="95.7489%" y="629" width="0.0401%" height="15" fill="rgb(241,179,48)" fg:x="1237891" fg:w="519"/><text x="95.9989%" y="639.50"></text></g><g><title>__slab_alloc (348 samples, 0.03%)</title><rect x="95.8959%" y="549" width="0.0269%" height="15" fill="rgb(235,167,37)" fg:x="1239792" fg:w="348"/><text x="96.1459%" y="559.50"></text></g><g><title>___slab_alloc (322 samples, 0.02%)</title><rect x="95.8979%" y="533" width="0.0249%" height="15" fill="rgb(213,109,30)" fg:x="1239818" fg:w="322"/><text x="96.1479%" y="543.50"></text></g><g><title>__mod_memcg_lruvec_state (160 samples, 0.01%)</title><rect x="95.9708%" y="533" width="0.0124%" height="15" fill="rgb(222,172,16)" fg:x="1240761" fg:w="160"/><text x="96.2208%" y="543.50"></text></g><g><title>memcg_slab_post_alloc_hook (817 samples, 0.06%)</title><rect x="95.9231%" y="549" width="0.0632%" height="15" fill="rgb(233,192,5)" fg:x="1240144" fg:w="817"/><text x="96.1731%" y="559.50"></text></g><g><title>get_obj_cgroup_from_current (491 samples, 0.04%)</title><rect x="96.0033%" y="533" width="0.0380%" height="15" fill="rgb(247,189,41)" fg:x="1241181" fg:w="491"/><text x="96.2533%" y="543.50"></text></g><g><title>obj_cgroup_charge (225 samples, 0.02%)</title><rect x="96.0413%" y="533" width="0.0174%" height="15" fill="rgb(218,134,47)" fg:x="1241672" fg:w="225"/><text x="96.2913%" y="543.50"></text></g><g><title>kmem_cache_alloc (2,435 samples, 0.19%)</title><rect x="95.8708%" y="565" width="0.1883%" height="15" fill="rgb(216,29,3)" fg:x="1239468" fg:w="2435"/><text x="96.1208%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (833 samples, 0.06%)</title><rect x="95.9947%" y="549" width="0.0644%" height="15" fill="rgb(246,140,12)" fg:x="1241070" fg:w="833"/><text x="96.2447%" y="559.50"></text></g><g><title>apparmor_file_alloc_security (471 samples, 0.04%)</title><rect x="96.0675%" y="549" width="0.0364%" height="15" fill="rgb(230,136,11)" fg:x="1242010" fg:w="471"/><text x="96.3175%" y="559.50"></text></g><g><title>__alloc_file (3,604 samples, 0.28%)</title><rect x="95.8545%" y="581" width="0.2788%" height="15" fill="rgb(247,22,47)" fg:x="1239257" fg:w="3604"/><text x="96.1045%" y="591.50"></text></g><g><title>security_file_alloc (958 samples, 0.07%)</title><rect x="96.0592%" y="565" width="0.0741%" height="15" fill="rgb(218,84,22)" fg:x="1241903" fg:w="958"/><text x="96.3092%" y="575.50"></text></g><g><title>kmem_cache_alloc (380 samples, 0.03%)</title><rect x="96.1039%" y="549" width="0.0294%" height="15" fill="rgb(216,87,39)" fg:x="1242481" fg:w="380"/><text x="96.3539%" y="559.50"></text></g><g><title>alloc_empty_file (3,703 samples, 0.29%)</title><rect x="95.8483%" y="597" width="0.2864%" height="15" fill="rgb(221,178,8)" fg:x="1239177" fg:w="3703"/><text x="96.0983%" y="607.50"></text></g><g><title>__legitimize_mnt (235 samples, 0.02%)</title><rect x="96.1419%" y="549" width="0.0182%" height="15" fill="rgb(230,42,11)" fg:x="1242973" fg:w="235"/><text x="96.3919%" y="559.50"></text></g><g><title>__legitimize_path (398 samples, 0.03%)</title><rect x="96.1389%" y="565" width="0.0308%" height="15" fill="rgb(237,229,4)" fg:x="1242934" fg:w="398"/><text x="96.3889%" y="575.50"></text></g><g><title>complete_walk (481 samples, 0.04%)</title><rect x="96.1349%" y="597" width="0.0372%" height="15" fill="rgb(222,31,33)" fg:x="1242882" fg:w="481"/><text x="96.3849%" y="607.50"></text></g><g><title>try_to_unlazy (475 samples, 0.04%)</title><rect x="96.1354%" y="581" width="0.0367%" height="15" fill="rgb(210,17,39)" fg:x="1242888" fg:w="475"/><text x="96.3854%" y="591.50"></text></g><g><title>errseq_sample (428 samples, 0.03%)</title><rect x="96.2052%" y="581" width="0.0331%" height="15" fill="rgb(244,93,20)" fg:x="1243791" fg:w="428"/><text x="96.4552%" y="591.50"></text></g><g><title>apparmor_file_open (264 samples, 0.02%)</title><rect x="96.2655%" y="565" width="0.0204%" height="15" fill="rgb(210,40,47)" fg:x="1244570" fg:w="264"/><text x="96.5155%" y="575.50"></text></g><g><title>__srcu_read_lock (175 samples, 0.01%)</title><rect x="96.2993%" y="549" width="0.0135%" height="15" fill="rgb(239,211,47)" fg:x="1245008" fg:w="175"/><text x="96.5493%" y="559.50"></text></g><g><title>tomoyo_check_open_permission (619 samples, 0.05%)</title><rect x="96.2860%" y="565" width="0.0479%" height="15" fill="rgb(251,223,49)" fg:x="1244835" fg:w="619"/><text x="96.5360%" y="575.50"></text></g><g><title>security_file_open (1,004 samples, 0.08%)</title><rect x="96.2591%" y="581" width="0.0777%" height="15" fill="rgb(221,149,5)" fg:x="1244488" fg:w="1004"/><text x="96.5091%" y="591.50"></text></g><g><title>do_dentry_open (2,136 samples, 0.17%)</title><rect x="96.1721%" y="597" width="0.1652%" height="15" fill="rgb(219,224,51)" fg:x="1243363" fg:w="2136"/><text x="96.4221%" y="607.50"></text></g><g><title>do_truncate (130 samples, 0.01%)</title><rect x="96.3373%" y="597" width="0.0101%" height="15" fill="rgb(223,7,8)" fg:x="1245499" fg:w="130"/><text x="96.5873%" y="607.50"></text></g><g><title>inode_permission.part.0 (707 samples, 0.05%)</title><rect x="96.4055%" y="581" width="0.0547%" height="15" fill="rgb(241,217,22)" fg:x="1246380" fg:w="707"/><text x="96.6555%" y="591.50"></text></g><g><title>generic_permission (132 samples, 0.01%)</title><rect x="96.4499%" y="565" width="0.0102%" height="15" fill="rgb(248,209,0)" fg:x="1246955" fg:w="132"/><text x="96.6999%" y="575.50"></text></g><g><title>lookup_fast (1,008 samples, 0.08%)</title><rect x="96.4796%" y="565" width="0.0780%" height="15" fill="rgb(217,205,4)" fg:x="1247339" fg:w="1008"/><text x="96.7296%" y="575.50"></text></g><g><title>__d_lookup_rcu (842 samples, 0.07%)</title><rect x="96.4925%" y="549" width="0.0651%" height="15" fill="rgb(228,124,39)" fg:x="1247505" fg:w="842"/><text x="96.7425%" y="559.50"></text></g><g><title>link_path_walk.part.0 (2,889 samples, 0.22%)</title><rect x="96.3474%" y="597" width="0.2235%" height="15" fill="rgb(250,116,42)" fg:x="1245629" fg:w="2889"/><text x="96.5974%" y="607.50"></text></g><g><title>walk_component (1,360 samples, 0.11%)</title><rect x="96.4656%" y="581" width="0.1052%" height="15" fill="rgb(223,202,9)" fg:x="1247158" fg:w="1360"/><text x="96.7156%" y="591.50"></text></g><g><title>step_into (171 samples, 0.01%)</title><rect x="96.5576%" y="565" width="0.0132%" height="15" fill="rgb(242,222,40)" fg:x="1248347" fg:w="171"/><text x="96.8076%" y="575.50"></text></g><g><title>lookup_fast (1,633 samples, 0.13%)</title><rect x="96.5708%" y="597" width="0.1263%" height="15" fill="rgb(229,99,46)" fg:x="1248518" fg:w="1633"/><text x="96.8208%" y="607.50"></text></g><g><title>__d_lookup_rcu (1,576 samples, 0.12%)</title><rect x="96.5752%" y="581" width="0.1219%" height="15" fill="rgb(225,56,46)" fg:x="1248575" fg:w="1576"/><text x="96.8252%" y="591.50"></text></g><g><title>inode_permission.part.0 (181 samples, 0.01%)</title><rect x="96.7480%" y="581" width="0.0140%" height="15" fill="rgb(227,94,5)" fg:x="1250809" fg:w="181"/><text x="96.9980%" y="591.50"></text></g><g><title>may_open (846 samples, 0.07%)</title><rect x="96.6971%" y="597" width="0.0654%" height="15" fill="rgb(205,112,38)" fg:x="1250151" fg:w="846"/><text x="96.9471%" y="607.50"></text></g><g><title>__fget_light (314 samples, 0.02%)</title><rect x="96.7767%" y="581" width="0.0243%" height="15" fill="rgb(231,133,46)" fg:x="1251180" fg:w="314"/><text x="97.0267%" y="591.50"></text></g><g><title>__fget_files (285 samples, 0.02%)</title><rect x="96.7790%" y="565" width="0.0220%" height="15" fill="rgb(217,16,9)" fg:x="1251209" fg:w="285"/><text x="97.0290%" y="575.50"></text></g><g><title>path_init (595 samples, 0.05%)</title><rect x="96.7627%" y="597" width="0.0460%" height="15" fill="rgb(249,173,9)" fg:x="1250998" fg:w="595"/><text x="97.0127%" y="607.50"></text></g><g><title>dput (202 samples, 0.02%)</title><rect x="96.8179%" y="581" width="0.0156%" height="15" fill="rgb(205,163,53)" fg:x="1251712" fg:w="202"/><text x="97.0679%" y="591.50"></text></g><g><title>lockref_put_or_lock (131 samples, 0.01%)</title><rect x="96.8234%" y="565" width="0.0101%" height="15" fill="rgb(217,54,41)" fg:x="1251783" fg:w="131"/><text x="97.0734%" y="575.50"></text></g><g><title>terminate_walk (342 samples, 0.03%)</title><rect x="96.8137%" y="597" width="0.0265%" height="15" fill="rgb(228,216,12)" fg:x="1251658" fg:w="342"/><text x="97.0637%" y="607.50"></text></g><g><title>do_filp_open (13,335 samples, 1.03%)</title><rect x="95.8105%" y="629" width="1.0314%" height="15" fill="rgb(244,228,15)" fg:x="1238688" fg:w="13335"/><text x="96.0605%" y="639.50"></text></g><g><title>path_openat (13,134 samples, 1.02%)</title><rect x="95.8260%" y="613" width="1.0159%" height="15" fill="rgb(221,176,53)" fg:x="1238889" fg:w="13134"/><text x="96.0760%" y="623.50"></text></g><g><title>get_unused_fd_flags (135 samples, 0.01%)</title><rect x="96.8482%" y="629" width="0.0104%" height="15" fill="rgb(205,94,34)" fg:x="1252104" fg:w="135"/><text x="97.0982%" y="639.50"></text></g><g><title>memset_erms (1,109 samples, 0.09%)</title><rect x="96.8982%" y="597" width="0.0858%" height="15" fill="rgb(213,110,48)" fg:x="1252750" fg:w="1109"/><text x="97.1482%" y="607.50"></text></g><g><title>kmem_cache_alloc (1,641 samples, 0.13%)</title><rect x="96.8718%" y="613" width="0.1269%" height="15" fill="rgb(236,142,28)" fg:x="1252409" fg:w="1641"/><text x="97.1218%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (191 samples, 0.01%)</title><rect x="96.9840%" y="597" width="0.0148%" height="15" fill="rgb(225,135,29)" fg:x="1253859" fg:w="191"/><text x="97.2340%" y="607.50"></text></g><g><title>__check_heap_object (150 samples, 0.01%)</title><rect x="97.0353%" y="581" width="0.0116%" height="15" fill="rgb(252,45,31)" fg:x="1254523" fg:w="150"/><text x="97.2853%" y="591.50"></text></g><g><title>__virt_addr_valid (265 samples, 0.02%)</title><rect x="97.0469%" y="581" width="0.0205%" height="15" fill="rgb(211,187,50)" fg:x="1254673" fg:w="265"/><text x="97.2969%" y="591.50"></text></g><g><title>getname_flags.part.0 (2,655 samples, 0.21%)</title><rect x="96.8642%" y="629" width="0.2054%" height="15" fill="rgb(229,109,7)" fg:x="1252311" fg:w="2655"/><text x="97.1142%" y="639.50"></text></g><g><title>strncpy_from_user (916 samples, 0.07%)</title><rect x="96.9987%" y="613" width="0.0709%" height="15" fill="rgb(251,131,51)" fg:x="1254050" fg:w="916"/><text x="97.2487%" y="623.50"></text></g><g><title>__check_object_size (564 samples, 0.04%)</title><rect x="97.0260%" y="597" width="0.0436%" height="15" fill="rgb(251,180,35)" fg:x="1254402" fg:w="564"/><text x="97.2760%" y="607.50"></text></g><g><title>kmem_cache_free (427 samples, 0.03%)</title><rect x="97.0696%" y="629" width="0.0330%" height="15" fill="rgb(211,46,32)" fg:x="1254966" fg:w="427"/><text x="97.3196%" y="639.50"></text></g><g><title>__x64_sys_openat (17,739 samples, 1.37%)</title><rect x="95.7346%" y="661" width="1.3721%" height="15" fill="rgb(248,123,17)" fg:x="1237707" fg:w="17739"/><text x="95.9846%" y="671.50"></text></g><g><title>do_sys_openat2 (17,688 samples, 1.37%)</title><rect x="95.7386%" y="645" width="1.3681%" height="15" fill="rgb(227,141,18)" fg:x="1237758" fg:w="17688"/><text x="95.9886%" y="655.50"></text></g><g><title>__fget_files (1,133 samples, 0.09%)</title><rect x="97.2072%" y="613" width="0.0876%" height="15" fill="rgb(216,102,9)" fg:x="1256745" fg:w="1133"/><text x="97.4572%" y="623.50"></text></g><g><title>__fget_light (1,366 samples, 0.11%)</title><rect x="97.1893%" y="629" width="0.1057%" height="15" fill="rgb(253,47,13)" fg:x="1256514" fg:w="1366"/><text x="97.4393%" y="639.50"></text></g><g><title>_cond_resched (130 samples, 0.01%)</title><rect x="97.3424%" y="613" width="0.0101%" height="15" fill="rgb(226,93,23)" fg:x="1258493" fg:w="130"/><text x="97.5924%" y="623.50"></text></g><g><title>__fdget_pos (2,434 samples, 0.19%)</title><rect x="97.1646%" y="645" width="0.1883%" height="15" fill="rgb(247,104,17)" fg:x="1256194" fg:w="2434"/><text x="97.4146%" y="655.50"></text></g><g><title>mutex_lock (744 samples, 0.06%)</title><rect x="97.2953%" y="629" width="0.0575%" height="15" fill="rgb(233,203,26)" fg:x="1257884" fg:w="744"/><text x="97.5453%" y="639.50"></text></g><g><title>fput_many (550 samples, 0.04%)</title><rect x="97.3554%" y="645" width="0.0425%" height="15" fill="rgb(244,98,49)" fg:x="1258661" fg:w="550"/><text x="97.6054%" y="655.50"></text></g><g><title>mutex_unlock (589 samples, 0.05%)</title><rect x="97.3979%" y="645" width="0.0456%" height="15" fill="rgb(235,134,22)" fg:x="1259211" fg:w="589"/><text x="97.6479%" y="655.50"></text></g><g><title>__fsnotify_parent (1,069 samples, 0.08%)</title><rect x="97.5357%" y="629" width="0.0827%" height="15" fill="rgb(221,70,32)" fg:x="1260992" fg:w="1069"/><text x="97.7857%" y="639.50"></text></g><g><title>btrfs_file_read_iter (206 samples, 0.02%)</title><rect x="97.6976%" y="613" width="0.0159%" height="15" fill="rgb(238,15,50)" fg:x="1263085" fg:w="206"/><text x="97.9476%" y="623.50"></text></g><g><title>_cond_resched (170 samples, 0.01%)</title><rect x="97.8995%" y="597" width="0.0131%" height="15" fill="rgb(215,221,48)" fg:x="1265696" fg:w="170"/><text x="98.1495%" y="607.50"></text></g><g><title>_cond_resched (170 samples, 0.01%)</title><rect x="97.9957%" y="581" width="0.0131%" height="15" fill="rgb(236,73,3)" fg:x="1266939" fg:w="170"/><text x="98.2457%" y="591.50"></text></g><g><title>handle_mm_fault (153 samples, 0.01%)</title><rect x="98.4975%" y="517" width="0.0118%" height="15" fill="rgb(250,107,11)" fg:x="1273427" fg:w="153"/><text x="98.7475%" y="527.50"></text></g><g><title>asm_exc_page_fault (340 samples, 0.03%)</title><rect x="98.4837%" y="565" width="0.0263%" height="15" fill="rgb(242,39,14)" fg:x="1273248" fg:w="340"/><text x="98.7337%" y="575.50"></text></g><g><title>exc_page_fault (176 samples, 0.01%)</title><rect x="98.4963%" y="549" width="0.0136%" height="15" fill="rgb(248,164,37)" fg:x="1273412" fg:w="176"/><text x="98.7463%" y="559.50"></text></g><g><title>do_user_addr_fault (173 samples, 0.01%)</title><rect x="98.4966%" y="533" width="0.0134%" height="15" fill="rgb(217,60,12)" fg:x="1273415" fg:w="173"/><text x="98.7466%" y="543.50"></text></g><g><title>copy_user_enhanced_fast_string (6,511 samples, 0.50%)</title><rect x="98.0091%" y="581" width="0.5036%" height="15" fill="rgb(240,125,29)" fg:x="1267113" fg:w="6511"/><text x="98.2591%" y="591.50"></text></g><g><title>copy_page_to_iter (7,800 samples, 0.60%)</title><rect x="97.9145%" y="597" width="0.6033%" height="15" fill="rgb(208,207,28)" fg:x="1265889" fg:w="7800"/><text x="98.1645%" y="607.50"></text></g><g><title>pagecache_get_page (4,309 samples, 0.33%)</title><rect x="98.5262%" y="597" width="0.3333%" height="15" fill="rgb(209,159,27)" fg:x="1273798" fg:w="4309"/><text x="98.7762%" y="607.50"></text></g><g><title>find_get_entry (3,676 samples, 0.28%)</title><rect x="98.5752%" y="581" width="0.2843%" height="15" fill="rgb(251,176,53)" fg:x="1274431" fg:w="3676"/><text x="98.8252%" y="591.50"></text></g><g><title>xas_load (945 samples, 0.07%)</title><rect x="98.7864%" y="565" width="0.0731%" height="15" fill="rgb(211,85,7)" fg:x="1277162" fg:w="945"/><text x="99.0364%" y="575.50"></text></g><g><title>xas_start (676 samples, 0.05%)</title><rect x="98.8072%" y="549" width="0.0523%" height="15" fill="rgb(216,64,54)" fg:x="1277431" fg:w="676"/><text x="99.0572%" y="559.50"></text></g><g><title>atime_needs_update (1,104 samples, 0.09%)</title><rect x="98.8812%" y="581" width="0.0854%" height="15" fill="rgb(217,54,24)" fg:x="1278388" fg:w="1104"/><text x="99.1312%" y="591.50"></text></g><g><title>current_time (616 samples, 0.05%)</title><rect x="98.9190%" y="565" width="0.0476%" height="15" fill="rgb(208,206,53)" fg:x="1278876" fg:w="616"/><text x="99.1690%" y="575.50"></text></g><g><title>ktime_get_coarse_real_ts64 (209 samples, 0.02%)</title><rect x="98.9505%" y="549" width="0.0162%" height="15" fill="rgb(251,74,39)" fg:x="1279283" fg:w="209"/><text x="99.2005%" y="559.50"></text></g><g><title>btrfs_block_rsv_add (191 samples, 0.01%)</title><rect x="98.9846%" y="533" width="0.0148%" height="15" fill="rgb(226,47,5)" fg:x="1279725" fg:w="191"/><text x="99.2346%" y="543.50"></text></g><g><title>btrfs_reserve_metadata_bytes (166 samples, 0.01%)</title><rect x="98.9866%" y="517" width="0.0128%" height="15" fill="rgb(234,111,33)" fg:x="1279750" fg:w="166"/><text x="99.2366%" y="527.50"></text></g><g><title>__reserve_bytes (158 samples, 0.01%)</title><rect x="98.9872%" y="501" width="0.0122%" height="15" fill="rgb(251,14,10)" fg:x="1279758" fg:w="158"/><text x="99.2372%" y="511.50"></text></g><g><title>btrfs_delayed_update_inode (397 samples, 0.03%)</title><rect x="98.9745%" y="549" width="0.0307%" height="15" fill="rgb(232,43,0)" fg:x="1279594" fg:w="397"/><text x="99.2245%" y="559.50"></text></g><g><title>btrfs_update_inode (440 samples, 0.03%)</title><rect x="98.9739%" y="565" width="0.0340%" height="15" fill="rgb(222,68,43)" fg:x="1279586" fg:w="440"/><text x="99.2239%" y="575.50"></text></g><g><title>btrfs_dirty_inode (762 samples, 0.06%)</title><rect x="98.9666%" y="581" width="0.0589%" height="15" fill="rgb(217,24,23)" fg:x="1279492" fg:w="762"/><text x="99.2166%" y="591.50"></text></g><g><title>generic_file_buffered_read (16,974 samples, 1.31%)</title><rect x="97.7135%" y="613" width="1.3129%" height="15" fill="rgb(229,209,14)" fg:x="1263291" fg:w="16974"/><text x="97.9635%" y="623.50"></text></g><g><title>touch_atime (2,158 samples, 0.17%)</title><rect x="98.8595%" y="597" width="0.1669%" height="15" fill="rgb(250,149,48)" fg:x="1278107" fg:w="2158"/><text x="99.1095%" y="607.50"></text></g><g><title>new_sync_read (18,334 samples, 1.42%)</title><rect x="97.6193%" y="629" width="1.4181%" height="15" fill="rgb(210,120,37)" fg:x="1262073" fg:w="18334"/><text x="97.8693%" y="639.50"></text></g><g><title>iov_iter_init (142 samples, 0.01%)</title><rect x="99.0264%" y="613" width="0.0110%" height="15" fill="rgb(210,21,8)" fg:x="1280265" fg:w="142"/><text x="99.2764%" y="623.50"></text></g><g><title>rw_verify_area (233 samples, 0.02%)</title><rect x="99.0374%" y="629" width="0.0180%" height="15" fill="rgb(243,145,7)" fg:x="1280407" fg:w="233"/><text x="99.2874%" y="639.50"></text></g><g><title>aa_file_perm (308 samples, 0.02%)</title><rect x="99.1673%" y="597" width="0.0238%" height="15" fill="rgb(238,178,32)" fg:x="1282086" fg:w="308"/><text x="99.4173%" y="607.50"></text></g><g><title>apparmor_file_permission (1,302 samples, 0.10%)</title><rect x="99.0905%" y="613" width="0.1007%" height="15" fill="rgb(222,4,10)" fg:x="1281094" fg:w="1302"/><text x="99.3405%" y="623.50"></text></g><g><title>security_file_permission (1,757 samples, 0.14%)</title><rect x="99.0554%" y="629" width="0.1359%" height="15" fill="rgb(239,7,37)" fg:x="1280640" fg:w="1757"/><text x="99.3054%" y="639.50"></text></g><g><title>ksys_read (26,633 samples, 2.06%)</title><rect x="97.1315%" y="661" width="2.0600%" height="15" fill="rgb(215,31,37)" fg:x="1255767" fg:w="26633"/><text x="97.3815%" y="671.50">k..</text></g><g><title>vfs_read (22,600 samples, 1.75%)</title><rect x="97.4435%" y="645" width="1.7481%" height="15" fill="rgb(224,83,33)" fg:x="1259800" fg:w="22600"/><text x="97.6935%" y="655.50"></text></g><g><title>syscall_enter_from_user_mode (231 samples, 0.02%)</title><rect x="99.1926%" y="661" width="0.0179%" height="15" fill="rgb(239,55,3)" fg:x="1282413" fg:w="231"/><text x="99.4426%" y="671.50"></text></g><g><title>perf_iterate_sb (131 samples, 0.01%)</title><rect x="99.2246%" y="597" width="0.0101%" height="15" fill="rgb(247,92,11)" fg:x="1282827" fg:w="131"/><text x="99.4746%" y="607.50"></text></g><g><title>perf_event_mmap (163 samples, 0.01%)</title><rect x="99.2225%" y="613" width="0.0126%" height="15" fill="rgb(239,200,7)" fg:x="1282800" fg:w="163"/><text x="99.4725%" y="623.50"></text></g><g><title>do_mmap (433 samples, 0.03%)</title><rect x="99.2110%" y="645" width="0.0335%" height="15" fill="rgb(227,115,8)" fg:x="1282651" fg:w="433"/><text x="99.4610%" y="655.50"></text></g><g><title>mmap_region (330 samples, 0.03%)</title><rect x="99.2189%" y="629" width="0.0255%" height="15" fill="rgb(215,189,27)" fg:x="1282754" fg:w="330"/><text x="99.4689%" y="639.50"></text></g><g><title>do_syscall_64 (54,874 samples, 4.24%)</title><rect x="95.0035%" y="677" width="4.2444%" height="15" fill="rgb(251,216,39)" fg:x="1228255" fg:w="54874"/><text x="95.2535%" y="687.50">do_sy..</text></g><g><title>vm_mmap_pgoff (485 samples, 0.04%)</title><rect x="99.2104%" y="661" width="0.0375%" height="15" fill="rgb(207,29,47)" fg:x="1282644" fg:w="485"/><text x="99.4604%" y="671.50"></text></g><g><title>fpregs_assert_state_consistent (225 samples, 0.02%)</title><rect x="99.3170%" y="645" width="0.0174%" height="15" fill="rgb(210,71,34)" fg:x="1284022" fg:w="225"/><text x="99.5670%" y="655.50"></text></g><g><title>btrfs_release_file (467 samples, 0.04%)</title><rect x="99.3851%" y="613" width="0.0361%" height="15" fill="rgb(253,217,51)" fg:x="1284902" fg:w="467"/><text x="99.6351%" y="623.50"></text></g><g><title>lockref_put_or_lock (131 samples, 0.01%)</title><rect x="99.4372%" y="597" width="0.0101%" height="15" fill="rgb(222,117,46)" fg:x="1285576" fg:w="131"/><text x="99.6872%" y="607.50"></text></g><g><title>dput (345 samples, 0.03%)</title><rect x="99.4212%" y="613" width="0.0267%" height="15" fill="rgb(226,132,6)" fg:x="1285369" fg:w="345"/><text x="99.6712%" y="623.50"></text></g><g><title>kmem_cache_free (288 samples, 0.02%)</title><rect x="99.4479%" y="613" width="0.0223%" height="15" fill="rgb(254,145,51)" fg:x="1285714" fg:w="288"/><text x="99.6979%" y="623.50"></text></g><g><title>apparmor_file_free_security (334 samples, 0.03%)</title><rect x="99.4979%" y="597" width="0.0258%" height="15" fill="rgb(231,199,27)" fg:x="1286360" fg:w="334"/><text x="99.7479%" y="607.50"></text></g><g><title>__fput (2,138 samples, 0.17%)</title><rect x="99.3584%" y="629" width="0.1654%" height="15" fill="rgb(245,158,14)" fg:x="1284557" fg:w="2138"/><text x="99.6084%" y="639.50"></text></g><g><title>security_file_free (401 samples, 0.03%)</title><rect x="99.4927%" y="613" width="0.0310%" height="15" fill="rgb(240,113,14)" fg:x="1286294" fg:w="401"/><text x="99.7427%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59,645 samples, 4.61%)</title><rect x="94.9568%" y="693" width="4.6134%" height="15" fill="rgb(210,20,13)" fg:x="1227651" fg:w="59645"/><text x="95.2068%" y="703.50">entry..</text></g><g><title>syscall_exit_to_user_mode (4,167 samples, 0.32%)</title><rect x="99.2479%" y="677" width="0.3223%" height="15" fill="rgb(241,144,13)" fg:x="1283129" fg:w="4167"/><text x="99.4979%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (3,900 samples, 0.30%)</title><rect x="99.2686%" y="661" width="0.3017%" height="15" fill="rgb(235,43,34)" fg:x="1283396" fg:w="3900"/><text x="99.5186%" y="671.50"></text></g><g><title>task_work_run (2,870 samples, 0.22%)</title><rect x="99.3483%" y="645" width="0.2220%" height="15" fill="rgb(208,36,20)" fg:x="1284426" fg:w="2870"/><text x="99.5983%" y="655.50"></text></g><g><title>call_rcu (497 samples, 0.04%)</title><rect x="99.5318%" y="629" width="0.0384%" height="15" fill="rgb(239,204,10)" fg:x="1286799" fg:w="497"/><text x="99.7818%" y="639.50"></text></g><g><title>rcu_segcblist_enqueue (204 samples, 0.02%)</title><rect x="99.5545%" y="613" width="0.0158%" height="15" fill="rgb(217,84,43)" fg:x="1287092" fg:w="204"/><text x="99.8045%" y="623.50"></text></g><g><title>error_entry (354 samples, 0.03%)</title><rect x="99.5703%" y="693" width="0.0274%" height="15" fill="rgb(241,170,50)" fg:x="1287296" fg:w="354"/><text x="99.8203%" y="703.50"></text></g><g><title>sync_regs (317 samples, 0.02%)</title><rect x="99.5731%" y="677" width="0.0245%" height="15" fill="rgb(226,205,29)" fg:x="1287333" fg:w="317"/><text x="99.8231%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (1,066 samples, 0.08%)</title><rect x="99.6064%" y="645" width="0.0825%" height="15" fill="rgb(233,113,1)" fg:x="1287763" fg:w="1066"/><text x="99.8564%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,034 samples, 0.08%)</title><rect x="99.6088%" y="629" width="0.0800%" height="15" fill="rgb(253,98,13)" fg:x="1287795" fg:w="1034"/><text x="99.8588%" y="639.50"></text></g><g><title>native_write_msr (1,020 samples, 0.08%)</title><rect x="99.6099%" y="613" width="0.0789%" height="15" fill="rgb(211,115,12)" fg:x="1287809" fg:w="1020"/><text x="99.8599%" y="623.50"></text></g><g><title>schedule_tail (1,138 samples, 0.09%)</title><rect x="99.6041%" y="677" width="0.0880%" height="15" fill="rgb(208,12,16)" fg:x="1287733" fg:w="1138"/><text x="99.8541%" y="687.50"></text></g><g><title>finish_task_switch (1,135 samples, 0.09%)</title><rect x="99.6043%" y="661" width="0.0878%" height="15" fill="rgb(237,193,54)" fg:x="1287736" fg:w="1135"/><text x="99.8543%" y="671.50"></text></g><g><title>ret_from_fork (1,167 samples, 0.09%)</title><rect x="99.6029%" y="693" width="0.0903%" height="15" fill="rgb(243,22,42)" fg:x="1287718" fg:w="1167"/><text x="99.8529%" y="703.50"></text></g><g><title>syscall_return_via_sysret (794 samples, 0.06%)</title><rect x="99.6932%" y="693" width="0.0614%" height="15" fill="rgb(233,151,36)" fg:x="1288885" fg:w="794"/><text x="99.9432%" y="703.50"></text></g><g><title>[zig] (118,365 samples, 9.16%)</title><rect x="90.5994%" y="709" width="9.1553%" height="15" fill="rgb(237,57,45)" fg:x="1171316" fg:w="118365"/><text x="90.8494%" y="719.50">[zig]</text></g><g><title>asm_exc_page_fault (875 samples, 0.07%)</title><rect x="99.7551%" y="709" width="0.0677%" height="15" fill="rgb(221,88,17)" fg:x="1289686" fg:w="875"/><text x="100.0051%" y="719.50"></text></g><g><title>mmput (313 samples, 0.02%)</title><rect x="99.8446%" y="597" width="0.0242%" height="15" fill="rgb(230,79,15)" fg:x="1290843" fg:w="313"/><text x="100.0946%" y="607.50"></text></g><g><title>exit_mmap (312 samples, 0.02%)</title><rect x="99.8447%" y="581" width="0.0241%" height="15" fill="rgb(213,57,13)" fg:x="1290844" fg:w="312"/><text x="100.0947%" y="591.50"></text></g><g><title>unmap_vmas (229 samples, 0.02%)</title><rect x="99.8511%" y="565" width="0.0177%" height="15" fill="rgb(222,116,39)" fg:x="1290927" fg:w="229"/><text x="100.1011%" y="575.50"></text></g><g><title>unmap_page_range (228 samples, 0.02%)</title><rect x="99.8512%" y="549" width="0.0176%" height="15" fill="rgb(245,107,2)" fg:x="1290928" fg:w="228"/><text x="100.1012%" y="559.50"></text></g><g><title>begin_new_exec (316 samples, 0.02%)</title><rect x="99.8446%" y="613" width="0.0244%" height="15" fill="rgb(238,1,10)" fg:x="1290843" fg:w="316"/><text x="100.0946%" y="623.50"></text></g><g><title>__x64_sys_execve (373 samples, 0.03%)</title><rect x="99.8431%" y="677" width="0.0289%" height="15" fill="rgb(249,4,48)" fg:x="1290823" fg:w="373"/><text x="100.0931%" y="687.50"></text></g><g><title>do_execveat_common (373 samples, 0.03%)</title><rect x="99.8431%" y="661" width="0.0289%" height="15" fill="rgb(223,151,18)" fg:x="1290823" fg:w="373"/><text x="100.0931%" y="671.50"></text></g><g><title>bprm_execve (373 samples, 0.03%)</title><rect x="99.8431%" y="645" width="0.0289%" height="15" fill="rgb(227,65,43)" fg:x="1290823" fg:w="373"/><text x="100.0931%" y="655.50"></text></g><g><title>load_elf_binary (373 samples, 0.03%)</title><rect x="99.8431%" y="629" width="0.0289%" height="15" fill="rgb(218,40,45)" fg:x="1290823" fg:w="373"/><text x="100.0931%" y="639.50"></text></g><g><title>tlb_finish_mmu (155 samples, 0.01%)</title><rect x="99.8768%" y="597" width="0.0120%" height="15" fill="rgb(252,121,31)" fg:x="1291259" fg:w="155"/><text x="100.1268%" y="607.50"></text></g><g><title>page_remove_rmap (157 samples, 0.01%)</title><rect x="99.9161%" y="565" width="0.0121%" height="15" fill="rgb(219,158,43)" fg:x="1291767" fg:w="157"/><text x="100.1661%" y="575.50"></text></g><g><title>exit_mmap (772 samples, 0.06%)</title><rect x="99.8757%" y="613" width="0.0597%" height="15" fill="rgb(231,162,42)" fg:x="1291245" fg:w="772"/><text x="100.1257%" y="623.50"></text></g><g><title>unmap_vmas (603 samples, 0.05%)</title><rect x="99.8888%" y="597" width="0.0466%" height="15" fill="rgb(217,179,25)" fg:x="1291414" fg:w="603"/><text x="100.1388%" y="607.50"></text></g><g><title>unmap_page_range (603 samples, 0.05%)</title><rect x="99.8888%" y="581" width="0.0466%" height="15" fill="rgb(206,212,31)" fg:x="1291414" fg:w="603"/><text x="100.1388%" y="591.50"></text></g><g><title>mmput (774 samples, 0.06%)</title><rect x="99.8756%" y="629" width="0.0599%" height="15" fill="rgb(235,144,12)" fg:x="1291244" fg:w="774"/><text x="100.1256%" y="639.50"></text></g><g><title>__x64_sys_exit_group (793 samples, 0.06%)</title><rect x="99.8745%" y="677" width="0.0613%" height="15" fill="rgb(213,51,10)" fg:x="1291229" fg:w="793"/><text x="100.1245%" y="687.50"></text></g><g><title>do_group_exit (793 samples, 0.06%)</title><rect x="99.8745%" y="661" width="0.0613%" height="15" fill="rgb(231,145,14)" fg:x="1291229" fg:w="793"/><text x="100.1245%" y="671.50"></text></g><g><title>do_exit (793 samples, 0.06%)</title><rect x="99.8745%" y="645" width="0.0613%" height="15" fill="rgb(235,15,28)" fg:x="1291229" fg:w="793"/><text x="100.1245%" y="655.50"></text></g><g><title>do_syscall_64 (1,203 samples, 0.09%)</title><rect x="99.8431%" y="693" width="0.0931%" height="15" fill="rgb(237,206,10)" fg:x="1290823" fg:w="1203"/><text x="100.0931%" y="703.50"></text></g><g><title>mmput (292 samples, 0.02%)</title><rect x="99.9390%" y="597" width="0.0226%" height="15" fill="rgb(236,227,27)" fg:x="1292063" fg:w="292"/><text x="100.1890%" y="607.50"></text></g><g><title>exit_mmap (292 samples, 0.02%)</title><rect x="99.9390%" y="581" width="0.0226%" height="15" fill="rgb(246,83,35)" fg:x="1292063" fg:w="292"/><text x="100.1890%" y="591.50"></text></g><g><title>unmap_vmas (218 samples, 0.02%)</title><rect x="99.9447%" y="565" width="0.0169%" height="15" fill="rgb(220,136,24)" fg:x="1292137" fg:w="218"/><text x="100.1947%" y="575.50"></text></g><g><title>unmap_page_range (217 samples, 0.02%)</title><rect x="99.9448%" y="549" width="0.0168%" height="15" fill="rgb(217,3,25)" fg:x="1292138" fg:w="217"/><text x="100.1948%" y="559.50"></text></g><g><title>arch_do_signal (340 samples, 0.03%)</title><rect x="99.9361%" y="661" width="0.0263%" height="15" fill="rgb(239,24,14)" fg:x="1292026" fg:w="340"/><text x="100.1861%" y="671.50"></text></g><g><title>get_signal (340 samples, 0.03%)</title><rect x="99.9361%" y="645" width="0.0263%" height="15" fill="rgb(244,16,53)" fg:x="1292026" fg:w="340"/><text x="100.1861%" y="655.50"></text></g><g><title>do_group_exit (340 samples, 0.03%)</title><rect x="99.9361%" y="629" width="0.0263%" height="15" fill="rgb(208,175,44)" fg:x="1292026" fg:w="340"/><text x="100.1861%" y="639.50"></text></g><g><title>do_exit (340 samples, 0.03%)</title><rect x="99.9361%" y="613" width="0.0263%" height="15" fill="rgb(252,18,48)" fg:x="1292026" fg:w="340"/><text x="100.1861%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,794 samples, 0.14%)</title><rect x="99.8237%" y="709" width="0.1388%" height="15" fill="rgb(234,199,32)" fg:x="1290573" fg:w="1794"/><text x="100.0737%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (341 samples, 0.03%)</title><rect x="99.9361%" y="693" width="0.0264%" height="15" fill="rgb(225,77,54)" fg:x="1292026" fg:w="341"/><text x="100.1861%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (341 samples, 0.03%)</title><rect x="99.9361%" y="677" width="0.0264%" height="15" fill="rgb(225,42,25)" fg:x="1292026" fg:w="341"/><text x="100.1861%" y="687.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (352 samples, 0.03%)</title><rect x="99.9625%" y="709" width="0.0272%" height="15" fill="rgb(242,227,46)" fg:x="1292367" fg:w="352"/><text x="100.2125%" y="719.50"></text></g><g><title>all (1,292,852 samples, 100%)</title><rect x="0.0000%" y="741" width="100.0000%" height="15" fill="rgb(246,197,35)" fg:x="0" fg:w="1292852"/><text x="0.2500%" y="751.50"></text></g><g><title>zig (121,536 samples, 9.40%)</title><rect x="90.5994%" y="725" width="9.4006%" height="15" fill="rgb(215,159,26)" fg:x="1171316" fg:w="121536"/><text x="90.8494%" y="735.50">zig</text></g></svg></svg> |