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

491 lines
807 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="694" onload="init(evt)" viewBox="0 0 1200 694" 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="694" 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="677.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="677.00"> </text><svg id="frames" x="10" width="1180" total_samples="2397237"><g><title>[anon] (1,500 samples, 0.06%)</title><rect x="0.0101%" y="613" width="0.0626%" height="15" fill="rgb(227,0,7)" fg:x="243" fg:w="1500"/><text x="0.2601%" y="623.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (423 samples, 0.02%)</title><rect x="0.1013%" y="421" width="0.0176%" height="15" fill="rgb(217,0,24)" fg:x="2429" fg:w="423"/><text x="0.3513%" y="431.50"></text></g><g><title>GraphBuilder::invoke (250 samples, 0.01%)</title><rect x="0.1893%" y="117" width="0.0104%" height="15" fill="rgb(221,193,54)" fg:x="4538" fg:w="250"/><text x="0.4393%" y="127.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (363 samples, 0.02%)</title><rect x="0.1855%" y="149" width="0.0151%" height="15" fill="rgb(248,212,6)" fg:x="4447" fg:w="363"/><text x="0.4355%" y="159.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (360 samples, 0.02%)</title><rect x="0.1856%" y="133" width="0.0150%" height="15" fill="rgb(208,68,35)" fg:x="4450" fg:w="360"/><text x="0.4356%" y="143.50"></text></g><g><title>GraphBuilder::try_inline_full (470 samples, 0.02%)</title><rect x="0.1848%" y="165" width="0.0196%" height="15" fill="rgb(232,128,0)" fg:x="4431" fg:w="470"/><text x="0.4348%" y="175.50"></text></g><g><title>GraphBuilder::try_inline (518 samples, 0.02%)</title><rect x="0.1847%" y="181" width="0.0216%" height="15" fill="rgb(207,160,47)" fg:x="4427" fg:w="518"/><text x="0.4347%" y="191.50"></text></g><g><title>GraphBuilder::invoke (681 samples, 0.03%)</title><rect x="0.1838%" y="197" width="0.0284%" height="15" fill="rgb(228,23,34)" fg:x="4405" fg:w="681"/><text x="0.4338%" y="207.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (894 samples, 0.04%)</title><rect x="0.1765%" y="229" width="0.0373%" height="15" fill="rgb(218,30,26)" fg:x="4232" fg:w="894"/><text x="0.4265%" y="239.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (884 samples, 0.04%)</title><rect x="0.1770%" y="213" width="0.0369%" height="15" fill="rgb(220,122,19)" fg:x="4242" fg:w="884"/><text x="0.4270%" y="223.50"></text></g><g><title>GraphBuilder::try_inline_full (1,108 samples, 0.05%)</title><rect x="0.1752%" y="245" width="0.0462%" height="15" fill="rgb(250,228,42)" fg:x="4200" fg:w="1108"/><text x="0.4252%" y="255.50"></text></g><g><title>GraphBuilder::try_inline (1,161 samples, 0.05%)</title><rect x="0.1749%" y="261" width="0.0484%" height="15" fill="rgb(240,193,28)" fg:x="4192" fg:w="1161"/><text x="0.4249%" y="271.50"></text></g><g><title>GraphBuilder::invoke (1,492 samples, 0.06%)</title><rect x="0.1727%" y="277" width="0.0622%" height="15" fill="rgb(216,20,37)" fg:x="4140" fg:w="1492"/><text x="0.4227%" y="287.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,881 samples, 0.08%)</title><rect x="0.1601%" y="293" width="0.0785%" height="15" fill="rgb(206,188,39)" fg:x="3838" fg:w="1881"/><text x="0.4101%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,891 samples, 0.08%)</title><rect x="0.1597%" y="309" width="0.0789%" height="15" fill="rgb(217,207,13)" fg:x="3829" fg:w="1891"/><text x="0.4097%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (2,360 samples, 0.10%)</title><rect x="0.1566%" y="325" width="0.0984%" height="15" fill="rgb(231,73,38)" fg:x="3754" fg:w="2360"/><text x="0.4066%" y="335.50"></text></g><g><title>GraphBuilder::try_inline (2,378 samples, 0.10%)</title><rect x="0.1563%" y="341" width="0.0992%" height="15" fill="rgb(225,20,46)" fg:x="3746" fg:w="2378"/><text x="0.4063%" y="351.50"></text></g><g><title>ciEnv::get_method_by_index_impl (375 samples, 0.02%)</title><rect x="0.2598%" y="325" width="0.0156%" height="15" fill="rgb(210,31,41)" fg:x="6228" fg:w="375"/><text x="0.5098%" y="335.50"></text></g><g><title>ciBytecodeStream::get_method (405 samples, 0.02%)</title><rect x="0.2586%" y="341" width="0.0169%" height="15" fill="rgb(221,200,47)" fg:x="6199" fg:w="405"/><text x="0.5086%" y="351.50"></text></g><g><title>GraphBuilder::invoke (3,067 samples, 0.13%)</title><rect x="0.1518%" y="357" width="0.1279%" height="15" fill="rgb(226,26,5)" fg:x="3639" fg:w="3067"/><text x="0.4018%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,551 samples, 0.15%)</title><rect x="0.1351%" y="373" width="0.1481%" height="15" fill="rgb(249,33,26)" fg:x="3238" fg:w="3551"/><text x="0.3851%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,604 samples, 0.15%)</title><rect x="0.1333%" y="389" width="0.1503%" height="15" fill="rgb(235,183,28)" fg:x="3195" fg:w="3604"/><text x="0.3833%" y="399.50"></text></g><g><title>GraphBuilder::GraphBuilder (4,001 samples, 0.17%)</title><rect x="0.1191%" y="405" width="0.1669%" height="15" fill="rgb(221,5,38)" fg:x="2856" fg:w="4001"/><text x="0.3691%" y="415.50"></text></g><g><title>IR::IR (4,017 samples, 0.17%)</title><rect x="0.1190%" y="421" width="0.1676%" height="15" fill="rgb(247,18,42)" fg:x="2852" fg:w="4017"/><text x="0.3690%" y="431.50"></text></g><g><title>Compilation::build_hir (5,038 samples, 0.21%)</title><rect x="0.1005%" y="437" width="0.2102%" height="15" fill="rgb(241,131,45)" fg:x="2409" fg:w="5038"/><text x="0.3505%" y="447.50"></text></g><g><title>LIR_Assembler::emit_code (712 samples, 0.03%)</title><rect x="0.3114%" y="421" width="0.0297%" height="15" fill="rgb(249,31,29)" fg:x="7466" fg:w="712"/><text x="0.5614%" y="431.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (361 samples, 0.02%)</title><rect x="0.3435%" y="421" width="0.0151%" height="15" fill="rgb(225,111,53)" fg:x="8235" fg:w="361"/><text x="0.5935%" y="431.50"></text></g><g><title>Compilation::emit_code_body (1,167 samples, 0.05%)</title><rect x="0.3106%" y="437" width="0.0487%" height="15" fill="rgb(238,160,17)" fg:x="7447" fg:w="1167"/><text x="0.5606%" y="447.50"></text></g><g><title>LIRGenerator::do_Goto (260 samples, 0.01%)</title><rect x="0.3674%" y="389" width="0.0108%" height="15" fill="rgb(214,148,48)" fg:x="8808" fg:w="260"/><text x="0.6174%" y="399.50"></text></g><g><title>LIRGenerator::block_do (993 samples, 0.04%)</title><rect x="0.3597%" y="405" width="0.0414%" height="15" fill="rgb(232,36,49)" fg:x="8622" fg:w="993"/><text x="0.6097%" y="415.50"></text></g><g><title>BlockList::iterate_forward (998 samples, 0.04%)</title><rect x="0.3595%" y="421" width="0.0416%" height="15" fill="rgb(209,103,24)" fg:x="8619" fg:w="998"/><text x="0.6095%" y="431.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (501 samples, 0.02%)</title><rect x="0.4146%" y="357" width="0.0209%" height="15" fill="rgb(229,88,8)" fg:x="9939" fg:w="501"/><text x="0.6646%" y="367.50"></text></g><g><title>LinearScanWalker::activate_current (777 samples, 0.03%)</title><rect x="0.4131%" y="373" width="0.0324%" height="15" fill="rgb(213,181,19)" fg:x="9904" fg:w="777"/><text x="0.6631%" y="383.50"></text></g><g><title>IntervalWalker::walk_to (978 samples, 0.04%)</title><rect x="0.4048%" y="389" width="0.0408%" height="15" fill="rgb(254,191,54)" fg:x="9704" fg:w="978"/><text x="0.6548%" y="399.50"></text></g><g><title>LinearScan::allocate_registers (1,087 samples, 0.05%)</title><rect x="0.4041%" y="405" width="0.0453%" height="15" fill="rgb(241,83,37)" fg:x="9687" fg:w="1087"/><text x="0.6541%" y="415.50"></text></g><g><title>LinearScan::assign_reg_num (715 samples, 0.03%)</title><rect x="0.4496%" y="389" width="0.0298%" height="15" fill="rgb(233,36,39)" fg:x="10777" fg:w="715"/><text x="0.6996%" y="399.50"></text></g><g><title>LinearScan::assign_reg_num (752 samples, 0.03%)</title><rect x="0.4494%" y="405" width="0.0314%" height="15" fill="rgb(226,3,54)" fg:x="10774" fg:w="752"/><text x="0.6994%" y="415.50"></text></g><g><title>LinearScan::build_intervals (899 samples, 0.04%)</title><rect x="0.4808%" y="405" width="0.0375%" height="15" fill="rgb(245,192,40)" fg:x="11526" fg:w="899"/><text x="0.7308%" y="415.50"></text></g><g><title>LinearScan::compute_local_live_sets (316 samples, 0.01%)</title><rect x="0.5209%" y="405" width="0.0132%" height="15" fill="rgb(238,167,29)" fg:x="12488" fg:w="316"/><text x="0.7709%" y="415.50"></text></g><g><title>LinearScan::do_linear_scan (3,578 samples, 0.15%)</title><rect x="0.4030%" y="421" width="0.1493%" height="15" fill="rgb(232,182,51)" fg:x="9660" fg:w="3578"/><text x="0.6530%" y="431.50"></text></g><g><title>Compilation::emit_lir (4,630 samples, 0.19%)</title><rect x="0.3593%" y="437" width="0.1931%" height="15" fill="rgb(231,60,39)" fg:x="8614" fg:w="4630"/><text x="0.6093%" y="447.50"></text></g><g><title>Compilation::compile_java_method (11,032 samples, 0.46%)</title><rect x="0.0999%" y="453" width="0.4602%" height="15" fill="rgb(208,69,12)" fg:x="2396" fg:w="11032"/><text x="0.3499%" y="463.50"></text></g><g><title>nmethod::nmethod (335 samples, 0.01%)</title><rect x="0.5743%" y="421" width="0.0140%" height="15" fill="rgb(235,93,37)" fg:x="13768" fg:w="335"/><text x="0.8243%" y="431.50"></text></g><g><title>nmethod::new_nmethod (534 samples, 0.02%)</title><rect x="0.5661%" y="437" width="0.0223%" height="15" fill="rgb(213,116,39)" fg:x="13571" fg:w="534"/><text x="0.8161%" y="447.50"></text></g><g><title>ciEnv::register_method (637 samples, 0.03%)</title><rect x="0.5619%" y="453" width="0.0266%" height="15" fill="rgb(222,207,29)" fg:x="13469" fg:w="637"/><text x="0.8119%" y="463.50"></text></g><g><title>Compilation::compile_method (11,715 samples, 0.49%)</title><rect x="0.0998%" y="469" width="0.4887%" height="15" fill="rgb(206,96,30)" fg:x="2392" fg:w="11715"/><text x="0.3498%" y="479.50"></text></g><g><title>Compilation::Compilation (11,737 samples, 0.49%)</title><rect x="0.0994%" y="485" width="0.4896%" height="15" fill="rgb(218,138,4)" fg:x="2383" fg:w="11737"/><text x="0.3494%" y="495.50"></text></g><g><title>Compiler::compile_method (11,758 samples, 0.49%)</title><rect x="0.0987%" y="501" width="0.4905%" height="15" fill="rgb(250,191,14)" fg:x="2365" fg:w="11758"/><text x="0.3487%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (12,325 samples, 0.51%)</title><rect x="0.0879%" y="517" width="0.5141%" height="15" fill="rgb(239,60,40)" fg:x="2106" fg:w="12325"/><text x="0.3379%" y="527.50"></text></g><g><title>CompileBroker::compiler_thread_loop (12,623 samples, 0.53%)</title><rect x="0.0876%" y="533" width="0.5266%" height="15" fill="rgb(206,27,48)" fg:x="2100" fg:w="12623"/><text x="0.3376%" y="543.50"></text></g><g><title>Thread::call_run (12,625 samples, 0.53%)</title><rect x="0.0876%" y="565" width="0.5266%" height="15" fill="rgb(225,35,8)" fg:x="2099" fg:w="12625"/><text x="0.3376%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (12,624 samples, 0.53%)</title><rect x="0.0876%" y="549" width="0.5266%" height="15" fill="rgb(250,213,24)" fg:x="2100" fg:w="12624"/><text x="0.3376%" y="559.50"></text></g><g><title>__GI___clone (12,650 samples, 0.53%)</title><rect x="0.0866%" y="613" width="0.5277%" height="15" fill="rgb(247,123,22)" fg:x="2075" fg:w="12650"/><text x="0.3366%" y="623.50"></text></g><g><title>start_thread (12,634 samples, 0.53%)</title><rect x="0.0872%" y="597" width="0.5270%" height="15" fill="rgb(231,138,38)" fg:x="2091" fg:w="12634"/><text x="0.3372%" y="607.50"></text></g><g><title>thread_native_entry (12,634 samples, 0.53%)</title><rect x="0.0872%" y="581" width="0.5270%" height="15" fill="rgb(231,145,46)" fg:x="2091" fg:w="12634"/><text x="0.3372%" y="591.50"></text></g><g><title>C1_CompilerThre (14,584 samples, 0.61%)</title><rect x="0.0083%" y="629" width="0.6084%" height="15" fill="rgb(251,118,11)" fg:x="198" fg:w="14584"/><text x="0.2583%" y="639.50"></text></g><g><title>_dl_update_slotinfo (262 samples, 0.01%)</title><rect x="0.7589%" y="597" width="0.0109%" height="15" fill="rgb(217,147,25)" fg:x="18193" fg:w="262"/><text x="1.0089%" y="607.50"></text></g><g><title>[anon] (3,997 samples, 0.17%)</title><rect x="0.6336%" y="613" width="0.1667%" height="15" fill="rgb(247,81,37)" fg:x="15188" fg:w="3997"/><text x="0.8836%" y="623.50"></text></g><g><title>Parse::do_one_block (361 samples, 0.02%)</title><rect x="0.8352%" y="229" width="0.0151%" height="15" fill="rgb(209,12,38)" fg:x="20021" fg:w="361"/><text x="1.0852%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (351 samples, 0.01%)</title><rect x="0.8356%" y="213" width="0.0146%" height="15" fill="rgb(227,1,9)" fg:x="20031" fg:w="351"/><text x="1.0856%" y="223.50"></text></g><g><title>Parse::do_all_blocks (372 samples, 0.02%)</title><rect x="0.8350%" y="245" width="0.0155%" height="15" fill="rgb(248,47,43)" fg:x="20016" fg:w="372"/><text x="1.0850%" y="255.50"></text></g><g><title>ParseGenerator::generate (436 samples, 0.02%)</title><rect x="0.8336%" y="277" width="0.0182%" height="15" fill="rgb(221,10,30)" fg:x="19984" fg:w="436"/><text x="1.0836%" y="287.50"></text></g><g><title>Parse::Parse (435 samples, 0.02%)</title><rect x="0.8337%" y="261" width="0.0181%" height="15" fill="rgb(210,229,1)" fg:x="19985" fg:w="435"/><text x="1.0837%" y="271.50"></text></g><g><title>Parse::do_call (650 samples, 0.03%)</title><rect x="0.8284%" y="293" width="0.0271%" height="15" fill="rgb(222,148,37)" fg:x="19859" fg:w="650"/><text x="1.0784%" y="303.50"></text></g><g><title>Parse::do_one_block (950 samples, 0.04%)</title><rect x="0.8261%" y="325" width="0.0396%" height="15" fill="rgb(234,67,33)" fg:x="19804" fg:w="950"/><text x="1.0761%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (941 samples, 0.04%)</title><rect x="0.8265%" y="309" width="0.0393%" height="15" fill="rgb(247,98,35)" fg:x="19813" fg:w="941"/><text x="1.0765%" y="319.50"></text></g><g><title>Parse::do_all_blocks (968 samples, 0.04%)</title><rect x="0.8258%" y="341" width="0.0404%" height="15" fill="rgb(247,138,52)" fg:x="19797" fg:w="968"/><text x="1.0758%" y="351.50"></text></g><g><title>ParseGenerator::generate (1,085 samples, 0.05%)</title><rect x="0.8227%" y="373" width="0.0453%" height="15" fill="rgb(213,79,30)" fg:x="19723" fg:w="1085"/><text x="1.0727%" y="383.50"></text></g><g><title>Parse::Parse (1,084 samples, 0.05%)</title><rect x="0.8228%" y="357" width="0.0452%" height="15" fill="rgb(246,177,23)" fg:x="19724" fg:w="1084"/><text x="1.0728%" y="367.50"></text></g><g><title>Parse::do_call (1,564 samples, 0.07%)</title><rect x="0.8119%" y="389" width="0.0652%" height="15" fill="rgb(230,62,27)" fg:x="19462" fg:w="1564"/><text x="1.0619%" y="399.50"></text></g><g><title>Parse::do_one_block (1,802 samples, 0.08%)</title><rect x="0.8108%" y="421" width="0.0752%" height="15" fill="rgb(216,154,8)" fg:x="19436" fg:w="1802"/><text x="1.0608%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (1,795 samples, 0.07%)</title><rect x="0.8111%" y="405" width="0.0749%" height="15" fill="rgb(244,35,45)" fg:x="19443" fg:w="1795"/><text x="1.0611%" y="415.50"></text></g><g><title>Parse::do_all_blocks (1,803 samples, 0.08%)</title><rect x="0.8108%" y="437" width="0.0752%" height="15" fill="rgb(251,115,12)" fg:x="19436" fg:w="1803"/><text x="1.0608%" y="447.50"></text></g><g><title>ParseGenerator::generate (1,817 samples, 0.08%)</title><rect x="0.8103%" y="469" width="0.0758%" height="15" fill="rgb(240,54,50)" fg:x="19424" fg:w="1817"/><text x="1.0603%" y="479.50"></text></g><g><title>Parse::Parse (1,817 samples, 0.08%)</title><rect x="0.8103%" y="453" width="0.0758%" height="15" fill="rgb(233,84,52)" fg:x="19424" fg:w="1817"/><text x="1.0603%" y="463.50"></text></g><g><title>Parse::do_call (337 samples, 0.01%)</title><rect x="0.8868%" y="373" width="0.0141%" height="15" fill="rgb(207,117,47)" fg:x="21259" fg:w="337"/><text x="1.1368%" y="383.50"></text></g><g><title>Parse::do_one_block (402 samples, 0.02%)</title><rect x="0.8864%" y="405" width="0.0168%" height="15" fill="rgb(249,43,39)" fg:x="21249" fg:w="402"/><text x="1.1364%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (399 samples, 0.02%)</title><rect x="0.8865%" y="389" width="0.0166%" height="15" fill="rgb(209,38,44)" fg:x="21252" fg:w="399"/><text x="1.1365%" y="399.50"></text></g><g><title>Parse::do_all_blocks (404 samples, 0.02%)</title><rect x="0.8864%" y="421" width="0.0169%" height="15" fill="rgb(236,212,23)" fg:x="21249" fg:w="404"/><text x="1.1364%" y="431.50"></text></g><g><title>ParseGenerator::generate (414 samples, 0.02%)</title><rect x="0.8861%" y="453" width="0.0173%" height="15" fill="rgb(242,79,21)" fg:x="21243" fg:w="414"/><text x="1.1361%" y="463.50"></text></g><g><title>Parse::Parse (414 samples, 0.02%)</title><rect x="0.8861%" y="437" width="0.0173%" height="15" fill="rgb(211,96,35)" fg:x="21243" fg:w="414"/><text x="1.1361%" y="447.50"></text></g><g><title>PredictedCallGenerator::generate (499 samples, 0.02%)</title><rect x="0.8861%" y="469" width="0.0208%" height="15" fill="rgb(253,215,40)" fg:x="21241" fg:w="499"/><text x="1.1361%" y="479.50"></text></g><g><title>Parse::do_call (2,519 samples, 0.11%)</title><rect x="0.8024%" y="485" width="0.1051%" height="15" fill="rgb(211,81,21)" fg:x="19236" fg:w="2519"/><text x="1.0524%" y="495.50"></text></g><g><title>Parse::do_all_blocks (2,530 samples, 0.11%)</title><rect x="0.8024%" y="533" width="0.1055%" height="15" fill="rgb(208,190,38)" fg:x="19235" fg:w="2530"/><text x="1.0524%" y="543.50"></text></g><g><title>Parse::do_one_block (2,530 samples, 0.11%)</title><rect x="0.8024%" y="517" width="0.1055%" height="15" fill="rgb(235,213,38)" fg:x="19235" fg:w="2530"/><text x="1.0524%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (2,530 samples, 0.11%)</title><rect x="0.8024%" y="501" width="0.1055%" height="15" fill="rgb(237,122,38)" fg:x="19235" fg:w="2530"/><text x="1.0524%" y="511.50"></text></g><g><title>C2Compiler::compile_method (2,548 samples, 0.11%)</title><rect x="0.8017%" y="597" width="0.1063%" height="15" fill="rgb(244,218,35)" fg:x="19218" fg:w="2548"/><text x="1.0517%" y="607.50"></text></g><g><title>Compile::Compile (2,548 samples, 0.11%)</title><rect x="0.8017%" y="581" width="0.1063%" height="15" fill="rgb(240,68,47)" fg:x="19218" fg:w="2548"/><text x="1.0517%" y="591.50"></text></g><g><title>ParseGenerator::generate (2,531 samples, 0.11%)</title><rect x="0.8024%" y="565" width="0.1056%" height="15" fill="rgb(210,16,53)" fg:x="19235" fg:w="2531"/><text x="1.0524%" y="575.50"></text></g><g><title>Parse::Parse (2,531 samples, 0.11%)</title><rect x="0.8024%" y="549" width="0.1056%" height="15" fill="rgb(235,124,12)" fg:x="19235" fg:w="2531"/><text x="1.0524%" y="559.50"></text></g><g><title>PhaseCFG::do_global_code_motion (264 samples, 0.01%)</title><rect x="0.9121%" y="581" width="0.0110%" height="15" fill="rgb(224,169,11)" fg:x="21866" fg:w="264"/><text x="1.1621%" y="591.50"></text></g><g><title>PhaseCFG::global_code_motion (264 samples, 0.01%)</title><rect x="0.9121%" y="565" width="0.0110%" height="15" fill="rgb(250,166,2)" fg:x="21866" fg:w="264"/><text x="1.1621%" y="575.50"></text></g><g><title>Compile::Code_Gen (419 samples, 0.02%)</title><rect x="0.9080%" y="597" width="0.0175%" height="15" fill="rgb(242,216,29)" fg:x="21768" fg:w="419"/><text x="1.1580%" y="607.50"></text></g><g><title>Compile::BuildOopMaps (912 samples, 0.04%)</title><rect x="0.9261%" y="549" width="0.0380%" height="15" fill="rgb(230,116,27)" fg:x="22201" fg:w="912"/><text x="1.1761%" y="559.50"></text></g><g><title>Compile::shorten_branches (394 samples, 0.02%)</title><rect x="0.9666%" y="533" width="0.0164%" height="15" fill="rgb(228,99,48)" fg:x="23172" fg:w="394"/><text x="1.2166%" y="543.50"></text></g><g><title>Compile::init_buffer (455 samples, 0.02%)</title><rect x="0.9642%" y="549" width="0.0190%" height="15" fill="rgb(253,11,6)" fg:x="23113" fg:w="455"/><text x="1.2142%" y="559.50"></text></g><g><title>Compile::Output (1,379 samples, 0.06%)</title><rect x="0.9257%" y="565" width="0.0575%" height="15" fill="rgb(247,143,39)" fg:x="22192" fg:w="1379"/><text x="1.1757%" y="575.50"></text></g><g><title>Compile::Process_OopMap_Node (266 samples, 0.01%)</title><rect x="0.9924%" y="549" width="0.0111%" height="15" fill="rgb(236,97,10)" fg:x="23789" fg:w="266"/><text x="1.2424%" y="559.50"></text></g><g><title>Compile::fill_buffer (663 samples, 0.03%)</title><rect x="0.9833%" y="565" width="0.0277%" height="15" fill="rgb(233,208,19)" fg:x="23572" fg:w="663"/><text x="1.2333%" y="575.50"></text></g><g><title>Matcher::find_shared (441 samples, 0.02%)</title><rect x="1.0160%" y="549" width="0.0184%" height="15" fill="rgb(216,164,2)" fg:x="24357" fg:w="441"/><text x="1.2660%" y="559.50"></text></g><g><title>Arena::contains (612 samples, 0.03%)</title><rect x="1.0524%" y="533" width="0.0255%" height="15" fill="rgb(220,129,5)" fg:x="25228" fg:w="612"/><text x="1.3024%" y="543.50"></text></g><g><title>Matcher::Label_Root (366 samples, 0.02%)</title><rect x="1.1018%" y="501" width="0.0153%" height="15" fill="rgb(242,17,10)" fg:x="26413" fg:w="366"/><text x="1.3518%" y="511.50"></text></g><g><title>Matcher::Label_Root (549 samples, 0.02%)</title><rect x="1.0977%" y="517" width="0.0229%" height="15" fill="rgb(242,107,0)" fg:x="26315" fg:w="549"/><text x="1.3477%" y="527.50"></text></g><g><title>Matcher::ReduceInst (370 samples, 0.02%)</title><rect x="1.1206%" y="517" width="0.0154%" height="15" fill="rgb(251,28,31)" fg:x="26864" fg:w="370"/><text x="1.3706%" y="527.50"></text></g><g><title>Matcher::match_tree (1,189 samples, 0.05%)</title><rect x="1.0871%" y="533" width="0.0496%" height="15" fill="rgb(233,223,10)" fg:x="26061" fg:w="1189"/><text x="1.3371%" y="543.50"></text></g><g><title>Matcher::xform (2,597 samples, 0.11%)</title><rect x="1.0353%" y="549" width="0.1083%" height="15" fill="rgb(215,21,27)" fg:x="24819" fg:w="2597"/><text x="1.2853%" y="559.50"></text></g><g><title>Matcher::match (3,174 samples, 0.13%)</title><rect x="1.0117%" y="565" width="0.1324%" height="15" fill="rgb(232,23,21)" fg:x="24252" fg:w="3174"/><text x="1.2617%" y="575.50"></text></g><g><title>Node_Backward_Iterator::next (301 samples, 0.01%)</title><rect x="1.1955%" y="517" width="0.0126%" height="15" fill="rgb(244,5,23)" fg:x="28659" fg:w="301"/><text x="1.4455%" y="527.50"></text></g><g><title>PhaseCFG::schedule_late (799 samples, 0.03%)</title><rect x="1.1907%" y="533" width="0.0333%" height="15" fill="rgb(226,81,46)" fg:x="28543" fg:w="799"/><text x="1.4407%" y="543.50"></text></g><g><title>PhaseCFG::schedule_local (683 samples, 0.03%)</title><rect x="1.2240%" y="533" width="0.0285%" height="15" fill="rgb(247,70,30)" fg:x="29342" fg:w="683"/><text x="1.4740%" y="543.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (528 samples, 0.02%)</title><rect x="1.2537%" y="533" width="0.0220%" height="15" fill="rgb(212,68,19)" fg:x="30055" fg:w="528"/><text x="1.5037%" y="543.50"></text></g><g><title>PhaseLive::add_livein (243 samples, 0.01%)</title><rect x="1.3052%" y="517" width="0.0101%" height="15" fill="rgb(240,187,13)" fg:x="31288" fg:w="243"/><text x="1.5552%" y="527.50"></text></g><g><title>PhaseLive::add_liveout (459 samples, 0.02%)</title><rect x="1.3153%" y="517" width="0.0191%" height="15" fill="rgb(223,113,26)" fg:x="31531" fg:w="459"/><text x="1.5653%" y="527.50"></text></g><g><title>PhaseLive::compute (1,064 samples, 0.04%)</title><rect x="1.2902%" y="533" width="0.0444%" height="15" fill="rgb(206,192,2)" fg:x="30930" fg:w="1064"/><text x="1.5402%" y="543.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,215 samples, 0.18%)</title><rect x="1.1596%" y="565" width="0.1758%" height="15" fill="rgb(241,108,4)" fg:x="27799" fg:w="4215"/><text x="1.4096%" y="575.50"></text></g><g><title>PhaseCFG::global_code_motion (4,025 samples, 0.17%)</title><rect x="1.1676%" y="549" width="0.1679%" height="15" fill="rgb(247,173,49)" fg:x="27989" fg:w="4025"/><text x="1.4176%" y="559.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,282 samples, 0.05%)</title><rect x="1.3472%" y="549" width="0.0535%" height="15" fill="rgb(224,114,35)" fg:x="32296" fg:w="1282"/><text x="1.5972%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (337 samples, 0.01%)</title><rect x="1.4292%" y="533" width="0.0141%" height="15" fill="rgb(245,159,27)" fg:x="34261" fg:w="337"/><text x="1.6792%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (405 samples, 0.02%)</title><rect x="1.4748%" y="517" width="0.0169%" height="15" fill="rgb(245,172,44)" fg:x="35355" fg:w="405"/><text x="1.7248%" y="527.50"></text></g><g><title>PhaseIFG::re_insert (991 samples, 0.04%)</title><rect x="1.4510%" y="533" width="0.0413%" height="15" fill="rgb(236,23,11)" fg:x="34785" fg:w="991"/><text x="1.7010%" y="543.50"></text></g><g><title>PhaseChaitin::Select (2,389 samples, 0.10%)</title><rect x="1.4007%" y="549" width="0.0997%" height="15" fill="rgb(205,117,38)" fg:x="33578" fg:w="2389"/><text x="1.6507%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (374 samples, 0.02%)</title><rect x="1.5137%" y="533" width="0.0156%" height="15" fill="rgb(237,72,25)" fg:x="36287" fg:w="374"/><text x="1.7637%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (512 samples, 0.02%)</title><rect x="1.5542%" y="517" width="0.0214%" height="15" fill="rgb(244,70,9)" fg:x="37259" fg:w="512"/><text x="1.8042%" y="527.50"></text></g><g><title>PhaseChaitin::Simplify (1,806 samples, 0.08%)</title><rect x="1.5004%" y="549" width="0.0753%" height="15" fill="rgb(217,125,39)" fg:x="35967" fg:w="1806"/><text x="1.7504%" y="559.50"></text></g><g><title>PhaseIFG::remove_node (1,112 samples, 0.05%)</title><rect x="1.5293%" y="533" width="0.0464%" height="15" fill="rgb(235,36,10)" fg:x="36661" fg:w="1112"/><text x="1.7793%" y="543.50"></text></g><g><title>PhaseChaitin::Split (3,860 samples, 0.16%)</title><rect x="1.5757%" y="549" width="0.1610%" height="15" fill="rgb(251,123,47)" fg:x="37773" fg:w="3860"/><text x="1.8257%" y="559.50"></text></g><g><title>IndexSet::IndexSet (354 samples, 0.01%)</title><rect x="1.7809%" y="533" width="0.0148%" height="15" fill="rgb(221,13,13)" fg:x="42692" fg:w="354"/><text x="2.0309%" y="543.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (853 samples, 0.04%)</title><rect x="1.8002%" y="533" width="0.0356%" height="15" fill="rgb(238,131,9)" fg:x="43156" fg:w="853"/><text x="2.0502%" y="543.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (594 samples, 0.02%)</title><rect x="1.8406%" y="533" width="0.0248%" height="15" fill="rgb(211,50,8)" fg:x="44124" fg:w="594"/><text x="2.0906%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,004 samples, 0.04%)</title><rect x="1.9626%" y="517" width="0.0419%" height="15" fill="rgb(245,182,24)" fg:x="47049" fg:w="1004"/><text x="2.2126%" y="527.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,352 samples, 0.14%)</title><rect x="1.8654%" y="533" width="0.1398%" height="15" fill="rgb(242,14,37)" fg:x="44718" fg:w="3352"/><text x="2.1154%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (245 samples, 0.01%)</title><rect x="2.0344%" y="517" width="0.0102%" height="15" fill="rgb(246,228,12)" fg:x="48769" fg:w="245"/><text x="2.2844%" y="527.50"></text></g><g><title>RegMask::Size (385 samples, 0.02%)</title><rect x="2.0446%" y="517" width="0.0161%" height="15" fill="rgb(213,55,15)" fg:x="49014" fg:w="385"/><text x="2.2946%" y="527.50"></text></g><g><title>RegMask::smear_to_sets (763 samples, 0.03%)</title><rect x="2.0607%" y="517" width="0.0318%" height="15" fill="rgb(209,9,3)" fg:x="49399" fg:w="763"/><text x="2.3107%" y="527.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,005 samples, 0.08%)</title><rect x="2.0096%" y="533" width="0.0836%" height="15" fill="rgb(230,59,30)" fg:x="48174" fg:w="2005"/><text x="2.2596%" y="543.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (8,672 samples, 0.36%)</title><rect x="1.7368%" y="549" width="0.3617%" height="15" fill="rgb(209,121,21)" fg:x="41635" fg:w="8672"/><text x="1.9868%" y="559.50"></text></g><g><title>PhaseChaitin::interfere_with_live (383 samples, 0.02%)</title><rect x="2.1063%" y="533" width="0.0160%" height="15" fill="rgb(220,109,13)" fg:x="50492" fg:w="383"/><text x="2.3563%" y="543.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (572 samples, 0.02%)</title><rect x="2.0985%" y="549" width="0.0239%" height="15" fill="rgb(232,18,1)" fg:x="50307" fg:w="572"/><text x="2.3485%" y="559.50"></text></g><g><title>RegMask::Size (1,375 samples, 0.06%)</title><rect x="2.2429%" y="533" width="0.0574%" height="15" fill="rgb(215,41,42)" fg:x="53767" fg:w="1375"/><text x="2.4929%" y="543.50"></text></g><g><title>RegMask::clear_to_sets (242 samples, 0.01%)</title><rect x="2.3002%" y="533" width="0.0101%" height="15" fill="rgb(224,123,36)" fg:x="55142" fg:w="242"/><text x="2.5502%" y="543.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,710 samples, 0.20%)</title><rect x="2.1380%" y="549" width="0.1965%" height="15" fill="rgb(240,125,3)" fg:x="51252" fg:w="4710"/><text x="2.3880%" y="559.50"></text></g><g><title>PhaseChaitin::merge_multidefs (607 samples, 0.03%)</title><rect x="2.3344%" y="549" width="0.0253%" height="15" fill="rgb(205,98,50)" fg:x="55962" fg:w="607"/><text x="2.5844%" y="559.50"></text></g><g><title>PhaseChaitin::elide_copy (2,354 samples, 0.10%)</title><rect x="2.4492%" y="533" width="0.0982%" height="15" fill="rgb(205,185,37)" fg:x="58712" fg:w="2354"/><text x="2.6992%" y="543.50"></text></g><g><title>find_lowest_bit (395 samples, 0.02%)</title><rect x="2.5540%" y="533" width="0.0165%" height="15" fill="rgb(238,207,15)" fg:x="61226" fg:w="395"/><text x="2.8040%" y="543.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,058 samples, 0.21%)</title><rect x="2.3598%" y="549" width="0.2110%" height="15" fill="rgb(213,199,42)" fg:x="56569" fg:w="5058"/><text x="2.6098%" y="559.50"></text></g><g><title>IndexSet::lrg_union (507 samples, 0.02%)</title><rect x="2.5998%" y="501" width="0.0211%" height="15" fill="rgb(235,201,11)" fg:x="62323" fg:w="507"/><text x="2.8498%" y="511.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (591 samples, 0.02%)</title><rect x="2.6215%" y="501" width="0.0247%" height="15" fill="rgb(207,46,11)" fg:x="62843" fg:w="591"/><text x="2.8715%" y="511.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (1,357 samples, 0.06%)</title><rect x="2.5975%" y="517" width="0.0566%" height="15" fill="rgb(241,35,35)" fg:x="62269" fg:w="1357"/><text x="2.8475%" y="527.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,772 samples, 0.07%)</title><rect x="2.5804%" y="549" width="0.0739%" height="15" fill="rgb(243,32,47)" fg:x="61858" fg:w="1772"/><text x="2.8304%" y="559.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,570 samples, 0.07%)</title><rect x="2.5888%" y="533" width="0.0655%" height="15" fill="rgb(247,202,23)" fg:x="62060" fg:w="1570"/><text x="2.8388%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (590 samples, 0.02%)</title><rect x="2.6753%" y="533" width="0.0246%" height="15" fill="rgb(219,102,11)" fg:x="64133" fg:w="590"/><text x="2.9253%" y="543.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,095 samples, 0.05%)</title><rect x="2.6544%" y="549" width="0.0457%" height="15" fill="rgb(243,110,44)" fg:x="63632" fg:w="1095"/><text x="2.9044%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (456 samples, 0.02%)</title><rect x="2.7243%" y="533" width="0.0190%" height="15" fill="rgb(222,74,54)" fg:x="65307" fg:w="456"/><text x="2.9743%" y="543.50"></text></g><g><title>PhaseIFG::SquareUp (1,038 samples, 0.04%)</title><rect x="2.7001%" y="549" width="0.0433%" height="15" fill="rgb(216,99,12)" fg:x="64727" fg:w="1038"/><text x="2.9501%" y="559.50"></text></g><g><title>IndexSet::initialize (248 samples, 0.01%)</title><rect x="2.7494%" y="533" width="0.0103%" height="15" fill="rgb(226,22,26)" fg:x="65910" fg:w="248"/><text x="2.9994%" y="543.50"></text></g><g><title>PhaseIFG::init (476 samples, 0.02%)</title><rect x="2.7434%" y="549" width="0.0199%" height="15" fill="rgb(217,163,10)" fg:x="65765" fg:w="476"/><text x="2.9934%" y="559.50"></text></g><g><title>IndexSet::alloc_block_containing (244 samples, 0.01%)</title><rect x="2.8705%" y="517" width="0.0102%" height="15" fill="rgb(213,25,53)" fg:x="68813" fg:w="244"/><text x="3.1205%" y="527.50"></text></g><g><title>IndexSetIterator::advance_and_next (322 samples, 0.01%)</title><rect x="2.8830%" y="517" width="0.0134%" height="15" fill="rgb(252,105,26)" fg:x="69112" fg:w="322"/><text x="3.1330%" y="527.50"></text></g><g><title>PhaseLive::add_liveout (1,498 samples, 0.06%)</title><rect x="2.8349%" y="533" width="0.0625%" height="15" fill="rgb(220,39,43)" fg:x="67960" fg:w="1498"/><text x="3.0849%" y="543.50"></text></g><g><title>PhaseLive::compute (3,240 samples, 0.14%)</title><rect x="2.7633%" y="549" width="0.1352%" height="15" fill="rgb(229,68,48)" fg:x="66242" fg:w="3240"/><text x="3.0133%" y="559.50"></text></g><g><title>PhaseChaitin::Register_Allocate (37,494 samples, 1.56%)</title><rect x="1.3414%" y="565" width="1.5641%" height="15" fill="rgb(252,8,32)" fg:x="32157" fg:w="37494"/><text x="1.5914%" y="575.50"></text></g><g><title>Compile::Code_Gen (47,525 samples, 1.98%)</title><rect x="0.9256%" y="581" width="1.9825%" height="15" fill="rgb(223,20,43)" fg:x="22188" fg:w="47525"/><text x="1.1756%" y="591.50">C..</text></g><g><title>Parse::do_one_block (309 samples, 0.01%)</title><rect x="2.9151%" y="53" width="0.0129%" height="15" fill="rgb(229,81,49)" fg:x="69881" fg:w="309"/><text x="3.1651%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (308 samples, 0.01%)</title><rect x="2.9151%" y="37" width="0.0128%" height="15" fill="rgb(236,28,36)" fg:x="69882" fg:w="308"/><text x="3.1651%" y="47.50"></text></g><g><title>Parse::do_all_blocks (315 samples, 0.01%)</title><rect x="2.9150%" y="69" width="0.0131%" height="15" fill="rgb(249,185,26)" fg:x="69879" fg:w="315"/><text x="3.1650%" y="79.50"></text></g><g><title>ParseGenerator::generate (337 samples, 0.01%)</title><rect x="2.9144%" y="101" width="0.0141%" height="15" fill="rgb(249,174,33)" fg:x="69864" fg:w="337"/><text x="3.1644%" y="111.50"></text></g><g><title>Parse::Parse (337 samples, 0.01%)</title><rect x="2.9144%" y="85" width="0.0141%" height="15" fill="rgb(233,201,37)" fg:x="69864" fg:w="337"/><text x="3.1644%" y="95.50"></text></g><g><title>Parse::do_call (440 samples, 0.02%)</title><rect x="2.9117%" y="117" width="0.0184%" height="15" fill="rgb(221,78,26)" fg:x="69801" fg:w="440"/><text x="3.1617%" y="127.50"></text></g><g><title>Parse::do_one_block (517 samples, 0.02%)</title><rect x="2.9115%" y="149" width="0.0216%" height="15" fill="rgb(250,127,30)" fg:x="69795" fg:w="517"/><text x="3.1615%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (516 samples, 0.02%)</title><rect x="2.9115%" y="133" width="0.0215%" height="15" fill="rgb(230,49,44)" fg:x="69796" fg:w="516"/><text x="3.1615%" y="143.50"></text></g><g><title>Parse::do_all_blocks (518 samples, 0.02%)</title><rect x="2.9115%" y="165" width="0.0216%" height="15" fill="rgb(229,67,23)" fg:x="69795" fg:w="518"/><text x="3.1615%" y="175.50"></text></g><g><title>ParseGenerator::generate (530 samples, 0.02%)</title><rect x="2.9110%" y="197" width="0.0221%" height="15" fill="rgb(249,83,47)" fg:x="69784" fg:w="530"/><text x="3.1610%" y="207.50"></text></g><g><title>Parse::Parse (530 samples, 0.02%)</title><rect x="2.9110%" y="181" width="0.0221%" height="15" fill="rgb(215,43,3)" fg:x="69784" fg:w="530"/><text x="3.1610%" y="191.50"></text></g><g><title>Parse::do_call (650 samples, 0.03%)</title><rect x="2.9097%" y="213" width="0.0271%" height="15" fill="rgb(238,154,13)" fg:x="69752" fg:w="650"/><text x="3.1597%" y="223.50"></text></g><g><title>Parse::do_all_blocks (665 samples, 0.03%)</title><rect x="2.9096%" y="261" width="0.0277%" height="15" fill="rgb(219,56,2)" fg:x="69751" fg:w="665"/><text x="3.1596%" y="271.50"></text></g><g><title>Parse::do_one_block (665 samples, 0.03%)</title><rect x="2.9096%" y="245" width="0.0277%" height="15" fill="rgb(233,0,4)" fg:x="69751" fg:w="665"/><text x="3.1596%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (665 samples, 0.03%)</title><rect x="2.9096%" y="229" width="0.0277%" height="15" fill="rgb(235,30,7)" fg:x="69751" fg:w="665"/><text x="3.1596%" y="239.50"></text></g><g><title>ParseGenerator::generate (667 samples, 0.03%)</title><rect x="2.9096%" y="293" width="0.0278%" height="15" fill="rgb(250,79,13)" fg:x="69750" fg:w="667"/><text x="3.1596%" y="303.50"></text></g><g><title>Parse::Parse (667 samples, 0.03%)</title><rect x="2.9096%" y="277" width="0.0278%" height="15" fill="rgb(211,146,34)" fg:x="69750" fg:w="667"/><text x="3.1596%" y="287.50"></text></g><g><title>Parse::do_call (801 samples, 0.03%)</title><rect x="2.9086%" y="309" width="0.0334%" height="15" fill="rgb(228,22,38)" fg:x="69726" fg:w="801"/><text x="3.1586%" y="319.50"></text></g><g><title>Parse::do_all_blocks (802 samples, 0.03%)</title><rect x="2.9086%" y="357" width="0.0335%" height="15" fill="rgb(235,168,5)" fg:x="69726" fg:w="802"/><text x="3.1586%" y="367.50"></text></g><g><title>Parse::do_one_block (802 samples, 0.03%)</title><rect x="2.9086%" y="341" width="0.0335%" height="15" fill="rgb(221,155,16)" fg:x="69726" fg:w="802"/><text x="3.1586%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (802 samples, 0.03%)</title><rect x="2.9086%" y="325" width="0.0335%" height="15" fill="rgb(215,215,53)" fg:x="69726" fg:w="802"/><text x="3.1586%" y="335.50"></text></g><g><title>ParseGenerator::generate (809 samples, 0.03%)</title><rect x="2.9086%" y="389" width="0.0337%" height="15" fill="rgb(223,4,10)" fg:x="69726" fg:w="809"/><text x="3.1586%" y="399.50"></text></g><g><title>Parse::Parse (809 samples, 0.03%)</title><rect x="2.9086%" y="373" width="0.0337%" height="15" fill="rgb(234,103,6)" fg:x="69726" fg:w="809"/><text x="3.1586%" y="383.50"></text></g><g><title>ParseGenerator::generate (980 samples, 0.04%)</title><rect x="2.9085%" y="485" width="0.0409%" height="15" fill="rgb(227,97,0)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="495.50"></text></g><g><title>Parse::Parse (980 samples, 0.04%)</title><rect x="2.9085%" y="469" width="0.0409%" height="15" fill="rgb(234,150,53)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="479.50"></text></g><g><title>Parse::do_all_blocks (980 samples, 0.04%)</title><rect x="2.9085%" y="453" width="0.0409%" height="15" fill="rgb(228,201,54)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="463.50"></text></g><g><title>Parse::do_one_block (980 samples, 0.04%)</title><rect x="2.9085%" y="437" width="0.0409%" height="15" fill="rgb(222,22,37)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (980 samples, 0.04%)</title><rect x="2.9085%" y="421" width="0.0409%" height="15" fill="rgb(237,53,32)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="431.50"></text></g><g><title>Parse::do_call (980 samples, 0.04%)</title><rect x="2.9085%" y="405" width="0.0409%" height="15" fill="rgb(233,25,53)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="415.50"></text></g><g><title>Parse::do_call (1,256 samples, 0.05%)</title><rect x="2.9085%" y="501" width="0.0524%" height="15" fill="rgb(210,40,34)" fg:x="69724" fg:w="1256"/><text x="3.1585%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (276 samples, 0.01%)</title><rect x="2.9494%" y="485" width="0.0115%" height="15" fill="rgb(241,220,44)" fg:x="70704" fg:w="276"/><text x="3.1994%" y="495.50"></text></g><g><title>ParseGenerator::generate (1,263 samples, 0.05%)</title><rect x="2.9085%" y="581" width="0.0527%" height="15" fill="rgb(235,28,35)" fg:x="69724" fg:w="1263"/><text x="3.1585%" y="591.50"></text></g><g><title>Parse::Parse (1,263 samples, 0.05%)</title><rect x="2.9085%" y="565" width="0.0527%" height="15" fill="rgb(210,56,17)" fg:x="69724" fg:w="1263"/><text x="3.1585%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,263 samples, 0.05%)</title><rect x="2.9085%" y="549" width="0.0527%" height="15" fill="rgb(224,130,29)" fg:x="69724" fg:w="1263"/><text x="3.1585%" y="559.50"></text></g><g><title>Parse::do_one_block (1,263 samples, 0.05%)</title><rect x="2.9085%" y="533" width="0.0527%" height="15" fill="rgb(235,212,8)" fg:x="69724" fg:w="1263"/><text x="3.1585%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,263 samples, 0.05%)</title><rect x="2.9085%" y="517" width="0.0527%" height="15" fill="rgb(223,33,50)" fg:x="69724" fg:w="1263"/><text x="3.1585%" y="527.50"></text></g><g><title>Compile::Compile (48,801 samples, 2.04%)</title><rect x="0.9255%" y="597" width="2.0357%" height="15" fill="rgb(219,149,13)" fg:x="22187" fg:w="48801"/><text x="1.1755%" y="607.50">C..</text></g><g><title>Compile::final_graph_reshaping_walk (332 samples, 0.01%)</title><rect x="2.9617%" y="565" width="0.0138%" height="15" fill="rgb(250,156,29)" fg:x="70999" fg:w="332"/><text x="3.2117%" y="575.50"></text></g><g><title>Compile::final_graph_reshaping (338 samples, 0.01%)</title><rect x="2.9615%" y="581" width="0.0141%" height="15" fill="rgb(216,193,19)" fg:x="70994" fg:w="338"/><text x="3.2115%" y="591.50"></text></g><g><title>Compile::remove_speculative_types (293 samples, 0.01%)</title><rect x="2.9788%" y="581" width="0.0122%" height="15" fill="rgb(216,135,14)" fg:x="71410" fg:w="293"/><text x="3.2288%" y="591.50"></text></g><g><title>ConnectionGraph::compute_escape (543 samples, 0.02%)</title><rect x="2.9913%" y="565" width="0.0227%" height="15" fill="rgb(241,47,5)" fg:x="71709" fg:w="543"/><text x="3.2413%" y="575.50"></text></g><g><title>ConnectionGraph::do_analysis (550 samples, 0.02%)</title><rect x="2.9911%" y="581" width="0.0229%" height="15" fill="rgb(233,42,35)" fg:x="71703" fg:w="550"/><text x="3.2411%" y="591.50"></text></g><g><title>PhaseCCP::analyze (835 samples, 0.03%)</title><rect x="3.0141%" y="581" width="0.0348%" height="15" fill="rgb(231,13,6)" fg:x="72256" fg:w="835"/><text x="3.2641%" y="591.50"></text></g><g><title>PhaseCCP::do_transform (249 samples, 0.01%)</title><rect x="3.0490%" y="581" width="0.0104%" height="15" fill="rgb(207,181,40)" fg:x="73091" fg:w="249"/><text x="3.2990%" y="591.50"></text></g><g><title>PhaseCCP::transform (248 samples, 0.01%)</title><rect x="3.0490%" y="565" width="0.0103%" height="15" fill="rgb(254,173,49)" fg:x="73092" fg:w="248"/><text x="3.2990%" y="575.50"></text></g><g><title>IdealLoopTree::iteration_split (271 samples, 0.01%)</title><rect x="3.0655%" y="565" width="0.0113%" height="15" fill="rgb(221,1,38)" fg:x="73488" fg:w="271"/><text x="3.3155%" y="575.50"></text></g><g><title>IdealLoopTree::loop_predication (310 samples, 0.01%)</title><rect x="3.0768%" y="565" width="0.0129%" height="15" fill="rgb(206,124,46)" fg:x="73759" fg:w="310"/><text x="3.3268%" y="575.50"></text></g><g><title>NTarjan::DFS (372 samples, 0.02%)</title><rect x="3.1275%" y="549" width="0.0155%" height="15" fill="rgb(249,21,11)" fg:x="74973" fg:w="372"/><text x="3.3775%" y="559.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,291 samples, 0.05%)</title><rect x="3.0920%" y="565" width="0.0539%" height="15" fill="rgb(222,201,40)" fg:x="74123" fg:w="1291"/><text x="3.3420%" y="575.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (434 samples, 0.02%)</title><rect x="3.2011%" y="549" width="0.0181%" height="15" fill="rgb(235,61,29)" fg:x="76737" fg:w="434"/><text x="3.4511%" y="559.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (395 samples, 0.02%)</title><rect x="3.2027%" y="533" width="0.0165%" height="15" fill="rgb(219,207,3)" fg:x="76776" fg:w="395"/><text x="3.4527%" y="543.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,849 samples, 0.08%)</title><rect x="3.1459%" y="565" width="0.0771%" height="15" fill="rgb(222,56,46)" fg:x="75414" fg:w="1849"/><text x="3.3959%" y="575.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (306 samples, 0.01%)</title><rect x="3.3382%" y="501" width="0.0128%" height="15" fill="rgb(239,76,54)" fg:x="80025" fg:w="306"/><text x="3.5882%" y="511.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (449 samples, 0.02%)</title><rect x="3.3341%" y="517" width="0.0187%" height="15" fill="rgb(231,124,27)" fg:x="79926" fg:w="449"/><text x="3.5841%" y="527.50"></text></g><g><title>PhaseIdealLoop::dom_depth (374 samples, 0.02%)</title><rect x="3.4203%" y="501" width="0.0156%" height="15" fill="rgb(249,195,6)" fg:x="81992" fg:w="374"/><text x="3.6703%" y="511.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,826 samples, 0.08%)</title><rect x="3.3599%" y="517" width="0.0762%" height="15" fill="rgb(237,174,47)" fg:x="80544" fg:w="1826"/><text x="3.6099%" y="527.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,855 samples, 0.12%)</title><rect x="3.3180%" y="533" width="0.1191%" height="15" fill="rgb(206,201,31)" fg:x="79540" fg:w="2855"/><text x="3.5680%" y="543.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (3,845 samples, 0.16%)</title><rect x="3.2811%" y="549" width="0.1604%" height="15" fill="rgb(231,57,52)" fg:x="78655" fg:w="3845"/><text x="3.5311%" y="559.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (5,253 samples, 0.22%)</title><rect x="3.2230%" y="565" width="0.2191%" height="15" fill="rgb(248,177,22)" fg:x="77263" fg:w="5253"/><text x="3.4730%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (989 samples, 0.04%)</title><rect x="3.4425%" y="565" width="0.0413%" height="15" fill="rgb(215,211,37)" fg:x="82526" fg:w="989"/><text x="3.6925%" y="575.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (287 samples, 0.01%)</title><rect x="3.5134%" y="549" width="0.0120%" height="15" fill="rgb(241,128,51)" fg:x="84224" fg:w="287"/><text x="3.7634%" y="559.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (244 samples, 0.01%)</title><rect x="3.5512%" y="533" width="0.0102%" height="15" fill="rgb(227,165,31)" fg:x="85130" fg:w="244"/><text x="3.8012%" y="543.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (929 samples, 0.04%)</title><rect x="3.5254%" y="549" width="0.0388%" height="15" fill="rgb(228,167,24)" fg:x="84511" fg:w="929"/><text x="3.7754%" y="559.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,872 samples, 0.08%)</title><rect x="3.4862%" y="565" width="0.0781%" height="15" fill="rgb(228,143,12)" fg:x="83572" fg:w="1872"/><text x="3.7362%" y="575.50"></text></g><g><title>RegionNode::Ideal (258 samples, 0.01%)</title><rect x="3.6097%" y="533" width="0.0108%" height="15" fill="rgb(249,149,8)" fg:x="86532" fg:w="258"/><text x="3.8597%" y="543.50"></text></g><g><title>PhaseIterGVN::transform_old (1,444 samples, 0.06%)</title><rect x="3.5663%" y="549" width="0.0602%" height="15" fill="rgb(243,35,44)" fg:x="85492" fg:w="1444"/><text x="3.8163%" y="559.50"></text></g><g><title>PhaseIterGVN::optimize (1,501 samples, 0.06%)</title><rect x="3.5645%" y="565" width="0.0626%" height="15" fill="rgb(246,89,9)" fg:x="85449" fg:w="1501"/><text x="3.8145%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (13,717 samples, 0.57%)</title><rect x="3.0609%" y="581" width="0.5722%" height="15" fill="rgb(233,213,13)" fg:x="73376" fg:w="13717"/><text x="3.3109%" y="591.50"></text></g><g><title>IfNode::Ideal (349 samples, 0.01%)</title><rect x="3.6553%" y="549" width="0.0146%" height="15" fill="rgb(233,141,41)" fg:x="87627" fg:w="349"/><text x="3.9053%" y="559.50"></text></g><g><title>RegionNode::Ideal (381 samples, 0.02%)</title><rect x="3.7173%" y="549" width="0.0159%" height="15" fill="rgb(239,167,4)" fg:x="89113" fg:w="381"/><text x="3.9673%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (246 samples, 0.01%)</title><rect x="3.7340%" y="485" width="0.0103%" height="15" fill="rgb(209,217,16)" fg:x="89513" fg:w="246"/><text x="3.9840%" y="495.50"></text></g><g><title>InitializeNode::can_capture_store (275 samples, 0.01%)</title><rect x="3.7340%" y="533" width="0.0115%" height="15" fill="rgb(219,88,35)" fg:x="89513" fg:w="275"/><text x="3.9840%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (275 samples, 0.01%)</title><rect x="3.7340%" y="517" width="0.0115%" height="15" fill="rgb(220,193,23)" fg:x="89513" fg:w="275"/><text x="3.9840%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (275 samples, 0.01%)</title><rect x="3.7340%" y="501" width="0.0115%" height="15" fill="rgb(230,90,52)" fg:x="89513" fg:w="275"/><text x="3.9840%" y="511.50"></text></g><g><title>StoreNode::Ideal (307 samples, 0.01%)</title><rect x="3.7339%" y="549" width="0.0128%" height="15" fill="rgb(252,106,19)" fg:x="89511" fg:w="307"/><text x="3.9839%" y="559.50"></text></g><g><title>PhaseIterGVN::transform_old (2,561 samples, 0.11%)</title><rect x="3.6422%" y="565" width="0.1068%" height="15" fill="rgb(206,74,20)" fg:x="87313" fg:w="2561"/><text x="3.8922%" y="575.50"></text></g><g><title>PhaseIterGVN::optimize (2,668 samples, 0.11%)</title><rect x="3.6386%" y="581" width="0.1113%" height="15" fill="rgb(230,138,44)" fg:x="87227" fg:w="2668"/><text x="3.8886%" y="591.50"></text></g><g><title>PhaseIterGVN::transform_old (247 samples, 0.01%)</title><rect x="3.7518%" y="549" width="0.0103%" height="15" fill="rgb(235,182,43)" fg:x="89939" fg:w="247"/><text x="4.0018%" y="559.50"></text></g><g><title>PhaseIterGVN::optimize (261 samples, 0.01%)</title><rect x="3.7513%" y="565" width="0.0109%" height="15" fill="rgb(242,16,51)" fg:x="89928" fg:w="261"/><text x="4.0013%" y="575.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (390 samples, 0.02%)</title><rect x="3.7512%" y="581" width="0.0163%" height="15" fill="rgb(248,9,4)" fg:x="89926" fg:w="390"/><text x="4.0012%" y="591.50"></text></g><g><title>Compile::Optimize (19,523 samples, 0.81%)</title><rect x="2.9612%" y="597" width="0.8144%" height="15" fill="rgb(210,31,22)" fg:x="70988" fg:w="19523"/><text x="3.2112%" y="607.50"></text></g><g><title>CompileBroker::compiler_thread_loop (256 samples, 0.01%)</title><rect x="3.7763%" y="597" width="0.0107%" height="15" fill="rgb(239,54,39)" fg:x="90526" fg:w="256"/><text x="4.0263%" y="607.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (256 samples, 0.01%)</title><rect x="3.7763%" y="581" width="0.0107%" height="15" fill="rgb(230,99,41)" fg:x="90526" fg:w="256"/><text x="4.0263%" y="591.50"></text></g><g><title>C2Compiler::compile_method (256 samples, 0.01%)</title><rect x="3.7763%" y="565" width="0.0107%" height="15" fill="rgb(253,106,12)" fg:x="90526" fg:w="256"/><text x="4.0263%" y="575.50"></text></g><g><title>Compile::Compile (256 samples, 0.01%)</title><rect x="3.7763%" y="549" width="0.0107%" height="15" fill="rgb(213,46,41)" fg:x="90526" fg:w="256"/><text x="4.0263%" y="559.50"></text></g><g><title>ParseGenerator::generate (261 samples, 0.01%)</title><rect x="3.8003%" y="453" width="0.0109%" height="15" fill="rgb(215,133,35)" fg:x="91101" fg:w="261"/><text x="4.0503%" y="463.50"></text></g><g><title>Parse::Parse (261 samples, 0.01%)</title><rect x="3.8003%" y="437" width="0.0109%" height="15" fill="rgb(213,28,5)" fg:x="91101" fg:w="261"/><text x="4.0503%" y="447.50"></text></g><g><title>Parse::do_call (543 samples, 0.02%)</title><rect x="3.7939%" y="469" width="0.0227%" height="15" fill="rgb(215,77,49)" fg:x="90949" fg:w="543"/><text x="4.0439%" y="479.50"></text></g><g><title>Parse::do_all_blocks (767 samples, 0.03%)</title><rect x="3.7917%" y="517" width="0.0320%" height="15" fill="rgb(248,100,22)" fg:x="90897" fg:w="767"/><text x="4.0417%" y="527.50"></text></g><g><title>Parse::do_one_block (767 samples, 0.03%)</title><rect x="3.7917%" y="501" width="0.0320%" height="15" fill="rgb(208,67,9)" fg:x="90897" fg:w="767"/><text x="4.0417%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (759 samples, 0.03%)</title><rect x="3.7921%" y="485" width="0.0317%" height="15" fill="rgb(219,133,21)" fg:x="90905" fg:w="759"/><text x="4.0421%" y="495.50"></text></g><g><title>ParseGenerator::generate (787 samples, 0.03%)</title><rect x="3.7917%" y="549" width="0.0328%" height="15" fill="rgb(246,46,29)" fg:x="90897" fg:w="787"/><text x="4.0417%" y="559.50"></text></g><g><title>Parse::Parse (787 samples, 0.03%)</title><rect x="3.7917%" y="533" width="0.0328%" height="15" fill="rgb(246,185,52)" fg:x="90897" fg:w="787"/><text x="4.0417%" y="543.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (925 samples, 0.04%)</title><rect x="3.7869%" y="597" width="0.0386%" height="15" fill="rgb(252,136,11)" fg:x="90782" fg:w="925"/><text x="4.0369%" y="607.50"></text></g><g><title>C2Compiler::compile_method (925 samples, 0.04%)</title><rect x="3.7869%" y="581" width="0.0386%" height="15" fill="rgb(219,138,53)" fg:x="90782" fg:w="925"/><text x="4.0369%" y="591.50"></text></g><g><title>Compile::Compile (925 samples, 0.04%)</title><rect x="3.7869%" y="565" width="0.0386%" height="15" fill="rgb(211,51,23)" fg:x="90782" fg:w="925"/><text x="4.0369%" y="575.50"></text></g><g><title>[unknown] (73,549 samples, 3.07%)</title><rect x="0.8015%" y="613" width="3.0681%" height="15" fill="rgb(247,221,28)" fg:x="19214" fg:w="73549"/><text x="1.0515%" y="623.50">[un..</text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (495 samples, 0.02%)</title><rect x="3.8781%" y="469" width="0.0206%" height="15" fill="rgb(251,222,45)" fg:x="92968" fg:w="495"/><text x="4.1281%" y="479.50"></text></g><g><title>Compile::Compile (720 samples, 0.03%)</title><rect x="3.8715%" y="485" width="0.0300%" height="15" fill="rgb(217,162,53)" fg:x="92808" fg:w="720"/><text x="4.1215%" y="495.50"></text></g><g><title>C2Compiler::compile_method (736 samples, 0.03%)</title><rect x="3.8708%" y="501" width="0.0307%" height="15" fill="rgb(229,93,14)" fg:x="92793" fg:w="736"/><text x="4.1208%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (890 samples, 0.04%)</title><rect x="3.8706%" y="517" width="0.0371%" height="15" fill="rgb(209,67,49)" fg:x="92787" fg:w="890"/><text x="4.1206%" y="527.50"></text></g><g><title>os::PlatformEvent::park (249 samples, 0.01%)</title><rect x="3.9107%" y="469" width="0.0104%" height="15" fill="rgb(213,87,29)" fg:x="93749" fg:w="249"/><text x="4.1607%" y="479.50"></text></g><g><title>Monitor::IWait (291 samples, 0.01%)</title><rect x="3.9090%" y="485" width="0.0121%" height="15" fill="rgb(205,151,52)" fg:x="93709" fg:w="291"/><text x="4.1590%" y="495.50"></text></g><g><title>Monitor::wait (300 samples, 0.01%)</title><rect x="3.9087%" y="501" width="0.0125%" height="15" fill="rgb(253,215,39)" fg:x="93702" fg:w="300"/><text x="4.1587%" y="511.50"></text></g><g><title>CompileQueue::get (351 samples, 0.01%)</title><rect x="3.9082%" y="517" width="0.0146%" height="15" fill="rgb(221,220,41)" fg:x="93688" fg:w="351"/><text x="4.1582%" y="527.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,260 samples, 0.05%)</title><rect x="3.8704%" y="533" width="0.0526%" height="15" fill="rgb(218,133,21)" fg:x="92783" fg:w="1260"/><text x="4.1204%" y="543.50"></text></g><g><title>Thread::call_run (1,265 samples, 0.05%)</title><rect x="3.8704%" y="565" width="0.0528%" height="15" fill="rgb(221,193,43)" fg:x="92783" fg:w="1265"/><text x="4.1204%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (1,265 samples, 0.05%)</title><rect x="3.8704%" y="549" width="0.0528%" height="15" fill="rgb(240,128,52)" fg:x="92783" fg:w="1265"/><text x="4.1204%" y="559.50"></text></g><g><title>__GI___clone (1,275 samples, 0.05%)</title><rect x="3.8700%" y="613" width="0.0532%" height="15" fill="rgb(253,114,12)" fg:x="92774" fg:w="1275"/><text x="4.1200%" y="623.50"></text></g><g><title>start_thread (1,266 samples, 0.05%)</title><rect x="3.8704%" y="597" width="0.0528%" height="15" fill="rgb(215,223,47)" fg:x="92783" fg:w="1266"/><text x="4.1204%" y="607.50"></text></g><g><title>thread_native_entry (1,266 samples, 0.05%)</title><rect x="3.8704%" y="581" width="0.0528%" height="15" fill="rgb(248,225,23)" fg:x="92783" fg:w="1266"/><text x="4.1204%" y="591.50"></text></g><g><title>C2_CompilerThre (79,387 samples, 3.31%)</title><rect x="0.6166%" y="629" width="3.3116%" height="15" fill="rgb(250,108,0)" fg:x="14782" fg:w="79387"/><text x="0.8666%" y="639.50">C2_..</text></g><g><title>do_futex (245 samples, 0.01%)</title><rect x="3.9624%" y="469" width="0.0102%" height="15" fill="rgb(228,208,7)" fg:x="94988" fg:w="245"/><text x="4.2124%" y="479.50"></text></g><g><title>futex_wait (243 samples, 0.01%)</title><rect x="3.9625%" y="453" width="0.0101%" height="15" fill="rgb(244,45,10)" fg:x="94990" fg:w="243"/><text x="4.2125%" y="463.50"></text></g><g><title>do_syscall_64 (251 samples, 0.01%)</title><rect x="3.9623%" y="501" width="0.0105%" height="15" fill="rgb(207,125,25)" fg:x="94985" fg:w="251"/><text x="4.2123%" y="511.50"></text></g><g><title>__x64_sys_futex (250 samples, 0.01%)</title><rect x="3.9623%" y="485" width="0.0104%" height="15" fill="rgb(210,195,18)" fg:x="94986" fg:w="250"/><text x="4.2123%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (258 samples, 0.01%)</title><rect x="3.9621%" y="517" width="0.0108%" height="15" fill="rgb(249,80,12)" fg:x="94981" fg:w="258"/><text x="4.2121%" y="527.50"></text></g><g><title>__pthread_cond_timedwait (287 samples, 0.01%)</title><rect x="3.9609%" y="565" width="0.0120%" height="15" fill="rgb(221,65,9)" fg:x="94953" fg:w="287"/><text x="4.2109%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (287 samples, 0.01%)</title><rect x="3.9609%" y="549" width="0.0120%" height="15" fill="rgb(235,49,36)" fg:x="94953" fg:w="287"/><text x="4.2109%" y="559.50"></text></g><g><title>futex_abstimed_wait_cancelable (275 samples, 0.01%)</title><rect x="3.9614%" y="533" width="0.0115%" height="15" fill="rgb(225,32,20)" fg:x="94965" fg:w="275"/><text x="4.2114%" y="543.50"></text></g><g><title>Parker::park (461 samples, 0.02%)</title><rect x="3.9595%" y="581" width="0.0192%" height="15" fill="rgb(215,141,46)" fg:x="94919" fg:w="461"/><text x="4.2095%" y="591.50"></text></g><g><title>Unsafe_Park (474 samples, 0.02%)</title><rect x="3.9591%" y="597" width="0.0198%" height="15" fill="rgb(250,160,47)" fg:x="94909" fg:w="474"/><text x="4.2091%" y="607.50"></text></g><g><title>[perf-974282.map] (976 samples, 0.04%)</title><rect x="3.9386%" y="613" width="0.0407%" height="15" fill="rgb(216,222,40)" fg:x="94418" fg:w="976"/><text x="4.1886%" y="623.50"></text></g><g><title>ForkJoinPool.co (1,009 samples, 0.04%)</title><rect x="3.9380%" y="629" width="0.0421%" height="15" fill="rgb(234,217,39)" fg:x="94403" fg:w="1009"/><text x="4.1880%" y="639.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (258 samples, 0.01%)</title><rect x="3.9850%" y="533" width="0.0108%" height="15" fill="rgb(207,178,40)" fg:x="95529" fg:w="258"/><text x="4.2350%" y="543.50"></text></g><g><title>__GI___clone (259 samples, 0.01%)</title><rect x="3.9850%" y="613" width="0.0108%" height="15" fill="rgb(221,136,13)" fg:x="95529" fg:w="259"/><text x="4.2350%" y="623.50"></text></g><g><title>start_thread (259 samples, 0.01%)</title><rect x="3.9850%" y="597" width="0.0108%" height="15" fill="rgb(249,199,10)" fg:x="95529" fg:w="259"/><text x="4.2350%" y="607.50"></text></g><g><title>thread_native_entry (259 samples, 0.01%)</title><rect x="3.9850%" y="581" width="0.0108%" height="15" fill="rgb(249,222,13)" fg:x="95529" fg:w="259"/><text x="4.2350%" y="591.50"></text></g><g><title>Thread::call_run (259 samples, 0.01%)</title><rect x="3.9850%" y="565" width="0.0108%" height="15" fill="rgb(244,185,38)" fg:x="95529" fg:w="259"/><text x="4.2350%" y="575.50"></text></g><g><title>ConcurrentGCThread::run (259 samples, 0.01%)</title><rect x="3.9850%" y="549" width="0.0108%" height="15" fill="rgb(236,202,9)" fg:x="95529" fg:w="259"/><text x="4.2350%" y="559.50"></text></g><g><title>G1_Refine#0 (269 samples, 0.01%)</title><rect x="3.9846%" y="629" width="0.0112%" height="15" fill="rgb(250,229,37)" fg:x="95520" fg:w="269"/><text x="4.2346%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (325 samples, 0.01%)</title><rect x="4.0313%" y="485" width="0.0136%" height="15" fill="rgb(206,174,23)" fg:x="96639" fg:w="325"/><text x="4.2813%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (498 samples, 0.02%)</title><rect x="4.0244%" y="501" width="0.0208%" height="15" fill="rgb(211,33,43)" fg:x="96474" fg:w="498"/><text x="4.2744%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (633 samples, 0.03%)</title><rect x="4.0240%" y="517" width="0.0264%" height="15" fill="rgb(245,58,50)" fg:x="96464" fg:w="633"/><text x="4.2740%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (412 samples, 0.02%)</title><rect x="4.0652%" y="501" width="0.0172%" height="15" fill="rgb(244,68,36)" fg:x="97452" fg:w="412"/><text x="4.3152%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (303 samples, 0.01%)</title><rect x="4.0697%" y="485" width="0.0126%" height="15" fill="rgb(232,229,15)" fg:x="97561" fg:w="303"/><text x="4.3197%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (303 samples, 0.01%)</title><rect x="4.0697%" y="469" width="0.0126%" height="15" fill="rgb(254,30,23)" fg:x="97561" fg:w="303"/><text x="4.3197%" y="479.50"></text></g><g><title>JavaThread::oops_do (303 samples, 0.01%)</title><rect x="4.0697%" y="453" width="0.0126%" height="15" fill="rgb(235,160,14)" fg:x="97561" fg:w="303"/><text x="4.3197%" y="463.50"></text></g><g><title>G1ParTask::work (1,410 samples, 0.06%)</title><rect x="4.0240%" y="533" width="0.0588%" height="15" fill="rgb(212,155,44)" fg:x="96464" fg:w="1410"/><text x="4.2740%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (434 samples, 0.02%)</title><rect x="4.0647%" y="517" width="0.0181%" height="15" fill="rgb(226,2,50)" fg:x="97440" fg:w="434"/><text x="4.3147%" y="527.50"></text></g><g><title>GC_Thread#0 (1,650 samples, 0.07%)</title><rect x="4.0224%" y="629" width="0.0688%" height="15" fill="rgb(234,177,6)" fg:x="96426" fg:w="1650"/><text x="4.2724%" y="639.50"></text></g><g><title>__GI___clone (1,618 samples, 0.07%)</title><rect x="4.0237%" y="613" width="0.0675%" height="15" fill="rgb(217,24,9)" fg:x="96458" fg:w="1618"/><text x="4.2737%" y="623.50"></text></g><g><title>start_thread (1,618 samples, 0.07%)</title><rect x="4.0237%" y="597" width="0.0675%" height="15" fill="rgb(220,13,46)" fg:x="96458" fg:w="1618"/><text x="4.2737%" y="607.50"></text></g><g><title>thread_native_entry (1,618 samples, 0.07%)</title><rect x="4.0237%" y="581" width="0.0675%" height="15" fill="rgb(239,221,27)" fg:x="96458" fg:w="1618"/><text x="4.2737%" y="591.50"></text></g><g><title>Thread::call_run (1,618 samples, 0.07%)</title><rect x="4.0237%" y="565" width="0.0675%" height="15" fill="rgb(222,198,25)" fg:x="96458" fg:w="1618"/><text x="4.2737%" y="575.50"></text></g><g><title>GangWorker::loop (1,618 samples, 0.07%)</title><rect x="4.0237%" y="549" width="0.0675%" height="15" fill="rgb(211,99,13)" fg:x="96458" fg:w="1618"/><text x="4.2737%" y="559.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (340 samples, 0.01%)</title><rect x="4.1010%" y="485" width="0.0142%" height="15" fill="rgb(232,111,31)" fg:x="98310" fg:w="340"/><text x="4.3510%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (541 samples, 0.02%)</title><rect x="4.0935%" y="501" width="0.0226%" height="15" fill="rgb(245,82,37)" fg:x="98131" fg:w="541"/><text x="4.3435%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (645 samples, 0.03%)</title><rect x="4.0931%" y="517" width="0.0269%" height="15" fill="rgb(227,149,46)" fg:x="98121" fg:w="645"/><text x="4.3431%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (325 samples, 0.01%)</title><rect x="4.1346%" y="501" width="0.0136%" height="15" fill="rgb(218,36,50)" fg:x="99117" fg:w="325"/><text x="4.3846%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (267 samples, 0.01%)</title><rect x="4.1371%" y="485" width="0.0111%" height="15" fill="rgb(226,80,48)" fg:x="99175" fg:w="267"/><text x="4.3871%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (267 samples, 0.01%)</title><rect x="4.1371%" y="469" width="0.0111%" height="15" fill="rgb(238,224,15)" fg:x="99175" fg:w="267"/><text x="4.3871%" y="479.50"></text></g><g><title>JavaThread::oops_do (266 samples, 0.01%)</title><rect x="4.1371%" y="453" width="0.0111%" height="15" fill="rgb(241,136,10)" fg:x="99176" fg:w="266"/><text x="4.3871%" y="463.50"></text></g><g><title>G1ParTask::work (1,515 samples, 0.06%)</title><rect x="4.0931%" y="533" width="0.0632%" height="15" fill="rgb(208,32,45)" fg:x="98121" fg:w="1515"/><text x="4.3431%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (519 samples, 0.02%)</title><rect x="4.1346%" y="517" width="0.0216%" height="15" fill="rgb(207,135,9)" fg:x="99117" fg:w="519"/><text x="4.3846%" y="527.50"></text></g><g><title>__GI___clone (1,719 samples, 0.07%)</title><rect x="4.0923%" y="613" width="0.0717%" height="15" fill="rgb(206,86,44)" fg:x="98102" fg:w="1719"/><text x="4.3423%" y="623.50"></text></g><g><title>start_thread (1,719 samples, 0.07%)</title><rect x="4.0923%" y="597" width="0.0717%" height="15" fill="rgb(245,177,15)" fg:x="98102" fg:w="1719"/><text x="4.3423%" y="607.50"></text></g><g><title>thread_native_entry (1,719 samples, 0.07%)</title><rect x="4.0923%" y="581" width="0.0717%" height="15" fill="rgb(206,64,50)" fg:x="98102" fg:w="1719"/><text x="4.3423%" y="591.50"></text></g><g><title>Thread::call_run (1,719 samples, 0.07%)</title><rect x="4.0923%" y="565" width="0.0717%" height="15" fill="rgb(234,36,40)" fg:x="98102" fg:w="1719"/><text x="4.3423%" y="575.50"></text></g><g><title>GangWorker::loop (1,719 samples, 0.07%)</title><rect x="4.0923%" y="549" width="0.0717%" height="15" fill="rgb(213,64,8)" fg:x="98102" fg:w="1719"/><text x="4.3423%" y="559.50"></text></g><g><title>GC_Thread#1 (1,748 samples, 0.07%)</title><rect x="4.0912%" y="629" width="0.0729%" height="15" fill="rgb(210,75,36)" fg:x="98076" fg:w="1748"/><text x="4.3412%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (280 samples, 0.01%)</title><rect x="4.1706%" y="485" width="0.0117%" height="15" fill="rgb(229,88,21)" fg:x="99980" fg:w="280"/><text x="4.4206%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (412 samples, 0.02%)</title><rect x="4.1656%" y="501" width="0.0172%" height="15" fill="rgb(252,204,47)" fg:x="99860" fg:w="412"/><text x="4.4156%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (556 samples, 0.02%)</title><rect x="4.1653%" y="517" width="0.0232%" height="15" fill="rgb(208,77,27)" fg:x="99851" fg:w="556"/><text x="4.4153%" y="527.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (246 samples, 0.01%)</title><rect x="4.1884%" y="517" width="0.0103%" height="15" fill="rgb(221,76,26)" fg:x="100407" fg:w="246"/><text x="4.4384%" y="527.50"></text></g><g><title>G1RemSet::update_rem_set (246 samples, 0.01%)</title><rect x="4.1884%" y="501" width="0.0103%" height="15" fill="rgb(225,139,18)" fg:x="100407" fg:w="246"/><text x="4.4384%" y="511.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (246 samples, 0.01%)</title><rect x="4.1884%" y="485" width="0.0103%" height="15" fill="rgb(230,137,11)" fg:x="100407" fg:w="246"/><text x="4.4384%" y="495.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (246 samples, 0.01%)</title><rect x="4.1884%" y="469" width="0.0103%" height="15" fill="rgb(212,28,1)" fg:x="100407" fg:w="246"/><text x="4.4384%" y="479.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (245 samples, 0.01%)</title><rect x="4.1885%" y="453" width="0.0102%" height="15" fill="rgb(248,164,17)" fg:x="100408" fg:w="245"/><text x="4.4385%" y="463.50"></text></g><g><title>G1ParTask::work (1,145 samples, 0.05%)</title><rect x="4.1653%" y="533" width="0.0478%" height="15" fill="rgb(222,171,42)" fg:x="99851" fg:w="1145"/><text x="4.4153%" y="543.50"></text></g><g><title>GC_Thread#2 (1,339 samples, 0.06%)</title><rect x="4.1641%" y="629" width="0.0559%" height="15" fill="rgb(243,84,45)" fg:x="99824" fg:w="1339"/><text x="4.4141%" y="639.50"></text></g><g><title>__GI___clone (1,321 samples, 0.06%)</title><rect x="4.1649%" y="613" width="0.0551%" height="15" fill="rgb(252,49,23)" fg:x="99842" fg:w="1321"/><text x="4.4149%" y="623.50"></text></g><g><title>start_thread (1,321 samples, 0.06%)</title><rect x="4.1649%" y="597" width="0.0551%" height="15" fill="rgb(215,19,7)" fg:x="99842" fg:w="1321"/><text x="4.4149%" y="607.50"></text></g><g><title>thread_native_entry (1,321 samples, 0.06%)</title><rect x="4.1649%" y="581" width="0.0551%" height="15" fill="rgb(238,81,41)" fg:x="99842" fg:w="1321"/><text x="4.4149%" y="591.50"></text></g><g><title>Thread::call_run (1,321 samples, 0.06%)</title><rect x="4.1649%" y="565" width="0.0551%" height="15" fill="rgb(210,199,37)" fg:x="99842" fg:w="1321"/><text x="4.4149%" y="575.50"></text></g><g><title>GangWorker::loop (1,321 samples, 0.06%)</title><rect x="4.1649%" y="549" width="0.0551%" height="15" fill="rgb(244,192,49)" fg:x="99842" fg:w="1321"/><text x="4.4149%" y="559.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (257 samples, 0.01%)</title><rect x="4.2290%" y="485" width="0.0107%" height="15" fill="rgb(226,211,11)" fg:x="101379" fg:w="257"/><text x="4.4790%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (424 samples, 0.02%)</title><rect x="4.2224%" y="501" width="0.0177%" height="15" fill="rgb(236,162,54)" fg:x="101222" fg:w="424"/><text x="4.4724%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (550 samples, 0.02%)</title><rect x="4.2216%" y="517" width="0.0229%" height="15" fill="rgb(220,229,9)" fg:x="101202" fg:w="550"/><text x="4.4716%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (271 samples, 0.01%)</title><rect x="4.2584%" y="501" width="0.0113%" height="15" fill="rgb(250,87,22)" fg:x="102084" fg:w="271"/><text x="4.5084%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (252 samples, 0.01%)</title><rect x="4.2592%" y="485" width="0.0105%" height="15" fill="rgb(239,43,17)" fg:x="102103" fg:w="252"/><text x="4.5092%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (252 samples, 0.01%)</title><rect x="4.2592%" y="469" width="0.0105%" height="15" fill="rgb(231,177,25)" fg:x="102103" fg:w="252"/><text x="4.5092%" y="479.50"></text></g><g><title>JavaThread::oops_do (252 samples, 0.01%)</title><rect x="4.2592%" y="453" width="0.0105%" height="15" fill="rgb(219,179,1)" fg:x="102103" fg:w="252"/><text x="4.5092%" y="463.50"></text></g><g><title>G1ParTask::work (1,211 samples, 0.05%)</title><rect x="4.2216%" y="533" width="0.0505%" height="15" fill="rgb(238,219,53)" fg:x="101202" fg:w="1211"/><text x="4.4716%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (329 samples, 0.01%)</title><rect x="4.2584%" y="517" width="0.0137%" height="15" fill="rgb(232,167,36)" fg:x="102084" fg:w="329"/><text x="4.5084%" y="527.50"></text></g><g><title>__GI___clone (1,422 samples, 0.06%)</title><rect x="4.2209%" y="613" width="0.0593%" height="15" fill="rgb(244,19,51)" fg:x="101185" fg:w="1422"/><text x="4.4709%" y="623.50"></text></g><g><title>start_thread (1,422 samples, 0.06%)</title><rect x="4.2209%" y="597" width="0.0593%" height="15" fill="rgb(224,6,22)" fg:x="101185" fg:w="1422"/><text x="4.4709%" y="607.50"></text></g><g><title>thread_native_entry (1,422 samples, 0.06%)</title><rect x="4.2209%" y="581" width="0.0593%" height="15" fill="rgb(224,145,5)" fg:x="101185" fg:w="1422"/><text x="4.4709%" y="591.50"></text></g><g><title>Thread::call_run (1,422 samples, 0.06%)</title><rect x="4.2209%" y="565" width="0.0593%" height="15" fill="rgb(234,130,49)" fg:x="101185" fg:w="1422"/><text x="4.4709%" y="575.50"></text></g><g><title>GangWorker::loop (1,422 samples, 0.06%)</title><rect x="4.2209%" y="549" width="0.0593%" height="15" fill="rgb(254,6,2)" fg:x="101185" fg:w="1422"/><text x="4.4709%" y="559.50"></text></g><g><title>GC_Thread#3 (1,446 samples, 0.06%)</title><rect x="4.2200%" y="629" width="0.0603%" height="15" fill="rgb(208,96,46)" fg:x="101163" fg:w="1446"/><text x="4.4700%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (289 samples, 0.01%)</title><rect x="4.2905%" y="485" width="0.0121%" height="15" fill="rgb(239,3,39)" fg:x="102853" fg:w="289"/><text x="4.5405%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (483 samples, 0.02%)</title><rect x="4.2828%" y="501" width="0.0201%" height="15" fill="rgb(233,210,1)" fg:x="102670" fg:w="483"/><text x="4.5328%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (638 samples, 0.03%)</title><rect x="4.2822%" y="517" width="0.0266%" height="15" fill="rgb(244,137,37)" fg:x="102655" fg:w="638"/><text x="4.5322%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (388 samples, 0.02%)</title><rect x="4.3223%" y="501" width="0.0162%" height="15" fill="rgb(240,136,2)" fg:x="103616" fg:w="388"/><text x="4.5723%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (276 samples, 0.01%)</title><rect x="4.3270%" y="485" width="0.0115%" height="15" fill="rgb(239,18,37)" fg:x="103728" fg:w="276"/><text x="4.5770%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (276 samples, 0.01%)</title><rect x="4.3270%" y="469" width="0.0115%" height="15" fill="rgb(218,185,22)" fg:x="103728" fg:w="276"/><text x="4.5770%" y="479.50"></text></g><g><title>JavaThread::oops_do (267 samples, 0.01%)</title><rect x="4.3274%" y="453" width="0.0111%" height="15" fill="rgb(225,218,4)" fg:x="103737" fg:w="267"/><text x="4.5774%" y="463.50"></text></g><g><title>G1ParTask::work (1,355 samples, 0.06%)</title><rect x="4.2822%" y="533" width="0.0565%" height="15" fill="rgb(230,182,32)" fg:x="102655" fg:w="1355"/><text x="4.5322%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (396 samples, 0.02%)</title><rect x="4.3222%" y="517" width="0.0165%" height="15" fill="rgb(242,56,43)" fg:x="103614" fg:w="396"/><text x="4.5722%" y="527.50"></text></g><g><title>__GI___clone (1,581 samples, 0.07%)</title><rect x="4.2816%" y="613" width="0.0660%" height="15" fill="rgb(233,99,24)" fg:x="102641" fg:w="1581"/><text x="4.5316%" y="623.50"></text></g><g><title>start_thread (1,581 samples, 0.07%)</title><rect x="4.2816%" y="597" width="0.0660%" height="15" fill="rgb(234,209,42)" fg:x="102641" fg:w="1581"/><text x="4.5316%" y="607.50"></text></g><g><title>thread_native_entry (1,581 samples, 0.07%)</title><rect x="4.2816%" y="581" width="0.0660%" height="15" fill="rgb(227,7,12)" fg:x="102641" fg:w="1581"/><text x="4.5316%" y="591.50"></text></g><g><title>Thread::call_run (1,581 samples, 0.07%)</title><rect x="4.2816%" y="565" width="0.0660%" height="15" fill="rgb(245,203,43)" fg:x="102641" fg:w="1581"/><text x="4.5316%" y="575.50"></text></g><g><title>GangWorker::loop (1,581 samples, 0.07%)</title><rect x="4.2816%" y="549" width="0.0660%" height="15" fill="rgb(238,205,33)" fg:x="102641" fg:w="1581"/><text x="4.5316%" y="559.50"></text></g><g><title>GC_Thread#4 (1,615 samples, 0.07%)</title><rect x="4.2803%" y="629" width="0.0674%" height="15" fill="rgb(231,56,7)" fg:x="102609" fg:w="1615"/><text x="4.5303%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (364 samples, 0.02%)</title><rect x="4.3566%" y="485" width="0.0152%" height="15" fill="rgb(244,186,29)" fg:x="104438" fg:w="364"/><text x="4.6066%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (537 samples, 0.02%)</title><rect x="4.3497%" y="501" width="0.0224%" height="15" fill="rgb(234,111,31)" fg:x="104273" fg:w="537"/><text x="4.5997%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (667 samples, 0.03%)</title><rect x="4.3493%" y="517" width="0.0278%" height="15" fill="rgb(241,149,10)" fg:x="104264" fg:w="667"/><text x="4.5993%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (291 samples, 0.01%)</title><rect x="4.3929%" y="501" width="0.0121%" height="15" fill="rgb(249,206,44)" fg:x="105309" fg:w="291"/><text x="4.6429%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (240 samples, 0.01%)</title><rect x="4.3951%" y="485" width="0.0100%" height="15" fill="rgb(251,153,30)" fg:x="105360" fg:w="240"/><text x="4.6451%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (240 samples, 0.01%)</title><rect x="4.3951%" y="469" width="0.0100%" height="15" fill="rgb(239,152,38)" fg:x="105360" fg:w="240"/><text x="4.6451%" y="479.50"></text></g><g><title>JavaThread::oops_do (240 samples, 0.01%)</title><rect x="4.3951%" y="453" width="0.0100%" height="15" fill="rgb(249,139,47)" fg:x="105360" fg:w="240"/><text x="4.6451%" y="463.50"></text></g><g><title>G1ParTask::work (1,345 samples, 0.06%)</title><rect x="4.3493%" y="533" width="0.0561%" height="15" fill="rgb(244,64,35)" fg:x="104264" fg:w="1345"/><text x="4.5993%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (304 samples, 0.01%)</title><rect x="4.3928%" y="517" width="0.0127%" height="15" fill="rgb(216,46,15)" fg:x="105305" fg:w="304"/><text x="4.6428%" y="527.50"></text></g><g><title>GC_Thread#5 (1,600 samples, 0.07%)</title><rect x="4.3477%" y="629" width="0.0667%" height="15" fill="rgb(250,74,19)" fg:x="104224" fg:w="1600"/><text x="4.5977%" y="639.50"></text></g><g><title>__GI___clone (1,581 samples, 0.07%)</title><rect x="4.3485%" y="613" width="0.0660%" height="15" fill="rgb(249,42,33)" fg:x="104243" fg:w="1581"/><text x="4.5985%" y="623.50"></text></g><g><title>start_thread (1,581 samples, 0.07%)</title><rect x="4.3485%" y="597" width="0.0660%" height="15" fill="rgb(242,149,17)" fg:x="104243" fg:w="1581"/><text x="4.5985%" y="607.50"></text></g><g><title>thread_native_entry (1,581 samples, 0.07%)</title><rect x="4.3485%" y="581" width="0.0660%" height="15" fill="rgb(244,29,21)" fg:x="104243" fg:w="1581"/><text x="4.5985%" y="591.50"></text></g><g><title>Thread::call_run (1,581 samples, 0.07%)</title><rect x="4.3485%" y="565" width="0.0660%" height="15" fill="rgb(220,130,37)" fg:x="104243" fg:w="1581"/><text x="4.5985%" y="575.50"></text></g><g><title>GangWorker::loop (1,581 samples, 0.07%)</title><rect x="4.3485%" y="549" width="0.0660%" height="15" fill="rgb(211,67,2)" fg:x="104243" fg:w="1581"/><text x="4.5985%" y="559.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (257 samples, 0.01%)</title><rect x="4.4236%" y="485" width="0.0107%" height="15" fill="rgb(235,68,52)" fg:x="106044" fg:w="257"/><text x="4.6736%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (442 samples, 0.02%)</title><rect x="4.4165%" y="501" width="0.0184%" height="15" fill="rgb(246,142,3)" fg:x="105874" fg:w="442"/><text x="4.6665%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (550 samples, 0.02%)</title><rect x="4.4162%" y="517" width="0.0229%" height="15" fill="rgb(241,25,7)" fg:x="105867" fg:w="550"/><text x="4.6662%" y="527.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (368 samples, 0.02%)</title><rect x="4.4416%" y="421" width="0.0154%" height="15" fill="rgb(242,119,39)" fg:x="106476" fg:w="368"/><text x="4.6916%" y="431.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (291 samples, 0.01%)</title><rect x="4.4448%" y="405" width="0.0121%" height="15" fill="rgb(241,98,45)" fg:x="106553" fg:w="291"/><text x="4.6948%" y="415.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (457 samples, 0.02%)</title><rect x="4.4393%" y="437" width="0.0191%" height="15" fill="rgb(254,28,30)" fg:x="106420" fg:w="457"/><text x="4.6893%" y="447.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (507 samples, 0.02%)</title><rect x="4.4392%" y="517" width="0.0211%" height="15" fill="rgb(241,142,54)" fg:x="106418" fg:w="507"/><text x="4.6892%" y="527.50"></text></g><g><title>G1RemSet::update_rem_set (507 samples, 0.02%)</title><rect x="4.4392%" y="501" width="0.0211%" height="15" fill="rgb(222,85,15)" fg:x="106418" fg:w="507"/><text x="4.6892%" y="511.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (506 samples, 0.02%)</title><rect x="4.4392%" y="485" width="0.0211%" height="15" fill="rgb(210,85,47)" fg:x="106419" fg:w="506"/><text x="4.6892%" y="495.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (506 samples, 0.02%)</title><rect x="4.4392%" y="469" width="0.0211%" height="15" fill="rgb(224,206,25)" fg:x="106419" fg:w="506"/><text x="4.6892%" y="479.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (505 samples, 0.02%)</title><rect x="4.4393%" y="453" width="0.0211%" height="15" fill="rgb(243,201,19)" fg:x="106420" fg:w="505"/><text x="4.6893%" y="463.50"></text></g><g><title>G1ParTask::work (1,439 samples, 0.06%)</title><rect x="4.4162%" y="533" width="0.0600%" height="15" fill="rgb(236,59,4)" fg:x="105867" fg:w="1439"/><text x="4.6662%" y="543.50"></text></g><g><title>__GI___clone (1,726 samples, 0.07%)</title><rect x="4.4155%" y="613" width="0.0720%" height="15" fill="rgb(254,179,45)" fg:x="105851" fg:w="1726"/><text x="4.6655%" y="623.50"></text></g><g><title>start_thread (1,726 samples, 0.07%)</title><rect x="4.4155%" y="597" width="0.0720%" height="15" fill="rgb(226,14,10)" fg:x="105851" fg:w="1726"/><text x="4.6655%" y="607.50"></text></g><g><title>thread_native_entry (1,726 samples, 0.07%)</title><rect x="4.4155%" y="581" width="0.0720%" height="15" fill="rgb(244,27,41)" fg:x="105851" fg:w="1726"/><text x="4.6655%" y="591.50"></text></g><g><title>Thread::call_run (1,726 samples, 0.07%)</title><rect x="4.4155%" y="565" width="0.0720%" height="15" fill="rgb(235,35,32)" fg:x="105851" fg:w="1726"/><text x="4.6655%" y="575.50"></text></g><g><title>GangWorker::loop (1,726 samples, 0.07%)</title><rect x="4.4155%" y="549" width="0.0720%" height="15" fill="rgb(218,68,31)" fg:x="105851" fg:w="1726"/><text x="4.6655%" y="559.50"></text></g><g><title>GC_Thread#6 (1,756 samples, 0.07%)</title><rect x="4.4144%" y="629" width="0.0733%" height="15" fill="rgb(207,120,37)" fg:x="105824" fg:w="1756"/><text x="4.6644%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (274 samples, 0.01%)</title><rect x="4.4948%" y="485" width="0.0114%" height="15" fill="rgb(227,98,0)" fg:x="107751" fg:w="274"/><text x="4.7448%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (408 samples, 0.02%)</title><rect x="4.4896%" y="501" width="0.0170%" height="15" fill="rgb(207,7,3)" fg:x="107626" fg:w="408"/><text x="4.7396%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (471 samples, 0.02%)</title><rect x="4.4893%" y="517" width="0.0196%" height="15" fill="rgb(206,98,19)" fg:x="107620" fg:w="471"/><text x="4.7393%" y="527.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (241 samples, 0.01%)</title><rect x="4.5090%" y="517" width="0.0101%" height="15" fill="rgb(217,5,26)" fg:x="108092" fg:w="241"/><text x="4.7590%" y="527.50"></text></g><g><title>G1RemSet::update_rem_set (241 samples, 0.01%)</title><rect x="4.5090%" y="501" width="0.0101%" height="15" fill="rgb(235,190,38)" fg:x="108092" fg:w="241"/><text x="4.7590%" y="511.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (241 samples, 0.01%)</title><rect x="4.5090%" y="485" width="0.0101%" height="15" fill="rgb(247,86,24)" fg:x="108092" fg:w="241"/><text x="4.7590%" y="495.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (241 samples, 0.01%)</title><rect x="4.5090%" y="469" width="0.0101%" height="15" fill="rgb(205,101,16)" fg:x="108092" fg:w="241"/><text x="4.7590%" y="479.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (241 samples, 0.01%)</title><rect x="4.5090%" y="453" width="0.0101%" height="15" fill="rgb(246,168,33)" fg:x="108092" fg:w="241"/><text x="4.7590%" y="463.50"></text></g><g><title>G1ParTask::work (1,150 samples, 0.05%)</title><rect x="4.4893%" y="533" width="0.0480%" height="15" fill="rgb(231,114,1)" fg:x="107620" fg:w="1150"/><text x="4.7393%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (267 samples, 0.01%)</title><rect x="4.5262%" y="517" width="0.0111%" height="15" fill="rgb(207,184,53)" fg:x="108503" fg:w="267"/><text x="4.7762%" y="527.50"></text></g><g><title>__GI___clone (1,358 samples, 0.06%)</title><rect x="4.4891%" y="613" width="0.0566%" height="15" fill="rgb(224,95,51)" fg:x="107614" fg:w="1358"/><text x="4.7391%" y="623.50"></text></g><g><title>start_thread (1,358 samples, 0.06%)</title><rect x="4.4891%" y="597" width="0.0566%" height="15" fill="rgb(212,188,45)" fg:x="107614" fg:w="1358"/><text x="4.7391%" y="607.50"></text></g><g><title>thread_native_entry (1,358 samples, 0.06%)</title><rect x="4.4891%" y="581" width="0.0566%" height="15" fill="rgb(223,154,38)" fg:x="107614" fg:w="1358"/><text x="4.7391%" y="591.50"></text></g><g><title>Thread::call_run (1,358 samples, 0.06%)</title><rect x="4.4891%" y="565" width="0.0566%" height="15" fill="rgb(251,22,52)" fg:x="107614" fg:w="1358"/><text x="4.7391%" y="575.50"></text></g><g><title>GangWorker::loop (1,358 samples, 0.06%)</title><rect x="4.4891%" y="549" width="0.0566%" height="15" fill="rgb(229,209,22)" fg:x="107614" fg:w="1358"/><text x="4.7391%" y="559.50"></text></g><g><title>GC_Thread#7 (1,395 samples, 0.06%)</title><rect x="4.4877%" y="629" width="0.0582%" height="15" fill="rgb(234,138,34)" fg:x="107580" fg:w="1395"/><text x="4.7377%" y="639.50"></text></g><g><title>finish_task_switch (243 samples, 0.01%)</title><rect x="4.5586%" y="293" width="0.0101%" height="15" fill="rgb(212,95,11)" fg:x="109280" fg:w="243"/><text x="4.8086%" y="303.50"></text></g><g><title>futex_wait_queue_me (290 samples, 0.01%)</title><rect x="4.5576%" y="341" width="0.0121%" height="15" fill="rgb(240,179,47)" fg:x="109256" fg:w="290"/><text x="4.8076%" y="351.50"></text></g><g><title>schedule (282 samples, 0.01%)</title><rect x="4.5579%" y="325" width="0.0118%" height="15" fill="rgb(240,163,11)" fg:x="109264" fg:w="282"/><text x="4.8079%" y="335.50"></text></g><g><title>__schedule (282 samples, 0.01%)</title><rect x="4.5579%" y="309" width="0.0118%" height="15" fill="rgb(236,37,12)" fg:x="109264" fg:w="282"/><text x="4.8079%" y="319.50"></text></g><g><title>do_futex (311 samples, 0.01%)</title><rect x="4.5574%" y="373" width="0.0130%" height="15" fill="rgb(232,164,16)" fg:x="109251" fg:w="311"/><text x="4.8074%" y="383.50"></text></g><g><title>futex_wait (309 samples, 0.01%)</title><rect x="4.5575%" y="357" width="0.0129%" height="15" fill="rgb(244,205,15)" fg:x="109253" fg:w="309"/><text x="4.8075%" y="367.50"></text></g><g><title>do_syscall_64 (318 samples, 0.01%)</title><rect x="4.5572%" y="405" width="0.0133%" height="15" fill="rgb(223,117,47)" fg:x="109247" fg:w="318"/><text x="4.8072%" y="415.50"></text></g><g><title>__x64_sys_futex (317 samples, 0.01%)</title><rect x="4.5572%" y="389" width="0.0132%" height="15" fill="rgb(244,107,35)" fg:x="109248" fg:w="317"/><text x="4.8072%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (332 samples, 0.01%)</title><rect x="4.5571%" y="421" width="0.0138%" height="15" fill="rgb(205,140,8)" fg:x="109245" fg:w="332"/><text x="4.8071%" y="431.50"></text></g><g><title>__pthread_cond_timedwait (346 samples, 0.01%)</title><rect x="4.5566%" y="469" width="0.0144%" height="15" fill="rgb(228,84,46)" fg:x="109232" fg:w="346"/><text x="4.8066%" y="479.50"></text></g><g><title>__pthread_cond_wait_common (345 samples, 0.01%)</title><rect x="4.5566%" y="453" width="0.0144%" height="15" fill="rgb(254,188,9)" fg:x="109233" fg:w="345"/><text x="4.8066%" y="463.50"></text></g><g><title>futex_abstimed_wait_cancelable (339 samples, 0.01%)</title><rect x="4.5569%" y="437" width="0.0141%" height="15" fill="rgb(206,112,54)" fg:x="109239" fg:w="339"/><text x="4.8069%" y="447.50"></text></g><g><title>Monitor::wait (375 samples, 0.02%)</title><rect x="4.5560%" y="517" width="0.0156%" height="15" fill="rgb(216,84,49)" fg:x="109218" fg:w="375"/><text x="4.8060%" y="527.50"></text></g><g><title>Monitor::IWait (372 samples, 0.02%)</title><rect x="4.5561%" y="501" width="0.0155%" height="15" fill="rgb(214,194,35)" fg:x="109221" fg:w="372"/><text x="4.8061%" y="511.50"></text></g><g><title>os::PlatformEvent::park (366 samples, 0.02%)</title><rect x="4.5564%" y="485" width="0.0153%" height="15" fill="rgb(249,28,3)" fg:x="109227" fg:w="366"/><text x="4.8064%" y="495.50"></text></g><g><title>__GI___clone (541 samples, 0.02%)</title><rect x="4.5555%" y="613" width="0.0226%" height="15" fill="rgb(222,56,52)" fg:x="109206" fg:w="541"/><text x="4.8055%" y="623.50"></text></g><g><title>start_thread (541 samples, 0.02%)</title><rect x="4.5555%" y="597" width="0.0226%" height="15" fill="rgb(245,217,50)" fg:x="109206" fg:w="541"/><text x="4.8055%" y="607.50"></text></g><g><title>thread_native_entry (541 samples, 0.02%)</title><rect x="4.5555%" y="581" width="0.0226%" height="15" fill="rgb(213,201,24)" fg:x="109206" fg:w="541"/><text x="4.8055%" y="591.50"></text></g><g><title>Thread::call_run (541 samples, 0.02%)</title><rect x="4.5555%" y="565" width="0.0226%" height="15" fill="rgb(248,116,28)" fg:x="109206" fg:w="541"/><text x="4.8055%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (541 samples, 0.02%)</title><rect x="4.5555%" y="549" width="0.0226%" height="15" fill="rgb(219,72,43)" fg:x="109206" fg:w="541"/><text x="4.8055%" y="559.50"></text></g><g><title>NMethodSweeper::sweeper_loop (540 samples, 0.02%)</title><rect x="4.5555%" y="533" width="0.0225%" height="15" fill="rgb(209,138,14)" fg:x="109207" fg:w="540"/><text x="4.8055%" y="543.50"></text></g><g><title>Sweeper_thread (556 samples, 0.02%)</title><rect x="4.5549%" y="629" width="0.0232%" height="15" fill="rgb(222,18,33)" fg:x="109192" fg:w="556"/><text x="4.8049%" y="639.50"></text></g><g><title>[perf-974282.map] (962 samples, 0.04%)</title><rect x="4.5803%" y="613" width="0.0401%" height="15" fill="rgb(213,199,7)" fg:x="109800" fg:w="962"/><text x="4.8303%" y="623.50"></text></g><g><title>Thread-0 (1,094 samples, 0.05%)</title><rect x="4.5781%" y="629" width="0.0456%" height="15" fill="rgb(250,110,10)" fg:x="109748" fg:w="1094"/><text x="4.8281%" y="639.50"></text></g><g><title>do_syscall_64 (253 samples, 0.01%)</title><rect x="4.6296%" y="405" width="0.0106%" height="15" fill="rgb(248,123,6)" fg:x="110983" fg:w="253"/><text x="4.8796%" y="415.50"></text></g><g><title>__x64_sys_futex (253 samples, 0.01%)</title><rect x="4.6296%" y="389" width="0.0106%" height="15" fill="rgb(206,91,31)" fg:x="110983" fg:w="253"/><text x="4.8796%" y="399.50"></text></g><g><title>do_futex (249 samples, 0.01%)</title><rect x="4.6298%" y="373" width="0.0104%" height="15" fill="rgb(211,154,13)" fg:x="110987" fg:w="249"/><text x="4.8798%" y="383.50"></text></g><g><title>futex_wait (245 samples, 0.01%)</title><rect x="4.6300%" y="357" width="0.0102%" height="15" fill="rgb(225,148,7)" fg:x="110991" fg:w="245"/><text x="4.8800%" y="367.50"></text></g><g><title>__pthread_cond_timedwait (269 samples, 0.01%)</title><rect x="4.6292%" y="469" width="0.0112%" height="15" fill="rgb(220,160,43)" fg:x="110973" fg:w="269"/><text x="4.8792%" y="479.50"></text></g><g><title>__pthread_cond_wait_common (267 samples, 0.01%)</title><rect x="4.6293%" y="453" width="0.0111%" height="15" fill="rgb(213,52,39)" fg:x="110975" fg:w="267"/><text x="4.8793%" y="463.50"></text></g><g><title>futex_abstimed_wait_cancelable (261 samples, 0.01%)</title><rect x="4.6295%" y="437" width="0.0109%" height="15" fill="rgb(243,137,7)" fg:x="110981" fg:w="261"/><text x="4.8795%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (259 samples, 0.01%)</title><rect x="4.6296%" y="421" width="0.0108%" height="15" fill="rgb(230,79,13)" fg:x="110983" fg:w="259"/><text x="4.8796%" y="431.50"></text></g><g><title>Monitor::wait (300 samples, 0.01%)</title><rect x="4.6285%" y="517" width="0.0125%" height="15" fill="rgb(247,105,23)" fg:x="110956" fg:w="300"/><text x="4.8785%" y="527.50"></text></g><g><title>Monitor::IWait (297 samples, 0.01%)</title><rect x="4.6286%" y="501" width="0.0124%" height="15" fill="rgb(223,179,41)" fg:x="110959" fg:w="297"/><text x="4.8786%" y="511.50"></text></g><g><title>os::PlatformEvent::park (293 samples, 0.01%)</title><rect x="4.6288%" y="485" width="0.0122%" height="15" fill="rgb(218,9,34)" fg:x="110963" fg:w="293"/><text x="4.8788%" y="495.50"></text></g><g><title>__GI___clone (396 samples, 0.02%)</title><rect x="4.6249%" y="613" width="0.0165%" height="15" fill="rgb(222,106,8)" fg:x="110869" fg:w="396"/><text x="4.8749%" y="623.50"></text></g><g><title>start_thread (396 samples, 0.02%)</title><rect x="4.6249%" y="597" width="0.0165%" height="15" fill="rgb(211,220,0)" fg:x="110869" fg:w="396"/><text x="4.8749%" y="607.50"></text></g><g><title>thread_native_entry (396 samples, 0.02%)</title><rect x="4.6249%" y="581" width="0.0165%" height="15" fill="rgb(229,52,16)" fg:x="110869" fg:w="396"/><text x="4.8749%" y="591.50"></text></g><g><title>Thread::call_run (396 samples, 0.02%)</title><rect x="4.6249%" y="565" width="0.0165%" height="15" fill="rgb(212,155,18)" fg:x="110869" fg:w="396"/><text x="4.8749%" y="575.50"></text></g><g><title>WatcherThread::run (396 samples, 0.02%)</title><rect x="4.6249%" y="549" width="0.0165%" height="15" fill="rgb(242,21,14)" fg:x="110869" fg:w="396"/><text x="4.8749%" y="559.50"></text></g><g><title>WatcherThread::sleep (313 samples, 0.01%)</title><rect x="4.6283%" y="533" width="0.0131%" height="15" fill="rgb(222,19,48)" fg:x="110952" fg:w="313"/><text x="4.8783%" y="543.50"></text></g><g><title>VM_Periodic_Tas (430 samples, 0.02%)</title><rect x="4.6237%" y="629" width="0.0179%" height="15" fill="rgb(232,45,27)" fg:x="110842" fg:w="430"/><text x="4.8737%" y="639.50"></text></g><g><title>SafepointSynchronize::begin (433 samples, 0.02%)</title><rect x="4.6552%" y="517" width="0.0181%" height="15" fill="rgb(249,103,42)" fg:x="111595" fg:w="433"/><text x="4.9052%" y="527.50"></text></g><g><title>Thread::call_run (787 samples, 0.03%)</title><rect x="4.6491%" y="565" width="0.0328%" height="15" fill="rgb(246,81,33)" fg:x="111449" fg:w="787"/><text x="4.8991%" y="575.50"></text></g><g><title>VMThread::run (787 samples, 0.03%)</title><rect x="4.6491%" y="549" width="0.0328%" height="15" fill="rgb(252,33,42)" fg:x="111449" fg:w="787"/><text x="4.8991%" y="559.50"></text></g><g><title>VMThread::loop (787 samples, 0.03%)</title><rect x="4.6491%" y="533" width="0.0328%" height="15" fill="rgb(209,212,41)" fg:x="111449" fg:w="787"/><text x="4.8991%" y="543.50"></text></g><g><title>__GI___clone (839 samples, 0.03%)</title><rect x="4.6471%" y="613" width="0.0350%" height="15" fill="rgb(207,154,6)" fg:x="111402" fg:w="839"/><text x="4.8971%" y="623.50"></text></g><g><title>start_thread (795 samples, 0.03%)</title><rect x="4.6489%" y="597" width="0.0332%" height="15" fill="rgb(223,64,47)" fg:x="111446" fg:w="795"/><text x="4.8989%" y="607.50"></text></g><g><title>thread_native_entry (795 samples, 0.03%)</title><rect x="4.6489%" y="581" width="0.0332%" height="15" fill="rgb(211,161,38)" fg:x="111446" fg:w="795"/><text x="4.8989%" y="591.50"></text></g><g><title>VM_Thread (979 samples, 0.04%)</title><rect x="4.6417%" y="629" width="0.0408%" height="15" fill="rgb(219,138,40)" fg:x="111272" fg:w="979"/><text x="4.8917%" y="639.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (458 samples, 0.02%)</title><rect x="4.6840%" y="613" width="0.0191%" height="15" fill="rgb(241,228,46)" fg:x="112287" fg:w="458"/><text x="4.9340%" y="623.50"></text></g><g><title>bazel (517 samples, 0.02%)</title><rect x="4.6839%" y="629" width="0.0216%" height="15" fill="rgb(223,209,38)" fg:x="112284" fg:w="517"/><text x="4.9339%" y="639.50"></text></g><g><title>[ld-2.31.so] (248 samples, 0.01%)</title><rect x="4.7103%" y="549" width="0.0103%" height="15" fill="rgb(236,164,45)" fg:x="112918" fg:w="248"/><text x="4.9603%" y="559.50"></text></g><g><title>_dl_start_final (249 samples, 0.01%)</title><rect x="4.7103%" y="581" width="0.0104%" height="15" fill="rgb(231,15,5)" fg:x="112918" fg:w="249"/><text x="4.9603%" y="591.50"></text></g><g><title>_dl_sysdep_start (249 samples, 0.01%)</title><rect x="4.7103%" y="565" width="0.0104%" height="15" fill="rgb(252,35,15)" fg:x="112918" fg:w="249"/><text x="4.9603%" y="575.50"></text></g><g><title>_dl_start (250 samples, 0.01%)</title><rect x="4.7103%" y="597" width="0.0104%" height="15" fill="rgb(248,181,18)" fg:x="112918" fg:w="250"/><text x="4.9603%" y="607.50"></text></g><g><title>_start (289 samples, 0.01%)</title><rect x="4.7088%" y="613" width="0.0121%" height="15" fill="rgb(233,39,42)" fg:x="112881" fg:w="289"/><text x="4.9588%" y="623.50"></text></g><g><title>build-runfiles (425 samples, 0.02%)</title><rect x="4.7055%" y="629" width="0.0177%" height="15" fill="rgb(238,110,33)" fg:x="112802" fg:w="425"/><text x="4.9555%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (557 samples, 0.02%)</title><rect x="4.7666%" y="117" width="0.0232%" height="15" fill="rgb(233,195,10)" fg:x="114267" fg:w="557"/><text x="5.0166%" y="127.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (551 samples, 0.02%)</title><rect x="4.7669%" y="101" width="0.0230%" height="15" fill="rgb(254,105,3)" fg:x="114273" fg:w="551"/><text x="5.0169%" y="111.50"></text></g><g><title>native_write_msr (548 samples, 0.02%)</title><rect x="4.7670%" y="85" width="0.0229%" height="15" fill="rgb(221,225,9)" fg:x="114276" fg:w="548"/><text x="5.0170%" y="95.50"></text></g><g><title>finish_task_switch (583 samples, 0.02%)</title><rect x="4.7661%" y="133" width="0.0243%" height="15" fill="rgb(224,227,45)" fg:x="114254" fg:w="583"/><text x="5.0161%" y="143.50"></text></g><g><title>_cond_resched (593 samples, 0.02%)</title><rect x="4.7658%" y="165" width="0.0247%" height="15" fill="rgb(229,198,43)" fg:x="114248" fg:w="593"/><text x="5.0158%" y="175.50"></text></g><g><title>__schedule (592 samples, 0.02%)</title><rect x="4.7659%" y="149" width="0.0247%" height="15" fill="rgb(206,209,35)" fg:x="114249" fg:w="592"/><text x="5.0159%" y="159.50"></text></g><g><title>sched_exec (629 samples, 0.03%)</title><rect x="4.7644%" y="197" width="0.0262%" height="15" fill="rgb(245,195,53)" fg:x="114214" fg:w="629"/><text x="5.0144%" y="207.50"></text></g><g><title>stop_one_cpu (604 samples, 0.03%)</title><rect x="4.7654%" y="181" width="0.0252%" height="15" fill="rgb(240,92,26)" fg:x="114239" fg:w="604"/><text x="5.0154%" y="191.50"></text></g><g><title>bprm_execve (1,191 samples, 0.05%)</title><rect x="4.7504%" y="213" width="0.0497%" height="15" fill="rgb(207,40,23)" fg:x="113878" fg:w="1191"/><text x="5.0004%" y="223.50"></text></g><g><title>do_execveat_common (1,319 samples, 0.06%)</title><rect x="4.7492%" y="229" width="0.0550%" height="15" fill="rgb(223,111,35)" fg:x="113850" fg:w="1319"/><text x="4.9992%" y="239.50"></text></g><g><title>__GI_execve (1,328 samples, 0.06%)</title><rect x="4.7491%" y="293" width="0.0554%" height="15" fill="rgb(229,147,28)" fg:x="113848" fg:w="1328"/><text x="4.9991%" y="303.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,327 samples, 0.06%)</title><rect x="4.7492%" y="277" width="0.0554%" height="15" fill="rgb(211,29,28)" fg:x="113849" fg:w="1327"/><text x="4.9992%" y="287.50"></text></g><g><title>do_syscall_64 (1,327 samples, 0.06%)</title><rect x="4.7492%" y="261" width="0.0554%" height="15" fill="rgb(228,72,33)" fg:x="113849" fg:w="1327"/><text x="4.9992%" y="271.50"></text></g><g><title>__x64_sys_execve (1,327 samples, 0.06%)</title><rect x="4.7492%" y="245" width="0.0554%" height="15" fill="rgb(205,214,31)" fg:x="113849" fg:w="1327"/><text x="4.9992%" y="255.50"></text></g><g><title>[dash] (1,652 samples, 0.07%)</title><rect x="4.7408%" y="309" width="0.0689%" height="15" fill="rgb(224,111,15)" fg:x="113648" fg:w="1652"/><text x="4.9908%" y="319.50"></text></g><g><title>__perf_event_task_sched_in (6,805 samples, 0.28%)</title><rect x="4.8301%" y="181" width="0.2839%" height="15" fill="rgb(253,21,26)" fg:x="115789" fg:w="6805"/><text x="5.0801%" y="191.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,715 samples, 0.28%)</title><rect x="4.8339%" y="165" width="0.2801%" height="15" fill="rgb(245,139,43)" fg:x="115879" fg:w="6715"/><text x="5.0839%" y="175.50"></text></g><g><title>native_write_msr (6,673 samples, 0.28%)</title><rect x="4.8356%" y="149" width="0.2784%" height="15" fill="rgb(252,170,7)" fg:x="115921" fg:w="6673"/><text x="5.0856%" y="159.50"></text></g><g><title>finish_task_switch (7,360 samples, 0.31%)</title><rect x="4.8199%" y="197" width="0.3070%" height="15" fill="rgb(231,118,14)" fg:x="115545" fg:w="7360"/><text x="5.0699%" y="207.50"></text></g><g><title>schedule (7,466 samples, 0.31%)</title><rect x="4.8180%" y="229" width="0.3114%" height="15" fill="rgb(238,83,0)" fg:x="115499" fg:w="7466"/><text x="5.0680%" y="239.50"></text></g><g><title>__schedule (7,459 samples, 0.31%)</title><rect x="4.8183%" y="213" width="0.3111%" height="15" fill="rgb(221,39,39)" fg:x="115506" fg:w="7459"/><text x="5.0683%" y="223.50"></text></g><g><title>release_task (336 samples, 0.01%)</title><rect x="5.1340%" y="213" width="0.0140%" height="15" fill="rgb(222,119,46)" fg:x="123075" fg:w="336"/><text x="5.3840%" y="223.50"></text></g><g><title>do_syscall_64 (8,028 samples, 0.33%)</title><rect x="4.8141%" y="277" width="0.3349%" height="15" fill="rgb(222,165,49)" fg:x="115405" fg:w="8028"/><text x="5.0641%" y="287.50"></text></g><g><title>kernel_wait4 (7,994 samples, 0.33%)</title><rect x="4.8155%" y="261" width="0.3335%" height="15" fill="rgb(219,113,52)" fg:x="115439" fg:w="7994"/><text x="5.0655%" y="271.50"></text></g><g><title>do_wait (7,985 samples, 0.33%)</title><rect x="4.8159%" y="245" width="0.3331%" height="15" fill="rgb(214,7,15)" fg:x="115448" fg:w="7985"/><text x="5.0659%" y="255.50"></text></g><g><title>wait_consider_task (468 samples, 0.02%)</title><rect x="5.1294%" y="229" width="0.0195%" height="15" fill="rgb(235,32,4)" fg:x="122965" fg:w="468"/><text x="5.3794%" y="239.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (8,260 samples, 0.34%)</title><rect x="4.8140%" y="293" width="0.3446%" height="15" fill="rgb(238,90,54)" fg:x="115404" fg:w="8260"/><text x="5.0640%" y="303.50"></text></g><g><title>__GI___wait4 (8,373 samples, 0.35%)</title><rect x="4.8121%" y="309" width="0.3493%" height="15" fill="rgb(213,208,19)" fg:x="115358" fg:w="8373"/><text x="5.0621%" y="319.50"></text></g><g><title>[dash] (10,372 samples, 0.43%)</title><rect x="4.7386%" y="325" width="0.4327%" height="15" fill="rgb(233,156,4)" fg:x="113596" fg:w="10372"/><text x="4.9886%" y="335.50"></text></g><g><title>[dash] (10,649 samples, 0.44%)</title><rect x="4.7360%" y="341" width="0.4442%" height="15" fill="rgb(207,194,5)" fg:x="113533" fg:w="10649"/><text x="4.9860%" y="351.50"></text></g><g><title>exc_page_fault (245 samples, 0.01%)</title><rect x="5.1965%" y="293" width="0.0102%" height="15" fill="rgb(206,111,30)" fg:x="124573" fg:w="245"/><text x="5.4465%" y="303.50"></text></g><g><title>do_user_addr_fault (244 samples, 0.01%)</title><rect x="5.1966%" y="277" width="0.0102%" height="15" fill="rgb(243,70,54)" fg:x="124574" fg:w="244"/><text x="5.4466%" y="287.50"></text></g><g><title>asm_exc_page_fault (249 samples, 0.01%)</title><rect x="5.1964%" y="309" width="0.0104%" height="15" fill="rgb(242,28,8)" fg:x="124571" fg:w="249"/><text x="5.4464%" y="319.50"></text></g><g><title>dup_mm (663 samples, 0.03%)</title><rect x="5.2162%" y="229" width="0.0277%" height="15" fill="rgb(219,106,18)" fg:x="125044" fg:w="663"/><text x="5.4662%" y="239.50"></text></g><g><title>copy_process (1,206 samples, 0.05%)</title><rect x="5.2069%" y="245" width="0.0503%" height="15" fill="rgb(244,222,10)" fg:x="124821" fg:w="1206"/><text x="5.4569%" y="255.50"></text></g><g><title>do_syscall_64 (1,273 samples, 0.05%)</title><rect x="5.2069%" y="293" width="0.0531%" height="15" fill="rgb(236,179,52)" fg:x="124821" fg:w="1273"/><text x="5.4569%" y="303.50"></text></g><g><title>__do_sys_clone (1,273 samples, 0.05%)</title><rect x="5.2069%" y="277" width="0.0531%" height="15" fill="rgb(213,23,39)" fg:x="124821" fg:w="1273"/><text x="5.4569%" y="287.50"></text></g><g><title>kernel_clone (1,273 samples, 0.05%)</title><rect x="5.2069%" y="261" width="0.0531%" height="15" fill="rgb(238,48,10)" fg:x="124821" fg:w="1273"/><text x="5.4569%" y="271.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,275 samples, 0.05%)</title><rect x="5.2069%" y="309" width="0.0532%" height="15" fill="rgb(251,196,23)" fg:x="124821" fg:w="1275"/><text x="5.4569%" y="319.50"></text></g><g><title>handle_mm_fault (257 samples, 0.01%)</title><rect x="5.2763%" y="213" width="0.0107%" height="15" fill="rgb(250,152,24)" fg:x="126486" fg:w="257"/><text x="5.5263%" y="223.50"></text></g><g><title>asm_exc_page_fault (545 samples, 0.02%)</title><rect x="5.2645%" y="261" width="0.0227%" height="15" fill="rgb(209,150,17)" fg:x="126202" fg:w="545"/><text x="5.5145%" y="271.50"></text></g><g><title>exc_page_fault (384 samples, 0.02%)</title><rect x="5.2712%" y="245" width="0.0160%" height="15" fill="rgb(234,202,34)" fg:x="126363" fg:w="384"/><text x="5.5212%" y="255.50"></text></g><g><title>do_user_addr_fault (378 samples, 0.02%)</title><rect x="5.2714%" y="229" width="0.0158%" height="15" fill="rgb(253,148,53)" fg:x="126369" fg:w="378"/><text x="5.5214%" y="239.50"></text></g><g><title>__put_user_nocheck_4 (582 samples, 0.02%)</title><rect x="5.2631%" y="277" width="0.0243%" height="15" fill="rgb(218,129,16)" fg:x="126170" fg:w="582"/><text x="5.5131%" y="287.50"></text></g><g><title>__perf_event_task_sched_in (7,255 samples, 0.30%)</title><rect x="5.2961%" y="261" width="0.3026%" height="15" fill="rgb(216,85,19)" fg:x="126960" fg:w="7255"/><text x="5.5461%" y="271.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (7,130 samples, 0.30%)</title><rect x="5.3013%" y="245" width="0.2974%" height="15" fill="rgb(235,228,7)" fg:x="127085" fg:w="7130"/><text x="5.5513%" y="255.50"></text></g><g><title>native_write_msr (7,072 samples, 0.30%)</title><rect x="5.3037%" y="229" width="0.2950%" height="15" fill="rgb(245,175,0)" fg:x="127143" fg:w="7072"/><text x="5.5537%" y="239.50"></text></g><g><title>schedule_tail (8,274 samples, 0.35%)</title><rect x="5.2622%" y="293" width="0.3451%" height="15" fill="rgb(208,168,36)" fg:x="126147" fg:w="8274"/><text x="5.5122%" y="303.50"></text></g><g><title>finish_task_switch (7,621 samples, 0.32%)</title><rect x="5.2894%" y="277" width="0.3179%" height="15" fill="rgb(246,171,24)" fg:x="126800" fg:w="7621"/><text x="5.5394%" y="287.50"></text></g><g><title>ret_from_fork (8,331 samples, 0.35%)</title><rect x="5.2613%" y="309" width="0.3475%" height="15" fill="rgb(215,142,24)" fg:x="126126" fg:w="8331"/><text x="5.5113%" y="319.50"></text></g><g><title>arch_fork (9,928 samples, 0.41%)</title><rect x="5.1947%" y="325" width="0.4141%" height="15" fill="rgb(250,187,7)" fg:x="124530" fg:w="9928"/><text x="5.4447%" y="335.50"></text></g><g><title>__libc_fork (10,364 samples, 0.43%)</title><rect x="5.1871%" y="341" width="0.4323%" height="15" fill="rgb(228,66,33)" fg:x="124348" fg:w="10364"/><text x="5.4371%" y="351.50"></text></g><g><title>[dash] (21,375 samples, 0.89%)</title><rect x="4.7349%" y="357" width="0.8917%" height="15" fill="rgb(234,215,21)" fg:x="113506" fg:w="21375"/><text x="4.9849%" y="367.50"></text></g><g><title>[dash] (21,529 samples, 0.90%)</title><rect x="4.7344%" y="373" width="0.8981%" height="15" fill="rgb(222,191,20)" fg:x="113495" fg:w="21529"/><text x="4.9844%" y="383.50"></text></g><g><title>[dash] (21,648 samples, 0.90%)</title><rect x="4.7337%" y="389" width="0.9030%" height="15" fill="rgb(245,79,54)" fg:x="113479" fg:w="21648"/><text x="4.9837%" y="399.50"></text></g><g><title>[dash] (21,830 samples, 0.91%)</title><rect x="4.7325%" y="405" width="0.9106%" height="15" fill="rgb(240,10,37)" fg:x="113449" fg:w="21830"/><text x="4.9825%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (355 samples, 0.01%)</title><rect x="5.6461%" y="277" width="0.0148%" height="15" fill="rgb(214,192,32)" fg:x="135350" fg:w="355"/><text x="5.8961%" y="287.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (348 samples, 0.01%)</title><rect x="5.6464%" y="261" width="0.0145%" height="15" fill="rgb(209,36,54)" fg:x="135357" fg:w="348"/><text x="5.8964%" y="271.50"></text></g><g><title>native_write_msr (345 samples, 0.01%)</title><rect x="5.6465%" y="245" width="0.0144%" height="15" fill="rgb(220,10,11)" fg:x="135360" fg:w="345"/><text x="5.8965%" y="255.50"></text></g><g><title>finish_task_switch (385 samples, 0.02%)</title><rect x="5.6457%" y="293" width="0.0161%" height="15" fill="rgb(221,106,17)" fg:x="135340" fg:w="385"/><text x="5.8957%" y="303.50"></text></g><g><title>schedule (394 samples, 0.02%)</title><rect x="5.6455%" y="325" width="0.0164%" height="15" fill="rgb(251,142,44)" fg:x="135337" fg:w="394"/><text x="5.8955%" y="335.50"></text></g><g><title>__schedule (393 samples, 0.02%)</title><rect x="5.6456%" y="309" width="0.0164%" height="15" fill="rgb(238,13,15)" fg:x="135338" fg:w="393"/><text x="5.8956%" y="319.50"></text></g><g><title>do_syscall_64 (507 samples, 0.02%)</title><rect x="5.6447%" y="373" width="0.0211%" height="15" fill="rgb(208,107,27)" fg:x="135316" fg:w="507"/><text x="5.8947%" y="383.50"></text></g><g><title>kernel_wait4 (505 samples, 0.02%)</title><rect x="5.6447%" y="357" width="0.0211%" height="15" fill="rgb(205,136,37)" fg:x="135318" fg:w="505"/><text x="5.8947%" y="367.50"></text></g><g><title>do_wait (501 samples, 0.02%)</title><rect x="5.6449%" y="341" width="0.0209%" height="15" fill="rgb(250,205,27)" fg:x="135322" fg:w="501"/><text x="5.8949%" y="351.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (521 samples, 0.02%)</title><rect x="5.6447%" y="389" width="0.0217%" height="15" fill="rgb(210,80,43)" fg:x="135316" fg:w="521"/><text x="5.8947%" y="399.50"></text></g><g><title>__GI___wait4 (560 samples, 0.02%)</title><rect x="5.6432%" y="405" width="0.0234%" height="15" fill="rgb(247,160,36)" fg:x="135280" fg:w="560"/><text x="5.8932%" y="415.50"></text></g><g><title>[dash] (22,602 samples, 0.94%)</title><rect x="4.7309%" y="421" width="0.9428%" height="15" fill="rgb(234,13,49)" fg:x="113411" fg:w="22602"/><text x="4.9809%" y="431.50"></text></g><g><title>dup_mm (370 samples, 0.02%)</title><rect x="5.6875%" y="309" width="0.0154%" height="15" fill="rgb(234,122,0)" fg:x="136344" fg:w="370"/><text x="5.9375%" y="319.50"></text></g><g><title>copy_process (707 samples, 0.03%)</title><rect x="5.6823%" y="325" width="0.0295%" height="15" fill="rgb(207,146,38)" fg:x="136218" fg:w="707"/><text x="5.9323%" y="335.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (757 samples, 0.03%)</title><rect x="5.6823%" y="389" width="0.0316%" height="15" fill="rgb(207,177,25)" fg:x="136217" fg:w="757"/><text x="5.9323%" y="399.50"></text></g><g><title>do_syscall_64 (757 samples, 0.03%)</title><rect x="5.6823%" y="373" width="0.0316%" height="15" fill="rgb(211,178,42)" fg:x="136217" fg:w="757"/><text x="5.9323%" y="383.50"></text></g><g><title>__do_sys_clone (757 samples, 0.03%)</title><rect x="5.6823%" y="357" width="0.0316%" height="15" fill="rgb(230,69,54)" fg:x="136217" fg:w="757"/><text x="5.9323%" y="367.50"></text></g><g><title>kernel_clone (756 samples, 0.03%)</title><rect x="5.6823%" y="341" width="0.0315%" height="15" fill="rgb(214,135,41)" fg:x="136218" fg:w="756"/><text x="5.9323%" y="351.50"></text></g><g><title>handle_mm_fault (261 samples, 0.01%)</title><rect x="5.7218%" y="293" width="0.0109%" height="15" fill="rgb(237,67,25)" fg:x="137165" fg:w="261"/><text x="5.9718%" y="303.50"></text></g><g><title>asm_exc_page_fault (414 samples, 0.02%)</title><rect x="5.7155%" y="341" width="0.0173%" height="15" fill="rgb(222,189,50)" fg:x="137013" fg:w="414"/><text x="5.9655%" y="351.50"></text></g><g><title>exc_page_fault (327 samples, 0.01%)</title><rect x="5.7191%" y="325" width="0.0136%" height="15" fill="rgb(245,148,34)" fg:x="137100" fg:w="327"/><text x="5.9691%" y="335.50"></text></g><g><title>do_user_addr_fault (320 samples, 0.01%)</title><rect x="5.7194%" y="309" width="0.0133%" height="15" fill="rgb(222,29,6)" fg:x="137107" fg:w="320"/><text x="5.9694%" y="319.50"></text></g><g><title>__put_user_nocheck_4 (427 samples, 0.02%)</title><rect x="5.7150%" y="357" width="0.0178%" height="15" fill="rgb(221,189,43)" fg:x="137003" fg:w="427"/><text x="5.9650%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (4,121 samples, 0.17%)</title><rect x="5.7391%" y="341" width="0.1719%" height="15" fill="rgb(207,36,27)" fg:x="137580" fg:w="4121"/><text x="5.9891%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,050 samples, 0.17%)</title><rect x="5.7421%" y="325" width="0.1689%" height="15" fill="rgb(217,90,24)" fg:x="137651" fg:w="4050"/><text x="5.9921%" y="335.50"></text></g><g><title>native_write_msr (4,020 samples, 0.17%)</title><rect x="5.7433%" y="309" width="0.1677%" height="15" fill="rgb(224,66,35)" fg:x="137681" fg:w="4020"/><text x="5.9933%" y="319.50"></text></g><g><title>schedule_tail (4,833 samples, 0.20%)</title><rect x="5.7146%" y="373" width="0.2016%" height="15" fill="rgb(221,13,50)" fg:x="136993" fg:w="4833"/><text x="5.9646%" y="383.50"></text></g><g><title>finish_task_switch (4,377 samples, 0.18%)</title><rect x="5.7336%" y="357" width="0.1826%" height="15" fill="rgb(236,68,49)" fg:x="137449" fg:w="4377"/><text x="5.9836%" y="367.50"></text></g><g><title>ret_from_fork (4,847 samples, 0.20%)</title><rect x="5.7145%" y="389" width="0.2022%" height="15" fill="rgb(229,146,28)" fg:x="136989" fg:w="4847"/><text x="5.9645%" y="399.50"></text></g><g><title>arch_fork (5,747 samples, 0.24%)</title><rect x="5.6770%" y="405" width="0.2397%" height="15" fill="rgb(225,31,38)" fg:x="136090" fg:w="5747"/><text x="5.9270%" y="415.50"></text></g><g><title>__libc_fork (5,917 samples, 0.25%)</title><rect x="5.6738%" y="421" width="0.2468%" height="15" fill="rgb(250,208,3)" fg:x="136015" fg:w="5917"/><text x="5.9238%" y="431.50"></text></g><g><title>[dash] (28,631 samples, 1.19%)</title><rect x="4.7295%" y="437" width="1.1943%" height="15" fill="rgb(246,54,23)" fg:x="113378" fg:w="28631"/><text x="4.9795%" y="447.50"></text></g><g><title>[dash] (28,779 samples, 1.20%)</title><rect x="4.7289%" y="453" width="1.2005%" height="15" fill="rgb(243,76,11)" fg:x="113364" fg:w="28779"/><text x="4.9789%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (3,908 samples, 0.16%)</title><rect x="5.9514%" y="293" width="0.1630%" height="15" fill="rgb(245,21,50)" fg:x="142669" fg:w="3908"/><text x="6.2014%" y="303.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,869 samples, 0.16%)</title><rect x="5.9530%" y="277" width="0.1614%" height="15" fill="rgb(228,9,43)" fg:x="142708" fg:w="3869"/><text x="6.2030%" y="287.50"></text></g><g><title>native_write_msr (3,850 samples, 0.16%)</title><rect x="5.9538%" y="261" width="0.1606%" height="15" fill="rgb(208,100,47)" fg:x="142727" fg:w="3850"/><text x="6.2038%" y="271.50"></text></g><g><title>finish_task_switch (4,234 samples, 0.18%)</title><rect x="5.9467%" y="309" width="0.1766%" height="15" fill="rgb(232,26,8)" fg:x="142556" fg:w="4234"/><text x="6.1967%" y="319.50"></text></g><g><title>schedule (4,302 samples, 0.18%)</title><rect x="5.9451%" y="341" width="0.1795%" height="15" fill="rgb(216,166,38)" fg:x="142517" fg:w="4302"/><text x="6.1951%" y="351.50"></text></g><g><title>__schedule (4,299 samples, 0.18%)</title><rect x="5.9452%" y="325" width="0.1793%" height="15" fill="rgb(251,202,51)" fg:x="142520" fg:w="4299"/><text x="6.1952%" y="335.50"></text></g><g><title>new_sync_read (4,450 samples, 0.19%)</title><rect x="5.9393%" y="373" width="0.1856%" height="15" fill="rgb(254,216,34)" fg:x="142379" fg:w="4450"/><text x="6.1893%" y="383.50"></text></g><g><title>pipe_read (4,440 samples, 0.19%)</title><rect x="5.9397%" y="357" width="0.1852%" height="15" fill="rgb(251,32,27)" fg:x="142389" fg:w="4440"/><text x="6.1897%" y="367.50"></text></g><g><title>do_syscall_64 (4,506 samples, 0.19%)</title><rect x="5.9375%" y="421" width="0.1880%" height="15" fill="rgb(208,127,28)" fg:x="142335" fg:w="4506"/><text x="6.1875%" y="431.50"></text></g><g><title>ksys_read (4,497 samples, 0.19%)</title><rect x="5.9378%" y="405" width="0.1876%" height="15" fill="rgb(224,137,22)" fg:x="142344" fg:w="4497"/><text x="6.1878%" y="415.50"></text></g><g><title>vfs_read (4,485 samples, 0.19%)</title><rect x="5.9383%" y="389" width="0.1871%" height="15" fill="rgb(254,70,32)" fg:x="142356" fg:w="4485"/><text x="6.1883%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,611 samples, 0.19%)</title><rect x="5.9375%" y="437" width="0.1923%" height="15" fill="rgb(229,75,37)" fg:x="142335" fg:w="4611"/><text x="6.1875%" y="447.50"></text></g><g><title>__GI___libc_read (4,684 samples, 0.20%)</title><rect x="5.9366%" y="453" width="0.1954%" height="15" fill="rgb(252,64,23)" fg:x="142315" fg:w="4684"/><text x="6.1866%" y="463.50"></text></g><g><title>[dash] (33,833 samples, 1.41%)</title><rect x="4.7275%" y="469" width="1.4113%" height="15" fill="rgb(232,162,48)" fg:x="113330" fg:w="33833"/><text x="4.9775%" y="479.50"></text></g><g><title>[dash] (33,873 samples, 1.41%)</title><rect x="4.7270%" y="485" width="1.4130%" height="15" fill="rgb(246,160,12)" fg:x="113318" fg:w="33873"/><text x="4.9770%" y="495.50"></text></g><g><title>[dash] (33,906 samples, 1.41%)</title><rect x="4.7264%" y="501" width="1.4144%" height="15" fill="rgb(247,166,0)" fg:x="113302" fg:w="33906"/><text x="4.9764%" y="511.50"></text></g><g><title>[dash] (33,916 samples, 1.41%)</title><rect x="4.7261%" y="517" width="1.4148%" height="15" fill="rgb(249,219,21)" fg:x="113297" fg:w="33916"/><text x="4.9761%" y="527.50"></text></g><g><title>[dash] (33,967 samples, 1.42%)</title><rect x="4.7261%" y="533" width="1.4169%" height="15" fill="rgb(205,209,3)" fg:x="113295" fg:w="33967"/><text x="4.9761%" y="543.50"></text></g><g><title>[dash] (33,980 samples, 1.42%)</title><rect x="4.7257%" y="549" width="1.4175%" height="15" fill="rgb(243,44,1)" fg:x="113286" fg:w="33980"/><text x="4.9757%" y="559.50"></text></g><g><title>[dash] (34,044 samples, 1.42%)</title><rect x="4.7256%" y="565" width="1.4201%" height="15" fill="rgb(206,159,16)" fg:x="113285" fg:w="34044"/><text x="4.9756%" y="575.50"></text></g><g><title>[dash] (34,060 samples, 1.42%)</title><rect x="4.7256%" y="581" width="1.4208%" height="15" fill="rgb(244,77,30)" fg:x="113284" fg:w="34060"/><text x="4.9756%" y="591.50"></text></g><g><title>__libc_start_main (34,061 samples, 1.42%)</title><rect x="4.7256%" y="597" width="1.4208%" height="15" fill="rgb(218,69,12)" fg:x="113284" fg:w="34061"/><text x="4.9756%" y="607.50"></text></g><g><title>[dash] (34,075 samples, 1.42%)</title><rect x="4.7251%" y="613" width="1.4214%" height="15" fill="rgb(212,87,7)" fg:x="113271" fg:w="34075"/><text x="4.9751%" y="623.50"></text></g><g><title>[unknown] (280 samples, 0.01%)</title><rect x="6.1465%" y="613" width="0.0117%" height="15" fill="rgb(245,114,25)" fg:x="147346" fg:w="280"/><text x="6.3965%" y="623.50"></text></g><g><title>asm_exc_page_fault (453 samples, 0.02%)</title><rect x="6.1643%" y="613" width="0.0189%" height="15" fill="rgb(210,61,42)" fg:x="147773" fg:w="453"/><text x="6.4143%" y="623.50"></text></g><g><title>exit_mmap (442 samples, 0.02%)</title><rect x="6.1846%" y="485" width="0.0184%" height="15" fill="rgb(211,52,33)" fg:x="148259" fg:w="442"/><text x="6.4346%" y="495.50"></text></g><g><title>mmput (444 samples, 0.02%)</title><rect x="6.1846%" y="501" width="0.0185%" height="15" fill="rgb(234,58,33)" fg:x="148259" fg:w="444"/><text x="6.4346%" y="511.50"></text></g><g><title>begin_new_exec (486 samples, 0.02%)</title><rect x="6.1836%" y="517" width="0.0203%" height="15" fill="rgb(220,115,36)" fg:x="148236" fg:w="486"/><text x="6.4336%" y="527.50"></text></g><g><title>__x64_sys_execve (532 samples, 0.02%)</title><rect x="6.1834%" y="581" width="0.0222%" height="15" fill="rgb(243,153,54)" fg:x="148230" fg:w="532"/><text x="6.4334%" y="591.50"></text></g><g><title>do_execveat_common (532 samples, 0.02%)</title><rect x="6.1834%" y="565" width="0.0222%" height="15" fill="rgb(251,47,18)" fg:x="148230" fg:w="532"/><text x="6.4334%" y="575.50"></text></g><g><title>bprm_execve (532 samples, 0.02%)</title><rect x="6.1834%" y="549" width="0.0222%" height="15" fill="rgb(242,102,42)" fg:x="148230" fg:w="532"/><text x="6.4334%" y="559.50"></text></g><g><title>load_elf_binary (532 samples, 0.02%)</title><rect x="6.1834%" y="533" width="0.0222%" height="15" fill="rgb(234,31,38)" fg:x="148230" fg:w="532"/><text x="6.4334%" y="543.50"></text></g><g><title>free_pgtables (281 samples, 0.01%)</title><rect x="6.2074%" y="501" width="0.0117%" height="15" fill="rgb(221,117,51)" fg:x="148807" fg:w="281"/><text x="6.4574%" y="511.50"></text></g><g><title>unmap_page_range (404 samples, 0.02%)</title><rect x="6.2334%" y="485" width="0.0169%" height="15" fill="rgb(212,20,18)" fg:x="149430" fg:w="404"/><text x="6.4834%" y="495.50"></text></g><g><title>exit_mmap (1,050 samples, 0.04%)</title><rect x="6.2069%" y="517" width="0.0438%" height="15" fill="rgb(245,133,36)" fg:x="148795" fg:w="1050"/><text x="6.4569%" y="527.50"></text></g><g><title>unmap_vmas (419 samples, 0.02%)</title><rect x="6.2333%" y="501" width="0.0175%" height="15" fill="rgb(212,6,19)" fg:x="149426" fg:w="419"/><text x="6.4833%" y="511.50"></text></g><g><title>mmput (1,056 samples, 0.04%)</title><rect x="6.2067%" y="533" width="0.0441%" height="15" fill="rgb(218,1,36)" fg:x="148790" fg:w="1056"/><text x="6.4567%" y="543.50"></text></g><g><title>__x64_sys_exit_group (1,209 samples, 0.05%)</title><rect x="6.2056%" y="581" width="0.0504%" height="15" fill="rgb(246,84,54)" fg:x="148762" fg:w="1209"/><text x="6.4556%" y="591.50"></text></g><g><title>do_group_exit (1,209 samples, 0.05%)</title><rect x="6.2056%" y="565" width="0.0504%" height="15" fill="rgb(242,110,6)" fg:x="148762" fg:w="1209"/><text x="6.4556%" y="575.50"></text></g><g><title>do_exit (1,209 samples, 0.05%)</title><rect x="6.2056%" y="549" width="0.0504%" height="15" fill="rgb(214,47,5)" fg:x="148762" fg:w="1209"/><text x="6.4556%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,750 samples, 0.07%)</title><rect x="6.1833%" y="613" width="0.0730%" height="15" fill="rgb(218,159,25)" fg:x="148228" fg:w="1750"/><text x="6.4333%" y="623.50"></text></g><g><title>do_syscall_64 (1,748 samples, 0.07%)</title><rect x="6.1834%" y="597" width="0.0729%" height="15" fill="rgb(215,211,28)" fg:x="148230" fg:w="1748"/><text x="6.4334%" y="607.50"></text></g><g><title>c++ (36,769 samples, 1.53%)</title><rect x="4.7232%" y="629" width="1.5338%" height="15" fill="rgb(238,59,32)" fg:x="113227" fg:w="36769"/><text x="4.9732%" y="639.50"></text></g><g><title>[perf-974282.map] (346 samples, 0.01%)</title><rect x="6.2580%" y="613" width="0.0144%" height="15" fill="rgb(226,82,3)" fg:x="150020" fg:w="346"/><text x="6.5080%" y="623.50"></text></g><g><title>find-action-loo (381 samples, 0.02%)</title><rect x="6.2580%" y="629" width="0.0159%" height="15" fill="rgb(240,164,32)" fg:x="150019" fg:w="381"/><text x="6.5080%" y="639.50"></text></g><g><title>[perf-974282.map] (254 samples, 0.01%)</title><rect x="6.2795%" y="613" width="0.0106%" height="15" fill="rgb(232,46,7)" fg:x="150535" fg:w="254"/><text x="6.5295%" y="623.50"></text></g><g><title>globbing_pool-1 (395 samples, 0.02%)</title><rect x="6.2780%" y="629" width="0.0165%" height="15" fill="rgb(229,129,53)" fg:x="150498" fg:w="395"/><text x="6.5280%" y="639.50"></text></g><g><title>[perf-974282.map] (341 samples, 0.01%)</title><rect x="6.2962%" y="613" width="0.0142%" height="15" fill="rgb(234,188,29)" fg:x="150936" fg:w="341"/><text x="6.5462%" y="623.50"></text></g><g><title>globbing_pool-2 (502 samples, 0.02%)</title><rect x="6.2945%" y="629" width="0.0209%" height="15" fill="rgb(246,141,4)" fg:x="150893" fg:w="502"/><text x="6.5445%" y="639.50"></text></g><g><title>[perf-974282.map] (261 samples, 0.01%)</title><rect x="6.3169%" y="613" width="0.0109%" height="15" fill="rgb(229,23,39)" fg:x="151432" fg:w="261"/><text x="6.5669%" y="623.50"></text></g><g><title>globbing_pool-3 (350 samples, 0.01%)</title><rect x="6.3154%" y="629" width="0.0146%" height="15" fill="rgb(206,12,3)" fg:x="151395" fg:w="350"/><text x="6.5654%" y="639.50"></text></g><g><title>globbing_pool-4 (260 samples, 0.01%)</title><rect x="6.3300%" y="629" width="0.0108%" height="15" fill="rgb(252,226,20)" fg:x="151745" fg:w="260"/><text x="6.5800%" y="639.50"></text></g><g><title>globbing_pool-9 (262 samples, 0.01%)</title><rect x="6.3710%" y="629" width="0.0109%" height="15" fill="rgb(216,123,35)" fg:x="152728" fg:w="262"/><text x="6.6210%" y="639.50"></text></g><g><title>InterpreterRuntime::_new (286 samples, 0.01%)</title><rect x="6.4767%" y="597" width="0.0119%" height="15" fill="rgb(212,68,40)" fg:x="155263" fg:w="286"/><text x="6.7267%" y="607.50"></text></g><g><title>LinkResolver::resolve_invoke (267 samples, 0.01%)</title><rect x="6.4999%" y="565" width="0.0111%" height="15" fill="rgb(254,125,32)" fg:x="155818" fg:w="267"/><text x="6.7499%" y="575.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (306 samples, 0.01%)</title><rect x="6.4986%" y="581" width="0.0128%" height="15" fill="rgb(253,97,22)" fg:x="155788" fg:w="306"/><text x="6.7486%" y="591.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (461 samples, 0.02%)</title><rect x="6.4946%" y="597" width="0.0192%" height="15" fill="rgb(241,101,14)" fg:x="155691" fg:w="461"/><text x="6.7446%" y="607.50"></text></g><g><title>SymbolTable::lookup_only (424 samples, 0.02%)</title><rect x="6.5336%" y="453" width="0.0177%" height="15" fill="rgb(238,103,29)" fg:x="156627" fg:w="424"/><text x="6.7836%" y="463.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (502 samples, 0.02%)</title><rect x="6.5304%" y="469" width="0.0209%" height="15" fill="rgb(233,195,47)" fg:x="156550" fg:w="502"/><text x="6.7804%" y="479.50"></text></g><g><title>ClassFileParser::parse_constant_pool (525 samples, 0.02%)</title><rect x="6.5299%" y="485" width="0.0219%" height="15" fill="rgb(246,218,30)" fg:x="156538" fg:w="525"/><text x="6.7799%" y="495.50"></text></g><g><title>ClassFileParser::ClassFileParser (743 samples, 0.03%)</title><rect x="6.5293%" y="517" width="0.0310%" height="15" fill="rgb(219,145,47)" fg:x="156522" fg:w="743"/><text x="6.7793%" y="527.50"></text></g><g><title>ClassFileParser::parse_stream (742 samples, 0.03%)</title><rect x="6.5293%" y="501" width="0.0310%" height="15" fill="rgb(243,12,26)" fg:x="156523" fg:w="742"/><text x="6.7793%" y="511.50"></text></g><g><title>KlassFactory::create_from_stream (980 samples, 0.04%)</title><rect x="6.5292%" y="533" width="0.0409%" height="15" fill="rgb(214,87,16)" fg:x="156521" fg:w="980"/><text x="6.7792%" y="543.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,025 samples, 0.04%)</title><rect x="6.5292%" y="549" width="0.0428%" height="15" fill="rgb(208,99,42)" fg:x="156520" fg:w="1025"/><text x="6.7792%" y="559.50"></text></g><g><title>JVM_DefineClassWithSource (1,038 samples, 0.04%)</title><rect x="6.5287%" y="581" width="0.0433%" height="15" fill="rgb(253,99,2)" fg:x="156508" fg:w="1038"/><text x="6.7787%" y="591.50"></text></g><g><title>jvm_define_class_common (1,036 samples, 0.04%)</title><rect x="6.5288%" y="565" width="0.0432%" height="15" fill="rgb(220,168,23)" fg:x="156510" fg:w="1036"/><text x="6.7788%" y="575.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,066 samples, 0.04%)</title><rect x="6.5285%" y="597" width="0.0445%" height="15" fill="rgb(242,38,24)" fg:x="156504" fg:w="1066"/><text x="6.7785%" y="607.50"></text></g><g><title>[perf-974282.map] (4,667 samples, 0.19%)</title><rect x="6.3932%" y="613" width="0.1947%" height="15" fill="rgb(225,182,9)" fg:x="153259" fg:w="4667"/><text x="6.6432%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (247 samples, 0.01%)</title><rect x="6.5956%" y="549" width="0.0103%" height="15" fill="rgb(243,178,37)" fg:x="158113" fg:w="247"/><text x="6.8456%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (242 samples, 0.01%)</title><rect x="6.5958%" y="533" width="0.0101%" height="15" fill="rgb(232,139,19)" fg:x="158118" fg:w="242"/><text x="6.8458%" y="543.50"></text></g><g><title>native_write_msr (242 samples, 0.01%)</title><rect x="6.5958%" y="517" width="0.0101%" height="15" fill="rgb(225,201,24)" fg:x="158118" fg:w="242"/><text x="6.8458%" y="527.50"></text></g><g><title>schedule_tail (255 samples, 0.01%)</title><rect x="6.5954%" y="581" width="0.0106%" height="15" fill="rgb(221,47,46)" fg:x="158108" fg:w="255"/><text x="6.8454%" y="591.50"></text></g><g><title>finish_task_switch (255 samples, 0.01%)</title><rect x="6.5954%" y="565" width="0.0106%" height="15" fill="rgb(249,23,13)" fg:x="158108" fg:w="255"/><text x="6.8454%" y="575.50"></text></g><g><title>ret_from_fork (271 samples, 0.01%)</title><rect x="6.5950%" y="597" width="0.0113%" height="15" fill="rgb(219,9,5)" fg:x="158098" fg:w="271"/><text x="6.8450%" y="607.50"></text></g><g><title>__GI___clone (415 samples, 0.02%)</title><rect x="6.5944%" y="613" width="0.0173%" height="15" fill="rgb(254,171,16)" fg:x="158084" fg:w="415"/><text x="6.8444%" y="623.50"></text></g><g><title>java (5,547 samples, 0.23%)</title><rect x="6.3819%" y="629" width="0.2314%" height="15" fill="rgb(230,171,20)" fg:x="152990" fg:w="5547"/><text x="6.6319%" y="639.50"></text></g><g><title>[unknown] (376 samples, 0.02%)</title><rect x="6.6165%" y="613" width="0.0157%" height="15" fill="rgb(210,71,41)" fg:x="158612" fg:w="376"/><text x="6.8665%" y="623.50"></text></g><g><title>expand_word_leave_quoted (313 samples, 0.01%)</title><rect x="6.6487%" y="485" width="0.0131%" height="15" fill="rgb(206,173,20)" fg:x="159386" fg:w="313"/><text x="6.8987%" y="495.50"></text></g><g><title>[bash] (313 samples, 0.01%)</title><rect x="6.6487%" y="469" width="0.0131%" height="15" fill="rgb(233,88,34)" fg:x="159386" fg:w="313"/><text x="6.8987%" y="479.50"></text></g><g><title>command_substitute (313 samples, 0.01%)</title><rect x="6.6487%" y="453" width="0.0131%" height="15" fill="rgb(223,209,46)" fg:x="159386" fg:w="313"/><text x="6.8987%" y="463.50"></text></g><g><title>execute_command (342 samples, 0.01%)</title><rect x="6.6477%" y="517" width="0.0143%" height="15" fill="rgb(250,43,18)" fg:x="159361" fg:w="342"/><text x="6.8977%" y="527.50"></text></g><g><title>execute_command_internal (342 samples, 0.01%)</title><rect x="6.6477%" y="501" width="0.0143%" height="15" fill="rgb(208,13,10)" fg:x="159361" fg:w="342"/><text x="6.8977%" y="511.50"></text></g><g><title>parse_and_execute (331 samples, 0.01%)</title><rect x="6.6668%" y="421" width="0.0138%" height="15" fill="rgb(212,200,36)" fg:x="159819" fg:w="331"/><text x="6.9168%" y="431.50"></text></g><g><title>execute_command_internal (329 samples, 0.01%)</title><rect x="6.6669%" y="405" width="0.0137%" height="15" fill="rgb(225,90,30)" fg:x="159821" fg:w="329"/><text x="6.9169%" y="415.50"></text></g><g><title>[bash] (329 samples, 0.01%)</title><rect x="6.6669%" y="389" width="0.0137%" height="15" fill="rgb(236,182,39)" fg:x="159821" fg:w="329"/><text x="6.9169%" y="399.50"></text></g><g><title>[bash] (329 samples, 0.01%)</title><rect x="6.6669%" y="373" width="0.0137%" height="15" fill="rgb(212,144,35)" fg:x="159821" fg:w="329"/><text x="6.9169%" y="383.50"></text></g><g><title>execute_command_internal (326 samples, 0.01%)</title><rect x="6.6670%" y="357" width="0.0136%" height="15" fill="rgb(228,63,44)" fg:x="159824" fg:w="326"/><text x="6.9170%" y="367.50"></text></g><g><title>command_substitute (465 samples, 0.02%)</title><rect x="6.6623%" y="437" width="0.0194%" height="15" fill="rgb(228,109,6)" fg:x="159711" fg:w="465"/><text x="6.9123%" y="447.50"></text></g><g><title>[bash] (477 samples, 0.02%)</title><rect x="6.6620%" y="453" width="0.0199%" height="15" fill="rgb(238,117,24)" fg:x="159704" fg:w="477"/><text x="6.9120%" y="463.50"></text></g><g><title>[bash] (479 samples, 0.02%)</title><rect x="6.6620%" y="469" width="0.0200%" height="15" fill="rgb(242,26,26)" fg:x="159704" fg:w="479"/><text x="6.9120%" y="479.50"></text></g><g><title>[bash] (484 samples, 0.02%)</title><rect x="6.6620%" y="485" width="0.0202%" height="15" fill="rgb(221,92,48)" fg:x="159704" fg:w="484"/><text x="6.9120%" y="495.50"></text></g><g><title>[bash] (487 samples, 0.02%)</title><rect x="6.6620%" y="501" width="0.0203%" height="15" fill="rgb(209,209,32)" fg:x="159704" fg:w="487"/><text x="6.9120%" y="511.50"></text></g><g><title>expand_words (489 samples, 0.02%)</title><rect x="6.6620%" y="517" width="0.0204%" height="15" fill="rgb(221,70,22)" fg:x="159703" fg:w="489"/><text x="6.9120%" y="527.50"></text></g><g><title>execute_command (1,174 samples, 0.05%)</title><rect x="6.6336%" y="549" width="0.0490%" height="15" fill="rgb(248,145,5)" fg:x="159022" fg:w="1174"/><text x="6.8836%" y="559.50"></text></g><g><title>execute_command_internal (1,172 samples, 0.05%)</title><rect x="6.6336%" y="533" width="0.0489%" height="15" fill="rgb(226,116,26)" fg:x="159024" fg:w="1172"/><text x="6.8836%" y="543.50"></text></g><g><title>[bash] (355 samples, 0.01%)</title><rect x="6.6844%" y="501" width="0.0148%" height="15" fill="rgb(244,5,17)" fg:x="160242" fg:w="355"/><text x="6.9344%" y="511.50"></text></g><g><title>reader_loop (1,630 samples, 0.07%)</title><rect x="6.6325%" y="565" width="0.0680%" height="15" fill="rgb(252,159,33)" fg:x="158996" fg:w="1630"/><text x="6.8825%" y="575.50"></text></g><g><title>read_command (430 samples, 0.02%)</title><rect x="6.6825%" y="549" width="0.0179%" height="15" fill="rgb(206,71,0)" fg:x="160196" fg:w="430"/><text x="6.9325%" y="559.50"></text></g><g><title>parse_command (430 samples, 0.02%)</title><rect x="6.6825%" y="533" width="0.0179%" height="15" fill="rgb(233,118,54)" fg:x="160196" fg:w="430"/><text x="6.9325%" y="543.50"></text></g><g><title>yyparse (430 samples, 0.02%)</title><rect x="6.6825%" y="517" width="0.0179%" height="15" fill="rgb(234,83,48)" fg:x="160196" fg:w="430"/><text x="6.9325%" y="527.50"></text></g><g><title>__libc_start_main (1,642 samples, 0.07%)</title><rect x="6.6323%" y="597" width="0.0685%" height="15" fill="rgb(228,3,54)" fg:x="158991" fg:w="1642"/><text x="6.8823%" y="607.50"></text></g><g><title>main (1,642 samples, 0.07%)</title><rect x="6.6323%" y="581" width="0.0685%" height="15" fill="rgb(226,155,13)" fg:x="158991" fg:w="1642"/><text x="6.8823%" y="591.50"></text></g><g><title>_start (1,655 samples, 0.07%)</title><rect x="6.6323%" y="613" width="0.0690%" height="15" fill="rgb(241,28,37)" fg:x="158991" fg:w="1655"/><text x="6.8823%" y="623.50"></text></g><g><title>libtool (2,205 samples, 0.09%)</title><rect x="6.6133%" y="629" width="0.0920%" height="15" fill="rgb(233,93,10)" fg:x="158537" fg:w="2205"/><text x="6.8633%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (253 samples, 0.01%)</title><rect x="6.7404%" y="501" width="0.0106%" height="15" fill="rgb(225,113,19)" fg:x="161583" fg:w="253"/><text x="6.9904%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (249 samples, 0.01%)</title><rect x="6.7406%" y="485" width="0.0104%" height="15" fill="rgb(241,2,18)" fg:x="161587" fg:w="249"/><text x="6.9906%" y="495.50"></text></g><g><title>native_write_msr (248 samples, 0.01%)</title><rect x="6.7406%" y="469" width="0.0103%" height="15" fill="rgb(228,207,21)" fg:x="161588" fg:w="248"/><text x="6.9906%" y="479.50"></text></g><g><title>arch_fork (372 samples, 0.02%)</title><rect x="6.7357%" y="565" width="0.0155%" height="15" fill="rgb(213,211,35)" fg:x="161470" fg:w="372"/><text x="6.9857%" y="575.50"></text></g><g><title>ret_from_fork (291 samples, 0.01%)</title><rect x="6.7390%" y="549" width="0.0121%" height="15" fill="rgb(209,83,10)" fg:x="161551" fg:w="291"/><text x="6.9890%" y="559.50"></text></g><g><title>schedule_tail (290 samples, 0.01%)</title><rect x="6.7391%" y="533" width="0.0121%" height="15" fill="rgb(209,164,1)" fg:x="161552" fg:w="290"/><text x="6.9891%" y="543.50"></text></g><g><title>finish_task_switch (262 samples, 0.01%)</title><rect x="6.7403%" y="517" width="0.0109%" height="15" fill="rgb(213,184,43)" fg:x="161580" fg:w="262"/><text x="6.9903%" y="527.50"></text></g><g><title>__libc_fork (389 samples, 0.02%)</title><rect x="6.7353%" y="581" width="0.0162%" height="15" fill="rgb(231,61,34)" fg:x="161461" fg:w="389"/><text x="6.9853%" y="591.50"></text></g><g><title>Pid1Main (1,045 samples, 0.04%)</title><rect x="6.7147%" y="597" width="0.0436%" height="15" fill="rgb(235,75,3)" fg:x="160967" fg:w="1045"/><text x="6.9647%" y="607.50"></text></g><g><title>__GI___clone (1,289 samples, 0.05%)</title><rect x="6.7146%" y="613" width="0.0538%" height="15" fill="rgb(220,106,47)" fg:x="160966" fg:w="1289"/><text x="6.9646%" y="623.50"></text></g><g><title>__libc_start_main (658 samples, 0.03%)</title><rect x="6.7707%" y="597" width="0.0274%" height="15" fill="rgb(210,196,33)" fg:x="162310" fg:w="658"/><text x="7.0207%" y="607.50"></text></g><g><title>main (570 samples, 0.02%)</title><rect x="6.7744%" y="581" width="0.0238%" height="15" fill="rgb(229,154,42)" fg:x="162398" fg:w="570"/><text x="7.0244%" y="591.50"></text></g><g><title>_dl_lookup_symbol_x (285 samples, 0.01%)</title><rect x="6.8121%" y="485" width="0.0119%" height="15" fill="rgb(228,114,26)" fg:x="163303" fg:w="285"/><text x="7.0621%" y="495.50"></text></g><g><title>elf_machine_rela (356 samples, 0.01%)</title><rect x="6.8093%" y="501" width="0.0149%" height="15" fill="rgb(208,144,1)" fg:x="163234" fg:w="356"/><text x="7.0593%" y="511.50"></text></g><g><title>elf_dynamic_do_Rela (408 samples, 0.02%)</title><rect x="6.8078%" y="517" width="0.0170%" height="15" fill="rgb(239,112,37)" fg:x="163198" fg:w="408"/><text x="7.0578%" y="527.50"></text></g><g><title>_dl_relocate_object (435 samples, 0.02%)</title><rect x="6.8068%" y="533" width="0.0181%" height="15" fill="rgb(210,96,50)" fg:x="163175" fg:w="435"/><text x="7.0568%" y="543.50"></text></g><g><title>[ld-2.31.so] (652 samples, 0.03%)</title><rect x="6.7982%" y="549" width="0.0272%" height="15" fill="rgb(222,178,2)" fg:x="162968" fg:w="652"/><text x="7.0482%" y="559.50"></text></g><g><title>_dl_start_final (659 samples, 0.03%)</title><rect x="6.7982%" y="581" width="0.0275%" height="15" fill="rgb(226,74,18)" fg:x="162968" fg:w="659"/><text x="7.0482%" y="591.50"></text></g><g><title>_dl_sysdep_start (659 samples, 0.03%)</title><rect x="6.7982%" y="565" width="0.0275%" height="15" fill="rgb(225,67,54)" fg:x="162968" fg:w="659"/><text x="7.0482%" y="575.50"></text></g><g><title>_dl_start (667 samples, 0.03%)</title><rect x="6.7982%" y="597" width="0.0278%" height="15" fill="rgb(251,92,32)" fg:x="162968" fg:w="667"/><text x="7.0482%" y="607.50"></text></g><g><title>_start (1,335 samples, 0.06%)</title><rect x="6.7707%" y="613" width="0.0557%" height="15" fill="rgb(228,149,22)" fg:x="162310" fg:w="1335"/><text x="7.0207%" y="623.50"></text></g><g><title>__x64_sys_exit (256 samples, 0.01%)</title><rect x="6.8351%" y="581" width="0.0107%" height="15" fill="rgb(243,54,13)" fg:x="163854" fg:w="256"/><text x="7.0851%" y="591.50"></text></g><g><title>do_exit (256 samples, 0.01%)</title><rect x="6.8351%" y="565" width="0.0107%" height="15" fill="rgb(243,180,28)" fg:x="163854" fg:w="256"/><text x="7.0851%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (442 samples, 0.02%)</title><rect x="6.8317%" y="613" width="0.0184%" height="15" fill="rgb(208,167,24)" fg:x="163771" fg:w="442"/><text x="7.0817%" y="623.50"></text></g><g><title>do_syscall_64 (442 samples, 0.02%)</title><rect x="6.8317%" y="597" width="0.0184%" height="15" fill="rgb(245,73,45)" fg:x="163771" fg:w="442"/><text x="7.0817%" y="607.50"></text></g><g><title>linux-sandbox (3,477 samples, 0.15%)</title><rect x="6.7053%" y="629" width="0.1450%" height="15" fill="rgb(237,203,48)" fg:x="160742" fg:w="3477"/><text x="6.9553%" y="639.50"></text></g><g><title>_start (242 samples, 0.01%)</title><rect x="6.8508%" y="613" width="0.0101%" height="15" fill="rgb(211,197,16)" fg:x="164231" fg:w="242"/><text x="7.1008%" y="623.50"></text></g><g><title>process-wrapper (266 samples, 0.01%)</title><rect x="6.8506%" y="629" width="0.0111%" height="15" fill="rgb(243,99,51)" fg:x="164225" fg:w="266"/><text x="7.1006%" y="639.50"></text></g><g><title>[perf-974282.map] (383 samples, 0.02%)</title><rect x="6.8620%" y="613" width="0.0160%" height="15" fill="rgb(215,123,29)" fg:x="164498" fg:w="383"/><text x="7.1120%" y="623.50"></text></g><g><title>process_reaper (400 samples, 0.02%)</title><rect x="6.8617%" y="629" width="0.0167%" height="15" fill="rgb(239,186,37)" fg:x="164491" fg:w="400"/><text x="7.1117%" y="639.50"></text></g><g><title>futex_wait_queue_me (248 samples, 0.01%)</title><rect x="6.8981%" y="437" width="0.0103%" height="15" fill="rgb(252,136,39)" fg:x="165365" fg:w="248"/><text x="7.1481%" y="447.50"></text></g><g><title>schedule (241 samples, 0.01%)</title><rect x="6.8984%" y="421" width="0.0101%" height="15" fill="rgb(223,213,32)" fg:x="165372" fg:w="241"/><text x="7.1484%" y="431.50"></text></g><g><title>__schedule (240 samples, 0.01%)</title><rect x="6.8985%" y="405" width="0.0100%" height="15" fill="rgb(233,115,5)" fg:x="165373" fg:w="240"/><text x="7.1485%" y="415.50"></text></g><g><title>do_syscall_64 (252 samples, 0.01%)</title><rect x="6.8981%" y="501" width="0.0105%" height="15" fill="rgb(207,226,44)" fg:x="165364" fg:w="252"/><text x="7.1481%" y="511.50"></text></g><g><title>__x64_sys_futex (252 samples, 0.01%)</title><rect x="6.8981%" y="485" width="0.0105%" height="15" fill="rgb(208,126,0)" fg:x="165364" fg:w="252"/><text x="7.1481%" y="495.50"></text></g><g><title>do_futex (252 samples, 0.01%)</title><rect x="6.8981%" y="469" width="0.0105%" height="15" fill="rgb(244,66,21)" fg:x="165364" fg:w="252"/><text x="7.1481%" y="479.50"></text></g><g><title>futex_wait (252 samples, 0.01%)</title><rect x="6.8981%" y="453" width="0.0105%" height="15" fill="rgb(222,97,12)" fg:x="165364" fg:w="252"/><text x="7.1481%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (269 samples, 0.01%)</title><rect x="6.8981%" y="517" width="0.0112%" height="15" fill="rgb(219,213,19)" fg:x="165364" fg:w="269"/><text x="7.1481%" y="527.50"></text></g><g><title>__pthread_cond_wait (282 samples, 0.01%)</title><rect x="6.8976%" y="565" width="0.0118%" height="15" fill="rgb(252,169,30)" fg:x="165352" fg:w="282"/><text x="7.1476%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (282 samples, 0.01%)</title><rect x="6.8976%" y="549" width="0.0118%" height="15" fill="rgb(206,32,51)" fg:x="165352" fg:w="282"/><text x="7.1476%" y="559.50"></text></g><g><title>futex_wait_cancelable (276 samples, 0.01%)</title><rect x="6.8979%" y="533" width="0.0115%" height="15" fill="rgb(250,172,42)" fg:x="165358" fg:w="276"/><text x="7.1479%" y="543.50"></text></g><g><title>Parker::park (316 samples, 0.01%)</title><rect x="6.8970%" y="581" width="0.0132%" height="15" fill="rgb(209,34,43)" fg:x="165338" fg:w="316"/><text x="7.1470%" y="591.50"></text></g><g><title>Unsafe_Park (325 samples, 0.01%)</title><rect x="6.8967%" y="597" width="0.0136%" height="15" fill="rgb(223,11,35)" fg:x="165331" fg:w="325"/><text x="7.1467%" y="607.50"></text></g><g><title>[perf-974282.map] (750 samples, 0.03%)</title><rect x="6.8793%" y="613" width="0.0313%" height="15" fill="rgb(251,219,26)" fg:x="164912" fg:w="750"/><text x="7.1293%" y="623.50"></text></g><g><title>profile-writer- (794 samples, 0.03%)</title><rect x="6.8784%" y="629" width="0.0331%" height="15" fill="rgb(231,119,3)" fg:x="164891" fg:w="794"/><text x="7.1284%" y="639.50"></text></g><g><title>[unknown] (374 samples, 0.02%)</title><rect x="6.9136%" y="613" width="0.0156%" height="15" fill="rgb(216,97,11)" fg:x="165736" fg:w="374"/><text x="7.1636%" y="623.50"></text></g><g><title>python3 (628 samples, 0.03%)</title><rect x="6.9117%" y="629" width="0.0262%" height="15" fill="rgb(223,59,9)" fg:x="165689" fg:w="628"/><text x="7.1617%" y="639.50"></text></g><g><title>_IO_getdelim (247 samples, 0.01%)</title><rect x="6.9582%" y="501" width="0.0103%" height="15" fill="rgb(233,93,31)" fg:x="166804" fg:w="247"/><text x="7.2082%" y="511.50"></text></g><g><title>[sed] (514 samples, 0.02%)</title><rect x="6.9504%" y="517" width="0.0214%" height="15" fill="rgb(239,81,33)" fg:x="166618" fg:w="514"/><text x="7.2004%" y="527.50"></text></g><g><title>[sed] (569 samples, 0.02%)</title><rect x="6.9490%" y="533" width="0.0237%" height="15" fill="rgb(213,120,34)" fg:x="166585" fg:w="569"/><text x="7.1990%" y="543.50"></text></g><g><title>[sed] (734 samples, 0.03%)</title><rect x="6.9485%" y="549" width="0.0306%" height="15" fill="rgb(243,49,53)" fg:x="166571" fg:w="734"/><text x="7.1985%" y="559.50"></text></g><g><title>[sed] (772 samples, 0.03%)</title><rect x="6.9479%" y="565" width="0.0322%" height="15" fill="rgb(247,216,33)" fg:x="166558" fg:w="772"/><text x="7.1979%" y="575.50"></text></g><g><title>[sed] (918 samples, 0.04%)</title><rect x="6.9479%" y="581" width="0.0383%" height="15" fill="rgb(226,26,14)" fg:x="166557" fg:w="918"/><text x="7.1979%" y="591.50"></text></g><g><title>__libc_start_main (1,030 samples, 0.04%)</title><rect x="6.9478%" y="597" width="0.0430%" height="15" fill="rgb(215,49,53)" fg:x="166556" fg:w="1030"/><text x="7.1978%" y="607.50"></text></g><g><title>[sed] (1,063 samples, 0.04%)</title><rect x="6.9476%" y="613" width="0.0443%" height="15" fill="rgb(245,162,40)" fg:x="166550" fg:w="1063"/><text x="7.1976%" y="623.50"></text></g><g><title>determine_info (251 samples, 0.01%)</title><rect x="7.0187%" y="437" width="0.0105%" height="15" fill="rgb(229,68,17)" fg:x="168256" fg:w="251"/><text x="7.2687%" y="447.50"></text></g><g><title>__GI__dl_addr (278 samples, 0.01%)</title><rect x="7.0177%" y="453" width="0.0116%" height="15" fill="rgb(213,182,10)" fg:x="168230" fg:w="278"/><text x="7.2677%" y="463.50"></text></g><g><title>__fopen_internal (412 samples, 0.02%)</title><rect x="7.0125%" y="517" width="0.0172%" height="15" fill="rgb(245,125,30)" fg:x="168106" fg:w="412"/><text x="7.2625%" y="527.50"></text></g><g><title>malloc_hook_ini (292 samples, 0.01%)</title><rect x="7.0175%" y="501" width="0.0122%" height="15" fill="rgb(232,202,2)" fg:x="168226" fg:w="292"/><text x="7.2675%" y="511.50"></text></g><g><title>ptmalloc_init (292 samples, 0.01%)</title><rect x="7.0175%" y="485" width="0.0122%" height="15" fill="rgb(237,140,51)" fg:x="168226" fg:w="292"/><text x="7.2675%" y="495.50"></text></g><g><title>ptmalloc_init (292 samples, 0.01%)</title><rect x="7.0175%" y="469" width="0.0122%" height="15" fill="rgb(236,157,25)" fg:x="168226" fg:w="292"/><text x="7.2675%" y="479.50"></text></g><g><title>selinuxfs_exists (624 samples, 0.03%)</title><rect x="7.0041%" y="533" width="0.0260%" height="15" fill="rgb(219,209,0)" fg:x="167906" fg:w="624"/><text x="7.2541%" y="543.50"></text></g><g><title>[libselinux.so.1] (773 samples, 0.03%)</title><rect x="6.9980%" y="549" width="0.0322%" height="15" fill="rgb(240,116,54)" fg:x="167758" fg:w="773"/><text x="7.2480%" y="559.50"></text></g><g><title>_dl_start_user (877 samples, 0.04%)</title><rect x="6.9977%" y="613" width="0.0366%" height="15" fill="rgb(216,10,36)" fg:x="167752" fg:w="877"/><text x="7.2477%" y="623.50"></text></g><g><title>_dl_init (876 samples, 0.04%)</title><rect x="6.9978%" y="597" width="0.0365%" height="15" fill="rgb(222,72,44)" fg:x="167753" fg:w="876"/><text x="7.2478%" y="607.50"></text></g><g><title>call_init (874 samples, 0.04%)</title><rect x="6.9978%" y="581" width="0.0365%" height="15" fill="rgb(232,159,9)" fg:x="167755" fg:w="874"/><text x="7.2478%" y="591.50"></text></g><g><title>call_init (874 samples, 0.04%)</title><rect x="6.9978%" y="565" width="0.0365%" height="15" fill="rgb(210,39,32)" fg:x="167755" fg:w="874"/><text x="7.2478%" y="575.50"></text></g><g><title>__split_vma (317 samples, 0.01%)</title><rect x="7.0706%" y="293" width="0.0132%" height="15" fill="rgb(216,194,45)" fg:x="169498" fg:w="317"/><text x="7.3206%" y="303.50"></text></g><g><title>__do_munmap (531 samples, 0.02%)</title><rect x="7.0694%" y="309" width="0.0222%" height="15" fill="rgb(218,18,35)" fg:x="169471" fg:w="531"/><text x="7.3194%" y="319.50"></text></g><g><title>mmap_region (974 samples, 0.04%)</title><rect x="7.0679%" y="325" width="0.0406%" height="15" fill="rgb(207,83,51)" fg:x="169435" fg:w="974"/><text x="7.3179%" y="335.50"></text></g><g><title>do_mmap (1,003 samples, 0.04%)</title><rect x="7.0668%" y="341" width="0.0418%" height="15" fill="rgb(225,63,43)" fg:x="169409" fg:w="1003"/><text x="7.3168%" y="351.50"></text></g><g><title>ksys_mmap_pgoff (1,042 samples, 0.04%)</title><rect x="7.0662%" y="373" width="0.0435%" height="15" fill="rgb(207,57,36)" fg:x="169394" fg:w="1042"/><text x="7.3162%" y="383.50"></text></g><g><title>vm_mmap_pgoff (1,033 samples, 0.04%)</title><rect x="7.0666%" y="357" width="0.0431%" height="15" fill="rgb(216,99,33)" fg:x="169403" fg:w="1033"/><text x="7.3166%" y="367.50"></text></g><g><title>do_syscall_64 (1,120 samples, 0.05%)</title><rect x="7.0661%" y="389" width="0.0467%" height="15" fill="rgb(225,42,16)" fg:x="169392" fg:w="1120"/><text x="7.3161%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,139 samples, 0.05%)</title><rect x="7.0660%" y="405" width="0.0475%" height="15" fill="rgb(220,201,45)" fg:x="169389" fg:w="1139"/><text x="7.3160%" y="415.50"></text></g><g><title>__mmap64 (1,169 samples, 0.05%)</title><rect x="7.0652%" y="437" width="0.0488%" height="15" fill="rgb(225,33,4)" fg:x="169370" fg:w="1169"/><text x="7.3152%" y="447.50"></text></g><g><title>__mmap64 (1,168 samples, 0.05%)</title><rect x="7.0653%" y="421" width="0.0487%" height="15" fill="rgb(224,33,50)" fg:x="169371" fg:w="1168"/><text x="7.3153%" y="431.50"></text></g><g><title>_dl_map_segments (1,356 samples, 0.06%)</title><rect x="7.0575%" y="453" width="0.0566%" height="15" fill="rgb(246,198,51)" fg:x="169184" fg:w="1356"/><text x="7.3075%" y="463.50"></text></g><g><title>_dl_map_object_from_fd (1,798 samples, 0.08%)</title><rect x="7.0541%" y="469" width="0.0750%" height="15" fill="rgb(205,22,4)" fg:x="169104" fg:w="1798"/><text x="7.3041%" y="479.50"></text></g><g><title>__GI___open64_nocancel (241 samples, 0.01%)</title><rect x="7.1309%" y="453" width="0.0101%" height="15" fill="rgb(206,3,8)" fg:x="170945" fg:w="241"/><text x="7.3809%" y="463.50"></text></g><g><title>open_verify (295 samples, 0.01%)</title><rect x="7.1305%" y="469" width="0.0123%" height="15" fill="rgb(251,23,15)" fg:x="170935" fg:w="295"/><text x="7.3805%" y="479.50"></text></g><g><title>_dl_catch_exception (2,381 samples, 0.10%)</title><rect x="7.0447%" y="517" width="0.0993%" height="15" fill="rgb(252,88,28)" fg:x="168878" fg:w="2381"/><text x="7.2947%" y="527.50"></text></g><g><title>openaux (2,376 samples, 0.10%)</title><rect x="7.0449%" y="501" width="0.0991%" height="15" fill="rgb(212,127,14)" fg:x="168883" fg:w="2376"/><text x="7.2949%" y="511.50"></text></g><g><title>_dl_map_object (2,375 samples, 0.10%)</title><rect x="7.0449%" y="485" width="0.0991%" height="15" fill="rgb(247,145,37)" fg:x="168884" fg:w="2375"/><text x="7.2949%" y="495.50"></text></g><g><title>_dl_map_object_deps (2,479 samples, 0.10%)</title><rect x="7.0432%" y="533" width="0.1034%" height="15" fill="rgb(209,117,53)" fg:x="168841" fg:w="2479"/><text x="7.2932%" y="543.50"></text></g><g><title>__x64_sys_mprotect (259 samples, 0.01%)</title><rect x="7.1506%" y="453" width="0.0108%" height="15" fill="rgb(212,90,42)" fg:x="171417" fg:w="259"/><text x="7.4006%" y="463.50"></text></g><g><title>do_mprotect_pkey (258 samples, 0.01%)</title><rect x="7.1506%" y="437" width="0.0108%" height="15" fill="rgb(218,164,37)" fg:x="171418" fg:w="258"/><text x="7.4006%" y="447.50"></text></g><g><title>do_syscall_64 (261 samples, 0.01%)</title><rect x="7.1506%" y="469" width="0.0109%" height="15" fill="rgb(246,65,34)" fg:x="171416" fg:w="261"/><text x="7.4006%" y="479.50"></text></g><g><title>_dl_protect_relro (270 samples, 0.01%)</title><rect x="7.1502%" y="517" width="0.0113%" height="15" fill="rgb(231,100,33)" fg:x="171408" fg:w="270"/><text x="7.4002%" y="527.50"></text></g><g><title>__mprotect (269 samples, 0.01%)</title><rect x="7.1503%" y="501" width="0.0112%" height="15" fill="rgb(228,126,14)" fg:x="171409" fg:w="269"/><text x="7.4003%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (262 samples, 0.01%)</title><rect x="7.1506%" y="485" width="0.0109%" height="15" fill="rgb(215,173,21)" fg:x="171416" fg:w="262"/><text x="7.4006%" y="495.50"></text></g><g><title>_dl_lookup_symbol_x (829 samples, 0.03%)</title><rect x="7.1725%" y="485" width="0.0346%" height="15" fill="rgb(210,6,40)" fg:x="171941" fg:w="829"/><text x="7.4225%" y="495.50"></text></g><g><title>do_lookup_x (619 samples, 0.03%)</title><rect x="7.1812%" y="469" width="0.0258%" height="15" fill="rgb(212,48,18)" fg:x="172151" fg:w="619"/><text x="7.4312%" y="479.50"></text></g><g><title>elf_machine_rela (972 samples, 0.04%)</title><rect x="7.1669%" y="501" width="0.0405%" height="15" fill="rgb(230,214,11)" fg:x="171808" fg:w="972"/><text x="7.4169%" y="511.50"></text></g><g><title>elf_dynamic_do_Rela (1,156 samples, 0.05%)</title><rect x="7.1615%" y="517" width="0.0482%" height="15" fill="rgb(254,105,39)" fg:x="171678" fg:w="1156"/><text x="7.4115%" y="527.50"></text></g><g><title>_dl_relocate_object (1,467 samples, 0.06%)</title><rect x="7.1497%" y="533" width="0.0612%" height="15" fill="rgb(245,158,5)" fg:x="171396" fg:w="1467"/><text x="7.3997%" y="543.50"></text></g><g><title>[ld-2.31.so] (4,306 samples, 0.18%)</title><rect x="7.0397%" y="549" width="0.1796%" height="15" fill="rgb(249,208,11)" fg:x="168759" fg:w="4306"/><text x="7.2897%" y="559.50"></text></g><g><title>_dl_start_final (4,396 samples, 0.18%)</title><rect x="7.0394%" y="581" width="0.1834%" height="15" fill="rgb(210,39,28)" fg:x="168752" fg:w="4396"/><text x="7.2894%" y="591.50"></text></g><g><title>_dl_sysdep_start (4,394 samples, 0.18%)</title><rect x="7.0395%" y="565" width="0.1833%" height="15" fill="rgb(211,56,53)" fg:x="168754" fg:w="4394"/><text x="7.2895%" y="575.50"></text></g><g><title>_dl_start (4,452 samples, 0.19%)</title><rect x="7.0394%" y="597" width="0.1857%" height="15" fill="rgb(226,201,30)" fg:x="168750" fg:w="4452"/><text x="7.2894%" y="607.50"></text></g><g><title>_start (4,492 samples, 0.19%)</title><rect x="7.0390%" y="613" width="0.1874%" height="15" fill="rgb(239,101,34)" fg:x="168741" fg:w="4492"/><text x="7.2890%" y="623.50"></text></g><g><title>__x64_sys_execve (476 samples, 0.02%)</title><rect x="7.2356%" y="581" width="0.0199%" height="15" fill="rgb(226,209,5)" fg:x="173455" fg:w="476"/><text x="7.4856%" y="591.50"></text></g><g><title>do_execveat_common (476 samples, 0.02%)</title><rect x="7.2356%" y="565" width="0.0199%" height="15" fill="rgb(250,105,47)" fg:x="173455" fg:w="476"/><text x="7.4856%" y="575.50"></text></g><g><title>bprm_execve (476 samples, 0.02%)</title><rect x="7.2356%" y="549" width="0.0199%" height="15" fill="rgb(230,72,3)" fg:x="173455" fg:w="476"/><text x="7.4856%" y="559.50"></text></g><g><title>load_elf_binary (476 samples, 0.02%)</title><rect x="7.2356%" y="533" width="0.0199%" height="15" fill="rgb(232,218,39)" fg:x="173455" fg:w="476"/><text x="7.4856%" y="543.50"></text></g><g><title>unmap_page_range (319 samples, 0.01%)</title><rect x="7.2699%" y="485" width="0.0133%" height="15" fill="rgb(248,166,6)" fg:x="174276" fg:w="319"/><text x="7.5199%" y="495.50"></text></g><g><title>exit_mmap (663 samples, 0.03%)</title><rect x="7.2559%" y="517" width="0.0277%" height="15" fill="rgb(247,89,20)" fg:x="173941" fg:w="663"/><text x="7.5059%" y="527.50"></text></g><g><title>unmap_vmas (330 samples, 0.01%)</title><rect x="7.2698%" y="501" width="0.0138%" height="15" fill="rgb(248,130,54)" fg:x="174274" fg:w="330"/><text x="7.5198%" y="511.50"></text></g><g><title>mmput (668 samples, 0.03%)</title><rect x="7.2558%" y="533" width="0.0279%" height="15" fill="rgb(234,196,4)" fg:x="173939" fg:w="668"/><text x="7.5058%" y="543.50"></text></g><g><title>__x64_sys_exit_group (733 samples, 0.03%)</title><rect x="7.2555%" y="581" width="0.0306%" height="15" fill="rgb(250,143,31)" fg:x="173931" fg:w="733"/><text x="7.5055%" y="591.50"></text></g><g><title>do_group_exit (733 samples, 0.03%)</title><rect x="7.2555%" y="565" width="0.0306%" height="15" fill="rgb(211,110,34)" fg:x="173931" fg:w="733"/><text x="7.5055%" y="575.50"></text></g><g><title>do_exit (733 samples, 0.03%)</title><rect x="7.2555%" y="549" width="0.0306%" height="15" fill="rgb(215,124,48)" fg:x="173931" fg:w="733"/><text x="7.5055%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,213 samples, 0.05%)</title><rect x="7.2355%" y="613" width="0.0506%" height="15" fill="rgb(216,46,13)" fg:x="173452" fg:w="1213"/><text x="7.4855%" y="623.50"></text></g><g><title>do_syscall_64 (1,210 samples, 0.05%)</title><rect x="7.2356%" y="597" width="0.0505%" height="15" fill="rgb(205,184,25)" fg:x="173455" fg:w="1210"/><text x="7.4856%" y="607.50"></text></g><g><title>sed (8,364 samples, 0.35%)</title><rect x="6.9379%" y="629" width="0.3489%" height="15" fill="rgb(228,1,10)" fg:x="166317" fg:w="8364"/><text x="7.1879%" y="639.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (291 samples, 0.01%)</title><rect x="7.2993%" y="597" width="0.0121%" height="15" fill="rgb(213,116,27)" fg:x="174981" fg:w="291"/><text x="7.5493%" y="607.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;5292148ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)0, 5292148ul&gt;::oop_access_barrier (483 samples, 0.02%)</title><rect x="7.3115%" y="597" width="0.0201%" height="15" fill="rgb(241,95,50)" fg:x="175274" fg:w="483"/><text x="7.5615%" y="607.50"></text></g><g><title>HandleMark::pop_and_restore (377 samples, 0.02%)</title><rect x="7.3442%" y="597" width="0.0157%" height="15" fill="rgb(238,48,32)" fg:x="176057" fg:w="377"/><text x="7.5942%" y="607.50"></text></g><g><title>JNIHandles::make_local (304 samples, 0.01%)</title><rect x="7.3621%" y="597" width="0.0127%" height="15" fill="rgb(235,113,49)" fg:x="176488" fg:w="304"/><text x="7.6121%" y="607.50"></text></g><g><title>JavaThread::is_Java_thread (357 samples, 0.01%)</title><rect x="7.3785%" y="597" width="0.0149%" height="15" fill="rgb(205,127,43)" fg:x="176881" fg:w="357"/><text x="7.6285%" y="607.50"></text></g><g><title>ThreadStateTransition::transition_from_native (303 samples, 0.01%)</title><rect x="7.4058%" y="597" width="0.0126%" height="15" fill="rgb(250,162,2)" fg:x="177535" fg:w="303"/><text x="7.6558%" y="607.50"></text></g><g><title>__GI_unlinkat (523 samples, 0.02%)</title><rect x="7.4329%" y="597" width="0.0218%" height="15" fill="rgb(220,13,41)" fg:x="178185" fg:w="523"/><text x="7.6829%" y="607.50"></text></g><g><title>__symlink (275 samples, 0.01%)</title><rect x="7.4584%" y="597" width="0.0115%" height="15" fill="rgb(249,221,25)" fg:x="178795" fg:w="275"/><text x="7.7084%" y="607.50"></text></g><g><title>check_bounds (320 samples, 0.01%)</title><rect x="7.4769%" y="597" width="0.0133%" height="15" fill="rgb(215,208,19)" fg:x="179240" fg:w="320"/><text x="7.7269%" y="607.50"></text></g><g><title>jni_GetObjectField (248 samples, 0.01%)</title><rect x="7.4994%" y="597" width="0.0103%" height="15" fill="rgb(236,175,2)" fg:x="179778" fg:w="248"/><text x="7.7494%" y="607.50"></text></g><g><title>[anon] (5,531 samples, 0.23%)</title><rect x="7.2881%" y="613" width="0.2307%" height="15" fill="rgb(241,52,2)" fg:x="174714" fg:w="5531"/><text x="7.5381%" y="623.50"></text></g><g><title>[libc-2.31.so] (300 samples, 0.01%)</title><rect x="7.8069%" y="597" width="0.0125%" height="15" fill="rgb(248,140,14)" fg:x="187150" fg:w="300"/><text x="8.0569%" y="607.50"></text></g><g><title>__x64_sys_close (546 samples, 0.02%)</title><rect x="7.8240%" y="549" width="0.0228%" height="15" fill="rgb(253,22,42)" fg:x="187560" fg:w="546"/><text x="8.0740%" y="559.50"></text></g><g><title>filp_close (376 samples, 0.02%)</title><rect x="7.8311%" y="533" width="0.0157%" height="15" fill="rgb(234,61,47)" fg:x="187730" fg:w="376"/><text x="8.0811%" y="543.50"></text></g><g><title>do_syscall_64 (618 samples, 0.03%)</title><rect x="7.8221%" y="565" width="0.0258%" height="15" fill="rgb(208,226,15)" fg:x="187514" fg:w="618"/><text x="8.0721%" y="575.50"></text></g><g><title>btrfs_release_file (666 samples, 0.03%)</title><rect x="7.8601%" y="501" width="0.0278%" height="15" fill="rgb(217,221,4)" fg:x="188425" fg:w="666"/><text x="8.1101%" y="511.50"></text></g><g><title>kfree (535 samples, 0.02%)</title><rect x="7.8656%" y="485" width="0.0223%" height="15" fill="rgb(212,174,34)" fg:x="188556" fg:w="535"/><text x="8.1156%" y="495.50"></text></g><g><title>__fput (1,255 samples, 0.05%)</title><rect x="7.8547%" y="517" width="0.0524%" height="15" fill="rgb(253,83,4)" fg:x="188296" fg:w="1255"/><text x="8.1047%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,135 samples, 0.09%)</title><rect x="7.8214%" y="581" width="0.0891%" height="15" fill="rgb(250,195,49)" fg:x="187498" fg:w="2135"/><text x="8.0714%" y="591.50"></text></g><g><title>syscall_exit_to_user_mode (1,501 samples, 0.06%)</title><rect x="7.8479%" y="565" width="0.0626%" height="15" fill="rgb(241,192,25)" fg:x="188132" fg:w="1501"/><text x="8.0979%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,496 samples, 0.06%)</title><rect x="7.8481%" y="549" width="0.0624%" height="15" fill="rgb(208,124,10)" fg:x="188137" fg:w="1496"/><text x="8.0981%" y="559.50"></text></g><g><title>task_work_run (1,372 samples, 0.06%)</title><rect x="7.8532%" y="533" width="0.0572%" height="15" fill="rgb(222,33,0)" fg:x="188261" fg:w="1372"/><text x="8.1032%" y="543.50"></text></g><g><title>__GI___close_nocancel (2,200 samples, 0.09%)</title><rect x="7.8194%" y="597" width="0.0918%" height="15" fill="rgb(234,209,28)" fg:x="187450" fg:w="2200"/><text x="8.0694%" y="607.50"></text></g><g><title>__GI___libc_free (870 samples, 0.04%)</title><rect x="7.9112%" y="597" width="0.0363%" height="15" fill="rgb(224,11,23)" fg:x="189650" fg:w="870"/><text x="8.1612%" y="607.50"></text></g><g><title>filename_lookup (251 samples, 0.01%)</title><rect x="7.9490%" y="517" width="0.0105%" height="15" fill="rgb(232,99,1)" fg:x="190556" fg:w="251"/><text x="8.1990%" y="527.50"></text></g><g><title>path_lookupat (243 samples, 0.01%)</title><rect x="7.9493%" y="501" width="0.0101%" height="15" fill="rgb(237,95,45)" fg:x="190564" fg:w="243"/><text x="8.1993%" y="511.50"></text></g><g><title>__do_sys_newlstat (365 samples, 0.02%)</title><rect x="7.9481%" y="549" width="0.0152%" height="15" fill="rgb(208,109,11)" fg:x="190535" fg:w="365"/><text x="8.1981%" y="559.50"></text></g><g><title>vfs_statx (356 samples, 0.01%)</title><rect x="7.9485%" y="533" width="0.0149%" height="15" fill="rgb(216,190,48)" fg:x="190544" fg:w="356"/><text x="8.1985%" y="543.50"></text></g><g><title>do_syscall_64 (370 samples, 0.02%)</title><rect x="7.9481%" y="565" width="0.0154%" height="15" fill="rgb(251,171,36)" fg:x="190534" fg:w="370"/><text x="8.1981%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (377 samples, 0.02%)</title><rect x="7.9479%" y="581" width="0.0157%" height="15" fill="rgb(230,62,22)" fg:x="190530" fg:w="377"/><text x="8.1979%" y="591.50"></text></g><g><title>__GI___lxstat (388 samples, 0.02%)</title><rect x="7.9475%" y="597" width="0.0162%" height="15" fill="rgb(225,114,35)" fg:x="190521" fg:w="388"/><text x="8.1975%" y="607.50"></text></g><g><title>dput (346 samples, 0.01%)</title><rect x="7.9746%" y="533" width="0.0144%" height="15" fill="rgb(215,118,42)" fg:x="191170" fg:w="346"/><text x="8.2246%" y="543.50"></text></g><g><title>finish_wait (253 samples, 0.01%)</title><rect x="8.0184%" y="405" width="0.0106%" height="15" fill="rgb(243,119,21)" fg:x="192219" fg:w="253"/><text x="8.2684%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (244 samples, 0.01%)</title><rect x="8.0187%" y="389" width="0.0102%" height="15" fill="rgb(252,177,53)" fg:x="192228" fg:w="244"/><text x="8.2687%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (671 samples, 0.03%)</title><rect x="8.0315%" y="389" width="0.0280%" height="15" fill="rgb(237,209,29)" fg:x="192534" fg:w="671"/><text x="8.2815%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (634 samples, 0.03%)</title><rect x="8.0330%" y="373" width="0.0264%" height="15" fill="rgb(212,65,23)" fg:x="192571" fg:w="634"/><text x="8.2830%" y="383.50"></text></g><g><title>prepare_to_wait_event (745 samples, 0.03%)</title><rect x="8.0290%" y="405" width="0.0311%" height="15" fill="rgb(230,222,46)" fg:x="192474" fg:w="745"/><text x="8.2790%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (632 samples, 0.03%)</title><rect x="8.0601%" y="405" width="0.0264%" height="15" fill="rgb(215,135,32)" fg:x="193219" fg:w="632"/><text x="8.3101%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (471 samples, 0.02%)</title><rect x="8.0668%" y="389" width="0.0196%" height="15" fill="rgb(246,101,22)" fg:x="193380" fg:w="471"/><text x="8.3168%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (2,287 samples, 0.10%)</title><rect x="8.0146%" y="421" width="0.0954%" height="15" fill="rgb(206,107,13)" fg:x="192130" fg:w="2287"/><text x="8.2646%" y="431.50"></text></g><g><title>schedule (566 samples, 0.02%)</title><rect x="8.0864%" y="405" width="0.0236%" height="15" fill="rgb(250,100,44)" fg:x="193851" fg:w="566"/><text x="8.3364%" y="415.50"></text></g><g><title>__schedule (562 samples, 0.02%)</title><rect x="8.0866%" y="389" width="0.0234%" height="15" fill="rgb(231,147,38)" fg:x="193855" fg:w="562"/><text x="8.3366%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (2,430 samples, 0.10%)</title><rect x="8.0136%" y="437" width="0.1014%" height="15" fill="rgb(229,8,40)" fg:x="192104" fg:w="2430"/><text x="8.2636%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (282 samples, 0.01%)</title><rect x="8.1451%" y="373" width="0.0118%" height="15" fill="rgb(221,135,30)" fg:x="195258" fg:w="282"/><text x="8.3951%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (275 samples, 0.01%)</title><rect x="8.1454%" y="357" width="0.0115%" height="15" fill="rgb(249,193,18)" fg:x="195265" fg:w="275"/><text x="8.3954%" y="367.50"></text></g><g><title>native_write_msr (273 samples, 0.01%)</title><rect x="8.1455%" y="341" width="0.0114%" height="15" fill="rgb(209,133,39)" fg:x="195267" fg:w="273"/><text x="8.3955%" y="351.50"></text></g><g><title>finish_task_switch (333 samples, 0.01%)</title><rect x="8.1438%" y="389" width="0.0139%" height="15" fill="rgb(232,100,14)" fg:x="195226" fg:w="333"/><text x="8.3938%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (1,205 samples, 0.05%)</title><rect x="8.1149%" y="437" width="0.0503%" height="15" fill="rgb(224,185,1)" fg:x="194534" fg:w="1205"/><text x="8.3649%" y="447.50"></text></g><g><title>schedule (739 samples, 0.03%)</title><rect x="8.1344%" y="421" width="0.0308%" height="15" fill="rgb(223,139,8)" fg:x="195000" fg:w="739"/><text x="8.3844%" y="431.50"></text></g><g><title>__schedule (731 samples, 0.03%)</title><rect x="8.1347%" y="405" width="0.0305%" height="15" fill="rgb(232,213,38)" fg:x="195008" fg:w="731"/><text x="8.3847%" y="415.50"></text></g><g><title>ttwu_do_activate (252 samples, 0.01%)</title><rect x="8.1749%" y="373" width="0.0105%" height="15" fill="rgb(207,94,22)" fg:x="195972" fg:w="252"/><text x="8.4249%" y="383.50"></text></g><g><title>__wake_up_common (543 samples, 0.02%)</title><rect x="8.1652%" y="421" width="0.0227%" height="15" fill="rgb(219,183,54)" fg:x="195740" fg:w="543"/><text x="8.4152%" y="431.50"></text></g><g><title>autoremove_wake_function (538 samples, 0.02%)</title><rect x="8.1654%" y="405" width="0.0224%" height="15" fill="rgb(216,185,54)" fg:x="195745" fg:w="538"/><text x="8.4154%" y="415.50"></text></g><g><title>try_to_wake_up (525 samples, 0.02%)</title><rect x="8.1660%" y="389" width="0.0219%" height="15" fill="rgb(254,217,39)" fg:x="195758" fg:w="525"/><text x="8.4160%" y="399.50"></text></g><g><title>__wake_up_common_lock (551 samples, 0.02%)</title><rect x="8.1652%" y="437" width="0.0230%" height="15" fill="rgb(240,178,23)" fg:x="195740" fg:w="551"/><text x="8.4152%" y="447.50"></text></g><g><title>btrfs_tree_read_lock_atomic (863 samples, 0.04%)</title><rect x="8.1953%" y="437" width="0.0360%" height="15" fill="rgb(218,11,47)" fg:x="196461" fg:w="863"/><text x="8.4453%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (776 samples, 0.03%)</title><rect x="8.1989%" y="421" width="0.0324%" height="15" fill="rgb(218,51,51)" fg:x="196548" fg:w="776"/><text x="8.4489%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (273 samples, 0.01%)</title><rect x="8.2199%" y="405" width="0.0114%" height="15" fill="rgb(238,126,27)" fg:x="197051" fg:w="273"/><text x="8.4699%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (331 samples, 0.01%)</title><rect x="8.2353%" y="437" width="0.0138%" height="15" fill="rgb(249,202,22)" fg:x="197420" fg:w="331"/><text x="8.4853%" y="447.50"></text></g><g><title>find_extent_buffer (454 samples, 0.02%)</title><rect x="8.2579%" y="421" width="0.0189%" height="15" fill="rgb(254,195,49)" fg:x="197961" fg:w="454"/><text x="8.5079%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (739 samples, 0.03%)</title><rect x="8.2491%" y="437" width="0.0308%" height="15" fill="rgb(208,123,14)" fg:x="197751" fg:w="739"/><text x="8.4991%" y="447.50"></text></g><g><title>btrfs_search_slot (6,641 samples, 0.28%)</title><rect x="8.0055%" y="453" width="0.2770%" height="15" fill="rgb(224,200,8)" fg:x="191911" fg:w="6641"/><text x="8.2555%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (6,764 samples, 0.28%)</title><rect x="8.0038%" y="469" width="0.2822%" height="15" fill="rgb(217,61,36)" fg:x="191871" fg:w="6764"/><text x="8.2538%" y="479.50"></text></g><g><title>btrfs_lookup (7,211 samples, 0.30%)</title><rect x="7.9907%" y="501" width="0.3008%" height="15" fill="rgb(206,35,45)" fg:x="191557" fg:w="7211"/><text x="8.2407%" y="511.50"></text></g><g><title>btrfs_lookup_dentry (7,196 samples, 0.30%)</title><rect x="7.9914%" y="485" width="0.3002%" height="15" fill="rgb(217,65,33)" fg:x="191572" fg:w="7196"/><text x="8.2414%" y="495.50"></text></g><g><title>kmem_cache_alloc (388 samples, 0.02%)</title><rect x="8.2950%" y="469" width="0.0162%" height="15" fill="rgb(222,158,48)" fg:x="198850" fg:w="388"/><text x="8.5450%" y="479.50"></text></g><g><title>__d_alloc (470 samples, 0.02%)</title><rect x="8.2920%" y="485" width="0.0196%" height="15" fill="rgb(254,2,54)" fg:x="198780" fg:w="470"/><text x="8.5420%" y="495.50"></text></g><g><title>d_alloc (510 samples, 0.02%)</title><rect x="8.2915%" y="501" width="0.0213%" height="15" fill="rgb(250,143,38)" fg:x="198768" fg:w="510"/><text x="8.5415%" y="511.50"></text></g><g><title>__lookup_hash (7,936 samples, 0.33%)</title><rect x="7.9903%" y="517" width="0.3310%" height="15" fill="rgb(248,25,0)" fg:x="191546" fg:w="7936"/><text x="8.2403%" y="527.50"></text></g><g><title>inode_permission.part.0 (501 samples, 0.02%)</title><rect x="8.3454%" y="469" width="0.0209%" height="15" fill="rgb(206,152,27)" fg:x="200058" fg:w="501"/><text x="8.5954%" y="479.50"></text></g><g><title>__d_lookup_rcu (830 samples, 0.03%)</title><rect x="8.3769%" y="437" width="0.0346%" height="15" fill="rgb(240,77,30)" fg:x="200815" fg:w="830"/><text x="8.6269%" y="447.50"></text></g><g><title>lookup_fast (943 samples, 0.04%)</title><rect x="8.3723%" y="453" width="0.0393%" height="15" fill="rgb(231,5,3)" fg:x="200703" fg:w="943"/><text x="8.6223%" y="463.50"></text></g><g><title>link_path_walk.part.0 (2,077 samples, 0.09%)</title><rect x="8.3314%" y="485" width="0.0866%" height="15" fill="rgb(207,226,32)" fg:x="199723" fg:w="2077"/><text x="8.5814%" y="495.50"></text></g><g><title>walk_component (1,207 samples, 0.05%)</title><rect x="8.3677%" y="469" width="0.0503%" height="15" fill="rgb(222,207,47)" fg:x="200593" fg:w="1207"/><text x="8.6177%" y="479.50"></text></g><g><title>filename_parentat (2,498 samples, 0.10%)</title><rect x="8.3224%" y="517" width="0.1042%" height="15" fill="rgb(229,115,45)" fg:x="199507" fg:w="2498"/><text x="8.5724%" y="527.50"></text></g><g><title>path_parentat (2,460 samples, 0.10%)</title><rect x="8.3240%" y="501" width="0.1026%" height="15" fill="rgb(224,191,6)" fg:x="199545" fg:w="2460"/><text x="8.5740%" y="511.50"></text></g><g><title>filename_create (10,659 samples, 0.44%)</title><rect x="7.9890%" y="533" width="0.4446%" height="15" fill="rgb(230,227,24)" fg:x="191516" fg:w="10659"/><text x="8.2390%" y="543.50"></text></g><g><title>getname_flags.part.0 (506 samples, 0.02%)</title><rect x="8.4340%" y="533" width="0.0211%" height="15" fill="rgb(228,80,19)" fg:x="202182" fg:w="506"/><text x="8.6840%" y="543.50"></text></g><g><title>strncpy_from_user (264 samples, 0.01%)</title><rect x="8.4441%" y="517" width="0.0110%" height="15" fill="rgb(247,229,0)" fg:x="202424" fg:w="264"/><text x="8.6941%" y="527.50"></text></g><g><title>__btrfs_end_transaction (421 samples, 0.02%)</title><rect x="8.4703%" y="501" width="0.0176%" height="15" fill="rgb(237,194,15)" fg:x="203053" fg:w="421"/><text x="8.7203%" y="511.50"></text></g><g><title>btrfs_insert_delayed_dir_index (750 samples, 0.03%)</title><rect x="8.4956%" y="469" width="0.0313%" height="15" fill="rgb(219,203,20)" fg:x="203659" fg:w="750"/><text x="8.7456%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (467 samples, 0.02%)</title><rect x="8.5644%" y="373" width="0.0195%" height="15" fill="rgb(234,128,8)" fg:x="205310" fg:w="467"/><text x="8.8144%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (442 samples, 0.02%)</title><rect x="8.5655%" y="357" width="0.0184%" height="15" fill="rgb(248,202,8)" fg:x="205335" fg:w="442"/><text x="8.8155%" y="367.50"></text></g><g><title>prepare_to_wait_event (528 samples, 0.02%)</title><rect x="8.5626%" y="389" width="0.0220%" height="15" fill="rgb(206,104,37)" fg:x="205265" fg:w="528"/><text x="8.8126%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (666 samples, 0.03%)</title><rect x="8.5846%" y="389" width="0.0278%" height="15" fill="rgb(223,8,27)" fg:x="205793" fg:w="666"/><text x="8.8346%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (499 samples, 0.02%)</title><rect x="8.5916%" y="373" width="0.0208%" height="15" fill="rgb(216,217,28)" fg:x="205960" fg:w="499"/><text x="8.8416%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (1,896 samples, 0.08%)</title><rect x="8.5505%" y="405" width="0.0791%" height="15" fill="rgb(249,199,1)" fg:x="204975" fg:w="1896"/><text x="8.8005%" y="415.50"></text></g><g><title>schedule (412 samples, 0.02%)</title><rect x="8.6124%" y="389" width="0.0172%" height="15" fill="rgb(240,85,17)" fg:x="206459" fg:w="412"/><text x="8.8624%" y="399.50"></text></g><g><title>__schedule (405 samples, 0.02%)</title><rect x="8.6127%" y="373" width="0.0169%" height="15" fill="rgb(206,108,45)" fg:x="206466" fg:w="405"/><text x="8.8627%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (2,003 samples, 0.08%)</title><rect x="8.5498%" y="421" width="0.0836%" height="15" fill="rgb(245,210,41)" fg:x="204960" fg:w="2003"/><text x="8.7998%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (258 samples, 0.01%)</title><rect x="8.6409%" y="389" width="0.0108%" height="15" fill="rgb(206,13,37)" fg:x="207144" fg:w="258"/><text x="8.8909%" y="399.50"></text></g><g><title>prepare_to_wait_event (306 samples, 0.01%)</title><rect x="8.6394%" y="405" width="0.0128%" height="15" fill="rgb(250,61,18)" fg:x="207106" fg:w="306"/><text x="8.8894%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (284 samples, 0.01%)</title><rect x="8.6521%" y="405" width="0.0118%" height="15" fill="rgb(235,172,48)" fg:x="207412" fg:w="284"/><text x="8.9021%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,420 samples, 0.06%)</title><rect x="8.6334%" y="421" width="0.0592%" height="15" fill="rgb(249,201,17)" fg:x="206963" fg:w="1420"/><text x="8.8834%" y="431.50"></text></g><g><title>schedule (687 samples, 0.03%)</title><rect x="8.6640%" y="405" width="0.0287%" height="15" fill="rgb(219,208,6)" fg:x="207696" fg:w="687"/><text x="8.9140%" y="415.50"></text></g><g><title>__schedule (677 samples, 0.03%)</title><rect x="8.6644%" y="389" width="0.0282%" height="15" fill="rgb(248,31,23)" fg:x="207706" fg:w="677"/><text x="8.9144%" y="399.50"></text></g><g><title>btrfs_try_tree_write_lock (1,507 samples, 0.06%)</title><rect x="8.6978%" y="421" width="0.0629%" height="15" fill="rgb(245,15,42)" fg:x="208506" fg:w="1507"/><text x="8.9478%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,451 samples, 0.06%)</title><rect x="8.7001%" y="405" width="0.0605%" height="15" fill="rgb(222,217,39)" fg:x="208562" fg:w="1451"/><text x="8.9501%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (505 samples, 0.02%)</title><rect x="8.7396%" y="389" width="0.0211%" height="15" fill="rgb(210,219,27)" fg:x="209508" fg:w="505"/><text x="8.9896%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (345 samples, 0.01%)</title><rect x="8.7606%" y="421" width="0.0144%" height="15" fill="rgb(252,166,36)" fg:x="210013" fg:w="345"/><text x="9.0106%" y="431.50"></text></g><g><title>find_extent_buffer (399 samples, 0.02%)</title><rect x="8.7824%" y="405" width="0.0166%" height="15" fill="rgb(245,132,34)" fg:x="210536" fg:w="399"/><text x="9.0324%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (623 samples, 0.03%)</title><rect x="8.7750%" y="421" width="0.0260%" height="15" fill="rgb(236,54,3)" fg:x="210358" fg:w="623"/><text x="9.0250%" y="431.50"></text></g><g><title>split_leaf (342 samples, 0.01%)</title><rect x="8.8010%" y="421" width="0.0143%" height="15" fill="rgb(241,173,43)" fg:x="210981" fg:w="342"/><text x="9.0510%" y="431.50"></text></g><g><title>ttwu_do_activate (336 samples, 0.01%)</title><rect x="8.8328%" y="341" width="0.0140%" height="15" fill="rgb(215,190,9)" fg:x="211743" fg:w="336"/><text x="9.0828%" y="351.50"></text></g><g><title>__wake_up_common (769 samples, 0.03%)</title><rect x="8.8179%" y="389" width="0.0321%" height="15" fill="rgb(242,101,16)" fg:x="211386" fg:w="769"/><text x="9.0679%" y="399.50"></text></g><g><title>autoremove_wake_function (757 samples, 0.03%)</title><rect x="8.8184%" y="373" width="0.0316%" height="15" fill="rgb(223,190,21)" fg:x="211398" fg:w="757"/><text x="9.0684%" y="383.50"></text></g><g><title>try_to_wake_up (731 samples, 0.03%)</title><rect x="8.8195%" y="357" width="0.0305%" height="15" fill="rgb(215,228,25)" fg:x="211424" fg:w="731"/><text x="9.0695%" y="367.50"></text></g><g><title>__wake_up_common_lock (790 samples, 0.03%)</title><rect x="8.8177%" y="405" width="0.0330%" height="15" fill="rgb(225,36,22)" fg:x="211381" fg:w="790"/><text x="9.0677%" y="415.50"></text></g><g><title>btrfs_search_slot (7,454 samples, 0.31%)</title><rect x="8.5434%" y="437" width="0.3109%" height="15" fill="rgb(251,106,46)" fg:x="204805" fg:w="7454"/><text x="8.7934%" y="447.50"></text></g><g><title>unlock_up (932 samples, 0.04%)</title><rect x="8.8154%" y="421" width="0.0389%" height="15" fill="rgb(208,90,1)" fg:x="211327" fg:w="932"/><text x="9.0654%" y="431.50"></text></g><g><title>btrfs_get_token_32 (697 samples, 0.03%)</title><rect x="8.8617%" y="421" width="0.0291%" height="15" fill="rgb(243,10,4)" fg:x="212437" fg:w="697"/><text x="9.1117%" y="431.50"></text></g><g><title>btrfs_set_token_32 (523 samples, 0.02%)</title><rect x="8.8967%" y="421" width="0.0218%" height="15" fill="rgb(212,137,27)" fg:x="213276" fg:w="523"/><text x="9.1467%" y="431.50"></text></g><g><title>memcpy_extent_buffer (261 samples, 0.01%)</title><rect x="8.9206%" y="421" width="0.0109%" height="15" fill="rgb(231,220,49)" fg:x="213847" fg:w="261"/><text x="9.1706%" y="431.50"></text></g><g><title>insert_with_overflow (9,610 samples, 0.40%)</title><rect x="8.5401%" y="469" width="0.4009%" height="15" fill="rgb(237,96,20)" fg:x="204726" fg:w="9610"/><text x="8.7901%" y="479.50"></text></g><g><title>btrfs_insert_empty_items (9,542 samples, 0.40%)</title><rect x="8.5429%" y="453" width="0.3980%" height="15" fill="rgb(239,229,30)" fg:x="204794" fg:w="9542"/><text x="8.7929%" y="463.50"></text></g><g><title>setup_items_for_insert (2,077 samples, 0.09%)</title><rect x="8.8543%" y="437" width="0.0866%" height="15" fill="rgb(219,65,33)" fg:x="212259" fg:w="2077"/><text x="9.1043%" y="447.50"></text></g><g><title>btrfs_insert_dir_item (10,923 samples, 0.46%)</title><rect x="8.4933%" y="485" width="0.4556%" height="15" fill="rgb(243,134,7)" fg:x="203604" fg:w="10923"/><text x="8.7433%" y="495.50"></text></g><g><title>btrfs_update_inode (342 samples, 0.01%)</title><rect x="8.9489%" y="485" width="0.0143%" height="15" fill="rgb(216,177,54)" fg:x="214527" fg:w="342"/><text x="9.1989%" y="495.50"></text></g><g><title>btrfs_add_link (11,362 samples, 0.47%)</title><rect x="8.4904%" y="501" width="0.4740%" height="15" fill="rgb(211,160,20)" fg:x="203534" fg:w="11362"/><text x="8.7404%" y="511.50"></text></g><g><title>__queue_work (257 samples, 0.01%)</title><rect x="8.9687%" y="469" width="0.0107%" height="15" fill="rgb(239,85,39)" fg:x="215002" fg:w="257"/><text x="9.2187%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (366 samples, 0.02%)</title><rect x="8.9643%" y="501" width="0.0153%" height="15" fill="rgb(232,125,22)" fg:x="214896" fg:w="366"/><text x="9.2143%" y="511.50"></text></g><g><title>queue_work_on (263 samples, 0.01%)</title><rect x="8.9686%" y="485" width="0.0110%" height="15" fill="rgb(244,57,34)" fg:x="214999" fg:w="263"/><text x="9.2186%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (496 samples, 0.02%)</title><rect x="9.0281%" y="405" width="0.0207%" height="15" fill="rgb(214,203,32)" fg:x="216424" fg:w="496"/><text x="9.2781%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (470 samples, 0.02%)</title><rect x="9.0291%" y="389" width="0.0196%" height="15" fill="rgb(207,58,43)" fg:x="216450" fg:w="470"/><text x="9.2791%" y="399.50"></text></g><g><title>prepare_to_wait_event (542 samples, 0.02%)</title><rect x="9.0265%" y="421" width="0.0226%" height="15" fill="rgb(215,193,15)" fg:x="216387" fg:w="542"/><text x="9.2765%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (610 samples, 0.03%)</title><rect x="9.0491%" y="421" width="0.0254%" height="15" fill="rgb(232,15,44)" fg:x="216929" fg:w="610"/><text x="9.2991%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (449 samples, 0.02%)</title><rect x="9.0558%" y="405" width="0.0187%" height="15" fill="rgb(212,3,48)" fg:x="217090" fg:w="449"/><text x="9.3058%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (1,876 samples, 0.08%)</title><rect x="9.0143%" y="437" width="0.0783%" height="15" fill="rgb(218,128,7)" fg:x="216095" fg:w="1876"/><text x="9.2643%" y="447.50"></text></g><g><title>schedule (432 samples, 0.02%)</title><rect x="9.0746%" y="421" width="0.0180%" height="15" fill="rgb(226,216,39)" fg:x="217539" fg:w="432"/><text x="9.3246%" y="431.50"></text></g><g><title>__schedule (427 samples, 0.02%)</title><rect x="9.0748%" y="405" width="0.0178%" height="15" fill="rgb(243,47,51)" fg:x="217544" fg:w="427"/><text x="9.3248%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (1,957 samples, 0.08%)</title><rect x="9.0141%" y="453" width="0.0816%" height="15" fill="rgb(241,183,40)" fg:x="216089" fg:w="1957"/><text x="9.2641%" y="463.50"></text></g><g><title>prepare_to_wait_event (276 samples, 0.01%)</title><rect x="9.1014%" y="437" width="0.0115%" height="15" fill="rgb(231,217,32)" fg:x="218182" fg:w="276"/><text x="9.3514%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (259 samples, 0.01%)</title><rect x="9.1129%" y="437" width="0.0108%" height="15" fill="rgb(229,61,38)" fg:x="218458" fg:w="259"/><text x="9.3629%" y="447.50"></text></g><g><title>finish_task_switch (263 samples, 0.01%)</title><rect x="9.1346%" y="405" width="0.0110%" height="15" fill="rgb(225,210,5)" fg:x="218979" fg:w="263"/><text x="9.3846%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,428 samples, 0.06%)</title><rect x="9.0957%" y="453" width="0.0596%" height="15" fill="rgb(231,79,45)" fg:x="218046" fg:w="1428"/><text x="9.3457%" y="463.50"></text></g><g><title>schedule (757 samples, 0.03%)</title><rect x="9.1237%" y="437" width="0.0316%" height="15" fill="rgb(224,100,7)" fg:x="218717" fg:w="757"/><text x="9.3737%" y="447.50"></text></g><g><title>__schedule (755 samples, 0.03%)</title><rect x="9.1238%" y="421" width="0.0315%" height="15" fill="rgb(241,198,18)" fg:x="218719" fg:w="755"/><text x="9.3738%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (1,348 samples, 0.06%)</title><rect x="9.1609%" y="453" width="0.0562%" height="15" fill="rgb(252,97,53)" fg:x="219609" fg:w="1348"/><text x="9.4109%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (1,304 samples, 0.05%)</title><rect x="9.1628%" y="437" width="0.0544%" height="15" fill="rgb(220,88,7)" fg:x="219653" fg:w="1304"/><text x="9.4128%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (412 samples, 0.02%)</title><rect x="9.2000%" y="421" width="0.0172%" height="15" fill="rgb(213,176,14)" fg:x="220545" fg:w="412"/><text x="9.4500%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (280 samples, 0.01%)</title><rect x="9.2172%" y="453" width="0.0117%" height="15" fill="rgb(246,73,7)" fg:x="220957" fg:w="280"/><text x="9.4672%" y="463.50"></text></g><g><title>find_extent_buffer (399 samples, 0.02%)</title><rect x="9.2362%" y="437" width="0.0166%" height="15" fill="rgb(245,64,36)" fg:x="221414" fg:w="399"/><text x="9.4862%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (636 samples, 0.03%)</title><rect x="9.2288%" y="453" width="0.0265%" height="15" fill="rgb(245,80,10)" fg:x="221237" fg:w="636"/><text x="9.4788%" y="463.50"></text></g><g><title>split_leaf (426 samples, 0.02%)</title><rect x="9.2554%" y="453" width="0.0178%" height="15" fill="rgb(232,107,50)" fg:x="221873" fg:w="426"/><text x="9.5054%" y="463.50"></text></g><g><title>ttwu_do_activate (412 samples, 0.02%)</title><rect x="9.2939%" y="373" width="0.0172%" height="15" fill="rgb(253,3,0)" fg:x="222796" fg:w="412"/><text x="9.5439%" y="383.50"></text></g><g><title>__wake_up_common (910 samples, 0.04%)</title><rect x="9.2762%" y="421" width="0.0380%" height="15" fill="rgb(212,99,53)" fg:x="222372" fg:w="910"/><text x="9.5262%" y="431.50"></text></g><g><title>autoremove_wake_function (894 samples, 0.04%)</title><rect x="9.2768%" y="405" width="0.0373%" height="15" fill="rgb(249,111,54)" fg:x="222388" fg:w="894"/><text x="9.5268%" y="415.50"></text></g><g><title>try_to_wake_up (866 samples, 0.04%)</title><rect x="9.2780%" y="389" width="0.0361%" height="15" fill="rgb(249,55,30)" fg:x="222416" fg:w="866"/><text x="9.5280%" y="399.50"></text></g><g><title>__wake_up_common_lock (939 samples, 0.04%)</title><rect x="9.2759%" y="437" width="0.0392%" height="15" fill="rgb(237,47,42)" fg:x="222365" fg:w="939"/><text x="9.5259%" y="447.50"></text></g><g><title>btrfs_search_slot (7,494 samples, 0.31%)</title><rect x="9.0070%" y="469" width="0.3126%" height="15" fill="rgb(211,20,18)" fg:x="215919" fg:w="7494"/><text x="9.2570%" y="479.50"></text></g><g><title>unlock_up (1,109 samples, 0.05%)</title><rect x="9.2733%" y="453" width="0.0463%" height="15" fill="rgb(231,203,46)" fg:x="222304" fg:w="1109"/><text x="9.5233%" y="463.50"></text></g><g><title>btrfs_get_token_32 (331 samples, 0.01%)</title><rect x="9.3285%" y="453" width="0.0138%" height="15" fill="rgb(237,142,3)" fg:x="223626" fg:w="331"/><text x="9.5785%" y="463.50"></text></g><g><title>btrfs_set_token_32 (287 samples, 0.01%)</title><rect x="9.3490%" y="453" width="0.0120%" height="15" fill="rgb(241,107,1)" fg:x="224118" fg:w="287"/><text x="9.5990%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (8,762 samples, 0.37%)</title><rect x="9.0062%" y="485" width="0.3655%" height="15" fill="rgb(229,83,13)" fg:x="215901" fg:w="8762"/><text x="9.2562%" y="495.50"></text></g><g><title>setup_items_for_insert (1,250 samples, 0.05%)</title><rect x="9.3196%" y="469" width="0.0521%" height="15" fill="rgb(241,91,40)" fg:x="223413" fg:w="1250"/><text x="9.5696%" y="479.50"></text></g><g><title>fill_inode_item (410 samples, 0.02%)</title><rect x="9.3799%" y="485" width="0.0171%" height="15" fill="rgb(225,3,45)" fg:x="224859" fg:w="410"/><text x="9.6299%" y="495.50"></text></g><g><title>inode_tree_add (774 samples, 0.03%)</title><rect x="9.4005%" y="485" width="0.0323%" height="15" fill="rgb(244,223,14)" fg:x="225352" fg:w="774"/><text x="9.6505%" y="495.50"></text></g><g><title>btrfs_alloc_inode (572 samples, 0.02%)</title><rect x="9.4483%" y="453" width="0.0239%" height="15" fill="rgb(224,124,37)" fg:x="226498" fg:w="572"/><text x="9.6983%" y="463.50"></text></g><g><title>kmem_cache_alloc (400 samples, 0.02%)</title><rect x="9.4555%" y="437" width="0.0167%" height="15" fill="rgb(251,171,30)" fg:x="226670" fg:w="400"/><text x="9.7055%" y="447.50"></text></g><g><title>alloc_inode (775 samples, 0.03%)</title><rect x="9.4465%" y="469" width="0.0323%" height="15" fill="rgb(236,46,54)" fg:x="226456" fg:w="775"/><text x="9.6965%" y="479.50"></text></g><g><title>new_inode (854 samples, 0.04%)</title><rect x="9.4450%" y="485" width="0.0356%" height="15" fill="rgb(245,213,5)" fg:x="226418" fg:w="854"/><text x="9.6950%" y="495.50"></text></g><g><title>btrfs_new_inode (11,799 samples, 0.49%)</title><rect x="8.9893%" y="501" width="0.4922%" height="15" fill="rgb(230,144,27)" fg:x="215495" fg:w="11799"/><text x="9.2393%" y="511.50"></text></g><g><title>btrfs_get_or_create_delayed_node (597 samples, 0.02%)</title><rect x="9.4978%" y="469" width="0.0249%" height="15" fill="rgb(220,86,6)" fg:x="227685" fg:w="597"/><text x="9.7478%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (1,028 samples, 0.04%)</title><rect x="9.4840%" y="485" width="0.0429%" height="15" fill="rgb(240,20,13)" fg:x="227354" fg:w="1028"/><text x="9.7340%" y="495.50"></text></g><g><title>btrfs_update_inode (1,107 samples, 0.05%)</title><rect x="9.4821%" y="501" width="0.0462%" height="15" fill="rgb(217,89,34)" fg:x="227308" fg:w="1107"/><text x="9.7321%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (502 samples, 0.02%)</title><rect x="9.5427%" y="485" width="0.0209%" height="15" fill="rgb(229,13,5)" fg:x="228762" fg:w="502"/><text x="9.7927%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (432 samples, 0.02%)</title><rect x="9.5457%" y="469" width="0.0180%" height="15" fill="rgb(244,67,35)" fg:x="228832" fg:w="432"/><text x="9.7957%" y="479.50"></text></g><g><title>__reserve_bytes (405 samples, 0.02%)</title><rect x="9.5468%" y="453" width="0.0169%" height="15" fill="rgb(221,40,2)" fg:x="228859" fg:w="405"/><text x="9.7968%" y="463.50"></text></g><g><title>btrfs_mkdir (26,504 samples, 1.11%)</title><rect x="8.4687%" y="517" width="1.1056%" height="15" fill="rgb(237,157,21)" fg:x="203015" fg:w="26504"/><text x="8.7187%" y="527.50"></text></g><g><title>start_transaction (913 samples, 0.04%)</title><rect x="9.5362%" y="501" width="0.0381%" height="15" fill="rgb(222,94,11)" fg:x="228606" fg:w="913"/><text x="9.7862%" y="511.50"></text></g><g><title>do_mkdirat (38,531 samples, 1.61%)</title><rect x="7.9726%" y="549" width="1.6073%" height="15" fill="rgb(249,113,6)" fg:x="191121" fg:w="38531"/><text x="8.2226%" y="559.50"></text></g><g><title>vfs_mkdir (26,685 samples, 1.11%)</title><rect x="8.4667%" y="533" width="1.1132%" height="15" fill="rgb(238,137,36)" fg:x="202967" fg:w="26685"/><text x="8.7167%" y="543.50"></text></g><g><title>do_syscall_64 (38,596 samples, 1.61%)</title><rect x="7.9712%" y="565" width="1.6100%" height="15" fill="rgb(210,102,26)" fg:x="191089" fg:w="38596"/><text x="8.2212%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38,720 samples, 1.62%)</title><rect x="7.9699%" y="581" width="1.6152%" height="15" fill="rgb(218,30,30)" fg:x="191058" fg:w="38720"/><text x="8.2199%" y="591.50"></text></g><g><title>__GI___mkdir (38,903 samples, 1.62%)</title><rect x="7.9637%" y="597" width="1.6228%" height="15" fill="rgb(214,67,26)" fg:x="190909" fg:w="38903"/><text x="8.2137%" y="607.50"></text></g><g><title>btrfs_filldir (1,161 samples, 0.05%)</title><rect x="9.6653%" y="485" width="0.0484%" height="15" fill="rgb(251,9,53)" fg:x="231699" fg:w="1161"/><text x="9.9153%" y="495.50"></text></g><g><title>filldir64 (1,053 samples, 0.04%)</title><rect x="9.6698%" y="469" width="0.0439%" height="15" fill="rgb(228,204,25)" fg:x="231807" fg:w="1053"/><text x="9.9198%" y="479.50"></text></g><g><title>verify_dirent_name (309 samples, 0.01%)</title><rect x="9.7008%" y="453" width="0.0129%" height="15" fill="rgb(207,153,8)" fg:x="232551" fg:w="309"/><text x="9.9508%" y="463.50"></text></g><g><title>btrfs_get_16 (248 samples, 0.01%)</title><rect x="9.7155%" y="485" width="0.0103%" height="15" fill="rgb(242,9,16)" fg:x="232904" fg:w="248"/><text x="9.9655%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (319 samples, 0.01%)</title><rect x="9.7408%" y="437" width="0.0133%" height="15" fill="rgb(217,211,10)" fg:x="233509" fg:w="319"/><text x="9.9908%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (325 samples, 0.01%)</title><rect x="9.7408%" y="453" width="0.0136%" height="15" fill="rgb(219,228,52)" fg:x="233509" fg:w="325"/><text x="9.9908%" y="463.50"></text></g><g><title>btrfs_search_slot (594 samples, 0.02%)</title><rect x="9.7396%" y="469" width="0.0248%" height="15" fill="rgb(231,92,29)" fg:x="233482" fg:w="594"/><text x="9.9896%" y="479.50"></text></g><g><title>btrfs_next_old_leaf (773 samples, 0.03%)</title><rect x="9.7378%" y="485" width="0.0322%" height="15" fill="rgb(232,8,23)" fg:x="233438" fg:w="773"/><text x="9.9878%" y="495.50"></text></g><g><title>btrfs_readdir_get_delayed_items (432 samples, 0.02%)</title><rect x="9.7703%" y="485" width="0.0180%" height="15" fill="rgb(216,211,34)" fg:x="234218" fg:w="432"/><text x="10.0203%" y="495.50"></text></g><g><title>free_extent_buffer.part.0 (268 samples, 0.01%)</title><rect x="9.7987%" y="469" width="0.0112%" height="15" fill="rgb(236,151,0)" fg:x="234898" fg:w="268"/><text x="10.0487%" y="479.50"></text></g><g><title>btrfs_release_path (550 samples, 0.02%)</title><rect x="9.7902%" y="485" width="0.0229%" height="15" fill="rgb(209,168,3)" fg:x="234694" fg:w="550"/><text x="10.0402%" y="495.50"></text></g><g><title>finish_wait (633 samples, 0.03%)</title><rect x="9.8390%" y="437" width="0.0264%" height="15" fill="rgb(208,129,28)" fg:x="235864" fg:w="633"/><text x="10.0890%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (599 samples, 0.02%)</title><rect x="9.8404%" y="421" width="0.0250%" height="15" fill="rgb(229,78,22)" fg:x="235898" fg:w="599"/><text x="10.0904%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (568 samples, 0.02%)</title><rect x="9.8417%" y="405" width="0.0237%" height="15" fill="rgb(228,187,13)" fg:x="235929" fg:w="568"/><text x="10.0917%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (1,613 samples, 0.07%)</title><rect x="9.8720%" y="421" width="0.0673%" height="15" fill="rgb(240,119,24)" fg:x="236656" fg:w="1613"/><text x="10.1220%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,533 samples, 0.06%)</title><rect x="9.8754%" y="405" width="0.0639%" height="15" fill="rgb(209,194,42)" fg:x="236736" fg:w="1533"/><text x="10.1254%" y="415.50"></text></g><g><title>prepare_to_wait_event (1,798 samples, 0.08%)</title><rect x="9.8655%" y="437" width="0.0750%" height="15" fill="rgb(247,200,46)" fg:x="236500" fg:w="1798"/><text x="10.1155%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (1,673 samples, 0.07%)</title><rect x="9.9405%" y="437" width="0.0698%" height="15" fill="rgb(218,76,16)" fg:x="238298" fg:w="1673"/><text x="10.1905%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,171 samples, 0.05%)</title><rect x="9.9615%" y="421" width="0.0488%" height="15" fill="rgb(225,21,48)" fg:x="238800" fg:w="1171"/><text x="10.2115%" y="431.50"></text></g><g><title>dequeue_entity (301 samples, 0.01%)</title><rect x="10.0192%" y="389" width="0.0126%" height="15" fill="rgb(239,223,50)" fg:x="240183" fg:w="301"/><text x="10.2692%" y="399.50"></text></g><g><title>dequeue_task_fair (364 samples, 0.02%)</title><rect x="10.0173%" y="405" width="0.0152%" height="15" fill="rgb(244,45,21)" fg:x="240139" fg:w="364"/><text x="10.2673%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (642 samples, 0.03%)</title><rect x="10.0358%" y="389" width="0.0268%" height="15" fill="rgb(232,33,43)" fg:x="240581" fg:w="642"/><text x="10.2858%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (627 samples, 0.03%)</title><rect x="10.0364%" y="373" width="0.0262%" height="15" fill="rgb(209,8,3)" fg:x="240596" fg:w="627"/><text x="10.2864%" y="383.50"></text></g><g><title>native_write_msr (622 samples, 0.03%)</title><rect x="10.0366%" y="357" width="0.0259%" height="15" fill="rgb(214,25,53)" fg:x="240601" fg:w="622"/><text x="10.2866%" y="367.50"></text></g><g><title>finish_task_switch (748 samples, 0.03%)</title><rect x="10.0325%" y="405" width="0.0312%" height="15" fill="rgb(254,186,54)" fg:x="240503" fg:w="748"/><text x="10.2825%" y="415.50"></text></g><g><title>psi_task_change (244 samples, 0.01%)</title><rect x="10.0691%" y="405" width="0.0102%" height="15" fill="rgb(208,174,49)" fg:x="241379" fg:w="244"/><text x="10.3191%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (6,094 samples, 0.25%)</title><rect x="9.8284%" y="453" width="0.2542%" height="15" fill="rgb(233,191,51)" fg:x="235609" fg:w="6094"/><text x="10.0784%" y="463.50"></text></g><g><title>schedule (1,732 samples, 0.07%)</title><rect x="10.0103%" y="437" width="0.0722%" height="15" fill="rgb(222,134,10)" fg:x="239971" fg:w="1732"/><text x="10.2603%" y="447.50"></text></g><g><title>__schedule (1,722 samples, 0.07%)</title><rect x="10.0107%" y="421" width="0.0718%" height="15" fill="rgb(230,226,20)" fg:x="239981" fg:w="1722"/><text x="10.2607%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (6,332 samples, 0.26%)</title><rect x="9.8275%" y="469" width="0.2641%" height="15" fill="rgb(251,111,25)" fg:x="235588" fg:w="6332"/><text x="10.0775%" y="479.50"></text></g><g><title>__schedule (484 samples, 0.02%)</title><rect x="10.0959%" y="437" width="0.0202%" height="15" fill="rgb(224,40,46)" fg:x="242023" fg:w="484"/><text x="10.3459%" y="447.50"></text></g><g><title>__btrfs_tree_read_lock (588 samples, 0.02%)</title><rect x="10.0916%" y="469" width="0.0245%" height="15" fill="rgb(236,108,47)" fg:x="241920" fg:w="588"/><text x="10.3416%" y="479.50"></text></g><g><title>schedule (488 samples, 0.02%)</title><rect x="10.0958%" y="453" width="0.0204%" height="15" fill="rgb(234,93,0)" fg:x="242020" fg:w="488"/><text x="10.3458%" y="463.50"></text></g><g><title>ttwu_do_activate (414 samples, 0.02%)</title><rect x="10.1332%" y="405" width="0.0173%" height="15" fill="rgb(224,213,32)" fg:x="242918" fg:w="414"/><text x="10.3832%" y="415.50"></text></g><g><title>__wake_up_common (925 samples, 0.04%)</title><rect x="10.1162%" y="453" width="0.0386%" height="15" fill="rgb(251,11,48)" fg:x="242509" fg:w="925"/><text x="10.3662%" y="463.50"></text></g><g><title>autoremove_wake_function (909 samples, 0.04%)</title><rect x="10.1169%" y="437" width="0.0379%" height="15" fill="rgb(236,173,5)" fg:x="242525" fg:w="909"/><text x="10.3669%" y="447.50"></text></g><g><title>try_to_wake_up (879 samples, 0.04%)</title><rect x="10.1181%" y="421" width="0.0367%" height="15" fill="rgb(230,95,12)" fg:x="242555" fg:w="879"/><text x="10.3681%" y="431.50"></text></g><g><title>__wake_up_common_lock (941 samples, 0.04%)</title><rect x="10.1161%" y="469" width="0.0393%" height="15" fill="rgb(232,209,1)" fg:x="242508" fg:w="941"/><text x="10.3661%" y="479.50"></text></g><g><title>btrfs_tree_read_lock_atomic (482 samples, 0.02%)</title><rect x="10.1650%" y="469" width="0.0201%" height="15" fill="rgb(232,6,1)" fg:x="243679" fg:w="482"/><text x="10.4150%" y="479.50"></text></g><g><title>queued_read_lock_slowpath (339 samples, 0.01%)</title><rect x="10.1710%" y="453" width="0.0141%" height="15" fill="rgb(210,224,50)" fg:x="243822" fg:w="339"/><text x="10.4210%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (956 samples, 0.04%)</title><rect x="10.1929%" y="469" width="0.0399%" height="15" fill="rgb(228,127,35)" fg:x="244348" fg:w="956"/><text x="10.4429%" y="479.50"></text></g><g><title>__radix_tree_lookup (516 samples, 0.02%)</title><rect x="10.2608%" y="437" width="0.0215%" height="15" fill="rgb(245,102,45)" fg:x="245975" fg:w="516"/><text x="10.5108%" y="447.50"></text></g><g><title>find_extent_buffer (992 samples, 0.04%)</title><rect x="10.2510%" y="453" width="0.0414%" height="15" fill="rgb(214,1,49)" fg:x="245741" fg:w="992"/><text x="10.5010%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (1,541 samples, 0.06%)</title><rect x="10.2328%" y="469" width="0.0643%" height="15" fill="rgb(226,163,40)" fg:x="245304" fg:w="1541"/><text x="10.4828%" y="479.50"></text></g><g><title>btrfs_search_slot (11,742 samples, 0.49%)</title><rect x="9.8131%" y="485" width="0.4898%" height="15" fill="rgb(239,212,28)" fg:x="235244" fg:w="11742"/><text x="10.0631%" y="495.50"></text></g><g><title>filldir64 (248 samples, 0.01%)</title><rect x="10.3070%" y="485" width="0.0103%" height="15" fill="rgb(220,20,13)" fg:x="247083" fg:w="248"/><text x="10.5570%" y="495.50"></text></g><g><title>btrfs_real_readdir (17,753 samples, 0.74%)</title><rect x="9.6376%" y="501" width="0.7406%" height="15" fill="rgb(210,164,35)" fg:x="231035" fg:w="17753"/><text x="9.8876%" y="511.50"></text></g><g><title>read_extent_buffer (1,074 samples, 0.04%)</title><rect x="10.3333%" y="485" width="0.0448%" height="15" fill="rgb(248,109,41)" fg:x="247714" fg:w="1074"/><text x="10.5833%" y="495.50"></text></g><g><title>security_file_permission (284 samples, 0.01%)</title><rect x="10.3837%" y="501" width="0.0118%" height="15" fill="rgb(238,23,50)" fg:x="248923" fg:w="284"/><text x="10.6337%" y="511.50"></text></g><g><title>__reserve_bytes (408 samples, 0.02%)</title><rect x="10.4389%" y="405" width="0.0170%" height="15" fill="rgb(211,48,49)" fg:x="250246" fg:w="408"/><text x="10.6889%" y="415.50"></text></g><g><title>btrfs_block_rsv_add (553 samples, 0.02%)</title><rect x="10.4330%" y="437" width="0.0231%" height="15" fill="rgb(223,36,21)" fg:x="250103" fg:w="553"/><text x="10.6830%" y="447.50"></text></g><g><title>btrfs_reserve_metadata_bytes (460 samples, 0.02%)</title><rect x="10.4368%" y="421" width="0.0192%" height="15" fill="rgb(207,123,46)" fg:x="250196" fg:w="460"/><text x="10.6868%" y="431.50"></text></g><g><title>btrfs_delayed_update_inode (1,031 samples, 0.04%)</title><rect x="10.4200%" y="453" width="0.0430%" height="15" fill="rgb(240,218,32)" fg:x="249791" fg:w="1031"/><text x="10.6700%" y="463.50"></text></g><g><title>btrfs_update_inode (1,162 samples, 0.05%)</title><rect x="10.4190%" y="469" width="0.0485%" height="15" fill="rgb(252,5,43)" fg:x="249768" fg:w="1162"/><text x="10.6690%" y="479.50"></text></g><g><title>btrfs_dirty_inode (1,843 samples, 0.08%)</title><rect x="10.4081%" y="485" width="0.0769%" height="15" fill="rgb(252,84,19)" fg:x="249506" fg:w="1843"/><text x="10.6581%" y="495.50"></text></g><g><title>start_transaction (329 samples, 0.01%)</title><rect x="10.4712%" y="469" width="0.0137%" height="15" fill="rgb(243,152,39)" fg:x="251020" fg:w="329"/><text x="10.7212%" y="479.50"></text></g><g><title>touch_atime (2,206 samples, 0.09%)</title><rect x="10.3956%" y="501" width="0.0920%" height="15" fill="rgb(234,160,15)" fg:x="249207" fg:w="2206"/><text x="10.6456%" y="511.50"></text></g><g><title>iterate_dir (20,557 samples, 0.86%)</title><rect x="9.6320%" y="517" width="0.8575%" height="15" fill="rgb(237,34,20)" fg:x="230902" fg:w="20557"/><text x="9.8820%" y="527.50"></text></g><g><title>__x64_sys_getdents64 (20,894 samples, 0.87%)</title><rect x="9.6190%" y="533" width="0.8716%" height="15" fill="rgb(229,97,13)" fg:x="230591" fg:w="20894"/><text x="9.8690%" y="543.50"></text></g><g><title>do_syscall_64 (20,955 samples, 0.87%)</title><rect x="9.6167%" y="549" width="0.8741%" height="15" fill="rgb(234,71,50)" fg:x="230536" fg:w="20955"/><text x="9.8667%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21,099 samples, 0.88%)</title><rect x="9.6152%" y="565" width="0.8801%" height="15" fill="rgb(253,155,4)" fg:x="230500" fg:w="21099"/><text x="9.8652%" y="575.50"></text></g><g><title>__GI___getdents64 (21,291 samples, 0.89%)</title><rect x="9.6091%" y="581" width="0.8881%" height="15" fill="rgb(222,185,37)" fg:x="230353" fg:w="21291"/><text x="9.8591%" y="591.50"></text></g><g><title>__GI___readdir64 (21,834 samples, 0.91%)</title><rect x="9.5865%" y="597" width="0.9108%" height="15" fill="rgb(251,177,13)" fg:x="229812" fg:w="21834"/><text x="9.8365%" y="607.50"></text></g><g><title>__do_sys_newstat (264 samples, 0.01%)</title><rect x="10.4974%" y="549" width="0.0110%" height="15" fill="rgb(250,179,40)" fg:x="251647" fg:w="264"/><text x="10.7474%" y="559.50"></text></g><g><title>vfs_statx (257 samples, 0.01%)</title><rect x="10.4977%" y="533" width="0.0107%" height="15" fill="rgb(242,44,2)" fg:x="251654" fg:w="257"/><text x="10.7477%" y="543.50"></text></g><g><title>do_syscall_64 (267 samples, 0.01%)</title><rect x="10.4974%" y="565" width="0.0111%" height="15" fill="rgb(216,177,13)" fg:x="251647" fg:w="267"/><text x="10.7474%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (274 samples, 0.01%)</title><rect x="10.4974%" y="581" width="0.0114%" height="15" fill="rgb(216,106,43)" fg:x="251647" fg:w="274"/><text x="10.7474%" y="591.50"></text></g><g><title>__GI___xstat (275 samples, 0.01%)</title><rect x="10.4974%" y="597" width="0.0115%" height="15" fill="rgb(216,183,2)" fg:x="251647" fg:w="275"/><text x="10.7474%" y="607.50"></text></g><g><title>__switch_to_asm (308 samples, 0.01%)</title><rect x="10.5494%" y="581" width="0.0128%" height="15" fill="rgb(249,75,3)" fg:x="252895" fg:w="308"/><text x="10.7994%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (408 samples, 0.02%)</title><rect x="10.5675%" y="581" width="0.0170%" height="15" fill="rgb(219,67,39)" fg:x="253329" fg:w="408"/><text x="10.8175%" y="591.50"></text></g><g><title>crc32c_pcl_intel_update (510 samples, 0.02%)</title><rect x="10.5958%" y="581" width="0.0213%" height="15" fill="rgb(253,228,2)" fg:x="254006" fg:w="510"/><text x="10.8458%" y="591.50"></text></g><g><title>entry_SYSCALL_64 (479 samples, 0.02%)</title><rect x="10.6171%" y="581" width="0.0200%" height="15" fill="rgb(235,138,27)" fg:x="254516" fg:w="479"/><text x="10.8671%" y="591.50"></text></g><g><title>getname_flags (433 samples, 0.02%)</title><rect x="10.6893%" y="533" width="0.0181%" height="15" fill="rgb(236,97,51)" fg:x="256249" fg:w="433"/><text x="10.9393%" y="543.50"></text></g><g><title>memset_erms (1,970 samples, 0.08%)</title><rect x="10.7505%" y="501" width="0.0822%" height="15" fill="rgb(240,80,30)" fg:x="257714" fg:w="1970"/><text x="11.0005%" y="511.50"></text></g><g><title>kmem_cache_alloc (2,930 samples, 0.12%)</title><rect x="10.7176%" y="517" width="0.1222%" height="15" fill="rgb(230,178,19)" fg:x="256927" fg:w="2930"/><text x="10.9676%" y="527.50"></text></g><g><title>__check_heap_object (277 samples, 0.01%)</title><rect x="10.9131%" y="485" width="0.0116%" height="15" fill="rgb(210,190,27)" fg:x="261614" fg:w="277"/><text x="11.1631%" y="495.50"></text></g><g><title>__virt_addr_valid (1,069 samples, 0.04%)</title><rect x="10.9247%" y="485" width="0.0446%" height="15" fill="rgb(222,107,31)" fg:x="261891" fg:w="1069"/><text x="11.1747%" y="495.50"></text></g><g><title>__check_object_size (2,046 samples, 0.09%)</title><rect x="10.8926%" y="501" width="0.0853%" height="15" fill="rgb(216,127,34)" fg:x="261122" fg:w="2046"/><text x="11.1426%" y="511.50"></text></g><g><title>getname_flags.part.0 (6,499 samples, 0.27%)</title><rect x="10.7074%" y="533" width="0.2711%" height="15" fill="rgb(234,116,52)" fg:x="256682" fg:w="6499"/><text x="10.9574%" y="543.50"></text></g><g><title>strncpy_from_user (3,324 samples, 0.14%)</title><rect x="10.8399%" y="517" width="0.1387%" height="15" fill="rgb(222,124,15)" fg:x="259857" fg:w="3324"/><text x="11.0899%" y="527.50"></text></g><g><title>__x64_sys_unlinkat (6,996 samples, 0.29%)</title><rect x="10.6868%" y="549" width="0.2918%" height="15" fill="rgb(231,179,28)" fg:x="256187" fg:w="6996"/><text x="10.9368%" y="559.50"></text></g><g><title>d_lru_add (269 samples, 0.01%)</title><rect x="10.9986%" y="517" width="0.0112%" height="15" fill="rgb(226,93,45)" fg:x="263662" fg:w="269"/><text x="11.2486%" y="527.50"></text></g><g><title>list_lru_add (264 samples, 0.01%)</title><rect x="10.9988%" y="501" width="0.0110%" height="15" fill="rgb(215,8,51)" fg:x="263667" fg:w="264"/><text x="11.2488%" y="511.50"></text></g><g><title>dput (489 samples, 0.02%)</title><rect x="10.9920%" y="533" width="0.0204%" height="15" fill="rgb(223,106,5)" fg:x="263505" fg:w="489"/><text x="11.2420%" y="543.50"></text></g><g><title>path_init (287 samples, 0.01%)</title><rect x="11.0292%" y="501" width="0.0120%" height="15" fill="rgb(250,191,5)" fg:x="264395" fg:w="287"/><text x="11.2792%" y="511.50"></text></g><g><title>filename_parentat (777 samples, 0.03%)</title><rect x="11.0124%" y="533" width="0.0324%" height="15" fill="rgb(242,132,44)" fg:x="263994" fg:w="777"/><text x="11.2624%" y="543.50"></text></g><g><title>path_parentat (713 samples, 0.03%)</title><rect x="11.0151%" y="517" width="0.0297%" height="15" fill="rgb(251,152,29)" fg:x="264058" fg:w="713"/><text x="11.2651%" y="527.50"></text></g><g><title>security_path_rmdir (272 samples, 0.01%)</title><rect x="11.0601%" y="533" width="0.0113%" height="15" fill="rgb(218,179,5)" fg:x="265136" fg:w="272"/><text x="11.3101%" y="543.50"></text></g><g><title>__btrfs_end_transaction (434 samples, 0.02%)</title><rect x="11.0814%" y="501" width="0.0181%" height="15" fill="rgb(227,67,19)" fg:x="265647" fg:w="434"/><text x="11.3314%" y="511.50"></text></g><g><title>btrfs_lookup_dir_index_item (396 samples, 0.02%)</title><rect x="11.1150%" y="469" width="0.0165%" height="15" fill="rgb(233,119,31)" fg:x="266453" fg:w="396"/><text x="11.3650%" y="479.50"></text></g><g><title>btrfs_search_slot (373 samples, 0.02%)</title><rect x="11.1160%" y="453" width="0.0156%" height="15" fill="rgb(241,120,22)" fg:x="266476" fg:w="373"/><text x="11.3660%" y="463.50"></text></g><g><title>btrfs_search_slot (401 samples, 0.02%)</title><rect x="11.1327%" y="453" width="0.0167%" height="15" fill="rgb(224,102,30)" fg:x="266878" fg:w="401"/><text x="11.3827%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (451 samples, 0.02%)</title><rect x="11.1315%" y="469" width="0.0188%" height="15" fill="rgb(210,164,37)" fg:x="266849" fg:w="451"/><text x="11.3815%" y="479.50"></text></g><g><title>btrfs_del_dir_entries_in_log (1,321 samples, 0.06%)</title><rect x="11.1058%" y="485" width="0.0551%" height="15" fill="rgb(226,191,16)" fg:x="266232" fg:w="1321"/><text x="11.3558%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (276 samples, 0.01%)</title><rect x="11.1795%" y="437" width="0.0115%" height="15" fill="rgb(214,40,45)" fg:x="267999" fg:w="276"/><text x="11.4295%" y="447.50"></text></g><g><title>btrfs_search_slot (915 samples, 0.04%)</title><rect x="11.1737%" y="453" width="0.0382%" height="15" fill="rgb(244,29,26)" fg:x="267860" fg:w="915"/><text x="11.4237%" y="463.50"></text></g><g><title>btrfs_del_inode_ref (1,499 samples, 0.06%)</title><rect x="11.1627%" y="469" width="0.0625%" height="15" fill="rgb(216,16,5)" fg:x="267596" fg:w="1499"/><text x="11.4127%" y="479.50"></text></g><g><title>btrfs_del_inode_ref_in_log (1,673 samples, 0.07%)</title><rect x="11.1609%" y="485" width="0.0698%" height="15" fill="rgb(249,76,35)" fg:x="267553" fg:w="1673"/><text x="11.4109%" y="495.50"></text></g><g><title>btrfs_get_token_32 (808 samples, 0.03%)</title><rect x="11.2483%" y="469" width="0.0337%" height="15" fill="rgb(207,11,44)" fg:x="269648" fg:w="808"/><text x="11.4983%" y="479.50"></text></g><g><title>btrfs_set_token_32 (578 samples, 0.02%)</title><rect x="11.2847%" y="469" width="0.0241%" height="15" fill="rgb(228,190,49)" fg:x="270520" fg:w="578"/><text x="11.5347%" y="479.50"></text></g><g><title>memmove_extent_buffer (524 samples, 0.02%)</title><rect x="11.3169%" y="469" width="0.0219%" height="15" fill="rgb(214,173,12)" fg:x="271294" fg:w="524"/><text x="11.5669%" y="479.50"></text></g><g><title>memmove (416 samples, 0.02%)</title><rect x="11.3215%" y="453" width="0.0174%" height="15" fill="rgb(218,26,35)" fg:x="271402" fg:w="416"/><text x="11.5715%" y="463.50"></text></g><g><title>btrfs_del_items (2,826 samples, 0.12%)</title><rect x="11.2307%" y="485" width="0.1179%" height="15" fill="rgb(220,200,19)" fg:x="269226" fg:w="2826"/><text x="11.4807%" y="495.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (580 samples, 0.02%)</title><rect x="11.3486%" y="485" width="0.0242%" height="15" fill="rgb(239,95,49)" fg:x="272052" fg:w="580"/><text x="11.5986%" y="495.50"></text></g><g><title>btrfs_delete_delayed_dir_index (757 samples, 0.03%)</title><rect x="11.3728%" y="485" width="0.0316%" height="15" fill="rgb(235,85,53)" fg:x="272632" fg:w="757"/><text x="11.6228%" y="495.50"></text></g><g><title>btrfs_match_dir_item_name (268 samples, 0.01%)</title><rect x="11.4101%" y="469" width="0.0112%" height="15" fill="rgb(233,133,31)" fg:x="273528" fg:w="268"/><text x="11.6601%" y="479.50"></text></g><g><title>finish_wait (267 samples, 0.01%)</title><rect x="11.4355%" y="421" width="0.0111%" height="15" fill="rgb(218,25,20)" fg:x="274137" fg:w="267"/><text x="11.6855%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (259 samples, 0.01%)</title><rect x="11.4359%" y="405" width="0.0108%" height="15" fill="rgb(252,210,38)" fg:x="274145" fg:w="259"/><text x="11.6859%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (241 samples, 0.01%)</title><rect x="11.4366%" y="389" width="0.0101%" height="15" fill="rgb(242,134,21)" fg:x="274163" fg:w="241"/><text x="11.6866%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (670 samples, 0.03%)</title><rect x="11.4488%" y="405" width="0.0279%" height="15" fill="rgb(213,28,48)" fg:x="274454" fg:w="670"/><text x="11.6988%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (636 samples, 0.03%)</title><rect x="11.4502%" y="389" width="0.0265%" height="15" fill="rgb(250,196,2)" fg:x="274488" fg:w="636"/><text x="11.7002%" y="399.50"></text></g><g><title>prepare_to_wait_event (730 samples, 0.03%)</title><rect x="11.4467%" y="421" width="0.0305%" height="15" fill="rgb(227,5,17)" fg:x="274405" fg:w="730"/><text x="11.6967%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (913 samples, 0.04%)</title><rect x="11.4772%" y="421" width="0.0381%" height="15" fill="rgb(221,226,24)" fg:x="275135" fg:w="913"/><text x="11.7272%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (660 samples, 0.03%)</title><rect x="11.4877%" y="405" width="0.0275%" height="15" fill="rgb(211,5,48)" fg:x="275388" fg:w="660"/><text x="11.7377%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (2,642 samples, 0.11%)</title><rect x="11.4308%" y="437" width="0.1102%" height="15" fill="rgb(219,150,6)" fg:x="274023" fg:w="2642"/><text x="11.6808%" y="447.50"></text></g><g><title>schedule (617 samples, 0.03%)</title><rect x="11.5153%" y="421" width="0.0257%" height="15" fill="rgb(251,46,16)" fg:x="276048" fg:w="617"/><text x="11.7653%" y="431.50"></text></g><g><title>__schedule (604 samples, 0.03%)</title><rect x="11.5158%" y="405" width="0.0252%" height="15" fill="rgb(220,204,40)" fg:x="276061" fg:w="604"/><text x="11.7658%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (2,731 samples, 0.11%)</title><rect x="11.4302%" y="453" width="0.1139%" height="15" fill="rgb(211,85,2)" fg:x="274009" fg:w="2731"/><text x="11.6802%" y="463.50"></text></g><g><title>__btrfs_tree_lock (317 samples, 0.01%)</title><rect x="11.5441%" y="453" width="0.0132%" height="15" fill="rgb(229,17,7)" fg:x="276740" fg:w="317"/><text x="11.7941%" y="463.50"></text></g><g><title>schedule (276 samples, 0.01%)</title><rect x="11.5458%" y="437" width="0.0115%" height="15" fill="rgb(239,72,28)" fg:x="276781" fg:w="276"/><text x="11.7958%" y="447.50"></text></g><g><title>__schedule (273 samples, 0.01%)</title><rect x="11.5460%" y="421" width="0.0114%" height="15" fill="rgb(230,47,54)" fg:x="276784" fg:w="273"/><text x="11.7960%" y="431.50"></text></g><g><title>finish_wait (474 samples, 0.02%)</title><rect x="11.5678%" y="421" width="0.0198%" height="15" fill="rgb(214,50,8)" fg:x="277308" fg:w="474"/><text x="11.8178%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (454 samples, 0.02%)</title><rect x="11.5687%" y="405" width="0.0189%" height="15" fill="rgb(216,198,43)" fg:x="277328" fg:w="454"/><text x="11.8187%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (429 samples, 0.02%)</title><rect x="11.5697%" y="389" width="0.0179%" height="15" fill="rgb(234,20,35)" fg:x="277353" fg:w="429"/><text x="11.8197%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,363 samples, 0.06%)</title><rect x="11.5939%" y="405" width="0.0569%" height="15" fill="rgb(254,45,19)" fg:x="277933" fg:w="1363"/><text x="11.8439%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,294 samples, 0.05%)</title><rect x="11.5968%" y="389" width="0.0540%" height="15" fill="rgb(219,14,44)" fg:x="278002" fg:w="1294"/><text x="11.8468%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,539 samples, 0.06%)</title><rect x="11.5878%" y="421" width="0.0642%" height="15" fill="rgb(217,220,26)" fg:x="277787" fg:w="1539"/><text x="11.8378%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,691 samples, 0.07%)</title><rect x="11.6520%" y="421" width="0.0705%" height="15" fill="rgb(213,158,28)" fg:x="279326" fg:w="1691"/><text x="11.9020%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (748 samples, 0.03%)</title><rect x="11.6913%" y="405" width="0.0312%" height="15" fill="rgb(252,51,52)" fg:x="280269" fg:w="748"/><text x="11.9413%" y="415.50"></text></g><g><title>dequeue_entity (293 samples, 0.01%)</title><rect x="11.7319%" y="373" width="0.0122%" height="15" fill="rgb(246,89,16)" fg:x="281241" fg:w="293"/><text x="11.9819%" y="383.50"></text></g><g><title>dequeue_task_fair (342 samples, 0.01%)</title><rect x="11.7307%" y="389" width="0.0143%" height="15" fill="rgb(216,158,49)" fg:x="281212" fg:w="342"/><text x="11.9807%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (536 samples, 0.02%)</title><rect x="11.7475%" y="373" width="0.0224%" height="15" fill="rgb(236,107,19)" fg:x="281616" fg:w="536"/><text x="11.9975%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (518 samples, 0.02%)</title><rect x="11.7483%" y="357" width="0.0216%" height="15" fill="rgb(228,185,30)" fg:x="281634" fg:w="518"/><text x="11.9983%" y="367.50"></text></g><g><title>native_write_msr (515 samples, 0.02%)</title><rect x="11.7484%" y="341" width="0.0215%" height="15" fill="rgb(246,134,8)" fg:x="281637" fg:w="515"/><text x="11.9984%" y="351.50"></text></g><g><title>finish_task_switch (619 samples, 0.03%)</title><rect x="11.7449%" y="389" width="0.0258%" height="15" fill="rgb(214,143,50)" fg:x="281554" fg:w="619"/><text x="11.9949%" y="399.50"></text></g><g><title>psi_task_change (260 samples, 0.01%)</title><rect x="11.7765%" y="389" width="0.0108%" height="15" fill="rgb(228,75,8)" fg:x="282310" fg:w="260"/><text x="12.0265%" y="399.50"></text></g><g><title>__btrfs_tree_lock (5,530 samples, 0.23%)</title><rect x="11.5599%" y="437" width="0.2307%" height="15" fill="rgb(207,175,4)" fg:x="277118" fg:w="5530"/><text x="11.8099%" y="447.50"></text></g><g><title>schedule (1,631 samples, 0.07%)</title><rect x="11.7225%" y="421" width="0.0680%" height="15" fill="rgb(205,108,24)" fg:x="281017" fg:w="1631"/><text x="11.9725%" y="431.50"></text></g><g><title>__schedule (1,603 samples, 0.07%)</title><rect x="11.7237%" y="405" width="0.0669%" height="15" fill="rgb(244,120,49)" fg:x="281045" fg:w="1603"/><text x="11.9737%" y="415.50"></text></g><g><title>btrfs_lock_root_node (5,574 samples, 0.23%)</title><rect x="11.5596%" y="453" width="0.2325%" height="15" fill="rgb(223,47,38)" fg:x="277112" fg:w="5574"/><text x="11.8096%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (298 samples, 0.01%)</title><rect x="11.7957%" y="453" width="0.0124%" height="15" fill="rgb(229,179,11)" fg:x="282770" fg:w="298"/><text x="12.0457%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (242 samples, 0.01%)</title><rect x="11.7980%" y="437" width="0.0101%" height="15" fill="rgb(231,122,1)" fg:x="282826" fg:w="242"/><text x="12.0480%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (466 samples, 0.02%)</title><rect x="11.8104%" y="453" width="0.0194%" height="15" fill="rgb(245,119,9)" fg:x="283123" fg:w="466"/><text x="12.0604%" y="463.50"></text></g><g><title>__radix_tree_lookup (264 samples, 0.01%)</title><rect x="11.8439%" y="421" width="0.0110%" height="15" fill="rgb(241,163,25)" fg:x="283926" fg:w="264"/><text x="12.0939%" y="431.50"></text></g><g><title>find_extent_buffer (545 samples, 0.02%)</title><rect x="11.8386%" y="437" width="0.0227%" height="15" fill="rgb(217,214,3)" fg:x="283800" fg:w="545"/><text x="12.0886%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (808 samples, 0.03%)</title><rect x="11.8298%" y="453" width="0.0337%" height="15" fill="rgb(240,86,28)" fg:x="283589" fg:w="808"/><text x="12.0798%" y="463.50"></text></g><g><title>reada_for_balance (309 samples, 0.01%)</title><rect x="11.8635%" y="453" width="0.0129%" height="15" fill="rgb(215,47,9)" fg:x="284397" fg:w="309"/><text x="12.1135%" y="463.50"></text></g><g><title>select_task_rq_fair (299 samples, 0.01%)</title><rect x="11.9157%" y="373" width="0.0125%" height="15" fill="rgb(252,25,45)" fg:x="285648" fg:w="299"/><text x="12.1657%" y="383.50"></text></g><g><title>enqueue_entity (284 samples, 0.01%)</title><rect x="11.9326%" y="341" width="0.0118%" height="15" fill="rgb(251,164,9)" fg:x="286052" fg:w="284"/><text x="12.1826%" y="351.50"></text></g><g><title>enqueue_task_fair (374 samples, 0.02%)</title><rect x="11.9298%" y="357" width="0.0156%" height="15" fill="rgb(233,194,0)" fg:x="285985" fg:w="374"/><text x="12.1798%" y="367.50"></text></g><g><title>ttwu_do_activate (737 samples, 0.03%)</title><rect x="11.9289%" y="373" width="0.0307%" height="15" fill="rgb(249,111,24)" fg:x="285965" fg:w="737"/><text x="12.1789%" y="383.50"></text></g><g><title>psi_task_change (342 samples, 0.01%)</title><rect x="11.9454%" y="357" width="0.0143%" height="15" fill="rgb(250,223,3)" fg:x="286360" fg:w="342"/><text x="12.1954%" y="367.50"></text></g><g><title>psi_group_change (297 samples, 0.01%)</title><rect x="11.9473%" y="341" width="0.0124%" height="15" fill="rgb(236,178,37)" fg:x="286405" fg:w="297"/><text x="12.1973%" y="351.50"></text></g><g><title>__wake_up_common (2,089 samples, 0.09%)</title><rect x="11.8805%" y="421" width="0.0871%" height="15" fill="rgb(241,158,50)" fg:x="284803" fg:w="2089"/><text x="12.1305%" y="431.50"></text></g><g><title>autoremove_wake_function (2,028 samples, 0.08%)</title><rect x="11.8830%" y="405" width="0.0846%" height="15" fill="rgb(213,121,41)" fg:x="284864" fg:w="2028"/><text x="12.1330%" y="415.50"></text></g><g><title>try_to_wake_up (1,979 samples, 0.08%)</title><rect x="11.8851%" y="389" width="0.0826%" height="15" fill="rgb(240,92,3)" fg:x="284913" fg:w="1979"/><text x="12.1351%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (306 samples, 0.01%)</title><rect x="11.9676%" y="421" width="0.0128%" height="15" fill="rgb(205,123,3)" fg:x="286892" fg:w="306"/><text x="12.2176%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (288 samples, 0.01%)</title><rect x="11.9684%" y="405" width="0.0120%" height="15" fill="rgb(205,97,47)" fg:x="286910" fg:w="288"/><text x="12.2184%" y="415.50"></text></g><g><title>__wake_up_common_lock (2,423 samples, 0.10%)</title><rect x="11.8801%" y="437" width="0.1011%" height="15" fill="rgb(247,152,14)" fg:x="284793" fg:w="2423"/><text x="12.1301%" y="447.50"></text></g><g><title>btrfs_search_slot (13,475 samples, 0.56%)</title><rect x="11.4213%" y="469" width="0.5621%" height="15" fill="rgb(248,195,53)" fg:x="273796" fg:w="13475"/><text x="11.6713%" y="479.50"></text></g><g><title>unlock_up (2,554 samples, 0.11%)</title><rect x="11.8769%" y="453" width="0.1065%" height="15" fill="rgb(226,201,16)" fg:x="284717" fg:w="2554"/><text x="12.1269%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (13,935 samples, 0.58%)</title><rect x="11.4079%" y="485" width="0.5813%" height="15" fill="rgb(205,98,0)" fg:x="273474" fg:w="13935"/><text x="11.6579%" y="495.50"></text></g><g><title>__wake_up_common (413 samples, 0.02%)</title><rect x="11.9900%" y="453" width="0.0172%" height="15" fill="rgb(214,191,48)" fg:x="287428" fg:w="413"/><text x="12.2400%" y="463.50"></text></g><g><title>autoremove_wake_function (410 samples, 0.02%)</title><rect x="11.9901%" y="437" width="0.0171%" height="15" fill="rgb(237,112,39)" fg:x="287431" fg:w="410"/><text x="12.2401%" y="447.50"></text></g><g><title>try_to_wake_up (402 samples, 0.02%)</title><rect x="11.9904%" y="421" width="0.0168%" height="15" fill="rgb(247,203,27)" fg:x="287439" fg:w="402"/><text x="12.2404%" y="431.50"></text></g><g><title>__wake_up_common_lock (424 samples, 0.02%)</title><rect x="11.9899%" y="469" width="0.0177%" height="15" fill="rgb(235,124,28)" fg:x="287426" fg:w="424"/><text x="12.2399%" y="479.50"></text></g><g><title>btrfs_release_path (612 samples, 0.03%)</title><rect x="11.9892%" y="485" width="0.0255%" height="15" fill="rgb(208,207,46)" fg:x="287409" fg:w="612"/><text x="12.2392%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (393 samples, 0.02%)</title><rect x="12.0169%" y="469" width="0.0164%" height="15" fill="rgb(234,176,4)" fg:x="288073" fg:w="393"/><text x="12.2669%" y="479.50"></text></g><g><title>btrfs_update_inode (546 samples, 0.02%)</title><rect x="12.0147%" y="485" width="0.0228%" height="15" fill="rgb(230,133,28)" fg:x="288021" fg:w="546"/><text x="12.2647%" y="495.50"></text></g><g><title>__btrfs_unlink_inode (22,640 samples, 0.94%)</title><rect x="11.0995%" y="501" width="0.9444%" height="15" fill="rgb(211,137,40)" fg:x="266081" fg:w="22640"/><text x="11.3495%" y="511.50"></text></g><g><title>__wake_up_common (321 samples, 0.01%)</title><rect x="12.0592%" y="421" width="0.0134%" height="15" fill="rgb(254,35,13)" fg:x="289087" fg:w="321"/><text x="12.3092%" y="431.50"></text></g><g><title>autoremove_wake_function (316 samples, 0.01%)</title><rect x="12.0594%" y="405" width="0.0132%" height="15" fill="rgb(225,49,51)" fg:x="289092" fg:w="316"/><text x="12.3094%" y="415.50"></text></g><g><title>try_to_wake_up (311 samples, 0.01%)</title><rect x="12.0596%" y="389" width="0.0130%" height="15" fill="rgb(251,10,15)" fg:x="289097" fg:w="311"/><text x="12.3096%" y="399.50"></text></g><g><title>__wake_up_common_lock (333 samples, 0.01%)</title><rect x="12.0590%" y="437" width="0.0139%" height="15" fill="rgb(228,207,15)" fg:x="289082" fg:w="333"/><text x="12.3090%" y="447.50"></text></g><g><title>btrfs_free_path (569 samples, 0.02%)</title><rect x="12.0573%" y="469" width="0.0237%" height="15" fill="rgb(241,99,19)" fg:x="289042" fg:w="569"/><text x="12.3073%" y="479.50"></text></g><g><title>btrfs_release_path (559 samples, 0.02%)</title><rect x="12.0577%" y="453" width="0.0233%" height="15" fill="rgb(207,104,49)" fg:x="289052" fg:w="559"/><text x="12.3077%" y="463.50"></text></g><g><title>finish_wait (330 samples, 0.01%)</title><rect x="12.0966%" y="405" width="0.0138%" height="15" fill="rgb(234,99,18)" fg:x="289983" fg:w="330"/><text x="12.3466%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (318 samples, 0.01%)</title><rect x="12.0971%" y="389" width="0.0133%" height="15" fill="rgb(213,191,49)" fg:x="289995" fg:w="318"/><text x="12.3471%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (301 samples, 0.01%)</title><rect x="12.0978%" y="373" width="0.0126%" height="15" fill="rgb(210,226,19)" fg:x="290012" fg:w="301"/><text x="12.3478%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (823 samples, 0.03%)</title><rect x="12.1137%" y="389" width="0.0343%" height="15" fill="rgb(229,97,18)" fg:x="290394" fg:w="823"/><text x="12.3637%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (774 samples, 0.03%)</title><rect x="12.1157%" y="373" width="0.0323%" height="15" fill="rgb(211,167,15)" fg:x="290443" fg:w="774"/><text x="12.3657%" y="383.50"></text></g><g><title>prepare_to_wait_event (915 samples, 0.04%)</title><rect x="12.1104%" y="405" width="0.0382%" height="15" fill="rgb(210,169,34)" fg:x="290315" fg:w="915"/><text x="12.3604%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (882 samples, 0.04%)</title><rect x="12.1486%" y="405" width="0.0368%" height="15" fill="rgb(241,121,31)" fg:x="291230" fg:w="882"/><text x="12.3986%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (616 samples, 0.03%)</title><rect x="12.1597%" y="389" width="0.0257%" height="15" fill="rgb(232,40,11)" fg:x="291496" fg:w="616"/><text x="12.4097%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (314 samples, 0.01%)</title><rect x="12.1985%" y="357" width="0.0131%" height="15" fill="rgb(205,86,26)" fg:x="292428" fg:w="314"/><text x="12.4485%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (300 samples, 0.01%)</title><rect x="12.1991%" y="341" width="0.0125%" height="15" fill="rgb(231,126,28)" fg:x="292442" fg:w="300"/><text x="12.4491%" y="351.50"></text></g><g><title>native_write_msr (297 samples, 0.01%)</title><rect x="12.1993%" y="325" width="0.0124%" height="15" fill="rgb(219,221,18)" fg:x="292445" fg:w="297"/><text x="12.4493%" y="335.50"></text></g><g><title>finish_task_switch (353 samples, 0.01%)</title><rect x="12.1973%" y="373" width="0.0147%" height="15" fill="rgb(211,40,0)" fg:x="292398" fg:w="353"/><text x="12.4473%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (3,157 samples, 0.13%)</title><rect x="12.0909%" y="421" width="0.1317%" height="15" fill="rgb(239,85,43)" fg:x="289847" fg:w="3157"/><text x="12.3409%" y="431.50"></text></g><g><title>schedule (892 samples, 0.04%)</title><rect x="12.1854%" y="405" width="0.0372%" height="15" fill="rgb(231,55,21)" fg:x="292112" fg:w="892"/><text x="12.4354%" y="415.50"></text></g><g><title>__schedule (882 samples, 0.04%)</title><rect x="12.1858%" y="389" width="0.0368%" height="15" fill="rgb(225,184,43)" fg:x="292122" fg:w="882"/><text x="12.4358%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (3,292 samples, 0.14%)</title><rect x="12.0900%" y="437" width="0.1373%" height="15" fill="rgb(251,158,41)" fg:x="289825" fg:w="3292"/><text x="12.3400%" y="447.50"></text></g><g><title>finish_task_switch (254 samples, 0.01%)</title><rect x="12.2500%" y="389" width="0.0106%" height="15" fill="rgb(234,159,37)" fg:x="293661" fg:w="254"/><text x="12.5000%" y="399.50"></text></g><g><title>__btrfs_tree_lock (988 samples, 0.04%)</title><rect x="12.2273%" y="437" width="0.0412%" height="15" fill="rgb(216,204,22)" fg:x="293117" fg:w="988"/><text x="12.4773%" y="447.50"></text></g><g><title>schedule (676 samples, 0.03%)</title><rect x="12.2403%" y="421" width="0.0282%" height="15" fill="rgb(214,17,3)" fg:x="293429" fg:w="676"/><text x="12.4903%" y="431.50"></text></g><g><title>__schedule (667 samples, 0.03%)</title><rect x="12.2407%" y="405" width="0.0278%" height="15" fill="rgb(212,111,17)" fg:x="293438" fg:w="667"/><text x="12.4907%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (822 samples, 0.03%)</title><rect x="12.2782%" y="437" width="0.0343%" height="15" fill="rgb(221,157,24)" fg:x="294337" fg:w="822"/><text x="12.5282%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (745 samples, 0.03%)</title><rect x="12.2814%" y="421" width="0.0311%" height="15" fill="rgb(252,16,13)" fg:x="294414" fg:w="745"/><text x="12.5314%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (321 samples, 0.01%)</title><rect x="12.3125%" y="437" width="0.0134%" height="15" fill="rgb(221,62,2)" fg:x="295159" fg:w="321"/><text x="12.5625%" y="447.50"></text></g><g><title>find_extent_buffer (494 samples, 0.02%)</title><rect x="12.3362%" y="421" width="0.0206%" height="15" fill="rgb(247,87,22)" fg:x="295728" fg:w="494"/><text x="12.5862%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (795 samples, 0.03%)</title><rect x="12.3259%" y="437" width="0.0332%" height="15" fill="rgb(215,73,9)" fg:x="295480" fg:w="795"/><text x="12.5759%" y="447.50"></text></g><g><title>ttwu_do_activate (359 samples, 0.01%)</title><rect x="12.3794%" y="357" width="0.0150%" height="15" fill="rgb(207,175,33)" fg:x="296764" fg:w="359"/><text x="12.6294%" y="367.50"></text></g><g><title>__wake_up_common (810 samples, 0.03%)</title><rect x="12.3636%" y="405" width="0.0338%" height="15" fill="rgb(243,129,54)" fg:x="296384" fg:w="810"/><text x="12.6136%" y="415.50"></text></g><g><title>autoremove_wake_function (797 samples, 0.03%)</title><rect x="12.3641%" y="389" width="0.0332%" height="15" fill="rgb(227,119,45)" fg:x="296397" fg:w="797"/><text x="12.6141%" y="399.50"></text></g><g><title>try_to_wake_up (779 samples, 0.03%)</title><rect x="12.3649%" y="373" width="0.0325%" height="15" fill="rgb(205,109,36)" fg:x="296415" fg:w="779"/><text x="12.6149%" y="383.50"></text></g><g><title>__wake_up_common_lock (830 samples, 0.03%)</title><rect x="12.3633%" y="421" width="0.0346%" height="15" fill="rgb(205,6,39)" fg:x="296378" fg:w="830"/><text x="12.6133%" y="431.50"></text></g><g><title>btrfs_search_slot (7,680 samples, 0.32%)</title><rect x="12.0822%" y="453" width="0.3204%" height="15" fill="rgb(221,32,16)" fg:x="289640" fg:w="7680"/><text x="12.3322%" y="463.50"></text></g><g><title>unlock_up (1,034 samples, 0.04%)</title><rect x="12.3595%" y="437" width="0.0431%" height="15" fill="rgb(228,144,50)" fg:x="296286" fg:w="1034"/><text x="12.6095%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (8,341 samples, 0.35%)</title><rect x="12.0810%" y="469" width="0.3479%" height="15" fill="rgb(229,201,53)" fg:x="289611" fg:w="8341"/><text x="12.3310%" y="479.50"></text></g><g><title>setup_items_for_insert (632 samples, 0.03%)</title><rect x="12.4026%" y="453" width="0.0264%" height="15" fill="rgb(249,153,27)" fg:x="297320" fg:w="632"/><text x="12.6526%" y="463.50"></text></g><g><title>btrfs_orphan_add (9,095 samples, 0.38%)</title><rect x="12.0556%" y="501" width="0.3794%" height="15" fill="rgb(227,106,25)" fg:x="289001" fg:w="9095"/><text x="12.3056%" y="511.50"></text></g><g><title>btrfs_insert_orphan_item (9,080 samples, 0.38%)</title><rect x="12.0562%" y="485" width="0.3788%" height="15" fill="rgb(230,65,29)" fg:x="289016" fg:w="9080"/><text x="12.3062%" y="495.50"></text></g><g><title>btrfs_update_inode (289 samples, 0.01%)</title><rect x="12.4355%" y="501" width="0.0121%" height="15" fill="rgb(221,57,46)" fg:x="298109" fg:w="289"/><text x="12.6855%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (500 samples, 0.02%)</title><rect x="12.4581%" y="485" width="0.0209%" height="15" fill="rgb(229,161,17)" fg:x="298650" fg:w="500"/><text x="12.7081%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (446 samples, 0.02%)</title><rect x="12.4603%" y="469" width="0.0186%" height="15" fill="rgb(222,213,11)" fg:x="298704" fg:w="446"/><text x="12.7103%" y="479.50"></text></g><g><title>__reserve_bytes (399 samples, 0.02%)</title><rect x="12.4623%" y="453" width="0.0166%" height="15" fill="rgb(235,35,13)" fg:x="298751" fg:w="399"/><text x="12.7123%" y="463.50"></text></g><g><title>btrfs_rmdir (33,842 samples, 1.41%)</title><rect x="11.0763%" y="517" width="1.4117%" height="15" fill="rgb(233,158,34)" fg:x="265525" fg:w="33842"/><text x="11.3263%" y="527.50"></text></g><g><title>start_transaction (908 samples, 0.04%)</title><rect x="12.4501%" y="501" width="0.0379%" height="15" fill="rgb(215,151,48)" fg:x="298459" fg:w="908"/><text x="12.7001%" y="511.50"></text></g><g><title>__destroy_inode (257 samples, 0.01%)</title><rect x="12.5050%" y="501" width="0.0107%" height="15" fill="rgb(229,84,14)" fg:x="299775" fg:w="257"/><text x="12.7550%" y="511.50"></text></g><g><title>btrfs_drop_extent_cache (404 samples, 0.02%)</title><rect x="12.5187%" y="485" width="0.0169%" height="15" fill="rgb(229,68,14)" fg:x="300103" fg:w="404"/><text x="12.7687%" y="495.50"></text></g><g><title>clear_record_extent_bits (272 samples, 0.01%)</title><rect x="12.5476%" y="469" width="0.0113%" height="15" fill="rgb(243,106,26)" fg:x="300795" fg:w="272"/><text x="12.7976%" y="479.50"></text></g><g><title>__clear_extent_bit (247 samples, 0.01%)</title><rect x="12.5486%" y="453" width="0.0103%" height="15" fill="rgb(206,45,38)" fg:x="300820" fg:w="247"/><text x="12.7986%" y="463.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (343 samples, 0.01%)</title><rect x="12.5464%" y="485" width="0.0143%" height="15" fill="rgb(226,6,15)" fg:x="300767" fg:w="343"/><text x="12.7964%" y="495.50"></text></g><g><title>btrfs_destroy_inode (1,398 samples, 0.06%)</title><rect x="12.5157%" y="501" width="0.0583%" height="15" fill="rgb(232,22,54)" fg:x="300032" fg:w="1398"/><text x="12.7657%" y="511.50"></text></g><g><title>rb_erase (320 samples, 0.01%)</title><rect x="12.5607%" y="485" width="0.0133%" height="15" fill="rgb(229,222,32)" fg:x="301110" fg:w="320"/><text x="12.8107%" y="495.50"></text></g><g><title>destroy_inode (1,704 samples, 0.07%)</title><rect x="12.5047%" y="517" width="0.0711%" height="15" fill="rgb(228,62,29)" fg:x="299767" fg:w="1704"/><text x="12.7547%" y="527.50"></text></g><g><title>_raw_spin_lock (242 samples, 0.01%)</title><rect x="12.6121%" y="437" width="0.0101%" height="15" fill="rgb(251,103,34)" fg:x="302343" fg:w="242"/><text x="12.8621%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (393 samples, 0.02%)</title><rect x="12.6068%" y="469" width="0.0164%" height="15" fill="rgb(233,12,30)" fg:x="302214" fg:w="393"/><text x="12.8568%" y="479.50"></text></g><g><title>btrfs_block_rsv_release (373 samples, 0.02%)</title><rect x="12.6076%" y="453" width="0.0156%" height="15" fill="rgb(238,52,0)" fg:x="302234" fg:w="373"/><text x="12.8576%" y="463.50"></text></g><g><title>__btrfs_end_transaction (804 samples, 0.03%)</title><rect x="12.5946%" y="485" width="0.0335%" height="15" fill="rgb(223,98,5)" fg:x="301923" fg:w="804"/><text x="12.8446%" y="495.50"></text></g><g><title>__radix_tree_lookup (240 samples, 0.01%)</title><rect x="12.6408%" y="453" width="0.0100%" height="15" fill="rgb(228,75,37)" fg:x="303029" fg:w="240"/><text x="12.8908%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (557 samples, 0.02%)</title><rect x="12.6282%" y="485" width="0.0232%" height="15" fill="rgb(205,115,49)" fg:x="302727" fg:w="557"/><text x="12.8782%" y="495.50"></text></g><g><title>radix_tree_delete_item (307 samples, 0.01%)</title><rect x="12.6386%" y="469" width="0.0128%" height="15" fill="rgb(250,154,43)" fg:x="302977" fg:w="307"/><text x="12.8886%" y="479.50"></text></g><g><title>__btrfs_end_transaction (250 samples, 0.01%)</title><rect x="12.6711%" y="469" width="0.0104%" height="15" fill="rgb(226,43,29)" fg:x="303757" fg:w="250"/><text x="12.9211%" y="479.50"></text></g><g><title>btrfs_get_token_32 (1,033 samples, 0.04%)</title><rect x="12.7107%" y="437" width="0.0431%" height="15" fill="rgb(249,228,39)" fg:x="304705" fg:w="1033"/><text x="12.9607%" y="447.50"></text></g><g><title>btrfs_set_token_32 (720 samples, 0.03%)</title><rect x="12.7559%" y="437" width="0.0300%" height="15" fill="rgb(216,79,43)" fg:x="305788" fg:w="720"/><text x="13.0059%" y="447.50"></text></g><g><title>memmove_extent_buffer (555 samples, 0.02%)</title><rect x="12.7939%" y="437" width="0.0232%" height="15" fill="rgb(228,95,12)" fg:x="306701" fg:w="555"/><text x="13.0439%" y="447.50"></text></g><g><title>memmove (465 samples, 0.02%)</title><rect x="12.7977%" y="421" width="0.0194%" height="15" fill="rgb(249,221,15)" fg:x="306791" fg:w="465"/><text x="13.0477%" y="431.50"></text></g><g><title>btrfs_del_items (3,011 samples, 0.13%)</title><rect x="12.6951%" y="453" width="0.1256%" height="15" fill="rgb(233,34,13)" fg:x="304332" fg:w="3011"/><text x="12.9451%" y="463.50"></text></g><g><title>finish_wait (336 samples, 0.01%)</title><rect x="12.8469%" y="389" width="0.0140%" height="15" fill="rgb(214,103,39)" fg:x="307970" fg:w="336"/><text x="13.0969%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (320 samples, 0.01%)</title><rect x="12.8475%" y="373" width="0.0133%" height="15" fill="rgb(251,126,39)" fg:x="307986" fg:w="320"/><text x="13.0975%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (302 samples, 0.01%)</title><rect x="12.8483%" y="357" width="0.0126%" height="15" fill="rgb(214,216,36)" fg:x="308004" fg:w="302"/><text x="13.0983%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (849 samples, 0.04%)</title><rect x="12.8635%" y="373" width="0.0354%" height="15" fill="rgb(220,221,8)" fg:x="308369" fg:w="849"/><text x="13.1135%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (811 samples, 0.03%)</title><rect x="12.8651%" y="357" width="0.0338%" height="15" fill="rgb(240,216,3)" fg:x="308407" fg:w="811"/><text x="13.1151%" y="367.50"></text></g><g><title>prepare_to_wait_event (923 samples, 0.04%)</title><rect x="12.8609%" y="389" width="0.0385%" height="15" fill="rgb(232,218,17)" fg:x="308306" fg:w="923"/><text x="13.1109%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (819 samples, 0.03%)</title><rect x="12.8994%" y="389" width="0.0342%" height="15" fill="rgb(229,163,45)" fg:x="309229" fg:w="819"/><text x="13.1494%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (588 samples, 0.02%)</title><rect x="12.9090%" y="373" width="0.0245%" height="15" fill="rgb(231,110,42)" fg:x="309460" fg:w="588"/><text x="13.1590%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (328 samples, 0.01%)</title><rect x="12.9452%" y="341" width="0.0137%" height="15" fill="rgb(208,170,48)" fg:x="310328" fg:w="328"/><text x="13.1952%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (313 samples, 0.01%)</title><rect x="12.9459%" y="325" width="0.0131%" height="15" fill="rgb(239,116,25)" fg:x="310343" fg:w="313"/><text x="13.1959%" y="335.50"></text></g><g><title>native_write_msr (309 samples, 0.01%)</title><rect x="12.9460%" y="309" width="0.0129%" height="15" fill="rgb(219,200,50)" fg:x="310347" fg:w="309"/><text x="13.1960%" y="319.50"></text></g><g><title>finish_task_switch (361 samples, 0.02%)</title><rect x="12.9444%" y="357" width="0.0151%" height="15" fill="rgb(245,200,0)" fg:x="310307" fg:w="361"/><text x="13.1944%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (3,050 samples, 0.13%)</title><rect x="12.8421%" y="405" width="0.1272%" height="15" fill="rgb(245,119,33)" fg:x="307856" fg:w="3050"/><text x="13.0921%" y="415.50"></text></g><g><title>schedule (858 samples, 0.04%)</title><rect x="12.9336%" y="389" width="0.0358%" height="15" fill="rgb(231,125,12)" fg:x="310048" fg:w="858"/><text x="13.1836%" y="399.50"></text></g><g><title>__schedule (853 samples, 0.04%)</title><rect x="12.9338%" y="373" width="0.0356%" height="15" fill="rgb(216,96,41)" fg:x="310053" fg:w="853"/><text x="13.1838%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (3,155 samples, 0.13%)</title><rect x="12.8415%" y="421" width="0.1316%" height="15" fill="rgb(248,43,45)" fg:x="307842" fg:w="3155"/><text x="13.0915%" y="431.50"></text></g><g><title>__btrfs_tree_lock (399 samples, 0.02%)</title><rect x="12.9731%" y="421" width="0.0166%" height="15" fill="rgb(217,222,7)" fg:x="310997" fg:w="399"/><text x="13.2231%" y="431.50"></text></g><g><title>schedule (356 samples, 0.01%)</title><rect x="12.9749%" y="405" width="0.0149%" height="15" fill="rgb(233,28,6)" fg:x="311040" fg:w="356"/><text x="13.2249%" y="415.50"></text></g><g><title>__schedule (351 samples, 0.01%)</title><rect x="12.9751%" y="389" width="0.0146%" height="15" fill="rgb(231,218,15)" fg:x="311045" fg:w="351"/><text x="13.2251%" y="399.50"></text></g><g><title>finish_wait (344 samples, 0.01%)</title><rect x="12.9986%" y="389" width="0.0143%" height="15" fill="rgb(226,171,48)" fg:x="311607" fg:w="344"/><text x="13.2486%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (325 samples, 0.01%)</title><rect x="12.9994%" y="373" width="0.0136%" height="15" fill="rgb(235,201,9)" fg:x="311626" fg:w="325"/><text x="13.2494%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (300 samples, 0.01%)</title><rect x="13.0004%" y="357" width="0.0125%" height="15" fill="rgb(217,80,15)" fg:x="311651" fg:w="300"/><text x="13.2504%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (888 samples, 0.04%)</title><rect x="13.0183%" y="373" width="0.0370%" height="15" fill="rgb(219,152,8)" fg:x="312080" fg:w="888"/><text x="13.2683%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (816 samples, 0.03%)</title><rect x="13.0213%" y="357" width="0.0340%" height="15" fill="rgb(243,107,38)" fg:x="312152" fg:w="816"/><text x="13.2713%" y="367.50"></text></g><g><title>prepare_to_wait_event (1,036 samples, 0.04%)</title><rect x="13.0132%" y="389" width="0.0432%" height="15" fill="rgb(231,17,5)" fg:x="311958" fg:w="1036"/><text x="13.2632%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (1,497 samples, 0.06%)</title><rect x="13.0564%" y="389" width="0.0624%" height="15" fill="rgb(209,25,54)" fg:x="312994" fg:w="1497"/><text x="13.3064%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (700 samples, 0.03%)</title><rect x="13.0897%" y="373" width="0.0292%" height="15" fill="rgb(219,0,2)" fg:x="313791" fg:w="700"/><text x="13.3397%" y="383.50"></text></g><g><title>dequeue_entity (258 samples, 0.01%)</title><rect x="13.1262%" y="341" width="0.0108%" height="15" fill="rgb(246,9,5)" fg:x="314665" fg:w="258"/><text x="13.3762%" y="351.50"></text></g><g><title>dequeue_task_fair (301 samples, 0.01%)</title><rect x="13.1249%" y="357" width="0.0126%" height="15" fill="rgb(226,159,4)" fg:x="314635" fg:w="301"/><text x="13.3749%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (499 samples, 0.02%)</title><rect x="13.1393%" y="341" width="0.0208%" height="15" fill="rgb(219,175,34)" fg:x="314980" fg:w="499"/><text x="13.3893%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (481 samples, 0.02%)</title><rect x="13.1400%" y="325" width="0.0201%" height="15" fill="rgb(236,10,46)" fg:x="314998" fg:w="481"/><text x="13.3900%" y="335.50"></text></g><g><title>native_write_msr (473 samples, 0.02%)</title><rect x="13.1404%" y="309" width="0.0197%" height="15" fill="rgb(240,211,16)" fg:x="315006" fg:w="473"/><text x="13.3904%" y="319.50"></text></g><g><title>finish_task_switch (561 samples, 0.02%)</title><rect x="13.1375%" y="357" width="0.0234%" height="15" fill="rgb(205,3,43)" fg:x="314936" fg:w="561"/><text x="13.3875%" y="367.50"></text></g><g><title>__btrfs_tree_lock (4,466 samples, 0.19%)</title><rect x="12.9910%" y="405" width="0.1863%" height="15" fill="rgb(245,7,22)" fg:x="311426" fg:w="4466"/><text x="13.2410%" y="415.50"></text></g><g><title>schedule (1,401 samples, 0.06%)</title><rect x="13.1189%" y="389" width="0.0584%" height="15" fill="rgb(239,132,32)" fg:x="314491" fg:w="1401"/><text x="13.3689%" y="399.50"></text></g><g><title>__schedule (1,387 samples, 0.06%)</title><rect x="13.1195%" y="373" width="0.0579%" height="15" fill="rgb(228,202,34)" fg:x="314505" fg:w="1387"/><text x="13.3695%" y="383.50"></text></g><g><title>btrfs_lock_root_node (4,512 samples, 0.19%)</title><rect x="12.9908%" y="421" width="0.1882%" height="15" fill="rgb(254,200,22)" fg:x="311421" fg:w="4512"/><text x="13.2408%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (298 samples, 0.01%)</title><rect x="13.1826%" y="421" width="0.0124%" height="15" fill="rgb(219,10,39)" fg:x="316017" fg:w="298"/><text x="13.4326%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (253 samples, 0.01%)</title><rect x="13.1844%" y="405" width="0.0106%" height="15" fill="rgb(226,210,39)" fg:x="316062" fg:w="253"/><text x="13.4344%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (378 samples, 0.02%)</title><rect x="13.1973%" y="421" width="0.0158%" height="15" fill="rgb(208,219,16)" fg:x="316370" fg:w="378"/><text x="13.4473%" y="431.50"></text></g><g><title>__radix_tree_lookup (257 samples, 0.01%)</title><rect x="13.2267%" y="389" width="0.0107%" height="15" fill="rgb(216,158,51)" fg:x="317075" fg:w="257"/><text x="13.4767%" y="399.50"></text></g><g><title>find_extent_buffer (475 samples, 0.02%)</title><rect x="13.2220%" y="405" width="0.0198%" height="15" fill="rgb(233,14,44)" fg:x="316962" fg:w="475"/><text x="13.4720%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (762 samples, 0.03%)</title><rect x="13.2130%" y="421" width="0.0318%" height="15" fill="rgb(237,97,39)" fg:x="316748" fg:w="762"/><text x="13.4630%" y="431.50"></text></g><g><title>reada_for_balance (310 samples, 0.01%)</title><rect x="13.2448%" y="421" width="0.0129%" height="15" fill="rgb(218,198,43)" fg:x="317510" fg:w="310"/><text x="13.4948%" y="431.50"></text></g><g><title>select_task_rq_fair (342 samples, 0.01%)</title><rect x="13.2957%" y="341" width="0.0143%" height="15" fill="rgb(231,104,20)" fg:x="318730" fg:w="342"/><text x="13.5457%" y="351.50"></text></g><g><title>enqueue_entity (280 samples, 0.01%)</title><rect x="13.3136%" y="309" width="0.0117%" height="15" fill="rgb(254,36,13)" fg:x="319159" fg:w="280"/><text x="13.5636%" y="319.50"></text></g><g><title>enqueue_task_fair (341 samples, 0.01%)</title><rect x="13.3117%" y="325" width="0.0142%" height="15" fill="rgb(248,14,50)" fg:x="319113" fg:w="341"/><text x="13.5617%" y="335.50"></text></g><g><title>ttwu_do_activate (727 samples, 0.03%)</title><rect x="13.3110%" y="341" width="0.0303%" height="15" fill="rgb(217,107,29)" fg:x="319097" fg:w="727"/><text x="13.5610%" y="351.50"></text></g><g><title>psi_task_change (370 samples, 0.02%)</title><rect x="13.3259%" y="325" width="0.0154%" height="15" fill="rgb(251,169,33)" fg:x="319454" fg:w="370"/><text x="13.5759%" y="335.50"></text></g><g><title>psi_group_change (333 samples, 0.01%)</title><rect x="13.3275%" y="309" width="0.0139%" height="15" fill="rgb(217,108,32)" fg:x="319491" fg:w="333"/><text x="13.5775%" y="319.50"></text></g><g><title>__wake_up_common (2,092 samples, 0.09%)</title><rect x="13.2624%" y="389" width="0.0873%" height="15" fill="rgb(219,66,42)" fg:x="317930" fg:w="2092"/><text x="13.5124%" y="399.50"></text></g><g><title>autoremove_wake_function (2,052 samples, 0.09%)</title><rect x="13.2640%" y="373" width="0.0856%" height="15" fill="rgb(206,180,7)" fg:x="317970" fg:w="2052"/><text x="13.5140%" y="383.50"></text></g><g><title>try_to_wake_up (2,003 samples, 0.08%)</title><rect x="13.2661%" y="357" width="0.0836%" height="15" fill="rgb(208,226,31)" fg:x="318019" fg:w="2003"/><text x="13.5161%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (356 samples, 0.01%)</title><rect x="13.3496%" y="389" width="0.0149%" height="15" fill="rgb(218,26,49)" fg:x="320022" fg:w="356"/><text x="13.5996%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (343 samples, 0.01%)</title><rect x="13.3502%" y="373" width="0.0143%" height="15" fill="rgb(233,197,48)" fg:x="320035" fg:w="343"/><text x="13.6002%" y="383.50"></text></g><g><title>__wake_up_common_lock (2,480 samples, 0.10%)</title><rect x="13.2619%" y="405" width="0.1035%" height="15" fill="rgb(252,181,51)" fg:x="317919" fg:w="2480"/><text x="13.5119%" y="415.50"></text></g><g><title>btrfs_lookup_inode (12,866 samples, 0.54%)</title><rect x="12.8308%" y="453" width="0.5367%" height="15" fill="rgb(253,90,19)" fg:x="307585" fg:w="12866"/><text x="13.0808%" y="463.50"></text></g><g><title>btrfs_search_slot (12,821 samples, 0.53%)</title><rect x="12.8327%" y="437" width="0.5348%" height="15" fill="rgb(215,171,30)" fg:x="307630" fg:w="12821"/><text x="13.0827%" y="447.50"></text></g><g><title>unlock_up (2,621 samples, 0.11%)</title><rect x="13.2582%" y="421" width="0.1093%" height="15" fill="rgb(214,222,9)" fg:x="317830" fg:w="2621"/><text x="13.5082%" y="431.50"></text></g><g><title>__wake_up_common (361 samples, 0.02%)</title><rect x="13.3715%" y="421" width="0.0151%" height="15" fill="rgb(223,3,22)" fg:x="320546" fg:w="361"/><text x="13.6215%" y="431.50"></text></g><g><title>autoremove_wake_function (353 samples, 0.01%)</title><rect x="13.3718%" y="405" width="0.0147%" height="15" fill="rgb(225,196,46)" fg:x="320554" fg:w="353"/><text x="13.6218%" y="415.50"></text></g><g><title>try_to_wake_up (345 samples, 0.01%)</title><rect x="13.3721%" y="389" width="0.0144%" height="15" fill="rgb(209,110,37)" fg:x="320562" fg:w="345"/><text x="13.6221%" y="399.50"></text></g><g><title>__wake_up_common_lock (378 samples, 0.02%)</title><rect x="13.3714%" y="437" width="0.0158%" height="15" fill="rgb(249,89,12)" fg:x="320544" fg:w="378"/><text x="13.6214%" y="447.50"></text></g><g><title>btrfs_release_path (576 samples, 0.02%)</title><rect x="13.3709%" y="453" width="0.0240%" height="15" fill="rgb(226,27,33)" fg:x="320532" fg:w="576"/><text x="13.6209%" y="463.50"></text></g><g><title>__btrfs_update_delayed_inode (17,169 samples, 0.72%)</title><rect x="12.6913%" y="469" width="0.7162%" height="15" fill="rgb(213,82,22)" fg:x="304240" fg:w="17169"/><text x="12.9413%" y="479.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (18,421 samples, 0.77%)</title><rect x="12.6696%" y="485" width="0.7684%" height="15" fill="rgb(248,140,0)" fg:x="303720" fg:w="18421"/><text x="12.9196%" y="495.50"></text></g><g><title>start_transaction (243 samples, 0.01%)</title><rect x="13.4279%" y="469" width="0.0101%" height="15" fill="rgb(228,106,3)" fg:x="321898" fg:w="243"/><text x="13.6779%" y="479.50"></text></g><g><title>btrfs_del_items (382 samples, 0.02%)</title><rect x="13.4388%" y="469" width="0.0159%" height="15" fill="rgb(209,23,37)" fg:x="322161" fg:w="382"/><text x="13.6888%" y="479.50"></text></g><g><title>__wake_up_common (800 samples, 0.03%)</title><rect x="13.4559%" y="421" width="0.0334%" height="15" fill="rgb(241,93,50)" fg:x="322571" fg:w="800"/><text x="13.7059%" y="431.50"></text></g><g><title>autoremove_wake_function (780 samples, 0.03%)</title><rect x="13.4568%" y="405" width="0.0325%" height="15" fill="rgb(253,46,43)" fg:x="322591" fg:w="780"/><text x="13.7068%" y="415.50"></text></g><g><title>try_to_wake_up (763 samples, 0.03%)</title><rect x="13.4575%" y="389" width="0.0318%" height="15" fill="rgb(226,206,43)" fg:x="322608" fg:w="763"/><text x="13.7075%" y="399.50"></text></g><g><title>__wake_up_common_lock (824 samples, 0.03%)</title><rect x="13.4558%" y="437" width="0.0344%" height="15" fill="rgb(217,54,7)" fg:x="322568" fg:w="824"/><text x="13.7058%" y="447.50"></text></g><g><title>btrfs_free_path (1,077 samples, 0.04%)</title><rect x="13.4548%" y="469" width="0.0449%" height="15" fill="rgb(223,5,52)" fg:x="322543" fg:w="1077"/><text x="13.7048%" y="479.50"></text></g><g><title>btrfs_release_path (1,076 samples, 0.04%)</title><rect x="13.4548%" y="453" width="0.0449%" height="15" fill="rgb(206,52,46)" fg:x="322544" fg:w="1076"/><text x="13.7048%" y="463.50"></text></g><g><title>finish_wait (478 samples, 0.02%)</title><rect x="13.5141%" y="421" width="0.0199%" height="15" fill="rgb(253,136,11)" fg:x="323966" fg:w="478"/><text x="13.7641%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (457 samples, 0.02%)</title><rect x="13.5150%" y="405" width="0.0191%" height="15" fill="rgb(208,106,33)" fg:x="323987" fg:w="457"/><text x="13.7650%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (437 samples, 0.02%)</title><rect x="13.5159%" y="389" width="0.0182%" height="15" fill="rgb(206,54,4)" fg:x="324007" fg:w="437"/><text x="13.7659%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,425 samples, 0.06%)</title><rect x="13.5381%" y="405" width="0.0594%" height="15" fill="rgb(213,3,15)" fg:x="324540" fg:w="1425"/><text x="13.7881%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,363 samples, 0.06%)</title><rect x="13.5407%" y="389" width="0.0569%" height="15" fill="rgb(252,211,39)" fg:x="324602" fg:w="1363"/><text x="13.7907%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,548 samples, 0.06%)</title><rect x="13.5341%" y="421" width="0.0646%" height="15" fill="rgb(223,6,36)" fg:x="324444" fg:w="1548"/><text x="13.7841%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (879 samples, 0.04%)</title><rect x="13.5987%" y="421" width="0.0367%" height="15" fill="rgb(252,169,45)" fg:x="325992" fg:w="879"/><text x="13.8487%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (635 samples, 0.03%)</title><rect x="13.6088%" y="405" width="0.0265%" height="15" fill="rgb(212,48,26)" fg:x="326236" fg:w="635"/><text x="13.8588%" y="415.50"></text></g><g><title>dequeue_task_fair (248 samples, 0.01%)</title><rect x="13.6394%" y="389" width="0.0103%" height="15" fill="rgb(251,102,48)" fg:x="326969" fg:w="248"/><text x="13.8894%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (498 samples, 0.02%)</title><rect x="13.6516%" y="373" width="0.0208%" height="15" fill="rgb(243,208,16)" fg:x="327261" fg:w="498"/><text x="13.9016%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (492 samples, 0.02%)</title><rect x="13.6518%" y="357" width="0.0205%" height="15" fill="rgb(219,96,24)" fg:x="327267" fg:w="492"/><text x="13.9018%" y="367.50"></text></g><g><title>native_write_msr (490 samples, 0.02%)</title><rect x="13.6519%" y="341" width="0.0204%" height="15" fill="rgb(219,33,29)" fg:x="327269" fg:w="490"/><text x="13.9019%" y="351.50"></text></g><g><title>finish_task_switch (560 samples, 0.02%)</title><rect x="13.6498%" y="389" width="0.0234%" height="15" fill="rgb(223,176,5)" fg:x="327217" fg:w="560"/><text x="13.8998%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (4,256 samples, 0.18%)</title><rect x="13.5078%" y="437" width="0.1775%" height="15" fill="rgb(228,140,14)" fg:x="323815" fg:w="4256"/><text x="13.7578%" y="447.50"></text></g><g><title>schedule (1,200 samples, 0.05%)</title><rect x="13.6353%" y="421" width="0.0501%" height="15" fill="rgb(217,179,31)" fg:x="326871" fg:w="1200"/><text x="13.8853%" y="431.50"></text></g><g><title>__schedule (1,190 samples, 0.05%)</title><rect x="13.6357%" y="405" width="0.0496%" height="15" fill="rgb(230,9,30)" fg:x="326881" fg:w="1190"/><text x="13.8857%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (4,354 samples, 0.18%)</title><rect x="13.5072%" y="453" width="0.1816%" height="15" fill="rgb(230,136,20)" fg:x="323799" fg:w="4354"/><text x="13.7572%" y="463.50"></text></g><g><title>__btrfs_tree_lock (502 samples, 0.02%)</title><rect x="13.6888%" y="453" width="0.0209%" height="15" fill="rgb(215,210,22)" fg:x="328153" fg:w="502"/><text x="13.9388%" y="463.50"></text></g><g><title>schedule (442 samples, 0.02%)</title><rect x="13.6913%" y="437" width="0.0184%" height="15" fill="rgb(218,43,5)" fg:x="328213" fg:w="442"/><text x="13.9413%" y="447.50"></text></g><g><title>__schedule (438 samples, 0.02%)</title><rect x="13.6915%" y="421" width="0.0183%" height="15" fill="rgb(216,11,5)" fg:x="328217" fg:w="438"/><text x="13.9415%" y="431.50"></text></g><g><title>finish_wait (414 samples, 0.02%)</title><rect x="13.7188%" y="421" width="0.0173%" height="15" fill="rgb(209,82,29)" fg:x="328871" fg:w="414"/><text x="13.9688%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (394 samples, 0.02%)</title><rect x="13.7196%" y="405" width="0.0164%" height="15" fill="rgb(244,115,12)" fg:x="328891" fg:w="394"/><text x="13.9696%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (371 samples, 0.02%)</title><rect x="13.7205%" y="389" width="0.0155%" height="15" fill="rgb(222,82,18)" fg:x="328914" fg:w="371"/><text x="13.9705%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,077 samples, 0.04%)</title><rect x="13.7416%" y="405" width="0.0449%" height="15" fill="rgb(249,227,8)" fg:x="329419" fg:w="1077"/><text x="13.9916%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,004 samples, 0.04%)</title><rect x="13.7447%" y="389" width="0.0419%" height="15" fill="rgb(253,141,45)" fg:x="329492" fg:w="1004"/><text x="13.9947%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,226 samples, 0.05%)</title><rect x="13.7364%" y="421" width="0.0511%" height="15" fill="rgb(234,184,4)" fg:x="329295" fg:w="1226"/><text x="13.9864%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,593 samples, 0.07%)</title><rect x="13.7876%" y="421" width="0.0665%" height="15" fill="rgb(218,194,23)" fg:x="330521" fg:w="1593"/><text x="14.0376%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (783 samples, 0.03%)</title><rect x="13.8214%" y="405" width="0.0327%" height="15" fill="rgb(235,66,41)" fg:x="331331" fg:w="783"/><text x="14.0714%" y="415.50"></text></g><g><title>dequeue_entity (262 samples, 0.01%)</title><rect x="13.8627%" y="373" width="0.0109%" height="15" fill="rgb(245,217,1)" fg:x="332322" fg:w="262"/><text x="14.1127%" y="383.50"></text></g><g><title>dequeue_task_fair (316 samples, 0.01%)</title><rect x="13.8615%" y="389" width="0.0132%" height="15" fill="rgb(229,91,1)" fg:x="332292" fg:w="316"/><text x="14.1115%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (604 samples, 0.03%)</title><rect x="13.8774%" y="373" width="0.0252%" height="15" fill="rgb(207,101,30)" fg:x="332673" fg:w="604"/><text x="14.1274%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (586 samples, 0.02%)</title><rect x="13.8781%" y="357" width="0.0244%" height="15" fill="rgb(223,82,49)" fg:x="332691" fg:w="586"/><text x="14.1281%" y="367.50"></text></g><g><title>native_write_msr (584 samples, 0.02%)</title><rect x="13.8782%" y="341" width="0.0244%" height="15" fill="rgb(218,167,17)" fg:x="332693" fg:w="584"/><text x="14.1282%" y="351.50"></text></g><g><title>finish_task_switch (702 samples, 0.03%)</title><rect x="13.8746%" y="389" width="0.0293%" height="15" fill="rgb(208,103,14)" fg:x="332608" fg:w="702"/><text x="14.1246%" y="399.50"></text></g><g><title>__btrfs_tree_lock (5,035 samples, 0.21%)</title><rect x="13.7107%" y="437" width="0.2100%" height="15" fill="rgb(238,20,8)" fg:x="328677" fg:w="5035"/><text x="13.9607%" y="447.50"></text></g><g><title>schedule (1,598 samples, 0.07%)</title><rect x="13.8540%" y="421" width="0.0667%" height="15" fill="rgb(218,80,54)" fg:x="332114" fg:w="1598"/><text x="14.1040%" y="431.50"></text></g><g><title>__schedule (1,582 samples, 0.07%)</title><rect x="13.8547%" y="405" width="0.0660%" height="15" fill="rgb(240,144,17)" fg:x="332130" fg:w="1582"/><text x="14.1047%" y="415.50"></text></g><g><title>btrfs_lock_root_node (5,080 samples, 0.21%)</title><rect x="13.7104%" y="453" width="0.2119%" height="15" fill="rgb(245,27,50)" fg:x="328670" fg:w="5080"/><text x="13.9604%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (313 samples, 0.01%)</title><rect x="13.9282%" y="453" width="0.0131%" height="15" fill="rgb(251,51,7)" fg:x="333891" fg:w="313"/><text x="14.1782%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (250 samples, 0.01%)</title><rect x="13.9308%" y="437" width="0.0104%" height="15" fill="rgb(245,217,29)" fg:x="333954" fg:w="250"/><text x="14.1808%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (381 samples, 0.02%)</title><rect x="13.9431%" y="453" width="0.0159%" height="15" fill="rgb(221,176,29)" fg:x="334249" fg:w="381"/><text x="14.1931%" y="463.50"></text></g><g><title>find_extent_buffer (532 samples, 0.02%)</title><rect x="13.9695%" y="437" width="0.0222%" height="15" fill="rgb(212,180,24)" fg:x="334882" fg:w="532"/><text x="14.2195%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (843 samples, 0.04%)</title><rect x="13.9590%" y="453" width="0.0352%" height="15" fill="rgb(254,24,2)" fg:x="334630" fg:w="843"/><text x="14.2090%" y="463.50"></text></g><g><title>enqueue_task_fair (240 samples, 0.01%)</title><rect x="14.0162%" y="357" width="0.0100%" height="15" fill="rgb(230,100,2)" fg:x="336002" fg:w="240"/><text x="14.2662%" y="367.50"></text></g><g><title>ttwu_do_activate (469 samples, 0.02%)</title><rect x="14.0158%" y="373" width="0.0196%" height="15" fill="rgb(219,142,25)" fg:x="335992" fg:w="469"/><text x="14.2658%" y="383.50"></text></g><g><title>__wake_up_common (1,013 samples, 0.04%)</title><rect x="13.9972%" y="421" width="0.0423%" height="15" fill="rgb(240,73,43)" fg:x="335545" fg:w="1013"/><text x="14.2472%" y="431.50"></text></g><g><title>autoremove_wake_function (1,001 samples, 0.04%)</title><rect x="13.9977%" y="405" width="0.0418%" height="15" fill="rgb(214,114,15)" fg:x="335557" fg:w="1001"/><text x="14.2477%" y="415.50"></text></g><g><title>try_to_wake_up (966 samples, 0.04%)</title><rect x="13.9991%" y="389" width="0.0403%" height="15" fill="rgb(207,130,4)" fg:x="335592" fg:w="966"/><text x="14.2491%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,042 samples, 0.04%)</title><rect x="13.9971%" y="437" width="0.0435%" height="15" fill="rgb(221,25,40)" fg:x="335544" fg:w="1042"/><text x="14.2471%" y="447.50"></text></g><g><title>btrfs_search_slot (13,013 samples, 0.54%)</title><rect x="13.4997%" y="469" width="0.5428%" height="15" fill="rgb(241,184,7)" fg:x="323620" fg:w="13013"/><text x="13.7497%" y="479.50"></text></g><g><title>unlock_up (1,157 samples, 0.05%)</title><rect x="13.9943%" y="453" width="0.0483%" height="15" fill="rgb(235,159,4)" fg:x="335476" fg:w="1157"/><text x="14.2443%" y="463.50"></text></g><g><title>btrfs_del_orphan_item (14,632 samples, 0.61%)</title><rect x="13.4380%" y="485" width="0.6104%" height="15" fill="rgb(214,87,48)" fg:x="322141" fg:w="14632"/><text x="13.6880%" y="495.50"></text></g><g><title>clear_state_bit (301 samples, 0.01%)</title><rect x="14.0825%" y="453" width="0.0126%" height="15" fill="rgb(246,198,24)" fg:x="337590" fg:w="301"/><text x="14.3325%" y="463.50"></text></g><g><title>__clear_extent_bit (592 samples, 0.02%)</title><rect x="14.0727%" y="469" width="0.0247%" height="15" fill="rgb(209,66,40)" fg:x="337357" fg:w="592"/><text x="14.3227%" y="479.50"></text></g><g><title>steal_from_bitmap.part.0 (264 samples, 0.01%)</title><rect x="14.1125%" y="405" width="0.0110%" height="15" fill="rgb(233,147,39)" fg:x="338311" fg:w="264"/><text x="14.3625%" y="415.50"></text></g><g><title>__btrfs_add_free_space (350 samples, 0.01%)</title><rect x="14.1107%" y="421" width="0.0146%" height="15" fill="rgb(231,145,52)" fg:x="338266" fg:w="350"/><text x="14.3607%" y="431.50"></text></g><g><title>btrfs_free_tree_block (497 samples, 0.02%)</title><rect x="14.1106%" y="437" width="0.0207%" height="15" fill="rgb(206,20,26)" fg:x="338264" fg:w="497"/><text x="14.3606%" y="447.50"></text></g><g><title>btrfs_del_leaf (558 samples, 0.02%)</title><rect x="14.1104%" y="453" width="0.0233%" height="15" fill="rgb(238,220,4)" fg:x="338260" fg:w="558"/><text x="14.3604%" y="463.50"></text></g><g><title>btrfs_get_token_32 (1,034 samples, 0.04%)</title><rect x="14.1376%" y="453" width="0.0431%" height="15" fill="rgb(252,195,42)" fg:x="338912" fg:w="1034"/><text x="14.3876%" y="463.50"></text></g><g><title>btrfs_set_token_32 (806 samples, 0.03%)</title><rect x="14.1835%" y="453" width="0.0336%" height="15" fill="rgb(209,10,6)" fg:x="340011" fg:w="806"/><text x="14.4335%" y="463.50"></text></g><g><title>memmove_extent_buffer (534 samples, 0.02%)</title><rect x="14.2268%" y="453" width="0.0223%" height="15" fill="rgb(229,3,52)" fg:x="341049" fg:w="534"/><text x="14.4768%" y="463.50"></text></g><g><title>memmove (395 samples, 0.02%)</title><rect x="14.2326%" y="437" width="0.0165%" height="15" fill="rgb(253,49,37)" fg:x="341188" fg:w="395"/><text x="14.4826%" y="447.50"></text></g><g><title>btrfs_del_items (4,057 samples, 0.17%)</title><rect x="14.0976%" y="469" width="0.1692%" height="15" fill="rgb(240,103,49)" fg:x="337953" fg:w="4057"/><text x="14.3476%" y="479.50"></text></g><g><title>btrfs_drop_extent_cache (454 samples, 0.02%)</title><rect x="14.2668%" y="469" width="0.0189%" height="15" fill="rgb(250,182,30)" fg:x="342010" fg:w="454"/><text x="14.5168%" y="479.50"></text></g><g><title>ttwu_do_activate (291 samples, 0.01%)</title><rect x="14.3003%" y="373" width="0.0121%" height="15" fill="rgb(248,8,30)" fg:x="342813" fg:w="291"/><text x="14.5503%" y="383.50"></text></g><g><title>__wake_up_common (695 samples, 0.03%)</title><rect x="14.2871%" y="421" width="0.0290%" height="15" fill="rgb(237,120,30)" fg:x="342496" fg:w="695"/><text x="14.5371%" y="431.50"></text></g><g><title>autoremove_wake_function (680 samples, 0.03%)</title><rect x="14.2877%" y="405" width="0.0284%" height="15" fill="rgb(221,146,34)" fg:x="342511" fg:w="680"/><text x="14.5377%" y="415.50"></text></g><g><title>try_to_wake_up (670 samples, 0.03%)</title><rect x="14.2882%" y="389" width="0.0279%" height="15" fill="rgb(242,55,13)" fg:x="342521" fg:w="670"/><text x="14.5382%" y="399.50"></text></g><g><title>__wake_up_common_lock (716 samples, 0.03%)</title><rect x="14.2871%" y="437" width="0.0299%" height="15" fill="rgb(242,112,31)" fg:x="342495" fg:w="716"/><text x="14.5371%" y="447.50"></text></g><g><title>btrfs_free_path (949 samples, 0.04%)</title><rect x="14.2858%" y="469" width="0.0396%" height="15" fill="rgb(249,192,27)" fg:x="342464" fg:w="949"/><text x="14.5358%" y="479.50"></text></g><g><title>btrfs_release_path (947 samples, 0.04%)</title><rect x="14.2859%" y="453" width="0.0395%" height="15" fill="rgb(208,204,44)" fg:x="342466" fg:w="947"/><text x="14.5359%" y="463.50"></text></g><g><title>_raw_spin_lock (245 samples, 0.01%)</title><rect x="14.3355%" y="421" width="0.0102%" height="15" fill="rgb(208,93,54)" fg:x="343655" fg:w="245"/><text x="14.5855%" y="431.50"></text></g><g><title>btrfs_block_rsv_release (347 samples, 0.01%)</title><rect x="14.3330%" y="437" width="0.0145%" height="15" fill="rgb(242,1,31)" fg:x="343597" fg:w="347"/><text x="14.5830%" y="447.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (431 samples, 0.02%)</title><rect x="14.3475%" y="437" width="0.0180%" height="15" fill="rgb(241,83,25)" fg:x="343944" fg:w="431"/><text x="14.5975%" y="447.50"></text></g><g><title>kfree (299 samples, 0.01%)</title><rect x="14.3655%" y="437" width="0.0125%" height="15" fill="rgb(205,169,50)" fg:x="344375" fg:w="299"/><text x="14.6155%" y="447.50"></text></g><g><title>__btrfs_kill_delayed_node (1,207 samples, 0.05%)</title><rect x="14.3304%" y="453" width="0.0503%" height="15" fill="rgb(239,186,37)" fg:x="343533" fg:w="1207"/><text x="14.5804%" y="463.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,273 samples, 0.05%)</title><rect x="14.3295%" y="469" width="0.0531%" height="15" fill="rgb(205,221,10)" fg:x="343512" fg:w="1273"/><text x="14.5795%" y="479.50"></text></g><g><title>finish_wait (406 samples, 0.02%)</title><rect x="14.4006%" y="421" width="0.0169%" height="15" fill="rgb(218,196,15)" fg:x="345217" fg:w="406"/><text x="14.6506%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (392 samples, 0.02%)</title><rect x="14.4012%" y="405" width="0.0164%" height="15" fill="rgb(218,196,35)" fg:x="345231" fg:w="392"/><text x="14.6512%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (376 samples, 0.02%)</title><rect x="14.4019%" y="389" width="0.0157%" height="15" fill="rgb(233,63,24)" fg:x="345247" fg:w="376"/><text x="14.6519%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,077 samples, 0.04%)</title><rect x="14.4213%" y="405" width="0.0449%" height="15" fill="rgb(225,8,4)" fg:x="345713" fg:w="1077"/><text x="14.6713%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,027 samples, 0.04%)</title><rect x="14.4234%" y="389" width="0.0428%" height="15" fill="rgb(234,105,35)" fg:x="345763" fg:w="1027"/><text x="14.6734%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,184 samples, 0.05%)</title><rect x="14.4176%" y="421" width="0.0494%" height="15" fill="rgb(236,21,32)" fg:x="345624" fg:w="1184"/><text x="14.6676%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (1,010 samples, 0.04%)</title><rect x="14.4670%" y="421" width="0.0421%" height="15" fill="rgb(228,109,6)" fg:x="346808" fg:w="1010"/><text x="14.7170%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (735 samples, 0.03%)</title><rect x="14.4785%" y="405" width="0.0307%" height="15" fill="rgb(229,215,31)" fg:x="347083" fg:w="735"/><text x="14.7285%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (397 samples, 0.02%)</title><rect x="14.5238%" y="373" width="0.0166%" height="15" fill="rgb(221,52,54)" fg:x="348170" fg:w="397"/><text x="14.7738%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (390 samples, 0.02%)</title><rect x="14.5241%" y="357" width="0.0163%" height="15" fill="rgb(252,129,43)" fg:x="348177" fg:w="390"/><text x="14.7741%" y="367.50"></text></g><g><title>native_write_msr (386 samples, 0.02%)</title><rect x="14.5243%" y="341" width="0.0161%" height="15" fill="rgb(248,183,27)" fg:x="348181" fg:w="386"/><text x="14.7743%" y="351.50"></text></g><g><title>finish_task_switch (443 samples, 0.02%)</title><rect x="14.5224%" y="389" width="0.0185%" height="15" fill="rgb(250,0,22)" fg:x="348136" fg:w="443"/><text x="14.7724%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (3,780 samples, 0.16%)</title><rect x="14.3945%" y="437" width="0.1577%" height="15" fill="rgb(213,166,10)" fg:x="345070" fg:w="3780"/><text x="14.6445%" y="447.50"></text></g><g><title>schedule (1,032 samples, 0.04%)</title><rect x="14.5091%" y="421" width="0.0430%" height="15" fill="rgb(207,163,36)" fg:x="347818" fg:w="1032"/><text x="14.7591%" y="431.50"></text></g><g><title>__schedule (1,021 samples, 0.04%)</title><rect x="14.5096%" y="405" width="0.0426%" height="15" fill="rgb(208,122,22)" fg:x="347829" fg:w="1021"/><text x="14.7596%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (3,881 samples, 0.16%)</title><rect x="14.3941%" y="453" width="0.1619%" height="15" fill="rgb(207,104,49)" fg:x="345061" fg:w="3881"/><text x="14.6441%" y="463.50"></text></g><g><title>__btrfs_tree_lock (406 samples, 0.02%)</title><rect x="14.5560%" y="453" width="0.0169%" height="15" fill="rgb(248,211,50)" fg:x="348942" fg:w="406"/><text x="14.8060%" y="463.50"></text></g><g><title>schedule (361 samples, 0.02%)</title><rect x="14.5579%" y="437" width="0.0151%" height="15" fill="rgb(217,13,45)" fg:x="348987" fg:w="361"/><text x="14.8079%" y="447.50"></text></g><g><title>__schedule (356 samples, 0.01%)</title><rect x="14.5581%" y="421" width="0.0149%" height="15" fill="rgb(211,216,49)" fg:x="348992" fg:w="356"/><text x="14.8081%" y="431.50"></text></g><g><title>finish_wait (396 samples, 0.02%)</title><rect x="14.5847%" y="421" width="0.0165%" height="15" fill="rgb(221,58,53)" fg:x="349631" fg:w="396"/><text x="14.8347%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (374 samples, 0.02%)</title><rect x="14.5857%" y="405" width="0.0156%" height="15" fill="rgb(220,112,41)" fg:x="349653" fg:w="374"/><text x="14.8357%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (347 samples, 0.01%)</title><rect x="14.5868%" y="389" width="0.0145%" height="15" fill="rgb(236,38,28)" fg:x="349680" fg:w="347"/><text x="14.8368%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (960 samples, 0.04%)</title><rect x="14.6063%" y="405" width="0.0400%" height="15" fill="rgb(227,195,22)" fg:x="350147" fg:w="960"/><text x="14.8563%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (896 samples, 0.04%)</title><rect x="14.6089%" y="389" width="0.0374%" height="15" fill="rgb(214,55,33)" fg:x="350211" fg:w="896"/><text x="14.8589%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,097 samples, 0.05%)</title><rect x="14.6014%" y="421" width="0.0458%" height="15" fill="rgb(248,80,13)" fg:x="350030" fg:w="1097"/><text x="14.8514%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,631 samples, 0.07%)</title><rect x="14.6472%" y="421" width="0.0680%" height="15" fill="rgb(238,52,6)" fg:x="351127" fg:w="1631"/><text x="14.8972%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (816 samples, 0.03%)</title><rect x="14.6812%" y="405" width="0.0340%" height="15" fill="rgb(224,198,47)" fg:x="351942" fg:w="816"/><text x="14.9312%" y="415.50"></text></g><g><title>dequeue_entity (255 samples, 0.01%)</title><rect x="14.7231%" y="373" width="0.0106%" height="15" fill="rgb(233,171,20)" fg:x="352948" fg:w="255"/><text x="14.9731%" y="383.50"></text></g><g><title>dequeue_task_fair (304 samples, 0.01%)</title><rect x="14.7219%" y="389" width="0.0127%" height="15" fill="rgb(241,30,25)" fg:x="352920" fg:w="304"/><text x="14.9719%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (510 samples, 0.02%)</title><rect x="14.7369%" y="373" width="0.0213%" height="15" fill="rgb(207,171,38)" fg:x="353279" fg:w="510"/><text x="14.9869%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (493 samples, 0.02%)</title><rect x="14.7376%" y="357" width="0.0206%" height="15" fill="rgb(234,70,1)" fg:x="353296" fg:w="493"/><text x="14.9876%" y="367.50"></text></g><g><title>native_write_msr (488 samples, 0.02%)</title><rect x="14.7378%" y="341" width="0.0204%" height="15" fill="rgb(232,178,18)" fg:x="353301" fg:w="488"/><text x="14.9878%" y="351.50"></text></g><g><title>finish_task_switch (589 samples, 0.02%)</title><rect x="14.7346%" y="389" width="0.0246%" height="15" fill="rgb(241,78,40)" fg:x="353224" fg:w="589"/><text x="14.9846%" y="399.50"></text></g><g><title>__btrfs_tree_lock (4,767 samples, 0.20%)</title><rect x="14.5765%" y="437" width="0.1989%" height="15" fill="rgb(222,35,25)" fg:x="349434" fg:w="4767"/><text x="14.8265%" y="447.50"></text></g><g><title>schedule (1,443 samples, 0.06%)</title><rect x="14.7152%" y="421" width="0.0602%" height="15" fill="rgb(207,92,16)" fg:x="352758" fg:w="1443"/><text x="14.9652%" y="431.50"></text></g><g><title>__schedule (1,426 samples, 0.06%)</title><rect x="14.7159%" y="405" width="0.0595%" height="15" fill="rgb(216,59,51)" fg:x="352775" fg:w="1426"/><text x="14.9659%" y="415.50"></text></g><g><title>btrfs_lock_root_node (4,823 samples, 0.20%)</title><rect x="14.5764%" y="453" width="0.2012%" height="15" fill="rgb(213,80,28)" fg:x="349431" fg:w="4823"/><text x="14.8264%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (390 samples, 0.02%)</title><rect x="14.7850%" y="453" width="0.0163%" height="15" fill="rgb(220,93,7)" fg:x="354431" fg:w="390"/><text x="15.0350%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (352 samples, 0.01%)</title><rect x="14.7866%" y="437" width="0.0147%" height="15" fill="rgb(225,24,44)" fg:x="354469" fg:w="352"/><text x="15.0366%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (403 samples, 0.02%)</title><rect x="14.8035%" y="453" width="0.0168%" height="15" fill="rgb(243,74,40)" fg:x="354876" fg:w="403"/><text x="15.0535%" y="463.50"></text></g><g><title>find_extent_buffer (413 samples, 0.02%)</title><rect x="14.8301%" y="437" width="0.0172%" height="15" fill="rgb(228,39,7)" fg:x="355513" fg:w="413"/><text x="15.0801%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (725 samples, 0.03%)</title><rect x="14.8204%" y="453" width="0.0302%" height="15" fill="rgb(227,79,8)" fg:x="355279" fg:w="725"/><text x="15.0704%" y="463.50"></text></g><g><title>reada_for_balance (290 samples, 0.01%)</title><rect x="14.8506%" y="453" width="0.0121%" height="15" fill="rgb(236,58,11)" fg:x="356004" fg:w="290"/><text x="15.1006%" y="463.50"></text></g><g><title>select_task_rq_fair (316 samples, 0.01%)</title><rect x="14.9000%" y="373" width="0.0132%" height="15" fill="rgb(249,63,35)" fg:x="357188" fg:w="316"/><text x="15.1500%" y="383.50"></text></g><g><title>enqueue_entity (297 samples, 0.01%)</title><rect x="14.9180%" y="341" width="0.0124%" height="15" fill="rgb(252,114,16)" fg:x="357619" fg:w="297"/><text x="15.1680%" y="351.50"></text></g><g><title>enqueue_task_fair (388 samples, 0.02%)</title><rect x="14.9153%" y="357" width="0.0162%" height="15" fill="rgb(254,151,24)" fg:x="357554" fg:w="388"/><text x="15.1653%" y="367.50"></text></g><g><title>ttwu_do_activate (796 samples, 0.03%)</title><rect x="14.9142%" y="373" width="0.0332%" height="15" fill="rgb(253,54,39)" fg:x="357529" fg:w="796"/><text x="15.1642%" y="383.50"></text></g><g><title>psi_task_change (383 samples, 0.02%)</title><rect x="14.9314%" y="357" width="0.0160%" height="15" fill="rgb(243,25,45)" fg:x="357942" fg:w="383"/><text x="15.1814%" y="367.50"></text></g><g><title>psi_group_change (337 samples, 0.01%)</title><rect x="14.9334%" y="341" width="0.0141%" height="15" fill="rgb(234,134,9)" fg:x="357988" fg:w="337"/><text x="15.1834%" y="351.50"></text></g><g><title>__wake_up_common (2,140 samples, 0.09%)</title><rect x="14.8669%" y="421" width="0.0893%" height="15" fill="rgb(227,166,31)" fg:x="356396" fg:w="2140"/><text x="15.1169%" y="431.50"></text></g><g><title>autoremove_wake_function (2,100 samples, 0.09%)</title><rect x="14.8686%" y="405" width="0.0876%" height="15" fill="rgb(245,143,41)" fg:x="356436" fg:w="2100"/><text x="15.1186%" y="415.50"></text></g><g><title>try_to_wake_up (2,047 samples, 0.09%)</title><rect x="14.8708%" y="389" width="0.0854%" height="15" fill="rgb(238,181,32)" fg:x="356489" fg:w="2047"/><text x="15.1208%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (341 samples, 0.01%)</title><rect x="14.9562%" y="421" width="0.0142%" height="15" fill="rgb(224,113,18)" fg:x="358536" fg:w="341"/><text x="15.2062%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (320 samples, 0.01%)</title><rect x="14.9571%" y="405" width="0.0133%" height="15" fill="rgb(240,229,28)" fg:x="358557" fg:w="320"/><text x="15.2071%" y="415.50"></text></g><g><title>__wake_up_common_lock (2,503 samples, 0.10%)</title><rect x="14.8667%" y="437" width="0.1044%" height="15" fill="rgb(250,185,3)" fg:x="356391" fg:w="2503"/><text x="15.1167%" y="447.50"></text></g><g><title>btrfs_search_slot (14,105 samples, 0.59%)</title><rect x="14.3848%" y="469" width="0.5884%" height="15" fill="rgb(212,59,25)" fg:x="344838" fg:w="14105"/><text x="14.6348%" y="479.50"></text></g><g><title>unlock_up (2,637 samples, 0.11%)</title><rect x="14.8632%" y="453" width="0.1100%" height="15" fill="rgb(221,87,20)" fg:x="356306" fg:w="2637"/><text x="15.1132%" y="463.50"></text></g><g><title>lock_extent_bits (453 samples, 0.02%)</title><rect x="14.9788%" y="469" width="0.0189%" height="15" fill="rgb(213,74,28)" fg:x="359078" fg:w="453"/><text x="15.2288%" y="479.50"></text></g><g><title>__set_extent_bit (425 samples, 0.02%)</title><rect x="14.9800%" y="453" width="0.0177%" height="15" fill="rgb(224,132,34)" fg:x="359106" fg:w="425"/><text x="15.2300%" y="463.50"></text></g><g><title>btrfs_truncate_inode_items (22,738 samples, 0.95%)</title><rect x="14.0558%" y="485" width="0.9485%" height="15" fill="rgb(222,101,24)" fg:x="336950" fg:w="22738"/><text x="14.3058%" y="495.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (288 samples, 0.01%)</title><rect x="15.0245%" y="421" width="0.0120%" height="15" fill="rgb(254,142,4)" fg:x="360174" fg:w="288"/><text x="15.2745%" y="431.50"></text></g><g><title>btrfs_block_rsv_refill (877 samples, 0.04%)</title><rect x="15.0104%" y="469" width="0.0366%" height="15" fill="rgb(230,229,49)" fg:x="359836" fg:w="877"/><text x="15.2604%" y="479.50"></text></g><g><title>btrfs_reserve_metadata_bytes (745 samples, 0.03%)</title><rect x="15.0160%" y="453" width="0.0311%" height="15" fill="rgb(238,70,47)" fg:x="359968" fg:w="745"/><text x="15.2660%" y="463.50"></text></g><g><title>__reserve_bytes (719 samples, 0.03%)</title><rect x="15.0170%" y="437" width="0.0300%" height="15" fill="rgb(231,160,17)" fg:x="359994" fg:w="719"/><text x="15.2670%" y="447.50"></text></g><g><title>calc_available_free_space.isra.0 (251 samples, 0.01%)</title><rect x="15.0366%" y="421" width="0.0105%" height="15" fill="rgb(218,68,53)" fg:x="360462" fg:w="251"/><text x="15.2866%" y="431.50"></text></g><g><title>evict_refill_and_join (1,494 samples, 0.06%)</title><rect x="15.0043%" y="485" width="0.0623%" height="15" fill="rgb(236,111,10)" fg:x="359688" fg:w="1494"/><text x="15.2543%" y="495.50"></text></g><g><title>start_transaction (451 samples, 0.02%)</title><rect x="15.0478%" y="469" width="0.0188%" height="15" fill="rgb(224,34,41)" fg:x="360731" fg:w="451"/><text x="15.2978%" y="479.50"></text></g><g><title>btrfs_evict_inode (59,753 samples, 2.49%)</title><rect x="12.5902%" y="501" width="2.4926%" height="15" fill="rgb(241,118,19)" fg:x="301817" fg:w="59753"/><text x="12.8402%" y="511.50">bt..</text></g><g><title>evict (60,107 samples, 2.51%)</title><rect x="12.5792%" y="517" width="2.5073%" height="15" fill="rgb(238,129,25)" fg:x="301553" fg:w="60107"/><text x="12.8292%" y="527.50">ev..</text></g><g><title>_raw_spin_lock (307 samples, 0.01%)</title><rect x="15.1255%" y="485" width="0.0128%" height="15" fill="rgb(238,22,31)" fg:x="362594" fg:w="307"/><text x="15.3755%" y="495.50"></text></g><g><title>__list_del_entry_valid (570 samples, 0.02%)</title><rect x="15.1628%" y="437" width="0.0238%" height="15" fill="rgb(222,174,48)" fg:x="363488" fg:w="570"/><text x="15.4128%" y="447.50"></text></g><g><title>_raw_spin_lock (297 samples, 0.01%)</title><rect x="15.1866%" y="437" width="0.0124%" height="15" fill="rgb(206,152,40)" fg:x="364058" fg:w="297"/><text x="15.4366%" y="447.50"></text></g><g><title>d_lru_del (2,098 samples, 0.09%)</title><rect x="15.1423%" y="469" width="0.0875%" height="15" fill="rgb(218,99,54)" fg:x="362997" fg:w="2098"/><text x="15.3923%" y="479.50"></text></g><g><title>list_lru_del (2,042 samples, 0.09%)</title><rect x="15.1446%" y="453" width="0.0852%" height="15" fill="rgb(220,174,26)" fg:x="363053" fg:w="2042"/><text x="15.3946%" y="463.50"></text></g><g><title>mem_cgroup_from_obj (737 samples, 0.03%)</title><rect x="15.1991%" y="437" width="0.0307%" height="15" fill="rgb(245,116,9)" fg:x="364358" fg:w="737"/><text x="15.4491%" y="447.50"></text></g><g><title>d_walk (3,184 samples, 0.13%)</title><rect x="15.0998%" y="501" width="0.1328%" height="15" fill="rgb(209,72,35)" fg:x="361977" fg:w="3184"/><text x="15.3498%" y="511.50"></text></g><g><title>select_collect (2,255 samples, 0.09%)</title><rect x="15.1385%" y="485" width="0.0941%" height="15" fill="rgb(226,126,21)" fg:x="362906" fg:w="2255"/><text x="15.3885%" y="495.50"></text></g><g><title>___d_drop (1,292 samples, 0.05%)</title><rect x="15.2410%" y="469" width="0.0539%" height="15" fill="rgb(227,192,1)" fg:x="365362" fg:w="1292"/><text x="15.4910%" y="479.50"></text></g><g><title>call_rcu (809 samples, 0.03%)</title><rect x="15.3029%" y="469" width="0.0337%" height="15" fill="rgb(237,180,29)" fg:x="366846" fg:w="809"/><text x="15.5529%" y="479.50"></text></g><g><title>rcu_segcblist_enqueue (436 samples, 0.02%)</title><rect x="15.3184%" y="453" width="0.0182%" height="15" fill="rgb(230,197,35)" fg:x="367219" fg:w="436"/><text x="15.5684%" y="463.50"></text></g><g><title>__dentry_kill (2,472 samples, 0.10%)</title><rect x="15.2354%" y="485" width="0.1031%" height="15" fill="rgb(246,193,31)" fg:x="365229" fg:w="2472"/><text x="15.4854%" y="495.50"></text></g><g><title>__dput_to_list (258 samples, 0.01%)</title><rect x="15.3385%" y="485" width="0.0108%" height="15" fill="rgb(241,36,4)" fg:x="367701" fg:w="258"/><text x="15.5885%" y="495.50"></text></g><g><title>shrink_dcache_parent (6,675 samples, 0.28%)</title><rect x="15.0973%" y="517" width="0.2784%" height="15" fill="rgb(241,130,17)" fg:x="361918" fg:w="6675"/><text x="15.3473%" y="527.50"></text></g><g><title>shrink_dentry_list (3,432 samples, 0.14%)</title><rect x="15.2326%" y="501" width="0.1432%" height="15" fill="rgb(206,137,32)" fg:x="365161" fg:w="3432"/><text x="15.4826%" y="511.50"></text></g><g><title>shrink_lock_dentry.part.0 (243 samples, 0.01%)</title><rect x="15.3656%" y="485" width="0.0101%" height="15" fill="rgb(237,228,51)" fg:x="368350" fg:w="243"/><text x="15.6156%" y="495.50"></text></g><g><title>do_rmdir (105,440 samples, 4.40%)</title><rect x="10.9786%" y="549" width="4.3984%" height="15" fill="rgb(243,6,42)" fg:x="263183" fg:w="105440"/><text x="11.2286%" y="559.50">do_rm..</text></g><g><title>vfs_rmdir.part.0 (103,172 samples, 4.30%)</title><rect x="11.0732%" y="533" width="4.3038%" height="15" fill="rgb(251,74,28)" fg:x="265451" fg:w="103172"/><text x="11.3232%" y="543.50">vfs_r..</text></g><g><title>_raw_spin_lock (336 samples, 0.01%)</title><rect x="15.5760%" y="469" width="0.0140%" height="15" fill="rgb(218,20,49)" fg:x="373393" fg:w="336"/><text x="15.8260%" y="479.50"></text></g><g><title>__d_lookup (3,424 samples, 0.14%)</title><rect x="15.4487%" y="485" width="0.1428%" height="15" fill="rgb(238,28,14)" fg:x="370341" fg:w="3424"/><text x="15.6987%" y="495.50"></text></g><g><title>__lookup_hash (4,069 samples, 0.17%)</title><rect x="15.4219%" y="533" width="0.1697%" height="15" fill="rgb(229,40,46)" fg:x="369700" fg:w="4069"/><text x="15.6719%" y="543.50"></text></g><g><title>lookup_dcache (3,813 samples, 0.16%)</title><rect x="15.4326%" y="517" width="0.1591%" height="15" fill="rgb(244,195,20)" fg:x="369956" fg:w="3813"/><text x="15.6826%" y="527.50"></text></g><g><title>d_lookup (3,682 samples, 0.15%)</title><rect x="15.4381%" y="501" width="0.1536%" height="15" fill="rgb(253,56,35)" fg:x="370087" fg:w="3682"/><text x="15.6881%" y="511.50"></text></g><g><title>call_rcu (1,288 samples, 0.05%)</title><rect x="15.5921%" y="533" width="0.0537%" height="15" fill="rgb(210,149,44)" fg:x="373779" fg:w="1288"/><text x="15.8421%" y="543.50"></text></g><g><title>rcu_segcblist_enqueue (491 samples, 0.02%)</title><rect x="15.6253%" y="517" width="0.0205%" height="15" fill="rgb(240,135,12)" fg:x="374576" fg:w="491"/><text x="15.8753%" y="527.50"></text></g><g><title>__srcu_read_lock (742 samples, 0.03%)</title><rect x="15.7128%" y="469" width="0.0310%" height="15" fill="rgb(251,24,50)" fg:x="376674" fg:w="742"/><text x="15.9628%" y="479.50"></text></g><g><title>fsnotify_destroy_marks (1,508 samples, 0.06%)</title><rect x="15.6889%" y="501" width="0.0629%" height="15" fill="rgb(243,200,47)" fg:x="376100" fg:w="1508"/><text x="15.9389%" y="511.50"></text></g><g><title>fsnotify_grab_connector (1,176 samples, 0.05%)</title><rect x="15.7027%" y="485" width="0.0491%" height="15" fill="rgb(224,166,26)" fg:x="376432" fg:w="1176"/><text x="15.9527%" y="495.50"></text></g><g><title>__destroy_inode (3,213 samples, 0.13%)</title><rect x="15.6496%" y="517" width="0.1340%" height="15" fill="rgb(233,0,47)" fg:x="375157" fg:w="3213"/><text x="15.8996%" y="527.50"></text></g><g><title>security_inode_free (622 samples, 0.03%)</title><rect x="15.7576%" y="501" width="0.0259%" height="15" fill="rgb(253,80,5)" fg:x="377748" fg:w="622"/><text x="16.0076%" y="511.50"></text></g><g><title>_raw_spin_lock (365 samples, 0.02%)</title><rect x="15.7989%" y="501" width="0.0152%" height="15" fill="rgb(214,133,25)" fg:x="378738" fg:w="365"/><text x="16.0489%" y="511.50"></text></g><g><title>memset_erms (462 samples, 0.02%)</title><rect x="15.9021%" y="453" width="0.0193%" height="15" fill="rgb(209,27,14)" fg:x="381211" fg:w="462"/><text x="16.1521%" y="463.50"></text></g><g><title>kmem_cache_alloc (2,099 samples, 0.09%)</title><rect x="15.8550%" y="469" width="0.0876%" height="15" fill="rgb(219,102,51)" fg:x="380082" fg:w="2099"/><text x="16.1050%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (508 samples, 0.02%)</title><rect x="15.9214%" y="453" width="0.0212%" height="15" fill="rgb(237,18,16)" fg:x="381673" fg:w="508"/><text x="16.1714%" y="463.50"></text></g><g><title>alloc_extent_map (2,393 samples, 0.10%)</title><rect x="15.8428%" y="485" width="0.0998%" height="15" fill="rgb(241,85,17)" fg:x="379789" fg:w="2393"/><text x="16.0928%" y="495.50"></text></g><g><title>free_extent_map (344 samples, 0.01%)</title><rect x="15.9427%" y="485" width="0.0143%" height="15" fill="rgb(236,90,42)" fg:x="382185" fg:w="344"/><text x="16.1927%" y="495.50"></text></g><g><title>kmem_cache_free (1,315 samples, 0.05%)</title><rect x="15.9571%" y="485" width="0.0549%" height="15" fill="rgb(249,57,21)" fg:x="382529" fg:w="1315"/><text x="16.2071%" y="495.50"></text></g><g><title>btrfs_drop_extent_cache (4,823 samples, 0.20%)</title><rect x="15.8143%" y="501" width="0.2012%" height="15" fill="rgb(243,12,36)" fg:x="379106" fg:w="4823"/><text x="16.0643%" y="511.50"></text></g><g><title>alloc_extent_state (896 samples, 0.04%)</title><rect x="16.0504%" y="453" width="0.0374%" height="15" fill="rgb(253,128,47)" fg:x="384765" fg:w="896"/><text x="16.3004%" y="463.50"></text></g><g><title>kmem_cache_alloc (806 samples, 0.03%)</title><rect x="16.0541%" y="437" width="0.0336%" height="15" fill="rgb(207,33,20)" fg:x="384855" fg:w="806"/><text x="16.3041%" y="447.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (2,372 samples, 0.10%)</title><rect x="16.0155%" y="501" width="0.0989%" height="15" fill="rgb(233,215,35)" fg:x="383929" fg:w="2372"/><text x="16.2655%" y="511.50"></text></g><g><title>clear_extent_bit (1,877 samples, 0.08%)</title><rect x="16.0361%" y="485" width="0.0783%" height="15" fill="rgb(249,188,52)" fg:x="384424" fg:w="1877"/><text x="16.2861%" y="495.50"></text></g><g><title>__clear_extent_bit (1,832 samples, 0.08%)</title><rect x="16.0380%" y="469" width="0.0764%" height="15" fill="rgb(225,12,32)" fg:x="384469" fg:w="1832"/><text x="16.2880%" y="479.50"></text></g><g><title>kmem_cache_free (456 samples, 0.02%)</title><rect x="16.0954%" y="453" width="0.0190%" height="15" fill="rgb(247,98,14)" fg:x="385845" fg:w="456"/><text x="16.3454%" y="463.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (509 samples, 0.02%)</title><rect x="16.1144%" y="501" width="0.0212%" height="15" fill="rgb(247,219,48)" fg:x="386301" fg:w="509"/><text x="16.3644%" y="511.50"></text></g><g><title>_raw_spin_lock (277 samples, 0.01%)</title><rect x="16.1747%" y="453" width="0.0116%" height="15" fill="rgb(253,60,48)" fg:x="387747" fg:w="277"/><text x="16.4247%" y="463.50"></text></g><g><title>alloc_extent_state (1,515 samples, 0.06%)</title><rect x="16.1863%" y="453" width="0.0632%" height="15" fill="rgb(245,15,52)" fg:x="388024" fg:w="1515"/><text x="16.4363%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,204 samples, 0.05%)</title><rect x="16.1993%" y="437" width="0.0502%" height="15" fill="rgb(220,133,28)" fg:x="388335" fg:w="1204"/><text x="16.4493%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (401 samples, 0.02%)</title><rect x="16.2328%" y="421" width="0.0167%" height="15" fill="rgb(217,180,4)" fg:x="389138" fg:w="401"/><text x="16.4828%" y="431.50"></text></g><g><title>__clear_extent_bit (2,959 samples, 0.12%)</title><rect x="16.1603%" y="469" width="0.1234%" height="15" fill="rgb(251,24,1)" fg:x="387400" fg:w="2959"/><text x="16.4103%" y="479.50"></text></g><g><title>kmem_cache_free (577 samples, 0.02%)</title><rect x="16.2596%" y="453" width="0.0241%" height="15" fill="rgb(212,185,49)" fg:x="389782" fg:w="577"/><text x="16.5096%" y="463.50"></text></g><g><title>clear_record_extent_bits (3,196 samples, 0.13%)</title><rect x="16.1504%" y="485" width="0.1333%" height="15" fill="rgb(215,175,22)" fg:x="387164" fg:w="3196"/><text x="16.4004%" y="495.50"></text></g><g><title>ulist_init (347 samples, 0.01%)</title><rect x="16.2837%" y="485" width="0.0145%" height="15" fill="rgb(250,205,14)" fg:x="390360" fg:w="347"/><text x="16.5337%" y="495.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (4,110 samples, 0.17%)</title><rect x="16.1357%" y="501" width="0.1714%" height="15" fill="rgb(225,211,22)" fg:x="386810" fg:w="4110"/><text x="16.3857%" y="511.50"></text></g><g><title>btrfs_destroy_inode (16,049 samples, 0.67%)</title><rect x="15.7836%" y="517" width="0.6695%" height="15" fill="rgb(251,179,42)" fg:x="378370" fg:w="16049"/><text x="16.0336%" y="527.50"></text></g><g><title>rb_erase (3,499 samples, 0.15%)</title><rect x="16.3071%" y="501" width="0.1460%" height="15" fill="rgb(208,216,51)" fg:x="390920" fg:w="3499"/><text x="16.5571%" y="511.50"></text></g><g><title>destroy_inode (19,783 samples, 0.83%)</title><rect x="15.6458%" y="533" width="0.8252%" height="15" fill="rgb(235,36,11)" fg:x="375067" fg:w="19783"/><text x="15.8958%" y="543.50"></text></g><g><title>btrfs_put_root (431 samples, 0.02%)</title><rect x="16.4531%" y="517" width="0.0180%" height="15" fill="rgb(213,189,28)" fg:x="394419" fg:w="431"/><text x="16.7031%" y="527.50"></text></g><g><title>down_write (504 samples, 0.02%)</title><rect x="16.4710%" y="533" width="0.0210%" height="15" fill="rgb(227,203,42)" fg:x="394850" fg:w="504"/><text x="16.7210%" y="543.50"></text></g><g><title>__schedule (263 samples, 0.01%)</title><rect x="16.5268%" y="501" width="0.0110%" height="15" fill="rgb(244,72,36)" fg:x="396186" fg:w="263"/><text x="16.7768%" y="511.50"></text></g><g><title>_cond_resched (420 samples, 0.02%)</title><rect x="16.5224%" y="517" width="0.0175%" height="15" fill="rgb(213,53,17)" fg:x="396082" fg:w="420"/><text x="16.7724%" y="527.50"></text></g><g><title>btrfs_dentry_delete (797 samples, 0.03%)</title><rect x="16.5401%" y="517" width="0.0332%" height="15" fill="rgb(207,167,3)" fg:x="396506" fg:w="797"/><text x="16.7901%" y="527.50"></text></g><g><title>lockref_put_or_lock (833 samples, 0.03%)</title><rect x="16.5737%" y="517" width="0.0347%" height="15" fill="rgb(216,98,30)" fg:x="397310" fg:w="833"/><text x="16.8237%" y="527.50"></text></g><g><title>dput (2,828 samples, 0.12%)</title><rect x="16.4921%" y="533" width="0.1180%" height="15" fill="rgb(236,123,15)" fg:x="395354" fg:w="2828"/><text x="16.7421%" y="543.50"></text></g><g><title>__list_del_entry_valid (859 samples, 0.04%)</title><rect x="16.6358%" y="517" width="0.0358%" height="15" fill="rgb(248,81,50)" fg:x="398800" fg:w="859"/><text x="16.8858%" y="527.50"></text></g><g><title>_raw_spin_lock (760 samples, 0.03%)</title><rect x="16.6780%" y="501" width="0.0317%" height="15" fill="rgb(214,120,4)" fg:x="399810" fg:w="760"/><text x="16.9280%" y="511.50"></text></g><g><title>__remove_inode_hash (914 samples, 0.04%)</title><rect x="16.6717%" y="517" width="0.0381%" height="15" fill="rgb(208,179,34)" fg:x="399659" fg:w="914"/><text x="16.9217%" y="527.50"></text></g><g><title>_raw_spin_lock (903 samples, 0.04%)</title><rect x="16.7098%" y="517" width="0.0377%" height="15" fill="rgb(227,140,7)" fg:x="400573" fg:w="903"/><text x="16.9598%" y="527.50"></text></g><g><title>btrfs_create_pending_block_groups (275 samples, 0.01%)</title><rect x="16.9184%" y="485" width="0.0115%" height="15" fill="rgb(214,22,6)" fg:x="405573" fg:w="275"/><text x="17.1684%" y="495.50"></text></g><g><title>btrfs_put_transaction (497 samples, 0.02%)</title><rect x="16.9298%" y="485" width="0.0207%" height="15" fill="rgb(207,137,27)" fg:x="405848" fg:w="497"/><text x="17.1798%" y="495.50"></text></g><g><title>_raw_spin_lock (3,146 samples, 0.13%)</title><rect x="17.0254%" y="453" width="0.1312%" height="15" fill="rgb(210,8,46)" fg:x="408138" fg:w="3146"/><text x="17.2754%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,160 samples, 0.05%)</title><rect x="17.1082%" y="437" width="0.0484%" height="15" fill="rgb(240,16,54)" fg:x="410124" fg:w="1160"/><text x="17.3582%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (5,018 samples, 0.21%)</title><rect x="16.9573%" y="485" width="0.2093%" height="15" fill="rgb(211,209,29)" fg:x="406507" fg:w="5018"/><text x="17.2073%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (4,767 samples, 0.20%)</title><rect x="16.9678%" y="469" width="0.1989%" height="15" fill="rgb(226,228,24)" fg:x="406758" fg:w="4767"/><text x="17.2178%" y="479.50"></text></g><g><title>__btrfs_end_transaction (10,270 samples, 0.43%)</title><rect x="16.8000%" y="501" width="0.4284%" height="15" fill="rgb(222,84,9)" fg:x="402737" fg:w="10270"/><text x="17.0500%" y="511.50"></text></g><g><title>kmem_cache_free (1,482 samples, 0.06%)</title><rect x="17.1666%" y="485" width="0.0618%" height="15" fill="rgb(234,203,30)" fg:x="411525" fg:w="1482"/><text x="17.4166%" y="495.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (258 samples, 0.01%)</title><rect x="17.2177%" y="469" width="0.0108%" height="15" fill="rgb(238,109,14)" fg:x="412749" fg:w="258"/><text x="17.4677%" y="479.50"></text></g><g><title>_raw_spin_lock (1,140 samples, 0.05%)</title><rect x="17.2546%" y="485" width="0.0476%" height="15" fill="rgb(233,206,34)" fg:x="413633" fg:w="1140"/><text x="17.5046%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (619 samples, 0.03%)</title><rect x="17.2763%" y="469" width="0.0258%" height="15" fill="rgb(220,167,47)" fg:x="414154" fg:w="619"/><text x="17.5263%" y="479.50"></text></g><g><title>mutex_lock (918 samples, 0.04%)</title><rect x="17.3023%" y="485" width="0.0383%" height="15" fill="rgb(238,105,10)" fg:x="414777" fg:w="918"/><text x="17.5523%" y="495.50"></text></g><g><title>__radix_tree_delete (364 samples, 0.02%)</title><rect x="17.3529%" y="469" width="0.0152%" height="15" fill="rgb(213,227,17)" fg:x="415991" fg:w="364"/><text x="17.6029%" y="479.50"></text></g><g><title>__radix_tree_lookup (2,373 samples, 0.10%)</title><rect x="17.3681%" y="469" width="0.0990%" height="15" fill="rgb(217,132,38)" fg:x="416355" fg:w="2373"/><text x="17.6181%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (5,844 samples, 0.24%)</title><rect x="17.2285%" y="501" width="0.2438%" height="15" fill="rgb(242,146,4)" fg:x="413007" fg:w="5844"/><text x="17.4785%" y="511.50"></text></g><g><title>radix_tree_delete_item (2,941 samples, 0.12%)</title><rect x="17.3496%" y="485" width="0.1227%" height="15" fill="rgb(212,61,9)" fg:x="415910" fg:w="2941"/><text x="17.5996%" y="495.50"></text></g><g><title>_raw_write_lock (332 samples, 0.01%)</title><rect x="17.4800%" y="501" width="0.0138%" height="15" fill="rgb(247,126,22)" fg:x="419038" fg:w="332"/><text x="17.7300%" y="511.50"></text></g><g><title>__radix_tree_lookup (308 samples, 0.01%)</title><rect x="17.5136%" y="485" width="0.0128%" height="15" fill="rgb(220,196,2)" fg:x="419843" fg:w="308"/><text x="17.7636%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (784 samples, 0.03%)</title><rect x="17.4942%" y="501" width="0.0327%" height="15" fill="rgb(208,46,4)" fg:x="419378" fg:w="784"/><text x="17.7442%" y="511.50"></text></g><g><title>btrfs_find_space_info (549 samples, 0.02%)</title><rect x="17.5383%" y="485" width="0.0229%" height="15" fill="rgb(252,104,46)" fg:x="420434" fg:w="549"/><text x="17.7883%" y="495.50"></text></g><g><title>btrfs_alloc_block_rsv (1,926 samples, 0.08%)</title><rect x="17.5269%" y="501" width="0.0803%" height="15" fill="rgb(237,152,48)" fg:x="420162" fg:w="1926"/><text x="17.7769%" y="511.50"></text></g><g><title>kmem_cache_alloc_trace (1,105 samples, 0.05%)</title><rect x="17.5612%" y="485" width="0.0461%" height="15" fill="rgb(221,59,37)" fg:x="420983" fg:w="1105"/><text x="17.8112%" y="495.50"></text></g><g><title>btrfs_balance_delayed_items (557 samples, 0.02%)</title><rect x="17.6194%" y="485" width="0.0232%" height="15" fill="rgb(209,202,51)" fg:x="422379" fg:w="557"/><text x="17.8694%" y="495.50"></text></g><g><title>_raw_spin_lock (253 samples, 0.01%)</title><rect x="17.6475%" y="453" width="0.0106%" height="15" fill="rgb(228,81,30)" fg:x="423052" fg:w="253"/><text x="17.8975%" y="463.50"></text></g><g><title>__queue_work (1,028 samples, 0.04%)</title><rect x="17.6450%" y="469" width="0.0429%" height="15" fill="rgb(227,42,39)" fg:x="422993" fg:w="1028"/><text x="17.8950%" y="479.50"></text></g><g><title>try_to_wake_up (660 samples, 0.03%)</title><rect x="17.6604%" y="453" width="0.0275%" height="15" fill="rgb(221,26,2)" fg:x="423361" fg:w="660"/><text x="17.9104%" y="463.50"></text></g><g><title>btrfs_btree_balance_dirty (1,942 samples, 0.08%)</title><rect x="17.6073%" y="501" width="0.0810%" height="15" fill="rgb(254,61,31)" fg:x="422088" fg:w="1942"/><text x="17.8573%" y="511.50"></text></g><g><title>queue_work_on (1,052 samples, 0.04%)</title><rect x="17.6444%" y="485" width="0.0439%" height="15" fill="rgb(222,173,38)" fg:x="422978" fg:w="1052"/><text x="17.8944%" y="495.50"></text></g><g><title>btrfs_create_pending_block_groups (331 samples, 0.01%)</title><rect x="17.7722%" y="469" width="0.0138%" height="15" fill="rgb(218,50,12)" fg:x="426042" fg:w="331"/><text x="18.0222%" y="479.50"></text></g><g><title>__btrfs_end_transaction (2,956 samples, 0.12%)</title><rect x="17.7064%" y="485" width="0.1233%" height="15" fill="rgb(223,88,40)" fg:x="424464" fg:w="2956"/><text x="17.9564%" y="495.50"></text></g><g><title>kmem_cache_free (692 samples, 0.03%)</title><rect x="17.8008%" y="469" width="0.0289%" height="15" fill="rgb(237,54,19)" fg:x="426728" fg:w="692"/><text x="18.0508%" y="479.50"></text></g><g><title>__list_del_entry_valid (548 samples, 0.02%)</title><rect x="17.8806%" y="469" width="0.0229%" height="15" fill="rgb(251,129,25)" fg:x="428641" fg:w="548"/><text x="18.1306%" y="479.50"></text></g><g><title>_raw_spin_lock (447 samples, 0.02%)</title><rect x="17.9042%" y="469" width="0.0186%" height="15" fill="rgb(238,97,19)" fg:x="429207" fg:w="447"/><text x="18.1542%" y="479.50"></text></g><g><title>__schedule (280 samples, 0.01%)</title><rect x="17.9379%" y="437" width="0.0117%" height="15" fill="rgb(240,169,18)" fg:x="430013" fg:w="280"/><text x="18.1879%" y="447.50"></text></g><g><title>_cond_resched (341 samples, 0.01%)</title><rect x="17.9361%" y="453" width="0.0142%" height="15" fill="rgb(230,187,49)" fg:x="429972" fg:w="341"/><text x="18.1861%" y="463.50"></text></g><g><title>mutex_lock (649 samples, 0.03%)</title><rect x="17.9233%" y="469" width="0.0271%" height="15" fill="rgb(209,44,26)" fg:x="429665" fg:w="649"/><text x="18.1733%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (3,087 samples, 0.13%)</title><rect x="17.8297%" y="485" width="0.1288%" height="15" fill="rgb(244,0,6)" fg:x="427420" fg:w="3087"/><text x="18.0797%" y="495.50"></text></g><g><title>_find_next_bit.constprop.0 (419 samples, 0.02%)</title><rect x="18.1163%" y="389" width="0.0175%" height="15" fill="rgb(248,18,21)" fg:x="434291" fg:w="419"/><text x="18.3663%" y="399.50"></text></g><g><title>steal_from_bitmap.part.0 (520 samples, 0.02%)</title><rect x="18.1137%" y="405" width="0.0217%" height="15" fill="rgb(245,180,19)" fg:x="434228" fg:w="520"/><text x="18.3637%" y="415.50"></text></g><g><title>__btrfs_add_free_space (698 samples, 0.03%)</title><rect x="18.1095%" y="421" width="0.0291%" height="15" fill="rgb(252,118,36)" fg:x="434127" fg:w="698"/><text x="18.3595%" y="431.50"></text></g><g><title>btrfs_free_tree_block (1,021 samples, 0.04%)</title><rect x="18.1091%" y="437" width="0.0426%" height="15" fill="rgb(210,224,19)" fg:x="434118" fg:w="1021"/><text x="18.3591%" y="447.50"></text></g><g><title>btrfs_del_leaf (1,172 samples, 0.05%)</title><rect x="18.1086%" y="453" width="0.0489%" height="15" fill="rgb(218,30,24)" fg:x="434105" fg:w="1172"/><text x="18.3586%" y="463.50"></text></g><g><title>btrfs_get_32 (566 samples, 0.02%)</title><rect x="18.1574%" y="453" width="0.0236%" height="15" fill="rgb(219,75,50)" fg:x="435277" fg:w="566"/><text x="18.4074%" y="463.50"></text></g><g><title>btrfs_get_token_32 (8,214 samples, 0.34%)</title><rect x="18.1811%" y="453" width="0.3426%" height="15" fill="rgb(234,72,50)" fg:x="435843" fg:w="8214"/><text x="18.4311%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (1,185 samples, 0.05%)</title><rect x="18.4743%" y="437" width="0.0494%" height="15" fill="rgb(219,100,48)" fg:x="442872" fg:w="1185"/><text x="18.7243%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (593 samples, 0.02%)</title><rect x="18.5237%" y="453" width="0.0247%" height="15" fill="rgb(253,5,41)" fg:x="444057" fg:w="593"/><text x="18.7737%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (316 samples, 0.01%)</title><rect x="18.5353%" y="437" width="0.0132%" height="15" fill="rgb(247,181,11)" fg:x="444334" fg:w="316"/><text x="18.7853%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (879 samples, 0.04%)</title><rect x="18.7606%" y="437" width="0.0367%" height="15" fill="rgb(222,223,25)" fg:x="449735" fg:w="879"/><text x="19.0106%" y="447.50"></text></g><g><title>btrfs_set_token_32 (5,937 samples, 0.25%)</title><rect x="18.5496%" y="453" width="0.2477%" height="15" fill="rgb(214,198,28)" fg:x="444678" fg:w="5937"/><text x="18.7996%" y="463.50"></text></g><g><title>leaf_space_used (622 samples, 0.03%)</title><rect x="18.7983%" y="453" width="0.0259%" height="15" fill="rgb(230,46,43)" fg:x="450639" fg:w="622"/><text x="19.0483%" y="463.50"></text></g><g><title>btrfs_get_32 (448 samples, 0.02%)</title><rect x="18.8055%" y="437" width="0.0187%" height="15" fill="rgb(233,65,53)" fg:x="450813" fg:w="448"/><text x="19.0555%" y="447.50"></text></g><g><title>memcpy_extent_buffer (1,290 samples, 0.05%)</title><rect x="18.8242%" y="453" width="0.0538%" height="15" fill="rgb(221,121,27)" fg:x="451261" fg:w="1290"/><text x="19.0742%" y="463.50"></text></g><g><title>memmove (893 samples, 0.04%)</title><rect x="18.8408%" y="437" width="0.0373%" height="15" fill="rgb(247,70,47)" fg:x="451658" fg:w="893"/><text x="19.0908%" y="447.50"></text></g><g><title>copy_pages (1,230 samples, 0.05%)</title><rect x="18.9100%" y="437" width="0.0513%" height="15" fill="rgb(228,85,35)" fg:x="453317" fg:w="1230"/><text x="19.1600%" y="447.50"></text></g><g><title>memmove_extent_buffer (10,306 samples, 0.43%)</title><rect x="18.8780%" y="453" width="0.4299%" height="15" fill="rgb(209,50,18)" fg:x="452551" fg:w="10306"/><text x="19.1280%" y="463.50"></text></g><g><title>memmove (8,310 samples, 0.35%)</title><rect x="18.9613%" y="437" width="0.3466%" height="15" fill="rgb(250,19,35)" fg:x="454547" fg:w="8310"/><text x="19.2113%" y="447.50"></text></g><g><title>__push_leaf_left (333 samples, 0.01%)</title><rect x="19.3094%" y="437" width="0.0139%" height="15" fill="rgb(253,107,29)" fg:x="462892" fg:w="333"/><text x="19.5594%" y="447.50"></text></g><g><title>push_leaf_left (526 samples, 0.02%)</title><rect x="19.3079%" y="453" width="0.0219%" height="15" fill="rgb(252,179,29)" fg:x="462857" fg:w="526"/><text x="19.5579%" y="463.50"></text></g><g><title>push_leaf_right (383 samples, 0.02%)</title><rect x="19.3299%" y="453" width="0.0160%" height="15" fill="rgb(238,194,6)" fg:x="463383" fg:w="383"/><text x="19.5799%" y="463.50"></text></g><g><title>btrfs_del_items (32,119 samples, 1.34%)</title><rect x="18.0084%" y="469" width="1.3398%" height="15" fill="rgb(238,164,29)" fg:x="431705" fg:w="32119"/><text x="18.2584%" y="479.50"></text></g><g><title>_raw_spin_lock (1,566 samples, 0.07%)</title><rect x="19.3671%" y="437" width="0.0653%" height="15" fill="rgb(224,25,9)" fg:x="464275" fg:w="1566"/><text x="19.6171%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (583 samples, 0.02%)</title><rect x="19.4081%" y="421" width="0.0243%" height="15" fill="rgb(244,153,23)" fg:x="465258" fg:w="583"/><text x="19.6581%" y="431.50"></text></g><g><title>btrfs_block_rsv_release (2,026 samples, 0.08%)</title><rect x="19.3541%" y="453" width="0.0845%" height="15" fill="rgb(212,203,14)" fg:x="463963" fg:w="2026"/><text x="19.6041%" y="463.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (2,392 samples, 0.10%)</title><rect x="19.3483%" y="469" width="0.0998%" height="15" fill="rgb(220,164,20)" fg:x="463824" fg:w="2392"/><text x="19.5983%" y="479.50"></text></g><g><title>btrfs_get_32 (343 samples, 0.01%)</title><rect x="19.4481%" y="469" width="0.0143%" height="15" fill="rgb(222,203,48)" fg:x="466216" fg:w="343"/><text x="19.6981%" y="479.50"></text></g><g><title>_raw_read_lock (627 samples, 0.03%)</title><rect x="19.6190%" y="405" width="0.0262%" height="15" fill="rgb(215,159,22)" fg:x="470315" fg:w="627"/><text x="19.8690%" y="415.50"></text></g><g><title>finish_wait (3,366 samples, 0.14%)</title><rect x="19.6465%" y="405" width="0.1404%" height="15" fill="rgb(216,183,47)" fg:x="470974" fg:w="3366"/><text x="19.8965%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (3,228 samples, 0.13%)</title><rect x="19.6523%" y="389" width="0.1347%" height="15" fill="rgb(229,195,25)" fg:x="471112" fg:w="3228"/><text x="19.9023%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,075 samples, 0.13%)</title><rect x="19.6587%" y="373" width="0.1283%" height="15" fill="rgb(224,132,51)" fg:x="471265" fg:w="3075"/><text x="19.9087%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (7,966 samples, 0.33%)</title><rect x="19.8199%" y="389" width="0.3323%" height="15" fill="rgb(240,63,7)" fg:x="475130" fg:w="7966"/><text x="20.0699%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,558 samples, 0.32%)</title><rect x="19.8369%" y="373" width="0.3153%" height="15" fill="rgb(249,182,41)" fg:x="475538" fg:w="7558"/><text x="20.0869%" y="383.50"></text></g><g><title>prepare_to_wait_event (8,919 samples, 0.37%)</title><rect x="19.7873%" y="405" width="0.3721%" height="15" fill="rgb(243,47,26)" fg:x="474348" fg:w="8919"/><text x="20.0373%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (10,484 samples, 0.44%)</title><rect x="20.1593%" y="405" width="0.4373%" height="15" fill="rgb(233,48,2)" fg:x="483267" fg:w="10484"/><text x="20.4093%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,496 samples, 0.31%)</title><rect x="20.2840%" y="389" width="0.3127%" height="15" fill="rgb(244,165,34)" fg:x="486255" fg:w="7496"/><text x="20.5340%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (272 samples, 0.01%)</title><rect x="20.6168%" y="373" width="0.0113%" height="15" fill="rgb(207,89,7)" fg:x="494233" fg:w="272"/><text x="20.8668%" y="383.50"></text></g><g><title>update_curr (488 samples, 0.02%)</title><rect x="20.6568%" y="341" width="0.0204%" height="15" fill="rgb(244,117,36)" fg:x="495192" fg:w="488"/><text x="20.9068%" y="351.50"></text></g><g><title>dequeue_entity (1,400 samples, 0.06%)</title><rect x="20.6382%" y="357" width="0.0584%" height="15" fill="rgb(226,144,34)" fg:x="494746" fg:w="1400"/><text x="20.8882%" y="367.50"></text></g><g><title>update_load_avg (466 samples, 0.02%)</title><rect x="20.6771%" y="341" width="0.0194%" height="15" fill="rgb(213,23,19)" fg:x="495680" fg:w="466"/><text x="20.9271%" y="351.50"></text></g><g><title>dequeue_task_fair (1,704 samples, 0.07%)</title><rect x="20.6311%" y="373" width="0.0711%" height="15" fill="rgb(217,75,12)" fg:x="494576" fg:w="1704"/><text x="20.8811%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (2,627 samples, 0.11%)</title><rect x="20.7146%" y="357" width="0.1096%" height="15" fill="rgb(224,159,17)" fg:x="496577" fg:w="2627"/><text x="20.9646%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,542 samples, 0.11%)</title><rect x="20.7181%" y="341" width="0.1060%" height="15" fill="rgb(217,118,1)" fg:x="496662" fg:w="2542"/><text x="20.9681%" y="351.50"></text></g><g><title>native_write_msr (2,507 samples, 0.10%)</title><rect x="20.7196%" y="325" width="0.1046%" height="15" fill="rgb(232,180,48)" fg:x="496697" fg:w="2507"/><text x="20.9696%" y="335.50"></text></g><g><title>finish_task_switch (3,056 samples, 0.13%)</title><rect x="20.7022%" y="373" width="0.1275%" height="15" fill="rgb(230,27,33)" fg:x="496280" fg:w="3056"/><text x="20.9522%" y="383.50"></text></g><g><title>pick_next_task_fair (300 samples, 0.01%)</title><rect x="20.8297%" y="373" width="0.0125%" height="15" fill="rgb(205,31,21)" fg:x="499338" fg:w="300"/><text x="21.0797%" y="383.50"></text></g><g><title>__update_idle_core (256 samples, 0.01%)</title><rect x="20.8445%" y="357" width="0.0107%" height="15" fill="rgb(253,59,4)" fg:x="499692" fg:w="256"/><text x="21.0945%" y="367.50"></text></g><g><title>pick_next_task_idle (311 samples, 0.01%)</title><rect x="20.8422%" y="373" width="0.0130%" height="15" fill="rgb(224,201,9)" fg:x="499638" fg:w="311"/><text x="21.0922%" y="383.50"></text></g><g><title>psi_task_change (1,325 samples, 0.06%)</title><rect x="20.8552%" y="373" width="0.0553%" height="15" fill="rgb(229,206,30)" fg:x="499949" fg:w="1325"/><text x="21.1052%" y="383.50"></text></g><g><title>psi_group_change (1,144 samples, 0.05%)</title><rect x="20.8628%" y="357" width="0.0477%" height="15" fill="rgb(212,67,47)" fg:x="500130" fg:w="1144"/><text x="21.1128%" y="367.50"></text></g><g><title>record_times (251 samples, 0.01%)</title><rect x="20.9000%" y="341" width="0.0105%" height="15" fill="rgb(211,96,50)" fg:x="501023" fg:w="251"/><text x="21.1500%" y="351.50"></text></g><g><title>__schedule (7,860 samples, 0.33%)</title><rect x="20.6000%" y="389" width="0.3279%" height="15" fill="rgb(252,114,18)" fg:x="493831" fg:w="7860"/><text x="20.8500%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (32,075 samples, 1.34%)</title><rect x="19.5900%" y="421" width="1.3380%" height="15" fill="rgb(223,58,37)" fg:x="469619" fg:w="32075"/><text x="19.8400%" y="431.50"></text></g><g><title>schedule (7,943 samples, 0.33%)</title><rect x="20.5967%" y="405" width="0.3313%" height="15" fill="rgb(237,70,4)" fg:x="493751" fg:w="7943"/><text x="20.8467%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (33,371 samples, 1.39%)</title><rect x="19.5833%" y="437" width="1.3921%" height="15" fill="rgb(244,85,46)" fg:x="469459" fg:w="33371"/><text x="19.8333%" y="447.50"></text></g><g><title>btrfs_root_node (1,134 samples, 0.05%)</title><rect x="20.9281%" y="421" width="0.0473%" height="15" fill="rgb(223,39,52)" fg:x="501696" fg:w="1134"/><text x="21.1781%" y="431.50"></text></g><g><title>prepare_to_wait_event (245 samples, 0.01%)</title><rect x="20.9821%" y="421" width="0.0102%" height="15" fill="rgb(218,200,14)" fg:x="502991" fg:w="245"/><text x="21.2321%" y="431.50"></text></g><g><title>dequeue_entity (520 samples, 0.02%)</title><rect x="21.0081%" y="373" width="0.0217%" height="15" fill="rgb(208,171,16)" fg:x="503615" fg:w="520"/><text x="21.2581%" y="383.50"></text></g><g><title>dequeue_task_fair (636 samples, 0.03%)</title><rect x="21.0049%" y="389" width="0.0265%" height="15" fill="rgb(234,200,18)" fg:x="503537" fg:w="636"/><text x="21.2549%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (1,190 samples, 0.05%)</title><rect x="21.0365%" y="373" width="0.0496%" height="15" fill="rgb(228,45,11)" fg:x="504294" fg:w="1190"/><text x="21.2865%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,176 samples, 0.05%)</title><rect x="21.0371%" y="357" width="0.0491%" height="15" fill="rgb(237,182,11)" fg:x="504308" fg:w="1176"/><text x="21.2871%" y="367.50"></text></g><g><title>native_write_msr (1,166 samples, 0.05%)</title><rect x="21.0375%" y="341" width="0.0486%" height="15" fill="rgb(241,175,49)" fg:x="504318" fg:w="1166"/><text x="21.2875%" y="351.50"></text></g><g><title>finish_task_switch (1,342 samples, 0.06%)</title><rect x="21.0314%" y="389" width="0.0560%" height="15" fill="rgb(247,38,35)" fg:x="504173" fg:w="1342"/><text x="21.2814%" y="399.50"></text></g><g><title>psi_task_change (425 samples, 0.02%)</title><rect x="21.0975%" y="389" width="0.0177%" height="15" fill="rgb(228,39,49)" fg:x="505758" fg:w="425"/><text x="21.3475%" y="399.50"></text></g><g><title>psi_group_change (363 samples, 0.02%)</title><rect x="21.1001%" y="373" width="0.0151%" height="15" fill="rgb(226,101,26)" fg:x="505820" fg:w="363"/><text x="21.3501%" y="383.50"></text></g><g><title>__schedule (3,083 samples, 0.13%)</title><rect x="20.9932%" y="405" width="0.1286%" height="15" fill="rgb(206,141,19)" fg:x="503257" fg:w="3083"/><text x="21.2432%" y="415.50"></text></g><g><title>__btrfs_tree_lock (3,511 samples, 0.15%)</title><rect x="20.9754%" y="437" width="0.1465%" height="15" fill="rgb(211,200,13)" fg:x="502830" fg:w="3511"/><text x="21.2254%" y="447.50"></text></g><g><title>schedule (3,105 samples, 0.13%)</title><rect x="20.9923%" y="421" width="0.1295%" height="15" fill="rgb(241,121,6)" fg:x="503236" fg:w="3105"/><text x="21.2423%" y="431.50"></text></g><g><title>alloc_extent_buffer (308 samples, 0.01%)</title><rect x="21.1374%" y="373" width="0.0128%" height="15" fill="rgb(234,221,29)" fg:x="506714" fg:w="308"/><text x="21.3874%" y="383.50"></text></g><g><title>btrfs_alloc_from_cluster (296 samples, 0.01%)</title><rect x="21.1654%" y="341" width="0.0123%" height="15" fill="rgb(229,136,5)" fg:x="507384" fg:w="296"/><text x="21.4154%" y="351.50"></text></g><g><title>btrfs_reserve_extent (457 samples, 0.02%)</title><rect x="21.1602%" y="373" width="0.0191%" height="15" fill="rgb(238,36,11)" fg:x="507259" fg:w="457"/><text x="21.4102%" y="383.50"></text></g><g><title>find_free_extent (417 samples, 0.02%)</title><rect x="21.1618%" y="357" width="0.0174%" height="15" fill="rgb(251,55,41)" fg:x="507299" fg:w="417"/><text x="21.4118%" y="367.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,317 samples, 0.05%)</title><rect x="21.1357%" y="405" width="0.0549%" height="15" fill="rgb(242,34,40)" fg:x="506672" fg:w="1317"/><text x="21.3857%" y="415.50"></text></g><g><title>btrfs_alloc_tree_block (1,309 samples, 0.05%)</title><rect x="21.1360%" y="389" width="0.0546%" height="15" fill="rgb(215,42,17)" fg:x="506680" fg:w="1309"/><text x="21.3860%" y="399.50"></text></g><g><title>btrfs_add_delayed_tree_ref (254 samples, 0.01%)</title><rect x="21.1921%" y="389" width="0.0106%" height="15" fill="rgb(207,44,46)" fg:x="508024" fg:w="254"/><text x="21.4421%" y="399.50"></text></g><g><title>btrfs_free_tree_block (576 samples, 0.02%)</title><rect x="21.1906%" y="405" width="0.0240%" height="15" fill="rgb(211,206,28)" fg:x="507989" fg:w="576"/><text x="21.4406%" y="415.50"></text></g><g><title>copy_extent_buffer_full (276 samples, 0.01%)</title><rect x="21.2245%" y="405" width="0.0115%" height="15" fill="rgb(237,167,16)" fg:x="508802" fg:w="276"/><text x="21.4745%" y="415.50"></text></g><g><title>copy_page (268 samples, 0.01%)</title><rect x="21.2249%" y="389" width="0.0112%" height="15" fill="rgb(233,66,6)" fg:x="508810" fg:w="268"/><text x="21.4749%" y="399.50"></text></g><g><title>__btrfs_cow_block (2,548 samples, 0.11%)</title><rect x="21.1344%" y="421" width="0.1063%" height="15" fill="rgb(246,123,29)" fg:x="506642" fg:w="2548"/><text x="21.3844%" y="431.50"></text></g><g><title>btrfs_cow_block (2,566 samples, 0.11%)</title><rect x="21.1341%" y="437" width="0.1070%" height="15" fill="rgb(209,62,40)" fg:x="506634" fg:w="2566"/><text x="21.3841%" y="447.50"></text></g><g><title>_cond_resched (288 samples, 0.01%)</title><rect x="21.2923%" y="405" width="0.0120%" height="15" fill="rgb(218,4,25)" fg:x="510427" fg:w="288"/><text x="21.5423%" y="415.50"></text></g><g><title>_raw_write_lock (729 samples, 0.03%)</title><rect x="21.3079%" y="405" width="0.0304%" height="15" fill="rgb(253,91,49)" fg:x="510802" fg:w="729"/><text x="21.5579%" y="415.50"></text></g><g><title>finish_wait (4,988 samples, 0.21%)</title><rect x="21.3386%" y="405" width="0.2081%" height="15" fill="rgb(228,155,29)" fg:x="511538" fg:w="4988"/><text x="21.5886%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,698 samples, 0.20%)</title><rect x="21.3507%" y="389" width="0.1960%" height="15" fill="rgb(243,57,37)" fg:x="511828" fg:w="4698"/><text x="21.6007%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,402 samples, 0.18%)</title><rect x="21.3631%" y="373" width="0.1836%" height="15" fill="rgb(244,167,17)" fg:x="512124" fg:w="4402"/><text x="21.6131%" y="383.50"></text></g><g><title>__list_add_valid (389 samples, 0.02%)</title><rect x="21.6001%" y="389" width="0.0162%" height="15" fill="rgb(207,181,38)" fg:x="517806" fg:w="389"/><text x="21.8501%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (13,416 samples, 0.56%)</title><rect x="21.6163%" y="389" width="0.5596%" height="15" fill="rgb(211,8,23)" fg:x="518195" fg:w="13416"/><text x="21.8663%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (12,512 samples, 0.52%)</title><rect x="21.6541%" y="373" width="0.5219%" height="15" fill="rgb(235,11,44)" fg:x="519099" fg:w="12512"/><text x="21.9041%" y="383.50"></text></g><g><title>_raw_spin_unlock_irqrestore (346 samples, 0.01%)</title><rect x="22.1760%" y="389" width="0.0144%" height="15" fill="rgb(248,18,52)" fg:x="531611" fg:w="346"/><text x="22.4260%" y="399.50"></text></g><g><title>prepare_to_wait_event (15,375 samples, 0.64%)</title><rect x="21.5491%" y="405" width="0.6414%" height="15" fill="rgb(208,4,7)" fg:x="516584" fg:w="15375"/><text x="21.7991%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (19,536 samples, 0.81%)</title><rect x="22.1905%" y="405" width="0.8149%" height="15" fill="rgb(240,17,39)" fg:x="531959" fg:w="19536"/><text x="22.4405%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,938 samples, 0.37%)</title><rect x="22.6326%" y="389" width="0.3728%" height="15" fill="rgb(207,170,3)" fg:x="542557" fg:w="8938"/><text x="22.8826%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (578 samples, 0.02%)</title><rect x="23.0507%" y="373" width="0.0241%" height="15" fill="rgb(236,100,52)" fg:x="552579" fg:w="578"/><text x="23.3007%" y="383.50"></text></g><g><title>update_cfs_group (354 samples, 0.01%)</title><rect x="23.1265%" y="341" width="0.0148%" height="15" fill="rgb(246,78,51)" fg:x="554396" fg:w="354"/><text x="23.3765%" y="351.50"></text></g><g><title>cpuacct_charge (251 samples, 0.01%)</title><rect x="23.1724%" y="325" width="0.0105%" height="15" fill="rgb(211,17,15)" fg:x="555497" fg:w="251"/><text x="23.4224%" y="335.50"></text></g><g><title>update_curr (1,092 samples, 0.05%)</title><rect x="23.1412%" y="341" width="0.0456%" height="15" fill="rgb(209,59,46)" fg:x="554750" fg:w="1092"/><text x="23.3912%" y="351.50"></text></g><g><title>__update_load_avg_cfs_rq (281 samples, 0.01%)</title><rect x="23.2018%" y="325" width="0.0117%" height="15" fill="rgb(210,92,25)" fg:x="556202" fg:w="281"/><text x="23.4518%" y="335.50"></text></g><g><title>__update_load_avg_se (369 samples, 0.02%)</title><rect x="23.2135%" y="325" width="0.0154%" height="15" fill="rgb(238,174,52)" fg:x="556483" fg:w="369"/><text x="23.4635%" y="335.50"></text></g><g><title>dequeue_entity (3,174 samples, 0.13%)</title><rect x="23.0977%" y="357" width="0.1324%" height="15" fill="rgb(230,73,7)" fg:x="553707" fg:w="3174"/><text x="23.3477%" y="367.50"></text></g><g><title>update_load_avg (1,039 samples, 0.04%)</title><rect x="23.1868%" y="341" width="0.0433%" height="15" fill="rgb(243,124,40)" fg:x="555842" fg:w="1039"/><text x="23.4368%" y="351.50"></text></g><g><title>dequeue_task_fair (3,756 samples, 0.16%)</title><rect x="23.0824%" y="373" width="0.1567%" height="15" fill="rgb(244,170,11)" fg:x="553341" fg:w="3756"/><text x="23.3324%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (6,233 samples, 0.26%)</title><rect x="23.2682%" y="357" width="0.2600%" height="15" fill="rgb(207,114,54)" fg:x="557793" fg:w="6233"/><text x="23.5182%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,016 samples, 0.25%)</title><rect x="23.2772%" y="341" width="0.2510%" height="15" fill="rgb(205,42,20)" fg:x="558010" fg:w="6016"/><text x="23.5272%" y="351.50"></text></g><g><title>native_write_msr (5,921 samples, 0.25%)</title><rect x="23.2812%" y="325" width="0.2470%" height="15" fill="rgb(230,30,28)" fg:x="558105" fg:w="5921"/><text x="23.5312%" y="335.50"></text></g><g><title>finish_task_switch (7,210 samples, 0.30%)</title><rect x="23.2391%" y="373" width="0.3008%" height="15" fill="rgb(205,73,54)" fg:x="557097" fg:w="7210"/><text x="23.4891%" y="383.50"></text></g><g><title>newidle_balance (372 samples, 0.02%)</title><rect x="23.5476%" y="357" width="0.0155%" height="15" fill="rgb(254,227,23)" fg:x="564492" fg:w="372"/><text x="23.7976%" y="367.50"></text></g><g><title>pick_next_task_fair (711 samples, 0.03%)</title><rect x="23.5402%" y="373" width="0.0297%" height="15" fill="rgb(228,202,34)" fg:x="564315" fg:w="711"/><text x="23.7902%" y="383.50"></text></g><g><title>__update_idle_core (565 samples, 0.02%)</title><rect x="23.5745%" y="357" width="0.0236%" height="15" fill="rgb(222,225,37)" fg:x="565136" fg:w="565"/><text x="23.8245%" y="367.50"></text></g><g><title>pick_next_task_idle (680 samples, 0.03%)</title><rect x="23.5699%" y="373" width="0.0284%" height="15" fill="rgb(221,14,54)" fg:x="565026" fg:w="680"/><text x="23.8199%" y="383.50"></text></g><g><title>psi_task_change (2,934 samples, 0.12%)</title><rect x="23.5983%" y="373" width="0.1224%" height="15" fill="rgb(254,102,2)" fg:x="565706" fg:w="2934"/><text x="23.8483%" y="383.50"></text></g><g><title>psi_group_change (2,537 samples, 0.11%)</title><rect x="23.6148%" y="357" width="0.1058%" height="15" fill="rgb(232,104,17)" fg:x="566103" fg:w="2537"/><text x="23.8648%" y="367.50"></text></g><g><title>record_times (710 samples, 0.03%)</title><rect x="23.6910%" y="341" width="0.0296%" height="15" fill="rgb(250,220,14)" fg:x="567930" fg:w="710"/><text x="23.9410%" y="351.50"></text></g><g><title>sched_clock_cpu (457 samples, 0.02%)</title><rect x="23.7016%" y="325" width="0.0191%" height="15" fill="rgb(241,158,9)" fg:x="568183" fg:w="457"/><text x="23.9516%" y="335.50"></text></g><g><title>sched_clock (408 samples, 0.02%)</title><rect x="23.7036%" y="309" width="0.0170%" height="15" fill="rgb(246,9,43)" fg:x="568232" fg:w="408"/><text x="23.9536%" y="319.50"></text></g><g><title>native_sched_clock (379 samples, 0.02%)</title><rect x="23.7048%" y="293" width="0.0158%" height="15" fill="rgb(206,73,33)" fg:x="568261" fg:w="379"/><text x="23.9548%" y="303.50"></text></g><g><title>psi_task_switch (281 samples, 0.01%)</title><rect x="23.7206%" y="373" width="0.0117%" height="15" fill="rgb(222,79,8)" fg:x="568640" fg:w="281"/><text x="23.9706%" y="383.50"></text></g><g><title>__btrfs_tree_lock (60,213 samples, 2.51%)</title><rect x="21.2440%" y="421" width="2.5118%" height="15" fill="rgb(234,8,54)" fg:x="509269" fg:w="60213"/><text x="21.4940%" y="431.50">__..</text></g><g><title>schedule (17,987 samples, 0.75%)</title><rect x="23.0054%" y="405" width="0.7503%" height="15" fill="rgb(209,134,38)" fg:x="551495" fg:w="17987"/><text x="23.2554%" y="415.50"></text></g><g><title>__schedule (17,784 samples, 0.74%)</title><rect x="23.0139%" y="389" width="0.7419%" height="15" fill="rgb(230,127,29)" fg:x="551698" fg:w="17784"/><text x="23.2639%" y="399.50"></text></g><g><title>update_rq_clock (303 samples, 0.01%)</title><rect x="23.7431%" y="373" width="0.0126%" height="15" fill="rgb(242,44,41)" fg:x="569179" fg:w="303"/><text x="23.9931%" y="383.50"></text></g><g><title>btrfs_root_node (523 samples, 0.02%)</title><rect x="23.7558%" y="421" width="0.0218%" height="15" fill="rgb(222,56,43)" fg:x="569483" fg:w="523"/><text x="24.0058%" y="431.50"></text></g><g><title>btrfs_lock_root_node (60,807 samples, 2.54%)</title><rect x="21.2411%" y="437" width="2.5365%" height="15" fill="rgb(238,39,47)" fg:x="509200" fg:w="60807"/><text x="21.4911%" y="447.50">bt..</text></g><g><title>btrfs_set_path_blocking (391 samples, 0.02%)</title><rect x="23.7777%" y="437" width="0.0163%" height="15" fill="rgb(226,79,43)" fg:x="570007" fg:w="391"/><text x="24.0277%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (442 samples, 0.02%)</title><rect x="23.7941%" y="437" width="0.0184%" height="15" fill="rgb(242,105,53)" fg:x="570400" fg:w="442"/><text x="24.0441%" y="447.50"></text></g><g><title>_raw_write_lock (366 samples, 0.02%)</title><rect x="23.8180%" y="421" width="0.0153%" height="15" fill="rgb(251,132,46)" fg:x="570974" fg:w="366"/><text x="24.0680%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (2,851 samples, 0.12%)</title><rect x="23.8125%" y="437" width="0.1189%" height="15" fill="rgb(231,77,14)" fg:x="570842" fg:w="2851"/><text x="24.0625%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (2,353 samples, 0.10%)</title><rect x="23.8333%" y="421" width="0.0982%" height="15" fill="rgb(240,135,9)" fg:x="571340" fg:w="2353"/><text x="24.0833%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (573 samples, 0.02%)</title><rect x="23.9318%" y="437" width="0.0239%" height="15" fill="rgb(248,109,14)" fg:x="573701" fg:w="573"/><text x="24.1818%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,669 samples, 0.19%)</title><rect x="23.9557%" y="437" width="0.1948%" height="15" fill="rgb(227,146,52)" fg:x="574274" fg:w="4669"/><text x="24.2057%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (800 samples, 0.03%)</title><rect x="24.1800%" y="421" width="0.0334%" height="15" fill="rgb(232,54,3)" fg:x="579651" fg:w="800"/><text x="24.4300%" y="431.50"></text></g><g><title>verify_parent_transid (704 samples, 0.03%)</title><rect x="24.1840%" y="405" width="0.0294%" height="15" fill="rgb(229,201,43)" fg:x="579747" fg:w="704"/><text x="24.4340%" y="415.50"></text></g><g><title>btrfs_get_64 (834 samples, 0.03%)</title><rect x="24.2133%" y="421" width="0.0348%" height="15" fill="rgb(252,161,33)" fg:x="580451" fg:w="834"/><text x="24.4633%" y="431.50"></text></g><g><title>__radix_tree_lookup (3,190 samples, 0.13%)</title><rect x="24.3287%" y="405" width="0.1331%" height="15" fill="rgb(226,146,40)" fg:x="583216" fg:w="3190"/><text x="24.5787%" y="415.50"></text></g><g><title>mark_page_accessed (1,281 samples, 0.05%)</title><rect x="24.4749%" y="389" width="0.0534%" height="15" fill="rgb(219,47,25)" fg:x="586722" fg:w="1281"/><text x="24.7249%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,593 samples, 0.07%)</title><rect x="24.4622%" y="405" width="0.0665%" height="15" fill="rgb(250,135,13)" fg:x="586417" fg:w="1593"/><text x="24.7122%" y="415.50"></text></g><g><title>find_extent_buffer (6,444 samples, 0.27%)</title><rect x="24.2622%" y="421" width="0.2688%" height="15" fill="rgb(219,229,18)" fg:x="581622" fg:w="6444"/><text x="24.5122%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (9,939 samples, 0.41%)</title><rect x="24.1504%" y="437" width="0.4146%" height="15" fill="rgb(217,152,27)" fg:x="578943" fg:w="9939"/><text x="24.4004%" y="447.50"></text></g><g><title>read_extent_buffer (816 samples, 0.03%)</title><rect x="24.5310%" y="421" width="0.0340%" height="15" fill="rgb(225,71,47)" fg:x="588066" fg:w="816"/><text x="24.7810%" y="431.50"></text></g><g><title>btrfs_get_64 (292 samples, 0.01%)</title><rect x="24.5800%" y="421" width="0.0122%" height="15" fill="rgb(220,139,14)" fg:x="589240" fg:w="292"/><text x="24.8300%" y="431.50"></text></g><g><title>__radix_tree_lookup (823 samples, 0.03%)</title><rect x="24.6165%" y="405" width="0.0343%" height="15" fill="rgb(247,54,32)" fg:x="590115" fg:w="823"/><text x="24.8665%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (418 samples, 0.02%)</title><rect x="24.6509%" y="405" width="0.0174%" height="15" fill="rgb(252,131,39)" fg:x="590941" fg:w="418"/><text x="24.9009%" y="415.50"></text></g><g><title>mark_page_accessed (322 samples, 0.01%)</title><rect x="24.6549%" y="389" width="0.0134%" height="15" fill="rgb(210,108,39)" fg:x="591037" fg:w="322"/><text x="24.9049%" y="399.50"></text></g><g><title>find_extent_buffer (1,836 samples, 0.08%)</title><rect x="24.5921%" y="421" width="0.0766%" height="15" fill="rgb(205,23,29)" fg:x="589532" fg:w="1836"/><text x="24.8421%" y="431.50"></text></g><g><title>reada_for_balance (2,627 samples, 0.11%)</title><rect x="24.5650%" y="437" width="0.1096%" height="15" fill="rgb(246,139,46)" fg:x="588882" fg:w="2627"/><text x="24.8150%" y="447.50"></text></g><g><title>__list_del_entry_valid (357 samples, 0.01%)</title><rect x="24.7296%" y="373" width="0.0149%" height="15" fill="rgb(250,81,26)" fg:x="592826" fg:w="357"/><text x="24.9796%" y="383.50"></text></g><g><title>_raw_spin_lock (534 samples, 0.02%)</title><rect x="24.9397%" y="357" width="0.0223%" height="15" fill="rgb(214,104,7)" fg:x="597864" fg:w="534"/><text x="25.1897%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (315 samples, 0.01%)</title><rect x="24.9488%" y="341" width="0.0131%" height="15" fill="rgb(233,189,8)" fg:x="598083" fg:w="315"/><text x="25.1988%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (621 samples, 0.03%)</title><rect x="24.9620%" y="357" width="0.0259%" height="15" fill="rgb(228,141,17)" fg:x="598398" fg:w="621"/><text x="25.2120%" y="367.50"></text></g><g><title>available_idle_cpu (537 samples, 0.02%)</title><rect x="25.0407%" y="341" width="0.0224%" height="15" fill="rgb(247,157,1)" fg:x="600286" fg:w="537"/><text x="25.2907%" y="351.50"></text></g><g><title>select_task_rq_fair (2,702 samples, 0.11%)</title><rect x="24.9914%" y="357" width="0.1127%" height="15" fill="rgb(249,225,5)" fg:x="599103" fg:w="2702"/><text x="25.2414%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (633 samples, 0.03%)</title><rect x="25.0777%" y="341" width="0.0264%" height="15" fill="rgb(242,55,13)" fg:x="601172" fg:w="633"/><text x="25.3277%" y="351.50"></text></g><g><title>update_curr (266 samples, 0.01%)</title><rect x="25.1957%" y="309" width="0.0111%" height="15" fill="rgb(230,49,50)" fg:x="604001" fg:w="266"/><text x="25.4457%" y="319.50"></text></g><g><title>enqueue_entity (2,401 samples, 0.10%)</title><rect x="25.1415%" y="325" width="0.1002%" height="15" fill="rgb(241,111,38)" fg:x="602701" fg:w="2401"/><text x="25.3915%" y="335.50"></text></g><g><title>update_load_avg (835 samples, 0.03%)</title><rect x="25.2068%" y="309" width="0.0348%" height="15" fill="rgb(252,155,4)" fg:x="604267" fg:w="835"/><text x="25.4568%" y="319.50"></text></g><g><title>enqueue_task_fair (3,066 samples, 0.13%)</title><rect x="25.1220%" y="341" width="0.1279%" height="15" fill="rgb(212,69,32)" fg:x="602234" fg:w="3066"/><text x="25.3720%" y="351.50"></text></g><g><title>ttwu_do_activate (6,362 samples, 0.27%)</title><rect x="25.1128%" y="357" width="0.2654%" height="15" fill="rgb(243,107,47)" fg:x="602014" fg:w="6362"/><text x="25.3628%" y="367.50"></text></g><g><title>psi_task_change (3,073 samples, 0.13%)</title><rect x="25.2500%" y="341" width="0.1282%" height="15" fill="rgb(247,130,12)" fg:x="605303" fg:w="3073"/><text x="25.5000%" y="351.50"></text></g><g><title>psi_group_change (2,768 samples, 0.12%)</title><rect x="25.2628%" y="325" width="0.1155%" height="15" fill="rgb(233,74,16)" fg:x="605608" fg:w="2768"/><text x="25.5128%" y="335.50"></text></g><g><title>record_times (424 samples, 0.02%)</title><rect x="25.3605%" y="309" width="0.0177%" height="15" fill="rgb(208,58,18)" fg:x="607952" fg:w="424"/><text x="25.6105%" y="319.50"></text></g><g><title>sched_clock_cpu (280 samples, 0.01%)</title><rect x="25.3665%" y="293" width="0.0117%" height="15" fill="rgb(242,225,1)" fg:x="608096" fg:w="280"/><text x="25.6165%" y="303.50"></text></g><g><title>sched_clock (242 samples, 0.01%)</title><rect x="25.3681%" y="277" width="0.0101%" height="15" fill="rgb(249,39,40)" fg:x="608134" fg:w="242"/><text x="25.6181%" y="287.50"></text></g><g><title>resched_curr (265 samples, 0.01%)</title><rect x="25.3927%" y="325" width="0.0111%" height="15" fill="rgb(207,72,44)" fg:x="608723" fg:w="265"/><text x="25.6427%" y="335.50"></text></g><g><title>ttwu_do_wakeup (615 samples, 0.03%)</title><rect x="25.3782%" y="357" width="0.0257%" height="15" fill="rgb(215,193,12)" fg:x="608376" fg:w="615"/><text x="25.6282%" y="367.50"></text></g><g><title>check_preempt_curr (553 samples, 0.02%)</title><rect x="25.3808%" y="341" width="0.0231%" height="15" fill="rgb(248,41,39)" fg:x="608438" fg:w="553"/><text x="25.6308%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (486 samples, 0.02%)</title><rect x="25.4039%" y="357" width="0.0203%" height="15" fill="rgb(253,85,4)" fg:x="608991" fg:w="486"/><text x="25.6539%" y="367.50"></text></g><g><title>__wake_up_common (17,569 samples, 0.73%)</title><rect x="24.7145%" y="405" width="0.7329%" height="15" fill="rgb(243,70,31)" fg:x="592466" fg:w="17569"/><text x="24.9645%" y="415.50"></text></g><g><title>autoremove_wake_function (17,255 samples, 0.72%)</title><rect x="24.7276%" y="389" width="0.7198%" height="15" fill="rgb(253,195,26)" fg:x="592780" fg:w="17255"/><text x="24.9776%" y="399.50"></text></g><g><title>try_to_wake_up (16,829 samples, 0.70%)</title><rect x="24.7454%" y="373" width="0.7020%" height="15" fill="rgb(243,42,11)" fg:x="593206" fg:w="16829"/><text x="24.9954%" y="383.50"></text></g><g><title>update_rq_clock (558 samples, 0.02%)</title><rect x="25.4241%" y="357" width="0.0233%" height="15" fill="rgb(239,66,17)" fg:x="609477" fg:w="558"/><text x="25.6741%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (2,395 samples, 0.10%)</title><rect x="25.4474%" y="405" width="0.0999%" height="15" fill="rgb(217,132,21)" fg:x="610035" fg:w="2395"/><text x="25.6974%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,218 samples, 0.09%)</title><rect x="25.4548%" y="389" width="0.0925%" height="15" fill="rgb(252,202,21)" fg:x="610212" fg:w="2218"/><text x="25.7048%" y="399.50"></text></g><g><title>__wake_up_common_lock (20,225 samples, 0.84%)</title><rect x="24.7118%" y="421" width="0.8437%" height="15" fill="rgb(233,98,36)" fg:x="592400" fg:w="20225"/><text x="24.9618%" y="431.50"></text></g><g><title>btrfs_lookup_inode (146,560 samples, 6.11%)</title><rect x="19.4624%" y="469" width="6.1137%" height="15" fill="rgb(216,153,54)" fg:x="466559" fg:w="146560"/><text x="19.7124%" y="479.50">btrfs_lo..</text></g><g><title>btrfs_search_slot (146,081 samples, 6.09%)</title><rect x="19.4823%" y="453" width="6.0937%" height="15" fill="rgb(250,99,7)" fg:x="467038" fg:w="146081"/><text x="19.7323%" y="463.50">btrfs_se..</text></g><g><title>unlock_up (21,555 samples, 0.90%)</title><rect x="24.6769%" y="437" width="0.8992%" height="15" fill="rgb(207,56,50)" fg:x="591564" fg:w="21555"/><text x="24.9269%" y="447.50"></text></g><g><title>btrfs_tree_unlock (487 samples, 0.02%)</title><rect x="25.5558%" y="421" width="0.0203%" height="15" fill="rgb(244,61,34)" fg:x="612632" fg:w="487"/><text x="25.8058%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (604 samples, 0.03%)</title><rect x="25.5761%" y="469" width="0.0252%" height="15" fill="rgb(241,50,38)" fg:x="613119" fg:w="604"/><text x="25.8261%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (343 samples, 0.01%)</title><rect x="25.5870%" y="453" width="0.0143%" height="15" fill="rgb(212,166,30)" fg:x="613380" fg:w="343"/><text x="25.8370%" y="463.50"></text></g><g><title>btrfs_release_delayed_inode (458 samples, 0.02%)</title><rect x="25.6013%" y="469" width="0.0191%" height="15" fill="rgb(249,127,32)" fg:x="613723" fg:w="458"/><text x="25.8513%" y="479.50"></text></g><g><title>select_task_rq_fair (752 samples, 0.03%)</title><rect x="25.6924%" y="389" width="0.0314%" height="15" fill="rgb(209,103,0)" fg:x="615907" fg:w="752"/><text x="25.9424%" y="399.50"></text></g><g><title>enqueue_entity (735 samples, 0.03%)</title><rect x="25.7350%" y="357" width="0.0307%" height="15" fill="rgb(238,209,51)" fg:x="616928" fg:w="735"/><text x="25.9850%" y="367.50"></text></g><g><title>enqueue_task_fair (899 samples, 0.04%)</title><rect x="25.7297%" y="373" width="0.0375%" height="15" fill="rgb(237,56,23)" fg:x="616802" fg:w="899"/><text x="25.9797%" y="383.50"></text></g><g><title>ttwu_do_activate (1,904 samples, 0.08%)</title><rect x="25.7271%" y="389" width="0.0794%" height="15" fill="rgb(215,153,46)" fg:x="616740" fg:w="1904"/><text x="25.9771%" y="399.50"></text></g><g><title>psi_task_change (942 samples, 0.04%)</title><rect x="25.7672%" y="373" width="0.0393%" height="15" fill="rgb(224,49,31)" fg:x="617702" fg:w="942"/><text x="26.0172%" y="383.50"></text></g><g><title>psi_group_change (837 samples, 0.03%)</title><rect x="25.7716%" y="357" width="0.0349%" height="15" fill="rgb(250,18,42)" fg:x="617807" fg:w="837"/><text x="26.0216%" y="367.50"></text></g><g><title>__wake_up_common (4,744 samples, 0.20%)</title><rect x="25.6292%" y="437" width="0.1979%" height="15" fill="rgb(215,176,39)" fg:x="614393" fg:w="4744"/><text x="25.8792%" y="447.50"></text></g><g><title>autoremove_wake_function (4,646 samples, 0.19%)</title><rect x="25.6333%" y="421" width="0.1938%" height="15" fill="rgb(223,77,29)" fg:x="614491" fg:w="4646"/><text x="25.8833%" y="431.50"></text></g><g><title>try_to_wake_up (4,526 samples, 0.19%)</title><rect x="25.6383%" y="405" width="0.1888%" height="15" fill="rgb(234,94,52)" fg:x="614611" fg:w="4526"/><text x="25.8883%" y="415.50"></text></g><g><title>__wake_up_common_lock (4,971 samples, 0.21%)</title><rect x="25.6282%" y="453" width="0.2074%" height="15" fill="rgb(220,154,50)" fg:x="614369" fg:w="4971"/><text x="25.8782%" y="463.50"></text></g><g><title>btrfs_tree_unlock (253 samples, 0.01%)</title><rect x="25.8356%" y="453" width="0.0106%" height="15" fill="rgb(212,11,10)" fg:x="619341" fg:w="253"/><text x="26.0856%" y="463.50"></text></g><g><title>_raw_spin_lock (420 samples, 0.02%)</title><rect x="25.8889%" y="437" width="0.0175%" height="15" fill="rgb(205,166,19)" fg:x="620618" fg:w="420"/><text x="26.1389%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,434 samples, 0.06%)</title><rect x="25.8468%" y="453" width="0.0598%" height="15" fill="rgb(244,198,16)" fg:x="619609" fg:w="1434"/><text x="26.0968%" y="463.50"></text></g><g><title>btrfs_release_path (7,279 samples, 0.30%)</title><rect x="25.6204%" y="469" width="0.3036%" height="15" fill="rgb(219,69,12)" fg:x="614181" fg:w="7279"/><text x="25.8704%" y="479.50"></text></g><g><title>release_extent_buffer (417 samples, 0.02%)</title><rect x="25.9066%" y="453" width="0.0174%" height="15" fill="rgb(245,30,7)" fg:x="621043" fg:w="417"/><text x="26.1566%" y="463.50"></text></g><g><title>__btrfs_tree_lock (251 samples, 0.01%)</title><rect x="25.9370%" y="437" width="0.0105%" height="15" fill="rgb(218,221,48)" fg:x="621772" fg:w="251"/><text x="26.1870%" y="447.50"></text></g><g><title>btrfs_lock_root_node (258 samples, 0.01%)</title><rect x="25.9370%" y="453" width="0.0108%" height="15" fill="rgb(216,66,15)" fg:x="621771" fg:w="258"/><text x="26.1870%" y="463.50"></text></g><g><title>btrfs_search_slot (788 samples, 0.03%)</title><rect x="25.9240%" y="469" width="0.0329%" height="15" fill="rgb(226,122,50)" fg:x="621460" fg:w="788"/><text x="26.1740%" y="479.50"></text></g><g><title>finish_one_item (1,145 samples, 0.05%)</title><rect x="25.9569%" y="469" width="0.0478%" height="15" fill="rgb(239,156,16)" fg:x="622248" fg:w="1145"/><text x="26.2069%" y="479.50"></text></g><g><title>__btrfs_update_delayed_inode (194,170 samples, 8.10%)</title><rect x="17.9585%" y="485" width="8.0997%" height="15" fill="rgb(224,27,38)" fg:x="430507" fg:w="194170"/><text x="18.2085%" y="495.50">__btrfs_upd..</text></g><g><title>write_extent_buffer (1,055 samples, 0.04%)</title><rect x="26.0142%" y="469" width="0.0440%" height="15" fill="rgb(224,39,27)" fg:x="623622" fg:w="1055"/><text x="26.2642%" y="479.50"></text></g><g><title>__radix_tree_lookup (260 samples, 0.01%)</title><rect x="26.0885%" y="469" width="0.0108%" height="15" fill="rgb(215,92,29)" fg:x="625402" fg:w="260"/><text x="26.3385%" y="479.50"></text></g><g><title>balance_dirty_pages_ratelimited (782 samples, 0.03%)</title><rect x="26.0671%" y="485" width="0.0326%" height="15" fill="rgb(207,159,16)" fg:x="624891" fg:w="782"/><text x="26.3171%" y="495.50"></text></g><g><title>btrfs_balance_delayed_items (424 samples, 0.02%)</title><rect x="26.1173%" y="469" width="0.0177%" height="15" fill="rgb(238,163,47)" fg:x="626093" fg:w="424"/><text x="26.3673%" y="479.50"></text></g><g><title>__queue_work (1,057 samples, 0.04%)</title><rect x="26.1378%" y="453" width="0.0441%" height="15" fill="rgb(219,91,49)" fg:x="626585" fg:w="1057"/><text x="26.3878%" y="463.50"></text></g><g><title>try_to_wake_up (726 samples, 0.03%)</title><rect x="26.1516%" y="437" width="0.0303%" height="15" fill="rgb(227,167,31)" fg:x="626916" fg:w="726"/><text x="26.4016%" y="447.50"></text></g><g><title>btrfs_btree_balance_dirty (1,953 samples, 0.08%)</title><rect x="26.1009%" y="485" width="0.0815%" height="15" fill="rgb(234,80,54)" fg:x="625700" fg:w="1953"/><text x="26.3509%" y="495.50"></text></g><g><title>queue_work_on (1,084 samples, 0.05%)</title><rect x="26.1371%" y="469" width="0.0452%" height="15" fill="rgb(212,114,2)" fg:x="626569" fg:w="1084"/><text x="26.3871%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (510 samples, 0.02%)</title><rect x="26.1924%" y="485" width="0.0213%" height="15" fill="rgb(234,50,24)" fg:x="627894" fg:w="510"/><text x="26.4424%" y="495.50"></text></g><g><title>kmem_cache_alloc (661 samples, 0.03%)</title><rect x="26.2145%" y="485" width="0.0276%" height="15" fill="rgb(221,68,8)" fg:x="628423" fg:w="661"/><text x="26.4645%" y="495.50"></text></g><g><title>kmem_cache_free (993 samples, 0.04%)</title><rect x="26.2420%" y="485" width="0.0414%" height="15" fill="rgb(254,180,31)" fg:x="629084" fg:w="993"/><text x="26.4920%" y="495.50"></text></g><g><title>mutex_lock (447 samples, 0.02%)</title><rect x="26.2835%" y="485" width="0.0186%" height="15" fill="rgb(247,130,50)" fg:x="630077" fg:w="447"/><text x="26.5335%" y="495.50"></text></g><g><title>mutex_unlock (442 samples, 0.02%)</title><rect x="26.3021%" y="485" width="0.0184%" height="15" fill="rgb(211,109,4)" fg:x="630524" fg:w="442"/><text x="26.5521%" y="495.50"></text></g><g><title>_raw_spin_lock (691 samples, 0.03%)</title><rect x="26.3850%" y="453" width="0.0288%" height="15" fill="rgb(238,50,21)" fg:x="632512" fg:w="691"/><text x="26.6350%" y="463.50"></text></g><g><title>join_transaction (1,377 samples, 0.06%)</title><rect x="26.3566%" y="469" width="0.0574%" height="15" fill="rgb(225,57,45)" fg:x="631829" fg:w="1377"/><text x="26.6066%" y="479.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (210,121 samples, 8.77%)</title><rect x="17.6883%" y="501" width="8.7651%" height="15" fill="rgb(209,196,50)" fg:x="424030" fg:w="210121"/><text x="17.9383%" y="511.50">btrfs_commit..</text></g><g><title>start_transaction (3,179 samples, 0.13%)</title><rect x="26.3208%" y="485" width="0.1326%" height="15" fill="rgb(242,140,13)" fg:x="630972" fg:w="3179"/><text x="26.5708%" y="495.50"></text></g><g><title>kmem_cache_alloc (945 samples, 0.04%)</title><rect x="26.4140%" y="469" width="0.0394%" height="15" fill="rgb(217,111,7)" fg:x="633206" fg:w="945"/><text x="26.6640%" y="479.50"></text></g><g><title>btrfs_get_32 (590 samples, 0.02%)</title><rect x="26.5081%" y="469" width="0.0246%" height="15" fill="rgb(253,193,51)" fg:x="635462" fg:w="590"/><text x="26.7581%" y="479.50"></text></g><g><title>btrfs_get_token_32 (350 samples, 0.01%)</title><rect x="26.5327%" y="469" width="0.0146%" height="15" fill="rgb(252,70,29)" fg:x="636052" fg:w="350"/><text x="26.7827%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (660 samples, 0.03%)</title><rect x="26.5473%" y="469" width="0.0275%" height="15" fill="rgb(232,127,12)" fg:x="636402" fg:w="660"/><text x="26.7973%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (318 samples, 0.01%)</title><rect x="26.5616%" y="453" width="0.0133%" height="15" fill="rgb(211,180,21)" fg:x="636744" fg:w="318"/><text x="26.8116%" y="463.50"></text></g><g><title>btrfs_set_token_32 (270 samples, 0.01%)</title><rect x="26.5748%" y="469" width="0.0113%" height="15" fill="rgb(229,72,13)" fg:x="637062" fg:w="270"/><text x="26.8248%" y="479.50"></text></g><g><title>leaf_space_used (669 samples, 0.03%)</title><rect x="26.5861%" y="469" width="0.0279%" height="15" fill="rgb(240,211,49)" fg:x="637332" fg:w="669"/><text x="26.8361%" y="479.50"></text></g><g><title>btrfs_get_32 (493 samples, 0.02%)</title><rect x="26.5934%" y="453" width="0.0206%" height="15" fill="rgb(219,149,40)" fg:x="637508" fg:w="493"/><text x="26.8434%" y="463.50"></text></g><g><title>memcpy_extent_buffer (461 samples, 0.02%)</title><rect x="26.6140%" y="469" width="0.0192%" height="15" fill="rgb(210,127,46)" fg:x="638001" fg:w="461"/><text x="26.8640%" y="479.50"></text></g><g><title>memmove_extent_buffer (259 samples, 0.01%)</title><rect x="26.6332%" y="469" width="0.0108%" height="15" fill="rgb(220,106,7)" fg:x="638462" fg:w="259"/><text x="26.8832%" y="479.50"></text></g><g><title>btrfs_del_items (4,258 samples, 0.18%)</title><rect x="26.4665%" y="485" width="0.1776%" height="15" fill="rgb(249,31,22)" fg:x="634464" fg:w="4258"/><text x="26.7165%" y="495.50"></text></g><g><title>__task_rq_lock (378 samples, 0.02%)</title><rect x="26.8354%" y="389" width="0.0158%" height="15" fill="rgb(253,1,49)" fg:x="643308" fg:w="378"/><text x="27.0854%" y="399.50"></text></g><g><title>_raw_spin_lock (364 samples, 0.02%)</title><rect x="26.8360%" y="373" width="0.0152%" height="15" fill="rgb(227,144,33)" fg:x="643322" fg:w="364"/><text x="27.0860%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (354 samples, 0.01%)</title><rect x="26.8364%" y="357" width="0.0148%" height="15" fill="rgb(249,163,44)" fg:x="643332" fg:w="354"/><text x="27.0864%" y="367.50"></text></g><g><title>select_task_rq_fair (844 samples, 0.04%)</title><rect x="26.8700%" y="389" width="0.0352%" height="15" fill="rgb(234,15,39)" fg:x="644137" fg:w="844"/><text x="27.1200%" y="399.50"></text></g><g><title>enqueue_entity (914 samples, 0.04%)</title><rect x="26.9192%" y="357" width="0.0381%" height="15" fill="rgb(207,66,16)" fg:x="645316" fg:w="914"/><text x="27.1692%" y="367.50"></text></g><g><title>update_load_avg (328 samples, 0.01%)</title><rect x="26.9436%" y="341" width="0.0137%" height="15" fill="rgb(233,112,24)" fg:x="645902" fg:w="328"/><text x="27.1936%" y="351.50"></text></g><g><title>enqueue_task_fair (1,125 samples, 0.05%)</title><rect x="26.9111%" y="373" width="0.0469%" height="15" fill="rgb(230,90,22)" fg:x="645124" fg:w="1125"/><text x="27.1611%" y="383.50"></text></g><g><title>ttwu_do_activate (2,339 samples, 0.10%)</title><rect x="26.9075%" y="389" width="0.0976%" height="15" fill="rgb(229,61,13)" fg:x="645036" fg:w="2339"/><text x="27.1575%" y="399.50"></text></g><g><title>psi_task_change (1,125 samples, 0.05%)</title><rect x="26.9581%" y="373" width="0.0469%" height="15" fill="rgb(225,57,24)" fg:x="646250" fg:w="1125"/><text x="27.2081%" y="383.50"></text></g><g><title>psi_group_change (986 samples, 0.04%)</title><rect x="26.9639%" y="357" width="0.0411%" height="15" fill="rgb(208,169,48)" fg:x="646389" fg:w="986"/><text x="27.2139%" y="367.50"></text></g><g><title>__wake_up_common (9,001 samples, 0.38%)</title><rect x="26.6563%" y="437" width="0.3755%" height="15" fill="rgb(244,218,51)" fg:x="639014" fg:w="9001"/><text x="26.9063%" y="447.50"></text></g><g><title>autoremove_wake_function (8,824 samples, 0.37%)</title><rect x="26.6637%" y="421" width="0.3681%" height="15" fill="rgb(214,148,10)" fg:x="639191" fg:w="8824"/><text x="26.9137%" y="431.50"></text></g><g><title>try_to_wake_up (8,717 samples, 0.36%)</title><rect x="26.6681%" y="405" width="0.3636%" height="15" fill="rgb(225,174,27)" fg:x="639298" fg:w="8717"/><text x="26.9181%" y="415.50"></text></g><g><title>__wake_up_common_lock (9,261 samples, 0.39%)</title><rect x="26.6543%" y="453" width="0.3863%" height="15" fill="rgb(230,96,26)" fg:x="638967" fg:w="9261"/><text x="26.9043%" y="463.50"></text></g><g><title>btrfs_tree_unlock (796 samples, 0.03%)</title><rect x="27.0406%" y="453" width="0.0332%" height="15" fill="rgb(232,10,30)" fg:x="648228" fg:w="796"/><text x="27.2906%" y="463.50"></text></g><g><title>_raw_spin_lock (446 samples, 0.02%)</title><rect x="27.1183%" y="437" width="0.0186%" height="15" fill="rgb(222,8,50)" fg:x="650089" fg:w="446"/><text x="27.3683%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,499 samples, 0.06%)</title><rect x="27.0746%" y="453" width="0.0625%" height="15" fill="rgb(213,81,27)" fg:x="649042" fg:w="1499"/><text x="27.3246%" y="463.50"></text></g><g><title>btrfs_free_path (12,245 samples, 0.51%)</title><rect x="26.6441%" y="485" width="0.5108%" height="15" fill="rgb(245,50,10)" fg:x="638722" fg:w="12245"/><text x="26.8941%" y="495.50"></text></g><g><title>btrfs_release_path (12,214 samples, 0.51%)</title><rect x="26.6454%" y="469" width="0.5095%" height="15" fill="rgb(216,100,18)" fg:x="638753" fg:w="12214"/><text x="26.8954%" y="479.50"></text></g><g><title>release_extent_buffer (426 samples, 0.02%)</title><rect x="27.1371%" y="453" width="0.0178%" height="15" fill="rgb(236,147,54)" fg:x="650541" fg:w="426"/><text x="27.3871%" y="463.50"></text></g><g><title>_raw_read_lock (867 samples, 0.04%)</title><rect x="27.3074%" y="437" width="0.0362%" height="15" fill="rgb(205,143,26)" fg:x="654622" fg:w="867"/><text x="27.5574%" y="447.50"></text></g><g><title>finish_wait (5,904 samples, 0.25%)</title><rect x="27.3471%" y="437" width="0.2463%" height="15" fill="rgb(236,26,9)" fg:x="655574" fg:w="5904"/><text x="27.5971%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (5,637 samples, 0.24%)</title><rect x="27.3582%" y="421" width="0.2351%" height="15" fill="rgb(221,165,53)" fg:x="655841" fg:w="5637"/><text x="27.6082%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,426 samples, 0.23%)</title><rect x="27.3670%" y="405" width="0.2263%" height="15" fill="rgb(214,110,17)" fg:x="656052" fg:w="5426"/><text x="27.6170%" y="415.50"></text></g><g><title>__list_add_valid (410 samples, 0.02%)</title><rect x="27.6341%" y="421" width="0.0171%" height="15" fill="rgb(237,197,12)" fg:x="662456" fg:w="410"/><text x="27.8841%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (15,839 samples, 0.66%)</title><rect x="27.6513%" y="421" width="0.6607%" height="15" fill="rgb(205,84,17)" fg:x="662866" fg:w="15839"/><text x="27.9013%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (15,178 samples, 0.63%)</title><rect x="27.6788%" y="405" width="0.6331%" height="15" fill="rgb(237,18,45)" fg:x="663527" fg:w="15178"/><text x="27.9288%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (278 samples, 0.01%)</title><rect x="28.3120%" y="421" width="0.0116%" height="15" fill="rgb(221,87,14)" fg:x="678705" fg:w="278"/><text x="28.5620%" y="431.50"></text></g><g><title>prepare_to_wait_event (17,478 samples, 0.73%)</title><rect x="27.5945%" y="437" width="0.7291%" height="15" fill="rgb(238,186,15)" fg:x="661506" fg:w="17478"/><text x="27.8445%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (11,337 samples, 0.47%)</title><rect x="28.3236%" y="437" width="0.4729%" height="15" fill="rgb(208,115,11)" fg:x="678984" fg:w="11337"/><text x="28.5736%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,097 samples, 0.34%)</title><rect x="28.4588%" y="421" width="0.3378%" height="15" fill="rgb(254,175,0)" fg:x="682224" fg:w="8097"/><text x="28.7088%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (460 samples, 0.02%)</title><rect x="28.8294%" y="405" width="0.0192%" height="15" fill="rgb(227,24,42)" fg:x="691109" fg:w="460"/><text x="29.0794%" y="415.50"></text></g><g><title>update_curr (814 samples, 0.03%)</title><rect x="28.8951%" y="373" width="0.0340%" height="15" fill="rgb(223,211,37)" fg:x="692684" fg:w="814"/><text x="29.1451%" y="383.50"></text></g><g><title>dequeue_entity (2,230 samples, 0.09%)</title><rect x="28.8664%" y="389" width="0.0930%" height="15" fill="rgb(235,49,27)" fg:x="691997" fg:w="2230"/><text x="29.1164%" y="399.50"></text></g><g><title>update_load_avg (729 samples, 0.03%)</title><rect x="28.9291%" y="373" width="0.0304%" height="15" fill="rgb(254,97,51)" fg:x="693498" fg:w="729"/><text x="29.1791%" y="383.50"></text></g><g><title>dequeue_task_fair (2,748 samples, 0.11%)</title><rect x="28.8534%" y="405" width="0.1146%" height="15" fill="rgb(249,51,40)" fg:x="691685" fg:w="2748"/><text x="29.1034%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (5,405 samples, 0.23%)</title><rect x="28.9897%" y="389" width="0.2255%" height="15" fill="rgb(210,128,45)" fg:x="694952" fg:w="5405"/><text x="29.2397%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,301 samples, 0.22%)</title><rect x="28.9940%" y="373" width="0.2211%" height="15" fill="rgb(224,137,50)" fg:x="695056" fg:w="5301"/><text x="29.2440%" y="383.50"></text></g><g><title>native_write_msr (5,263 samples, 0.22%)</title><rect x="28.9956%" y="357" width="0.2195%" height="15" fill="rgb(242,15,9)" fg:x="695094" fg:w="5263"/><text x="29.2456%" y="367.50"></text></g><g><title>finish_task_switch (6,142 samples, 0.26%)</title><rect x="28.9681%" y="405" width="0.2562%" height="15" fill="rgb(233,187,41)" fg:x="694433" fg:w="6142"/><text x="29.2181%" y="415.50"></text></g><g><title>pick_next_task_fair (469 samples, 0.02%)</title><rect x="29.2248%" y="405" width="0.0196%" height="15" fill="rgb(227,2,29)" fg:x="700587" fg:w="469"/><text x="29.4748%" y="415.50"></text></g><g><title>__update_idle_core (374 samples, 0.02%)</title><rect x="29.2475%" y="389" width="0.0156%" height="15" fill="rgb(222,70,3)" fg:x="701132" fg:w="374"/><text x="29.4975%" y="399.50"></text></g><g><title>pick_next_task_idle (451 samples, 0.02%)</title><rect x="29.2443%" y="405" width="0.0188%" height="15" fill="rgb(213,11,42)" fg:x="701056" fg:w="451"/><text x="29.4943%" y="415.50"></text></g><g><title>psi_task_change (2,060 samples, 0.09%)</title><rect x="29.2631%" y="405" width="0.0859%" height="15" fill="rgb(225,150,9)" fg:x="701507" fg:w="2060"/><text x="29.5131%" y="415.50"></text></g><g><title>psi_group_change (1,752 samples, 0.07%)</title><rect x="29.2760%" y="389" width="0.0731%" height="15" fill="rgb(230,162,45)" fg:x="701815" fg:w="1752"/><text x="29.5260%" y="399.50"></text></g><g><title>record_times (390 samples, 0.02%)</title><rect x="29.3328%" y="373" width="0.0163%" height="15" fill="rgb(222,14,52)" fg:x="703177" fg:w="390"/><text x="29.5828%" y="383.50"></text></g><g><title>sched_clock_cpu (255 samples, 0.01%)</title><rect x="29.3384%" y="357" width="0.0106%" height="15" fill="rgb(254,198,14)" fg:x="703312" fg:w="255"/><text x="29.5884%" y="367.50"></text></g><g><title>psi_task_switch (255 samples, 0.01%)</title><rect x="29.3491%" y="405" width="0.0106%" height="15" fill="rgb(220,217,30)" fg:x="703567" fg:w="255"/><text x="29.5991%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (50,615 samples, 2.11%)</title><rect x="27.2668%" y="453" width="2.1114%" height="15" fill="rgb(215,146,41)" fg:x="653650" fg:w="50615"/><text x="27.5168%" y="463.50">_..</text></g><g><title>schedule (13,943 samples, 0.58%)</title><rect x="28.7966%" y="437" width="0.5816%" height="15" fill="rgb(217,27,36)" fg:x="690322" fg:w="13943"/><text x="29.0466%" y="447.50"></text></g><g><title>__schedule (13,853 samples, 0.58%)</title><rect x="28.8003%" y="421" width="0.5779%" height="15" fill="rgb(219,218,39)" fg:x="690412" fg:w="13853"/><text x="29.0503%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (51,833 samples, 2.16%)</title><rect x="27.2576%" y="469" width="2.1622%" height="15" fill="rgb(219,4,42)" fg:x="653430" fg:w="51833"/><text x="27.5076%" y="479.50">_..</text></g><g><title>btrfs_root_node (998 samples, 0.04%)</title><rect x="29.3782%" y="453" width="0.0416%" height="15" fill="rgb(249,119,36)" fg:x="704265" fg:w="998"/><text x="29.6282%" y="463.50"></text></g><g><title>prepare_to_wait_event (466 samples, 0.02%)</title><rect x="29.4371%" y="453" width="0.0194%" height="15" fill="rgb(209,23,33)" fg:x="705676" fg:w="466"/><text x="29.6871%" y="463.50"></text></g><g><title>update_curr (343 samples, 0.01%)</title><rect x="29.4958%" y="389" width="0.0143%" height="15" fill="rgb(211,10,0)" fg:x="707085" fg:w="343"/><text x="29.7458%" y="399.50"></text></g><g><title>dequeue_entity (910 samples, 0.04%)</title><rect x="29.4842%" y="405" width="0.0380%" height="15" fill="rgb(208,99,37)" fg:x="706805" fg:w="910"/><text x="29.7342%" y="415.50"></text></g><g><title>update_load_avg (287 samples, 0.01%)</title><rect x="29.5101%" y="389" width="0.0120%" height="15" fill="rgb(213,132,31)" fg:x="707428" fg:w="287"/><text x="29.7601%" y="399.50"></text></g><g><title>dequeue_task_fair (1,092 samples, 0.05%)</title><rect x="29.4798%" y="421" width="0.0456%" height="15" fill="rgb(243,129,40)" fg:x="706700" fg:w="1092"/><text x="29.7298%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (2,471 samples, 0.10%)</title><rect x="29.5332%" y="405" width="0.1031%" height="15" fill="rgb(210,66,33)" fg:x="707981" fg:w="2471"/><text x="29.7832%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,441 samples, 0.10%)</title><rect x="29.5345%" y="389" width="0.1018%" height="15" fill="rgb(209,189,4)" fg:x="708011" fg:w="2441"/><text x="29.7845%" y="399.50"></text></g><g><title>native_write_msr (2,426 samples, 0.10%)</title><rect x="29.5351%" y="373" width="0.1012%" height="15" fill="rgb(214,107,37)" fg:x="708026" fg:w="2426"/><text x="29.7851%" y="383.50"></text></g><g><title>finish_task_switch (2,753 samples, 0.11%)</title><rect x="29.5253%" y="421" width="0.1148%" height="15" fill="rgb(245,88,54)" fg:x="707792" fg:w="2753"/><text x="29.7753%" y="431.50"></text></g><g><title>psi_task_change (800 samples, 0.03%)</title><rect x="29.6563%" y="421" width="0.0334%" height="15" fill="rgb(205,146,20)" fg:x="710931" fg:w="800"/><text x="29.9063%" y="431.50"></text></g><g><title>psi_group_change (650 samples, 0.03%)</title><rect x="29.6625%" y="405" width="0.0271%" height="15" fill="rgb(220,161,25)" fg:x="711081" fg:w="650"/><text x="29.9125%" y="415.50"></text></g><g><title>__btrfs_tree_lock (6,748 samples, 0.28%)</title><rect x="29.4198%" y="469" width="0.2815%" height="15" fill="rgb(215,152,15)" fg:x="705263" fg:w="6748"/><text x="29.6698%" y="479.50"></text></g><g><title>schedule (5,869 samples, 0.24%)</title><rect x="29.4565%" y="453" width="0.2448%" height="15" fill="rgb(233,192,44)" fg:x="706142" fg:w="5869"/><text x="29.7065%" y="463.50"></text></g><g><title>__schedule (5,827 samples, 0.24%)</title><rect x="29.4582%" y="437" width="0.2431%" height="15" fill="rgb(240,170,46)" fg:x="706184" fg:w="5827"/><text x="29.7082%" y="447.50"></text></g><g><title>_cond_resched (284 samples, 0.01%)</title><rect x="29.7649%" y="437" width="0.0118%" height="15" fill="rgb(207,104,33)" fg:x="713534" fg:w="284"/><text x="30.0149%" y="447.50"></text></g><g><title>_raw_write_lock (776 samples, 0.03%)</title><rect x="29.7798%" y="437" width="0.0324%" height="15" fill="rgb(219,21,39)" fg:x="713893" fg:w="776"/><text x="30.0298%" y="447.50"></text></g><g><title>finish_wait (4,583 samples, 0.19%)</title><rect x="29.8127%" y="437" width="0.1912%" height="15" fill="rgb(214,133,29)" fg:x="714682" fg:w="4583"/><text x="30.0627%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,319 samples, 0.18%)</title><rect x="29.8238%" y="421" width="0.1802%" height="15" fill="rgb(226,93,6)" fg:x="714946" fg:w="4319"/><text x="30.0738%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,077 samples, 0.17%)</title><rect x="29.8338%" y="405" width="0.1701%" height="15" fill="rgb(252,222,34)" fg:x="715188" fg:w="4077"/><text x="30.0838%" y="415.50"></text></g><g><title>__list_add_valid (338 samples, 0.01%)</title><rect x="30.0502%" y="421" width="0.0141%" height="15" fill="rgb(252,92,48)" fg:x="720374" fg:w="338"/><text x="30.3002%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (11,936 samples, 0.50%)</title><rect x="30.0643%" y="421" width="0.4979%" height="15" fill="rgb(245,223,24)" fg:x="720712" fg:w="11936"/><text x="30.3143%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,055 samples, 0.46%)</title><rect x="30.1010%" y="405" width="0.4612%" height="15" fill="rgb(205,176,3)" fg:x="721593" fg:w="11055"/><text x="30.3510%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (299 samples, 0.01%)</title><rect x="30.5622%" y="421" width="0.0125%" height="15" fill="rgb(235,151,15)" fg:x="732648" fg:w="299"/><text x="30.8122%" y="431.50"></text></g><g><title>prepare_to_wait_event (13,631 samples, 0.57%)</title><rect x="30.0061%" y="437" width="0.5686%" height="15" fill="rgb(237,209,11)" fg:x="719317" fg:w="13631"/><text x="30.2561%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (19,708 samples, 0.82%)</title><rect x="30.5747%" y="437" width="0.8221%" height="15" fill="rgb(243,227,24)" fg:x="732948" fg:w="19708"/><text x="30.8247%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,670 samples, 0.40%)</title><rect x="30.9934%" y="421" width="0.4034%" height="15" fill="rgb(239,193,16)" fg:x="742986" fg:w="9670"/><text x="31.2434%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (536 samples, 0.02%)</title><rect x="31.4360%" y="405" width="0.0224%" height="15" fill="rgb(231,27,9)" fg:x="753595" fg:w="536"/><text x="31.6860%" y="415.50"></text></g><g><title>update_cfs_group (314 samples, 0.01%)</title><rect x="31.5046%" y="373" width="0.0131%" height="15" fill="rgb(219,169,10)" fg:x="755239" fg:w="314"/><text x="31.7546%" y="383.50"></text></g><g><title>update_curr (1,021 samples, 0.04%)</title><rect x="31.5177%" y="373" width="0.0426%" height="15" fill="rgb(244,229,43)" fg:x="755553" fg:w="1021"/><text x="31.7677%" y="383.50"></text></g><g><title>__update_load_avg_cfs_rq (269 samples, 0.01%)</title><rect x="31.5741%" y="357" width="0.0112%" height="15" fill="rgb(254,38,20)" fg:x="756906" fg:w="269"/><text x="31.8241%" y="367.50"></text></g><g><title>__update_load_avg_se (333 samples, 0.01%)</title><rect x="31.5853%" y="357" width="0.0139%" height="15" fill="rgb(250,47,30)" fg:x="757175" fg:w="333"/><text x="31.8353%" y="367.50"></text></g><g><title>dequeue_entity (2,911 samples, 0.12%)</title><rect x="31.4792%" y="389" width="0.1214%" height="15" fill="rgb(224,124,36)" fg:x="754630" fg:w="2911"/><text x="31.7292%" y="399.50"></text></g><g><title>update_load_avg (967 samples, 0.04%)</title><rect x="31.5603%" y="373" width="0.0403%" height="15" fill="rgb(246,68,51)" fg:x="756574" fg:w="967"/><text x="31.8103%" y="383.50"></text></g><g><title>dequeue_task_fair (3,458 samples, 0.14%)</title><rect x="31.4660%" y="405" width="0.1442%" height="15" fill="rgb(253,43,49)" fg:x="754314" fg:w="3458"/><text x="31.7160%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (5,142 samples, 0.21%)</title><rect x="31.6365%" y="389" width="0.2145%" height="15" fill="rgb(219,54,36)" fg:x="758401" fg:w="5142"/><text x="31.8865%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,998 samples, 0.21%)</title><rect x="31.6425%" y="373" width="0.2085%" height="15" fill="rgb(227,133,34)" fg:x="758545" fg:w="4998"/><text x="31.8925%" y="383.50"></text></g><g><title>native_write_msr (4,947 samples, 0.21%)</title><rect x="31.6446%" y="357" width="0.2064%" height="15" fill="rgb(247,227,15)" fg:x="758596" fg:w="4947"/><text x="31.8946%" y="367.50"></text></g><g><title>finish_task_switch (6,027 samples, 0.25%)</title><rect x="31.6102%" y="405" width="0.2514%" height="15" fill="rgb(229,96,14)" fg:x="757772" fg:w="6027"/><text x="31.8602%" y="415.50"></text></g><g><title>newidle_balance (326 samples, 0.01%)</title><rect x="31.8697%" y="389" width="0.0136%" height="15" fill="rgb(220,79,17)" fg:x="763993" fg:w="326"/><text x="32.1197%" y="399.50"></text></g><g><title>pick_next_task_fair (657 samples, 0.03%)</title><rect x="31.8620%" y="405" width="0.0274%" height="15" fill="rgb(205,131,53)" fg:x="763807" fg:w="657"/><text x="32.1120%" y="415.50"></text></g><g><title>__update_idle_core (547 samples, 0.02%)</title><rect x="31.8930%" y="389" width="0.0228%" height="15" fill="rgb(209,50,29)" fg:x="764550" fg:w="547"/><text x="32.1430%" y="399.50"></text></g><g><title>pick_next_task_idle (634 samples, 0.03%)</title><rect x="31.8894%" y="405" width="0.0264%" height="15" fill="rgb(245,86,46)" fg:x="764464" fg:w="634"/><text x="32.1394%" y="415.50"></text></g><g><title>psi_task_change (2,650 samples, 0.11%)</title><rect x="31.9158%" y="405" width="0.1105%" height="15" fill="rgb(235,66,46)" fg:x="765098" fg:w="2650"/><text x="32.1658%" y="415.50"></text></g><g><title>psi_group_change (2,264 samples, 0.09%)</title><rect x="31.9319%" y="389" width="0.0944%" height="15" fill="rgb(232,148,31)" fg:x="765484" fg:w="2264"/><text x="32.1819%" y="399.50"></text></g><g><title>record_times (560 samples, 0.02%)</title><rect x="32.0030%" y="373" width="0.0234%" height="15" fill="rgb(217,149,8)" fg:x="767188" fg:w="560"/><text x="32.2530%" y="383.50"></text></g><g><title>sched_clock_cpu (358 samples, 0.01%)</title><rect x="32.0114%" y="357" width="0.0149%" height="15" fill="rgb(209,183,11)" fg:x="767390" fg:w="358"/><text x="32.2614%" y="367.50"></text></g><g><title>sched_clock (324 samples, 0.01%)</title><rect x="32.0129%" y="341" width="0.0135%" height="15" fill="rgb(208,55,20)" fg:x="767424" fg:w="324"/><text x="32.2629%" y="351.50"></text></g><g><title>native_sched_clock (300 samples, 0.01%)</title><rect x="32.0139%" y="325" width="0.0125%" height="15" fill="rgb(218,39,14)" fg:x="767448" fg:w="300"/><text x="32.2639%" y="335.50"></text></g><g><title>psi_task_switch (271 samples, 0.01%)</title><rect x="32.0264%" y="405" width="0.0113%" height="15" fill="rgb(216,169,33)" fg:x="767748" fg:w="271"/><text x="32.2764%" y="415.50"></text></g><g><title>__schedule (15,670 samples, 0.65%)</title><rect x="31.4058%" y="421" width="0.6537%" height="15" fill="rgb(233,80,24)" fg:x="752871" fg:w="15670"/><text x="31.6558%" y="431.50"></text></g><g><title>update_rq_clock (272 samples, 0.01%)</title><rect x="32.0481%" y="405" width="0.0113%" height="15" fill="rgb(213,179,31)" fg:x="768269" fg:w="272"/><text x="32.2981%" y="415.50"></text></g><g><title>__btrfs_tree_lock (56,253 samples, 2.35%)</title><rect x="29.7130%" y="453" width="2.3466%" height="15" fill="rgb(209,19,5)" fg:x="712290" fg:w="56253"/><text x="29.9630%" y="463.50">_..</text></g><g><title>schedule (15,887 samples, 0.66%)</title><rect x="31.3968%" y="437" width="0.6627%" height="15" fill="rgb(219,18,35)" fg:x="752656" fg:w="15887"/><text x="31.6468%" y="447.50"></text></g><g><title>btrfs_lock_root_node (56,925 samples, 2.37%)</title><rect x="29.7104%" y="469" width="2.3746%" height="15" fill="rgb(209,169,16)" fg:x="712228" fg:w="56925"/><text x="29.9604%" y="479.50">bt..</text></g><g><title>btrfs_root_node (610 samples, 0.03%)</title><rect x="32.0595%" y="453" width="0.0254%" height="15" fill="rgb(245,90,51)" fg:x="768543" fg:w="610"/><text x="32.3095%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (963 samples, 0.04%)</title><rect x="32.0850%" y="469" width="0.0402%" height="15" fill="rgb(220,99,45)" fg:x="769153" fg:w="963"/><text x="32.3350%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (390 samples, 0.02%)</title><rect x="32.1089%" y="453" width="0.0163%" height="15" fill="rgb(249,89,25)" fg:x="769726" fg:w="390"/><text x="32.3589%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (571 samples, 0.02%)</title><rect x="32.1253%" y="469" width="0.0238%" height="15" fill="rgb(239,193,0)" fg:x="770119" fg:w="571"/><text x="32.3753%" y="479.50"></text></g><g><title>_raw_write_lock (578 samples, 0.02%)</title><rect x="32.1568%" y="453" width="0.0241%" height="15" fill="rgb(231,126,1)" fg:x="770875" fg:w="578"/><text x="32.4068%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (3,927 samples, 0.16%)</title><rect x="32.1491%" y="469" width="0.1638%" height="15" fill="rgb(243,166,3)" fg:x="770690" fg:w="3927"/><text x="32.3991%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (3,164 samples, 0.13%)</title><rect x="32.1809%" y="453" width="0.1320%" height="15" fill="rgb(223,22,34)" fg:x="771453" fg:w="3164"/><text x="32.4309%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (668 samples, 0.03%)</title><rect x="32.3133%" y="469" width="0.0279%" height="15" fill="rgb(251,52,51)" fg:x="774626" fg:w="668"/><text x="32.5633%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (4,634 samples, 0.19%)</title><rect x="32.3411%" y="469" width="0.1933%" height="15" fill="rgb(221,165,28)" fg:x="775294" fg:w="4634"/><text x="32.5911%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (930 samples, 0.04%)</title><rect x="32.5620%" y="453" width="0.0388%" height="15" fill="rgb(218,121,47)" fg:x="780588" fg:w="930"/><text x="32.8120%" y="463.50"></text></g><g><title>verify_parent_transid (733 samples, 0.03%)</title><rect x="32.5702%" y="437" width="0.0306%" height="15" fill="rgb(209,120,9)" fg:x="780785" fg:w="733"/><text x="32.8202%" y="447.50"></text></g><g><title>btrfs_get_64 (912 samples, 0.04%)</title><rect x="32.6008%" y="453" width="0.0380%" height="15" fill="rgb(236,68,12)" fg:x="781518" fg:w="912"/><text x="32.8508%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,529 samples, 0.11%)</title><rect x="32.7437%" y="437" width="0.1055%" height="15" fill="rgb(225,194,26)" fg:x="784945" fg:w="2529"/><text x="32.9937%" y="447.50"></text></g><g><title>mark_page_accessed (841 samples, 0.04%)</title><rect x="32.8624%" y="421" width="0.0351%" height="15" fill="rgb(231,84,39)" fg:x="787790" fg:w="841"/><text x="33.1124%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,153 samples, 0.05%)</title><rect x="32.8497%" y="437" width="0.0481%" height="15" fill="rgb(210,11,45)" fg:x="787485" fg:w="1153"/><text x="33.0997%" y="447.50"></text></g><g><title>find_extent_buffer (5,907 samples, 0.25%)</title><rect x="32.6532%" y="453" width="0.2464%" height="15" fill="rgb(224,54,52)" fg:x="782775" fg:w="5907"/><text x="32.9032%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (9,646 samples, 0.40%)</title><rect x="32.5345%" y="469" width="0.4024%" height="15" fill="rgb(238,102,14)" fg:x="779928" fg:w="9646"/><text x="32.7845%" y="479.50"></text></g><g><title>read_extent_buffer (892 samples, 0.04%)</title><rect x="32.8996%" y="453" width="0.0372%" height="15" fill="rgb(243,160,52)" fg:x="788682" fg:w="892"/><text x="33.1496%" y="463.50"></text></g><g><title>__list_del_entry_valid (345 samples, 0.01%)</title><rect x="32.9884%" y="405" width="0.0144%" height="15" fill="rgb(216,114,19)" fg:x="790809" fg:w="345"/><text x="33.2384%" y="415.50"></text></g><g><title>_raw_spin_lock (522 samples, 0.02%)</title><rect x="33.0679%" y="389" width="0.0218%" height="15" fill="rgb(244,166,37)" fg:x="792715" fg:w="522"/><text x="33.3179%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (322 samples, 0.01%)</title><rect x="33.0762%" y="373" width="0.0134%" height="15" fill="rgb(246,29,44)" fg:x="792915" fg:w="322"/><text x="33.3262%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (565 samples, 0.02%)</title><rect x="33.0896%" y="389" width="0.0236%" height="15" fill="rgb(215,56,53)" fg:x="793237" fg:w="565"/><text x="33.3396%" y="399.50"></text></g><g><title>available_idle_cpu (496 samples, 0.02%)</title><rect x="33.1612%" y="373" width="0.0207%" height="15" fill="rgb(217,60,2)" fg:x="794952" fg:w="496"/><text x="33.4112%" y="383.50"></text></g><g><title>select_task_rq_fair (2,457 samples, 0.10%)</title><rect x="33.1160%" y="389" width="0.1025%" height="15" fill="rgb(207,26,24)" fg:x="793869" fg:w="2457"/><text x="33.3660%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (532 samples, 0.02%)</title><rect x="33.1963%" y="373" width="0.0222%" height="15" fill="rgb(252,210,15)" fg:x="795794" fg:w="532"/><text x="33.4463%" y="383.50"></text></g><g><title>update_curr (267 samples, 0.01%)</title><rect x="33.3030%" y="341" width="0.0111%" height="15" fill="rgb(253,209,26)" fg:x="798352" fg:w="267"/><text x="33.5530%" y="351.50"></text></g><g><title>enqueue_entity (2,261 samples, 0.09%)</title><rect x="33.2525%" y="357" width="0.0943%" height="15" fill="rgb(238,170,14)" fg:x="797141" fg:w="2261"/><text x="33.5025%" y="367.50"></text></g><g><title>update_load_avg (783 samples, 0.03%)</title><rect x="33.3141%" y="341" width="0.0327%" height="15" fill="rgb(216,178,15)" fg:x="798619" fg:w="783"/><text x="33.5641%" y="351.50"></text></g><g><title>enqueue_task_fair (2,852 samples, 0.12%)</title><rect x="33.2360%" y="373" width="0.1190%" height="15" fill="rgb(250,197,2)" fg:x="796745" fg:w="2852"/><text x="33.4860%" y="383.50"></text></g><g><title>ttwu_do_activate (5,834 samples, 0.24%)</title><rect x="33.2275%" y="389" width="0.2434%" height="15" fill="rgb(212,70,42)" fg:x="796542" fg:w="5834"/><text x="33.4775%" y="399.50"></text></g><g><title>psi_task_change (2,775 samples, 0.12%)</title><rect x="33.3551%" y="373" width="0.1158%" height="15" fill="rgb(227,213,9)" fg:x="799601" fg:w="2775"/><text x="33.6051%" y="383.50"></text></g><g><title>psi_group_change (2,486 samples, 0.10%)</title><rect x="33.3672%" y="357" width="0.1037%" height="15" fill="rgb(245,99,25)" fg:x="799890" fg:w="2486"/><text x="33.6172%" y="367.50"></text></g><g><title>record_times (425 samples, 0.02%)</title><rect x="33.4531%" y="341" width="0.0177%" height="15" fill="rgb(250,82,29)" fg:x="801951" fg:w="425"/><text x="33.7031%" y="351.50"></text></g><g><title>sched_clock_cpu (301 samples, 0.01%)</title><rect x="33.4583%" y="325" width="0.0126%" height="15" fill="rgb(241,226,54)" fg:x="802075" fg:w="301"/><text x="33.7083%" y="335.50"></text></g><g><title>sched_clock (253 samples, 0.01%)</title><rect x="33.4603%" y="309" width="0.0106%" height="15" fill="rgb(221,99,41)" fg:x="802123" fg:w="253"/><text x="33.7103%" y="319.50"></text></g><g><title>ttwu_do_wakeup (512 samples, 0.02%)</title><rect x="33.4709%" y="389" width="0.0214%" height="15" fill="rgb(213,90,21)" fg:x="802376" fg:w="512"/><text x="33.7209%" y="399.50"></text></g><g><title>check_preempt_curr (460 samples, 0.02%)</title><rect x="33.4730%" y="373" width="0.0192%" height="15" fill="rgb(205,208,24)" fg:x="802428" fg:w="460"/><text x="33.7230%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (278 samples, 0.01%)</title><rect x="33.4922%" y="389" width="0.0116%" height="15" fill="rgb(246,31,12)" fg:x="802888" fg:w="278"/><text x="33.7422%" y="399.50"></text></g><g><title>__wake_up_common (13,066 samples, 0.55%)</title><rect x="32.9803%" y="437" width="0.5450%" height="15" fill="rgb(213,154,6)" fg:x="790615" fg:w="13066"/><text x="33.2303%" y="447.50"></text></g><g><title>autoremove_wake_function (12,905 samples, 0.54%)</title><rect x="32.9870%" y="421" width="0.5383%" height="15" fill="rgb(222,163,29)" fg:x="790776" fg:w="12905"/><text x="33.2370%" y="431.50"></text></g><g><title>try_to_wake_up (12,514 samples, 0.52%)</title><rect x="33.0033%" y="405" width="0.5220%" height="15" fill="rgb(227,201,8)" fg:x="791167" fg:w="12514"/><text x="33.2533%" y="415.50"></text></g><g><title>update_rq_clock (515 samples, 0.02%)</title><rect x="33.5038%" y="389" width="0.0215%" height="15" fill="rgb(233,9,32)" fg:x="803166" fg:w="515"/><text x="33.7538%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (329 samples, 0.01%)</title><rect x="33.5253%" y="437" width="0.0137%" height="15" fill="rgb(217,54,24)" fg:x="803681" fg:w="329"/><text x="33.7753%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (277 samples, 0.01%)</title><rect x="33.5275%" y="421" width="0.0116%" height="15" fill="rgb(235,192,0)" fg:x="803733" fg:w="277"/><text x="33.7775%" y="431.50"></text></g><g><title>__wake_up_common_lock (13,545 samples, 0.57%)</title><rect x="32.9785%" y="453" width="0.5650%" height="15" fill="rgb(235,45,9)" fg:x="790573" fg:w="13545"/><text x="33.2285%" y="463.50"></text></g><g><title>btrfs_search_slot (153,596 samples, 6.41%)</title><rect x="27.1549%" y="485" width="6.4072%" height="15" fill="rgb(246,42,40)" fg:x="650967" fg:w="153596"/><text x="27.4049%" y="495.50">btrfs_se..</text></g><g><title>unlock_up (14,949 samples, 0.62%)</title><rect x="32.9385%" y="469" width="0.6236%" height="15" fill="rgb(248,111,24)" fg:x="789614" fg:w="14949"/><text x="33.1885%" y="479.50"></text></g><g><title>btrfs_tree_unlock (428 samples, 0.02%)</title><rect x="33.5442%" y="453" width="0.0179%" height="15" fill="rgb(249,65,22)" fg:x="804135" fg:w="428"/><text x="33.7942%" y="463.50"></text></g><g><title>kmem_cache_alloc (792 samples, 0.03%)</title><rect x="33.5621%" y="485" width="0.0330%" height="15" fill="rgb(238,111,51)" fg:x="804563" fg:w="792"/><text x="33.8121%" y="495.50"></text></g><g><title>btrfs_del_orphan_item (172,014 samples, 7.18%)</title><rect x="26.4534%" y="501" width="7.1755%" height="15" fill="rgb(250,118,22)" fg:x="634151" fg:w="172014"/><text x="26.7034%" y="511.50">btrfs_del_..</text></g><g><title>kmem_cache_free (810 samples, 0.03%)</title><rect x="33.5951%" y="485" width="0.0338%" height="15" fill="rgb(234,84,26)" fg:x="805355" fg:w="810"/><text x="33.8451%" y="495.50"></text></g><g><title>_raw_spin_lock (692 samples, 0.03%)</title><rect x="33.6563%" y="469" width="0.0289%" height="15" fill="rgb(243,172,12)" fg:x="806821" fg:w="692"/><text x="33.9063%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (265 samples, 0.01%)</title><rect x="33.6741%" y="453" width="0.0111%" height="15" fill="rgb(236,150,49)" fg:x="807248" fg:w="265"/><text x="33.9241%" y="463.50"></text></g><g><title>btrfs_free_block_rsv (1,231 samples, 0.05%)</title><rect x="33.6385%" y="501" width="0.0514%" height="15" fill="rgb(225,197,26)" fg:x="806395" fg:w="1231"/><text x="33.8885%" y="511.50"></text></g><g><title>btrfs_block_rsv_release (1,162 samples, 0.05%)</title><rect x="33.6414%" y="485" width="0.0485%" height="15" fill="rgb(214,17,42)" fg:x="806464" fg:w="1162"/><text x="33.8914%" y="495.50"></text></g><g><title>btrfs_free_io_failure_record (259 samples, 0.01%)</title><rect x="33.6899%" y="501" width="0.0108%" height="15" fill="rgb(224,165,40)" fg:x="807626" fg:w="259"/><text x="33.9399%" y="511.50"></text></g><g><title>_raw_spin_lock (358 samples, 0.01%)</title><rect x="33.8292%" y="469" width="0.0149%" height="15" fill="rgb(246,100,4)" fg:x="810966" fg:w="358"/><text x="34.0792%" y="479.50"></text></g><g><title>mutex_lock (297 samples, 0.01%)</title><rect x="33.8442%" y="469" width="0.0124%" height="15" fill="rgb(222,103,0)" fg:x="811325" fg:w="297"/><text x="34.0942%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,088 samples, 0.05%)</title><rect x="33.8193%" y="485" width="0.0454%" height="15" fill="rgb(227,189,26)" fg:x="810728" fg:w="1088"/><text x="34.0693%" y="495.50"></text></g><g><title>alloc_extent_state (980 samples, 0.04%)</title><rect x="33.9070%" y="469" width="0.0409%" height="15" fill="rgb(214,202,17)" fg:x="812832" fg:w="980"/><text x="34.1570%" y="479.50"></text></g><g><title>kmem_cache_alloc (873 samples, 0.04%)</title><rect x="33.9115%" y="453" width="0.0364%" height="15" fill="rgb(229,111,3)" fg:x="812939" fg:w="873"/><text x="34.1615%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (269 samples, 0.01%)</title><rect x="33.9367%" y="437" width="0.0112%" height="15" fill="rgb(229,172,15)" fg:x="813543" fg:w="269"/><text x="34.1867%" y="447.50"></text></g><g><title>__wake_up_common (305 samples, 0.01%)</title><rect x="33.9851%" y="437" width="0.0127%" height="15" fill="rgb(230,224,35)" fg:x="814703" fg:w="305"/><text x="34.2351%" y="447.50"></text></g><g><title>__wake_up_common_lock (950 samples, 0.04%)</title><rect x="33.9731%" y="453" width="0.0396%" height="15" fill="rgb(251,141,6)" fg:x="814415" fg:w="950"/><text x="34.2231%" y="463.50"></text></g><g><title>btrfs_clear_delalloc_extent (477 samples, 0.02%)</title><rect x="34.0128%" y="453" width="0.0199%" height="15" fill="rgb(225,208,6)" fg:x="815367" fg:w="477"/><text x="34.2628%" y="463.50"></text></g><g><title>kmem_cache_free (784 samples, 0.03%)</title><rect x="34.0398%" y="453" width="0.0327%" height="15" fill="rgb(246,181,16)" fg:x="816015" fg:w="784"/><text x="34.2898%" y="463.50"></text></g><g><title>clear_state_bit (3,255 samples, 0.14%)</title><rect x="33.9480%" y="469" width="0.1358%" height="15" fill="rgb(227,129,36)" fg:x="813815" fg:w="3255"/><text x="34.1980%" y="479.50"></text></g><g><title>__clear_extent_bit (5,886 samples, 0.25%)</title><rect x="33.8647%" y="485" width="0.2455%" height="15" fill="rgb(248,117,24)" fg:x="811816" fg:w="5886"/><text x="34.1147%" y="495.50"></text></g><g><title>kmem_cache_free (489 samples, 0.02%)</title><rect x="34.0898%" y="469" width="0.0204%" height="15" fill="rgb(214,185,35)" fg:x="817213" fg:w="489"/><text x="34.3398%" y="479.50"></text></g><g><title>_find_next_bit.constprop.0 (1,429 samples, 0.06%)</title><rect x="34.2426%" y="405" width="0.0596%" height="15" fill="rgb(236,150,34)" fg:x="820876" fg:w="1429"/><text x="34.4926%" y="415.50"></text></g><g><title>steal_from_bitmap.part.0 (1,742 samples, 0.07%)</title><rect x="34.2344%" y="421" width="0.0727%" height="15" fill="rgb(243,228,27)" fg:x="820679" fg:w="1742"/><text x="34.4844%" y="431.50"></text></g><g><title>__btrfs_add_free_space (2,275 samples, 0.09%)</title><rect x="34.2221%" y="437" width="0.0949%" height="15" fill="rgb(245,77,44)" fg:x="820386" fg:w="2275"/><text x="34.4721%" y="447.50"></text></g><g><title>add_delayed_ref_head (361 samples, 0.02%)</title><rect x="34.3229%" y="421" width="0.0151%" height="15" fill="rgb(235,214,42)" fg:x="822801" fg:w="361"/><text x="34.5729%" y="431.50"></text></g><g><title>btrfs_add_delayed_tree_ref (647 samples, 0.03%)</title><rect x="34.3211%" y="437" width="0.0270%" height="15" fill="rgb(221,74,3)" fg:x="822757" fg:w="647"/><text x="34.5711%" y="447.50"></text></g><g><title>btrfs_free_tree_block (3,439 samples, 0.14%)</title><rect x="34.2215%" y="453" width="0.1435%" height="15" fill="rgb(206,121,29)" fg:x="820371" fg:w="3439"/><text x="34.4715%" y="463.50"></text></g><g><title>check_ref_cleanup (362 samples, 0.02%)</title><rect x="34.3499%" y="437" width="0.0151%" height="15" fill="rgb(249,131,53)" fg:x="823448" fg:w="362"/><text x="34.5999%" y="447.50"></text></g><g><title>__wake_up_common (390 samples, 0.02%)</title><rect x="34.3662%" y="421" width="0.0163%" height="15" fill="rgb(236,170,29)" fg:x="823840" fg:w="390"/><text x="34.6162%" y="431.50"></text></g><g><title>autoremove_wake_function (380 samples, 0.02%)</title><rect x="34.3666%" y="405" width="0.0159%" height="15" fill="rgb(247,96,15)" fg:x="823850" fg:w="380"/><text x="34.6166%" y="415.50"></text></g><g><title>try_to_wake_up (365 samples, 0.02%)</title><rect x="34.3673%" y="389" width="0.0152%" height="15" fill="rgb(211,210,7)" fg:x="823865" fg:w="365"/><text x="34.6173%" y="399.50"></text></g><g><title>__wake_up_common_lock (399 samples, 0.02%)</title><rect x="34.3662%" y="437" width="0.0166%" height="15" fill="rgb(240,88,50)" fg:x="823839" fg:w="399"/><text x="34.6162%" y="447.50"></text></g><g><title>btrfs_unlock_up_safe (423 samples, 0.02%)</title><rect x="34.3656%" y="453" width="0.0176%" height="15" fill="rgb(209,229,26)" fg:x="823826" fg:w="423"/><text x="34.6156%" y="463.50"></text></g><g><title>btrfs_del_leaf (4,087 samples, 0.17%)</title><rect x="34.2202%" y="469" width="0.1705%" height="15" fill="rgb(210,68,23)" fg:x="820339" fg:w="4087"/><text x="34.4702%" y="479.50"></text></g><g><title>btrfs_get_32 (702 samples, 0.03%)</title><rect x="34.3907%" y="469" width="0.0293%" height="15" fill="rgb(229,180,13)" fg:x="824426" fg:w="702"/><text x="34.6407%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,150 samples, 0.05%)</title><rect x="34.7046%" y="453" width="0.0480%" height="15" fill="rgb(236,53,44)" fg:x="831952" fg:w="1150"/><text x="34.9546%" y="463.50"></text></g><g><title>btrfs_get_token_32 (7,975 samples, 0.33%)</title><rect x="34.4200%" y="469" width="0.3327%" height="15" fill="rgb(244,214,29)" fg:x="825128" fg:w="7975"/><text x="34.6700%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (673 samples, 0.03%)</title><rect x="34.7526%" y="469" width="0.0281%" height="15" fill="rgb(220,75,29)" fg:x="833103" fg:w="673"/><text x="35.0026%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (282 samples, 0.01%)</title><rect x="34.7689%" y="453" width="0.0118%" height="15" fill="rgb(214,183,37)" fg:x="833494" fg:w="282"/><text x="35.0189%" y="463.50"></text></g><g><title>btrfs_set_token_32 (6,246 samples, 0.26%)</title><rect x="34.7823%" y="469" width="0.2605%" height="15" fill="rgb(239,117,29)" fg:x="833815" fg:w="6246"/><text x="35.0323%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (968 samples, 0.04%)</title><rect x="35.0025%" y="453" width="0.0404%" height="15" fill="rgb(237,171,35)" fg:x="839093" fg:w="968"/><text x="35.2525%" y="463.50"></text></g><g><title>fixup_low_keys (603 samples, 0.03%)</title><rect x="35.0439%" y="469" width="0.0252%" height="15" fill="rgb(229,178,53)" fg:x="840085" fg:w="603"/><text x="35.2939%" y="479.50"></text></g><g><title>leaf_space_used (568 samples, 0.02%)</title><rect x="35.0702%" y="469" width="0.0237%" height="15" fill="rgb(210,102,19)" fg:x="840715" fg:w="568"/><text x="35.3202%" y="479.50"></text></g><g><title>btrfs_get_32 (419 samples, 0.02%)</title><rect x="35.0764%" y="453" width="0.0175%" height="15" fill="rgb(235,127,22)" fg:x="840864" fg:w="419"/><text x="35.3264%" y="463.50"></text></g><g><title>memcpy_extent_buffer (1,145 samples, 0.05%)</title><rect x="35.0939%" y="469" width="0.0478%" height="15" fill="rgb(244,31,31)" fg:x="841283" fg:w="1145"/><text x="35.3439%" y="479.50"></text></g><g><title>memmove (794 samples, 0.03%)</title><rect x="35.1085%" y="453" width="0.0331%" height="15" fill="rgb(231,43,21)" fg:x="841634" fg:w="794"/><text x="35.3585%" y="463.50"></text></g><g><title>copy_pages (1,081 samples, 0.05%)</title><rect x="35.1735%" y="453" width="0.0451%" height="15" fill="rgb(217,131,35)" fg:x="843192" fg:w="1081"/><text x="35.4235%" y="463.50"></text></g><g><title>memmove_extent_buffer (8,303 samples, 0.35%)</title><rect x="35.1416%" y="469" width="0.3464%" height="15" fill="rgb(221,149,4)" fg:x="842428" fg:w="8303"/><text x="35.3916%" y="479.50"></text></g><g><title>memmove (6,458 samples, 0.27%)</title><rect x="35.2186%" y="453" width="0.2694%" height="15" fill="rgb(232,170,28)" fg:x="844273" fg:w="6458"/><text x="35.4686%" y="463.50"></text></g><g><title>clear_extent_buffer_dirty (384 samples, 0.02%)</title><rect x="35.5125%" y="437" width="0.0160%" height="15" fill="rgb(238,56,10)" fg:x="851318" fg:w="384"/><text x="35.7625%" y="447.50"></text></g><g><title>__push_leaf_left (1,145 samples, 0.05%)</title><rect x="35.4909%" y="453" width="0.0478%" height="15" fill="rgb(235,196,14)" fg:x="850801" fg:w="1145"/><text x="35.7409%" y="463.50"></text></g><g><title>push_leaf_left (1,584 samples, 0.07%)</title><rect x="35.4880%" y="469" width="0.0661%" height="15" fill="rgb(216,45,48)" fg:x="850731" fg:w="1584"/><text x="35.7380%" y="479.50"></text></g><g><title>__push_leaf_right (534 samples, 0.02%)</title><rect x="35.5547%" y="453" width="0.0223%" height="15" fill="rgb(238,213,17)" fg:x="852331" fg:w="534"/><text x="35.8047%" y="463.50"></text></g><g><title>push_leaf_right (883 samples, 0.04%)</title><rect x="35.5541%" y="469" width="0.0368%" height="15" fill="rgb(212,13,2)" fg:x="852315" fg:w="883"/><text x="35.8041%" y="479.50"></text></g><g><title>btrfs_del_items (35,708 samples, 1.49%)</title><rect x="34.1119%" y="485" width="1.4895%" height="15" fill="rgb(240,114,20)" fg:x="817743" fg:w="35708"/><text x="34.3619%" y="495.50"></text></g><g><title>memset_erms (442 samples, 0.02%)</title><rect x="35.7156%" y="437" width="0.0184%" height="15" fill="rgb(228,41,40)" fg:x="856188" fg:w="442"/><text x="35.9656%" y="447.50"></text></g><g><title>alloc_extent_map (2,822 samples, 0.12%)</title><rect x="35.6359%" y="469" width="0.1177%" height="15" fill="rgb(244,132,35)" fg:x="854277" fg:w="2822"/><text x="35.8859%" y="479.50"></text></g><g><title>kmem_cache_alloc (2,204 samples, 0.09%)</title><rect x="35.6617%" y="453" width="0.0919%" height="15" fill="rgb(253,189,4)" fg:x="854895" fg:w="2204"/><text x="35.9117%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (469 samples, 0.02%)</title><rect x="35.7341%" y="437" width="0.0196%" height="15" fill="rgb(224,37,19)" fg:x="856630" fg:w="469"/><text x="35.9841%" y="447.50"></text></g><g><title>free_extent_map (390 samples, 0.02%)</title><rect x="35.7538%" y="469" width="0.0163%" height="15" fill="rgb(235,223,18)" fg:x="857103" fg:w="390"/><text x="36.0038%" y="479.50"></text></g><g><title>kmem_cache_free (1,408 samples, 0.06%)</title><rect x="35.7701%" y="469" width="0.0587%" height="15" fill="rgb(235,163,25)" fg:x="857493" fg:w="1408"/><text x="36.0201%" y="479.50"></text></g><g><title>btrfs_drop_extent_cache (5,553 samples, 0.23%)</title><rect x="35.6014%" y="485" width="0.2316%" height="15" fill="rgb(217,145,28)" fg:x="853451" fg:w="5553"/><text x="35.8514%" y="495.50"></text></g><g><title>_raw_spin_lock (355 samples, 0.01%)</title><rect x="35.9455%" y="389" width="0.0148%" height="15" fill="rgb(223,223,32)" fg:x="861698" fg:w="355"/><text x="36.1955%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (321 samples, 0.01%)</title><rect x="35.9603%" y="389" width="0.0134%" height="15" fill="rgb(227,189,39)" fg:x="862053" fg:w="321"/><text x="36.2103%" y="399.50"></text></g><g><title>available_idle_cpu (258 samples, 0.01%)</title><rect x="36.0026%" y="373" width="0.0108%" height="15" fill="rgb(248,10,22)" fg:x="863068" fg:w="258"/><text x="36.2526%" y="383.50"></text></g><g><title>select_task_rq_fair (1,361 samples, 0.06%)</title><rect x="35.9758%" y="389" width="0.0568%" height="15" fill="rgb(248,46,39)" fg:x="862424" fg:w="1361"/><text x="36.2258%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (326 samples, 0.01%)</title><rect x="36.0189%" y="373" width="0.0136%" height="15" fill="rgb(248,113,48)" fg:x="863459" fg:w="326"/><text x="36.2689%" y="383.50"></text></g><g><title>enqueue_entity (1,395 samples, 0.06%)</title><rect x="36.0548%" y="357" width="0.0582%" height="15" fill="rgb(245,16,25)" fg:x="864319" fg:w="1395"/><text x="36.3048%" y="367.50"></text></g><g><title>update_load_avg (460 samples, 0.02%)</title><rect x="36.0938%" y="341" width="0.0192%" height="15" fill="rgb(249,152,16)" fg:x="865254" fg:w="460"/><text x="36.3438%" y="351.50"></text></g><g><title>enqueue_task_fair (1,724 samples, 0.07%)</title><rect x="36.0436%" y="373" width="0.0719%" height="15" fill="rgb(250,16,1)" fg:x="864051" fg:w="1724"/><text x="36.2936%" y="383.50"></text></g><g><title>ttwu_do_activate (3,715 samples, 0.15%)</title><rect x="36.0370%" y="389" width="0.1550%" height="15" fill="rgb(249,138,3)" fg:x="863893" fg:w="3715"/><text x="36.2870%" y="399.50"></text></g><g><title>psi_task_change (1,831 samples, 0.08%)</title><rect x="36.1156%" y="373" width="0.0764%" height="15" fill="rgb(227,71,41)" fg:x="865777" fg:w="1831"/><text x="36.3656%" y="383.50"></text></g><g><title>psi_group_change (1,611 samples, 0.07%)</title><rect x="36.1248%" y="357" width="0.0672%" height="15" fill="rgb(209,184,23)" fg:x="865997" fg:w="1611"/><text x="36.3748%" y="367.50"></text></g><g><title>record_times (255 samples, 0.01%)</title><rect x="36.1814%" y="341" width="0.0106%" height="15" fill="rgb(223,215,31)" fg:x="867353" fg:w="255"/><text x="36.4314%" y="351.50"></text></g><g><title>ttwu_do_wakeup (346 samples, 0.01%)</title><rect x="36.1920%" y="389" width="0.0144%" height="15" fill="rgb(210,146,28)" fg:x="867608" fg:w="346"/><text x="36.4420%" y="399.50"></text></g><g><title>check_preempt_curr (323 samples, 0.01%)</title><rect x="36.1930%" y="373" width="0.0135%" height="15" fill="rgb(209,183,41)" fg:x="867631" fg:w="323"/><text x="36.4430%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (419 samples, 0.02%)</title><rect x="36.2064%" y="389" width="0.0175%" height="15" fill="rgb(209,224,45)" fg:x="867954" fg:w="419"/><text x="36.4564%" y="399.50"></text></g><g><title>__wake_up_common (9,147 samples, 0.38%)</title><rect x="35.8538%" y="437" width="0.3816%" height="15" fill="rgb(224,209,51)" fg:x="859501" fg:w="9147"/><text x="36.1038%" y="447.50"></text></g><g><title>autoremove_wake_function (8,957 samples, 0.37%)</title><rect x="35.8617%" y="421" width="0.3736%" height="15" fill="rgb(223,17,39)" fg:x="859691" fg:w="8957"/><text x="36.1117%" y="431.50"></text></g><g><title>try_to_wake_up (8,749 samples, 0.36%)</title><rect x="35.8704%" y="405" width="0.3650%" height="15" fill="rgb(234,204,37)" fg:x="859899" fg:w="8749"/><text x="36.1204%" y="415.50"></text></g><g><title>update_rq_clock (275 samples, 0.01%)</title><rect x="36.2239%" y="389" width="0.0115%" height="15" fill="rgb(236,120,5)" fg:x="868373" fg:w="275"/><text x="36.4739%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (306 samples, 0.01%)</title><rect x="36.2354%" y="437" width="0.0128%" height="15" fill="rgb(248,97,27)" fg:x="868648" fg:w="306"/><text x="36.4854%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (240 samples, 0.01%)</title><rect x="36.2381%" y="421" width="0.0100%" height="15" fill="rgb(240,66,17)" fg:x="868714" fg:w="240"/><text x="36.4881%" y="431.50"></text></g><g><title>__wake_up_common_lock (9,600 samples, 0.40%)</title><rect x="35.8522%" y="453" width="0.4005%" height="15" fill="rgb(210,79,3)" fg:x="859462" fg:w="9600"/><text x="36.1022%" y="463.50"></text></g><g><title>btrfs_tree_unlock (765 samples, 0.03%)</title><rect x="36.2531%" y="453" width="0.0319%" height="15" fill="rgb(214,176,27)" fg:x="869073" fg:w="765"/><text x="36.5031%" y="463.50"></text></g><g><title>_raw_spin_lock (370 samples, 0.02%)</title><rect x="36.3264%" y="437" width="0.0154%" height="15" fill="rgb(235,185,3)" fg:x="870829" fg:w="370"/><text x="36.5764%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,341 samples, 0.06%)</title><rect x="36.2861%" y="453" width="0.0559%" height="15" fill="rgb(227,24,12)" fg:x="869863" fg:w="1341"/><text x="36.5361%" y="463.50"></text></g><g><title>btrfs_free_path (12,626 samples, 0.53%)</title><rect x="35.8331%" y="485" width="0.5267%" height="15" fill="rgb(252,169,48)" fg:x="859004" fg:w="12626"/><text x="36.0831%" y="495.50"></text></g><g><title>btrfs_release_path (12,586 samples, 0.53%)</title><rect x="35.8348%" y="469" width="0.5250%" height="15" fill="rgb(212,65,1)" fg:x="859044" fg:w="12586"/><text x="36.0848%" y="479.50"></text></g><g><title>release_extent_buffer (426 samples, 0.02%)</title><rect x="36.3420%" y="453" width="0.0178%" height="15" fill="rgb(242,39,24)" fg:x="871204" fg:w="426"/><text x="36.5920%" y="463.50"></text></g><g><title>btrfs_get_32 (274 samples, 0.01%)</title><rect x="36.3598%" y="485" width="0.0114%" height="15" fill="rgb(249,32,23)" fg:x="871630" fg:w="274"/><text x="36.6098%" y="495.50"></text></g><g><title>btrfs_get_8 (342 samples, 0.01%)</title><rect x="36.3802%" y="485" width="0.0143%" height="15" fill="rgb(251,195,23)" fg:x="872119" fg:w="342"/><text x="36.6302%" y="495.50"></text></g><g><title>_raw_spin_lock (386 samples, 0.02%)</title><rect x="36.4335%" y="437" width="0.0161%" height="15" fill="rgb(236,174,8)" fg:x="873397" fg:w="386"/><text x="36.6835%" y="447.50"></text></g><g><title>_cond_resched (263 samples, 0.01%)</title><rect x="36.5057%" y="389" width="0.0110%" height="15" fill="rgb(220,197,8)" fg:x="875128" fg:w="263"/><text x="36.7557%" y="399.50"></text></g><g><title>alloc_extent_state (1,629 samples, 0.07%)</title><rect x="36.4496%" y="437" width="0.0680%" height="15" fill="rgb(240,108,37)" fg:x="873783" fg:w="1629"/><text x="36.6996%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,351 samples, 0.06%)</title><rect x="36.4612%" y="421" width="0.0564%" height="15" fill="rgb(232,176,24)" fg:x="874061" fg:w="1351"/><text x="36.7112%" y="431.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (508 samples, 0.02%)</title><rect x="36.4963%" y="405" width="0.0212%" height="15" fill="rgb(243,35,29)" fg:x="874904" fg:w="508"/><text x="36.7463%" y="415.50"></text></g><g><title>free_extent_state (246 samples, 0.01%)</title><rect x="36.5176%" y="437" width="0.0103%" height="15" fill="rgb(210,37,18)" fg:x="875413" fg:w="246"/><text x="36.7676%" y="447.50"></text></g><g><title>__clear_extent_bit (3,411 samples, 0.14%)</title><rect x="36.4199%" y="453" width="0.1423%" height="15" fill="rgb(224,184,40)" fg:x="873072" fg:w="3411"/><text x="36.6699%" y="463.50"></text></g><g><title>kmem_cache_free (824 samples, 0.03%)</title><rect x="36.5278%" y="437" width="0.0344%" height="15" fill="rgb(236,39,29)" fg:x="875659" fg:w="824"/><text x="36.7778%" y="447.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (4,023 samples, 0.17%)</title><rect x="36.3944%" y="485" width="0.1678%" height="15" fill="rgb(232,48,39)" fg:x="872461" fg:w="4023"/><text x="36.6444%" y="495.50"></text></g><g><title>clear_extent_bit (3,466 samples, 0.14%)</title><rect x="36.4177%" y="469" width="0.1446%" height="15" fill="rgb(236,34,42)" fg:x="873018" fg:w="3466"/><text x="36.6677%" y="479.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (939 samples, 0.04%)</title><rect x="36.5623%" y="485" width="0.0392%" height="15" fill="rgb(243,106,37)" fg:x="876484" fg:w="939"/><text x="36.8123%" y="495.50"></text></g><g><title>find_contiguous_extent_bit (285 samples, 0.01%)</title><rect x="36.5895%" y="469" width="0.0119%" height="15" fill="rgb(218,96,6)" fg:x="877138" fg:w="285"/><text x="36.8395%" y="479.50"></text></g><g><title>__btrfs_kill_delayed_node (426 samples, 0.02%)</title><rect x="36.6092%" y="469" width="0.0178%" height="15" fill="rgb(235,130,12)" fg:x="877610" fg:w="426"/><text x="36.8592%" y="479.50"></text></g><g><title>mutex_lock (264 samples, 0.01%)</title><rect x="36.6160%" y="453" width="0.0110%" height="15" fill="rgb(231,95,0)" fg:x="877772" fg:w="264"/><text x="36.8660%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (462 samples, 0.02%)</title><rect x="36.6272%" y="469" width="0.0193%" height="15" fill="rgb(228,12,23)" fg:x="878040" fg:w="462"/><text x="36.8772%" y="479.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,246 samples, 0.05%)</title><rect x="36.6014%" y="485" width="0.0520%" height="15" fill="rgb(216,12,1)" fg:x="877423" fg:w="1246"/><text x="36.8514%" y="495.50"></text></g><g><title>_raw_read_lock (740 samples, 0.03%)</title><rect x="36.8114%" y="437" width="0.0309%" height="15" fill="rgb(219,59,3)" fg:x="882457" fg:w="740"/><text x="37.0614%" y="447.50"></text></g><g><title>finish_wait (5,022 samples, 0.21%)</title><rect x="36.8455%" y="437" width="0.2095%" height="15" fill="rgb(215,208,46)" fg:x="883274" fg:w="5022"/><text x="37.0955%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,789 samples, 0.20%)</title><rect x="36.8552%" y="421" width="0.1998%" height="15" fill="rgb(254,224,29)" fg:x="883507" fg:w="4789"/><text x="37.1052%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,597 samples, 0.19%)</title><rect x="36.8632%" y="405" width="0.1918%" height="15" fill="rgb(232,14,29)" fg:x="883699" fg:w="4597"/><text x="37.1132%" y="415.50"></text></g><g><title>__list_add_valid (292 samples, 0.01%)</title><rect x="37.0925%" y="421" width="0.0122%" height="15" fill="rgb(208,45,52)" fg:x="889196" fg:w="292"/><text x="37.3425%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (12,514 samples, 0.52%)</title><rect x="37.1047%" y="421" width="0.5220%" height="15" fill="rgb(234,191,28)" fg:x="889488" fg:w="12514"/><text x="37.3547%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,928 samples, 0.50%)</title><rect x="37.1292%" y="405" width="0.4976%" height="15" fill="rgb(244,67,43)" fg:x="890074" fg:w="11928"/><text x="37.3792%" y="415.50"></text></g><g><title>prepare_to_wait_event (13,920 samples, 0.58%)</title><rect x="37.0554%" y="437" width="0.5807%" height="15" fill="rgb(236,189,24)" fg:x="888305" fg:w="13920"/><text x="37.3054%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (12,764 samples, 0.53%)</title><rect x="37.6360%" y="437" width="0.5324%" height="15" fill="rgb(239,214,33)" fg:x="902225" fg:w="12764"/><text x="37.8860%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,333 samples, 0.39%)</title><rect x="37.7792%" y="421" width="0.3893%" height="15" fill="rgb(226,176,41)" fg:x="905656" fg:w="9333"/><text x="38.0292%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (391 samples, 0.02%)</title><rect x="38.1973%" y="405" width="0.0163%" height="15" fill="rgb(248,47,8)" fg:x="915679" fg:w="391"/><text x="38.4473%" y="415.50"></text></g><g><title>update_curr (737 samples, 0.03%)</title><rect x="38.2583%" y="373" width="0.0307%" height="15" fill="rgb(218,81,44)" fg:x="917142" fg:w="737"/><text x="38.5083%" y="383.50"></text></g><g><title>dequeue_entity (2,039 samples, 0.09%)</title><rect x="38.2307%" y="389" width="0.0851%" height="15" fill="rgb(213,98,6)" fg:x="916481" fg:w="2039"/><text x="38.4807%" y="399.50"></text></g><g><title>update_load_avg (641 samples, 0.03%)</title><rect x="38.2890%" y="373" width="0.0267%" height="15" fill="rgb(222,85,22)" fg:x="917879" fg:w="641"/><text x="38.5390%" y="383.50"></text></g><g><title>dequeue_task_fair (2,499 samples, 0.10%)</title><rect x="38.2180%" y="405" width="0.1042%" height="15" fill="rgb(239,46,39)" fg:x="916175" fg:w="2499"/><text x="38.4680%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (4,014 samples, 0.17%)</title><rect x="38.3388%" y="389" width="0.1674%" height="15" fill="rgb(237,12,29)" fg:x="919073" fg:w="4014"/><text x="38.5888%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,899 samples, 0.16%)</title><rect x="38.3436%" y="373" width="0.1626%" height="15" fill="rgb(214,77,8)" fg:x="919188" fg:w="3899"/><text x="38.5936%" y="383.50"></text></g><g><title>native_write_msr (3,860 samples, 0.16%)</title><rect x="38.3453%" y="357" width="0.1610%" height="15" fill="rgb(217,168,37)" fg:x="919227" fg:w="3860"/><text x="38.5953%" y="367.50"></text></g><g><title>finish_task_switch (4,602 samples, 0.19%)</title><rect x="38.3222%" y="405" width="0.1920%" height="15" fill="rgb(221,217,23)" fg:x="918674" fg:w="4602"/><text x="38.5722%" y="415.50"></text></g><g><title>pick_next_task_fair (419 samples, 0.02%)</title><rect x="38.5144%" y="405" width="0.0175%" height="15" fill="rgb(243,229,36)" fg:x="923282" fg:w="419"/><text x="38.7644%" y="415.50"></text></g><g><title>pick_next_task_idle (384 samples, 0.02%)</title><rect x="38.5319%" y="405" width="0.0160%" height="15" fill="rgb(251,163,40)" fg:x="923701" fg:w="384"/><text x="38.7819%" y="415.50"></text></g><g><title>__update_idle_core (319 samples, 0.01%)</title><rect x="38.5346%" y="389" width="0.0133%" height="15" fill="rgb(237,222,12)" fg:x="923766" fg:w="319"/><text x="38.7846%" y="399.50"></text></g><g><title>psi_task_change (1,768 samples, 0.07%)</title><rect x="38.5479%" y="405" width="0.0738%" height="15" fill="rgb(248,132,6)" fg:x="924085" fg:w="1768"/><text x="38.7979%" y="415.50"></text></g><g><title>psi_group_change (1,507 samples, 0.06%)</title><rect x="38.5588%" y="389" width="0.0629%" height="15" fill="rgb(227,167,50)" fg:x="924346" fg:w="1507"/><text x="38.8088%" y="399.50"></text></g><g><title>record_times (333 samples, 0.01%)</title><rect x="38.6078%" y="373" width="0.0139%" height="15" fill="rgb(242,84,37)" fg:x="925520" fg:w="333"/><text x="38.8578%" y="383.50"></text></g><g><title>psi_task_switch (242 samples, 0.01%)</title><rect x="38.6217%" y="405" width="0.0101%" height="15" fill="rgb(212,4,50)" fg:x="925853" fg:w="242"/><text x="38.8717%" y="415.50"></text></g><g><title>__schedule (11,410 samples, 0.48%)</title><rect x="38.1722%" y="421" width="0.4760%" height="15" fill="rgb(230,228,32)" fg:x="915078" fg:w="11410"/><text x="38.4222%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (44,951 samples, 1.88%)</title><rect x="36.7731%" y="453" width="1.8751%" height="15" fill="rgb(248,217,23)" fg:x="881538" fg:w="44951"/><text x="37.0231%" y="463.50">_..</text></g><g><title>schedule (11,500 samples, 0.48%)</title><rect x="38.1685%" y="437" width="0.4797%" height="15" fill="rgb(238,197,32)" fg:x="914989" fg:w="11500"/><text x="38.4185%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (46,371 samples, 1.93%)</title><rect x="36.7652%" y="469" width="1.9344%" height="15" fill="rgb(236,106,1)" fg:x="881348" fg:w="46371"/><text x="37.0152%" y="479.50">_..</text></g><g><title>btrfs_root_node (1,229 samples, 0.05%)</title><rect x="38.6482%" y="453" width="0.0513%" height="15" fill="rgb(219,228,13)" fg:x="926490" fg:w="1229"/><text x="38.8982%" y="463.50"></text></g><g><title>prepare_to_wait_event (319 samples, 0.01%)</title><rect x="38.7076%" y="453" width="0.0133%" height="15" fill="rgb(238,30,35)" fg:x="927913" fg:w="319"/><text x="38.9576%" y="463.50"></text></g><g><title>dequeue_entity (579 samples, 0.02%)</title><rect x="38.7386%" y="405" width="0.0242%" height="15" fill="rgb(236,70,23)" fg:x="928656" fg:w="579"/><text x="38.9886%" y="415.50"></text></g><g><title>dequeue_task_fair (704 samples, 0.03%)</title><rect x="38.7353%" y="421" width="0.0294%" height="15" fill="rgb(249,104,48)" fg:x="928578" fg:w="704"/><text x="38.9853%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (1,346 samples, 0.06%)</title><rect x="38.7698%" y="405" width="0.0561%" height="15" fill="rgb(254,117,50)" fg:x="929403" fg:w="1346"/><text x="39.0198%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,328 samples, 0.06%)</title><rect x="38.7705%" y="389" width="0.0554%" height="15" fill="rgb(223,152,4)" fg:x="929421" fg:w="1328"/><text x="39.0205%" y="399.50"></text></g><g><title>native_write_msr (1,316 samples, 0.05%)</title><rect x="38.7710%" y="373" width="0.0549%" height="15" fill="rgb(245,6,2)" fg:x="929433" fg:w="1316"/><text x="39.0210%" y="383.50"></text></g><g><title>finish_task_switch (1,521 samples, 0.06%)</title><rect x="38.7647%" y="421" width="0.0634%" height="15" fill="rgb(249,150,24)" fg:x="929282" fg:w="1521"/><text x="39.0147%" y="431.50"></text></g><g><title>psi_task_change (518 samples, 0.02%)</title><rect x="38.8388%" y="421" width="0.0216%" height="15" fill="rgb(228,185,42)" fg:x="931057" fg:w="518"/><text x="39.0888%" y="431.50"></text></g><g><title>psi_group_change (443 samples, 0.02%)</title><rect x="38.8419%" y="405" width="0.0185%" height="15" fill="rgb(226,39,33)" fg:x="931132" fg:w="443"/><text x="39.0919%" y="415.50"></text></g><g><title>__btrfs_tree_lock (4,039 samples, 0.17%)</title><rect x="38.6995%" y="469" width="0.1685%" height="15" fill="rgb(221,166,19)" fg:x="927719" fg:w="4039"/><text x="38.9495%" y="479.50"></text></g><g><title>schedule (3,526 samples, 0.15%)</title><rect x="38.7209%" y="453" width="0.1471%" height="15" fill="rgb(209,109,2)" fg:x="928232" fg:w="3526"/><text x="38.9709%" y="463.50"></text></g><g><title>__schedule (3,485 samples, 0.15%)</title><rect x="38.7226%" y="437" width="0.1454%" height="15" fill="rgb(252,216,26)" fg:x="928273" fg:w="3485"/><text x="38.9726%" y="447.50"></text></g><g><title>__btrfs_cow_block (383 samples, 0.02%)</title><rect x="38.8809%" y="453" width="0.0160%" height="15" fill="rgb(227,173,36)" fg:x="932067" fg:w="383"/><text x="39.1309%" y="463.50"></text></g><g><title>btrfs_cow_block (385 samples, 0.02%)</title><rect x="38.8809%" y="469" width="0.0161%" height="15" fill="rgb(209,90,7)" fg:x="932067" fg:w="385"/><text x="39.1309%" y="479.50"></text></g><g><title>_cond_resched (308 samples, 0.01%)</title><rect x="38.9533%" y="437" width="0.0128%" height="15" fill="rgb(250,194,11)" fg:x="933802" fg:w="308"/><text x="39.2033%" y="447.50"></text></g><g><title>_raw_write_lock (748 samples, 0.03%)</title><rect x="38.9690%" y="437" width="0.0312%" height="15" fill="rgb(220,72,50)" fg:x="934180" fg:w="748"/><text x="39.2190%" y="447.50"></text></g><g><title>finish_wait (4,587 samples, 0.19%)</title><rect x="39.0004%" y="437" width="0.1913%" height="15" fill="rgb(222,106,48)" fg:x="934932" fg:w="4587"/><text x="39.2504%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,322 samples, 0.18%)</title><rect x="39.0115%" y="421" width="0.1803%" height="15" fill="rgb(216,220,45)" fg:x="935197" fg:w="4322"/><text x="39.2615%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,048 samples, 0.17%)</title><rect x="39.0229%" y="405" width="0.1689%" height="15" fill="rgb(234,112,18)" fg:x="935471" fg:w="4048"/><text x="39.2729%" y="415.50"></text></g><g><title>__list_add_valid (349 samples, 0.01%)</title><rect x="39.2406%" y="421" width="0.0146%" height="15" fill="rgb(206,179,9)" fg:x="940689" fg:w="349"/><text x="39.4906%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (11,843 samples, 0.49%)</title><rect x="39.2551%" y="421" width="0.4940%" height="15" fill="rgb(215,115,40)" fg:x="941038" fg:w="11843"/><text x="39.5051%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,943 samples, 0.46%)</title><rect x="39.2927%" y="405" width="0.4565%" height="15" fill="rgb(222,69,34)" fg:x="941938" fg:w="10943"/><text x="39.5427%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (286 samples, 0.01%)</title><rect x="39.7491%" y="421" width="0.0119%" height="15" fill="rgb(209,161,10)" fg:x="952881" fg:w="286"/><text x="39.9991%" y="431.50"></text></g><g><title>prepare_to_wait_event (13,599 samples, 0.57%)</title><rect x="39.1938%" y="437" width="0.5673%" height="15" fill="rgb(217,6,38)" fg:x="939569" fg:w="13599"/><text x="39.4438%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (19,650 samples, 0.82%)</title><rect x="39.7611%" y="437" width="0.8197%" height="15" fill="rgb(229,229,48)" fg:x="953168" fg:w="19650"/><text x="40.0111%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,764 samples, 0.41%)</title><rect x="40.1735%" y="421" width="0.4073%" height="15" fill="rgb(225,21,28)" fg:x="963054" fg:w="9764"/><text x="40.4235%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (518 samples, 0.02%)</title><rect x="40.6219%" y="405" width="0.0216%" height="15" fill="rgb(206,33,13)" fg:x="973803" fg:w="518"/><text x="40.8719%" y="415.50"></text></g><g><title>update_cfs_group (307 samples, 0.01%)</title><rect x="40.6927%" y="373" width="0.0128%" height="15" fill="rgb(242,178,17)" fg:x="975500" fg:w="307"/><text x="40.9427%" y="383.50"></text></g><g><title>update_curr (986 samples, 0.04%)</title><rect x="40.7055%" y="373" width="0.0411%" height="15" fill="rgb(220,162,5)" fg:x="975807" fg:w="986"/><text x="40.9555%" y="383.50"></text></g><g><title>__update_load_avg_cfs_rq (267 samples, 0.01%)</title><rect x="40.7598%" y="357" width="0.0111%" height="15" fill="rgb(210,33,43)" fg:x="977108" fg:w="267"/><text x="41.0098%" y="367.50"></text></g><g><title>__update_load_avg_se (305 samples, 0.01%)</title><rect x="40.7709%" y="357" width="0.0127%" height="15" fill="rgb(216,116,54)" fg:x="977375" fg:w="305"/><text x="41.0209%" y="367.50"></text></g><g><title>dequeue_entity (2,848 samples, 0.12%)</title><rect x="40.6658%" y="389" width="0.1188%" height="15" fill="rgb(249,92,24)" fg:x="974856" fg:w="2848"/><text x="40.9158%" y="399.50"></text></g><g><title>update_load_avg (911 samples, 0.04%)</title><rect x="40.7466%" y="373" width="0.0380%" height="15" fill="rgb(231,189,14)" fg:x="976793" fg:w="911"/><text x="40.9966%" y="383.50"></text></g><g><title>dequeue_task_fair (3,399 samples, 0.14%)</title><rect x="40.6519%" y="405" width="0.1418%" height="15" fill="rgb(230,8,41)" fg:x="974522" fg:w="3399"/><text x="40.9019%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (5,143 samples, 0.21%)</title><rect x="40.8212%" y="389" width="0.2145%" height="15" fill="rgb(249,7,27)" fg:x="978580" fg:w="5143"/><text x="41.0712%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,017 samples, 0.21%)</title><rect x="40.8264%" y="373" width="0.2093%" height="15" fill="rgb(232,86,5)" fg:x="978706" fg:w="5017"/><text x="41.0764%" y="383.50"></text></g><g><title>native_write_msr (4,951 samples, 0.21%)</title><rect x="40.8292%" y="357" width="0.2065%" height="15" fill="rgb(224,175,18)" fg:x="978772" fg:w="4951"/><text x="41.0792%" y="367.50"></text></g><g><title>finish_task_switch (6,040 samples, 0.25%)</title><rect x="40.7937%" y="405" width="0.2520%" height="15" fill="rgb(220,129,12)" fg:x="977921" fg:w="6040"/><text x="41.0437%" y="415.50"></text></g><g><title>newidle_balance (306 samples, 0.01%)</title><rect x="41.0533%" y="389" width="0.0128%" height="15" fill="rgb(210,19,36)" fg:x="984145" fg:w="306"/><text x="41.3033%" y="399.50"></text></g><g><title>pick_next_task_fair (632 samples, 0.03%)</title><rect x="41.0460%" y="405" width="0.0264%" height="15" fill="rgb(219,96,14)" fg:x="983969" fg:w="632"/><text x="41.2960%" y="415.50"></text></g><g><title>__update_idle_core (523 samples, 0.02%)</title><rect x="41.0760%" y="389" width="0.0218%" height="15" fill="rgb(249,106,1)" fg:x="984688" fg:w="523"/><text x="41.3260%" y="399.50"></text></g><g><title>pick_next_task_idle (612 samples, 0.03%)</title><rect x="41.0723%" y="405" width="0.0255%" height="15" fill="rgb(249,155,20)" fg:x="984601" fg:w="612"/><text x="41.3223%" y="415.50"></text></g><g><title>psi_task_change (2,599 samples, 0.11%)</title><rect x="41.0979%" y="405" width="0.1084%" height="15" fill="rgb(244,168,9)" fg:x="985213" fg:w="2599"/><text x="41.3479%" y="415.50"></text></g><g><title>psi_group_change (2,252 samples, 0.09%)</title><rect x="41.1123%" y="389" width="0.0939%" height="15" fill="rgb(216,23,50)" fg:x="985560" fg:w="2252"/><text x="41.3623%" y="399.50"></text></g><g><title>record_times (567 samples, 0.02%)</title><rect x="41.1826%" y="373" width="0.0237%" height="15" fill="rgb(224,219,20)" fg:x="987245" fg:w="567"/><text x="41.4326%" y="383.50"></text></g><g><title>sched_clock_cpu (367 samples, 0.02%)</title><rect x="41.1910%" y="357" width="0.0153%" height="15" fill="rgb(222,156,15)" fg:x="987445" fg:w="367"/><text x="41.4410%" y="367.50"></text></g><g><title>sched_clock (329 samples, 0.01%)</title><rect x="41.1925%" y="341" width="0.0137%" height="15" fill="rgb(231,97,17)" fg:x="987483" fg:w="329"/><text x="41.4425%" y="351.50"></text></g><g><title>native_sched_clock (313 samples, 0.01%)</title><rect x="41.1932%" y="325" width="0.0131%" height="15" fill="rgb(218,70,48)" fg:x="987499" fg:w="313"/><text x="41.4432%" y="335.50"></text></g><g><title>psi_task_switch (258 samples, 0.01%)</title><rect x="41.2063%" y="405" width="0.0108%" height="15" fill="rgb(212,196,52)" fg:x="987812" fg:w="258"/><text x="41.4563%" y="415.50"></text></g><g><title>__schedule (15,535 samples, 0.65%)</title><rect x="40.5892%" y="421" width="0.6480%" height="15" fill="rgb(243,203,18)" fg:x="973019" fg:w="15535"/><text x="40.8392%" y="431.50"></text></g><g><title>update_rq_clock (263 samples, 0.01%)</title><rect x="41.2263%" y="405" width="0.0110%" height="15" fill="rgb(252,125,41)" fg:x="988291" fg:w="263"/><text x="41.4763%" y="415.50"></text></g><g><title>__btrfs_tree_lock (56,044 samples, 2.34%)</title><rect x="38.8994%" y="453" width="2.3379%" height="15" fill="rgb(223,180,33)" fg:x="932511" fg:w="56044"/><text x="39.1494%" y="463.50">_..</text></g><g><title>schedule (15,737 samples, 0.66%)</title><rect x="40.5808%" y="437" width="0.6565%" height="15" fill="rgb(254,159,46)" fg:x="972818" fg:w="15737"/><text x="40.8308%" y="447.50"></text></g><g><title>btrfs_lock_root_node (56,694 samples, 2.36%)</title><rect x="38.8969%" y="469" width="2.3650%" height="15" fill="rgb(254,38,10)" fg:x="932452" fg:w="56694"/><text x="39.1469%" y="479.50">bt..</text></g><g><title>btrfs_root_node (591 samples, 0.02%)</title><rect x="41.2373%" y="453" width="0.0247%" height="15" fill="rgb(208,217,32)" fg:x="988555" fg:w="591"/><text x="41.4873%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (1,243 samples, 0.05%)</title><rect x="41.2619%" y="469" width="0.0519%" height="15" fill="rgb(221,120,13)" fg:x="989146" fg:w="1243"/><text x="41.5119%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (480 samples, 0.02%)</title><rect x="41.2937%" y="453" width="0.0200%" height="15" fill="rgb(246,54,52)" fg:x="989909" fg:w="480"/><text x="41.5437%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (571 samples, 0.02%)</title><rect x="41.3138%" y="469" width="0.0238%" height="15" fill="rgb(242,34,25)" fg:x="990390" fg:w="571"/><text x="41.5638%" y="479.50"></text></g><g><title>_raw_write_lock (335 samples, 0.01%)</title><rect x="41.3423%" y="453" width="0.0140%" height="15" fill="rgb(247,209,9)" fg:x="991073" fg:w="335"/><text x="41.5923%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (3,094 samples, 0.13%)</title><rect x="41.3376%" y="469" width="0.1291%" height="15" fill="rgb(228,71,26)" fg:x="990961" fg:w="3094"/><text x="41.5876%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (2,646 samples, 0.11%)</title><rect x="41.3563%" y="453" width="0.1104%" height="15" fill="rgb(222,145,49)" fg:x="991409" fg:w="2646"/><text x="41.6063%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (660 samples, 0.03%)</title><rect x="41.4673%" y="469" width="0.0275%" height="15" fill="rgb(218,121,17)" fg:x="994070" fg:w="660"/><text x="41.7173%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (4,732 samples, 0.20%)</title><rect x="41.4949%" y="469" width="0.1974%" height="15" fill="rgb(244,50,7)" fg:x="994730" fg:w="4732"/><text x="41.7449%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (629 samples, 0.03%)</title><rect x="41.7216%" y="453" width="0.0262%" height="15" fill="rgb(246,229,37)" fg:x="1000165" fg:w="629"/><text x="41.9716%" y="463.50"></text></g><g><title>verify_parent_transid (492 samples, 0.02%)</title><rect x="41.7273%" y="437" width="0.0205%" height="15" fill="rgb(225,18,5)" fg:x="1000302" fg:w="492"/><text x="41.9773%" y="447.50"></text></g><g><title>btrfs_get_64 (874 samples, 0.04%)</title><rect x="41.7478%" y="453" width="0.0365%" height="15" fill="rgb(213,204,8)" fg:x="1000794" fg:w="874"/><text x="41.9978%" y="463.50"></text></g><g><title>btrfs_verify_level_key (268 samples, 0.01%)</title><rect x="41.7882%" y="453" width="0.0112%" height="15" fill="rgb(238,103,6)" fg:x="1001762" fg:w="268"/><text x="42.0382%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,529 samples, 0.11%)</title><rect x="41.8454%" y="437" width="0.1055%" height="15" fill="rgb(222,25,35)" fg:x="1003133" fg:w="2529"/><text x="42.0954%" y="447.50"></text></g><g><title>mark_page_accessed (943 samples, 0.04%)</title><rect x="41.9623%" y="421" width="0.0393%" height="15" fill="rgb(213,203,35)" fg:x="1005935" fg:w="943"/><text x="42.2123%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,217 samples, 0.05%)</title><rect x="41.9510%" y="437" width="0.0508%" height="15" fill="rgb(221,79,53)" fg:x="1005666" fg:w="1217"/><text x="42.2010%" y="447.50"></text></g><g><title>find_extent_buffer (4,896 samples, 0.20%)</title><rect x="41.7994%" y="453" width="0.2042%" height="15" fill="rgb(243,200,35)" fg:x="1002030" fg:w="4896"/><text x="42.0494%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (8,314 samples, 0.35%)</title><rect x="41.6922%" y="469" width="0.3468%" height="15" fill="rgb(248,60,25)" fg:x="999462" fg:w="8314"/><text x="41.9422%" y="479.50"></text></g><g><title>read_extent_buffer (850 samples, 0.04%)</title><rect x="42.0036%" y="453" width="0.0355%" height="15" fill="rgb(227,53,46)" fg:x="1006926" fg:w="850"/><text x="42.2536%" y="463.50"></text></g><g><title>btrfs_get_64 (271 samples, 0.01%)</title><rect x="42.0521%" y="453" width="0.0113%" height="15" fill="rgb(216,120,32)" fg:x="1008089" fg:w="271"/><text x="42.3021%" y="463.50"></text></g><g><title>__radix_tree_lookup (765 samples, 0.03%)</title><rect x="42.0859%" y="437" width="0.0319%" height="15" fill="rgb(220,134,1)" fg:x="1008899" fg:w="765"/><text x="42.3359%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (425 samples, 0.02%)</title><rect x="42.1180%" y="437" width="0.0177%" height="15" fill="rgb(237,168,5)" fg:x="1009669" fg:w="425"/><text x="42.3680%" y="447.50"></text></g><g><title>mark_page_accessed (316 samples, 0.01%)</title><rect x="42.1226%" y="421" width="0.0132%" height="15" fill="rgb(231,100,33)" fg:x="1009778" fg:w="316"/><text x="42.3726%" y="431.50"></text></g><g><title>find_extent_buffer (1,747 samples, 0.07%)</title><rect x="42.0634%" y="453" width="0.0729%" height="15" fill="rgb(236,177,47)" fg:x="1008360" fg:w="1747"/><text x="42.3134%" y="463.50"></text></g><g><title>reada_for_balance (2,486 samples, 0.10%)</title><rect x="42.0391%" y="469" width="0.1037%" height="15" fill="rgb(235,7,49)" fg:x="1007776" fg:w="2486"/><text x="42.2891%" y="479.50"></text></g><g><title>__list_del_entry_valid (410 samples, 0.02%)</title><rect x="42.2028%" y="405" width="0.0171%" height="15" fill="rgb(232,119,22)" fg:x="1011700" fg:w="410"/><text x="42.4528%" y="415.50"></text></g><g><title>_raw_spin_lock (569 samples, 0.02%)</title><rect x="42.4140%" y="389" width="0.0237%" height="15" fill="rgb(254,73,53)" fg:x="1016764" fg:w="569"/><text x="42.6640%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (322 samples, 0.01%)</title><rect x="42.4243%" y="373" width="0.0134%" height="15" fill="rgb(251,35,20)" fg:x="1017011" fg:w="322"/><text x="42.6743%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (640 samples, 0.03%)</title><rect x="42.4377%" y="389" width="0.0267%" height="15" fill="rgb(241,119,20)" fg:x="1017333" fg:w="640"/><text x="42.6877%" y="399.50"></text></g><g><title>available_idle_cpu (593 samples, 0.02%)</title><rect x="42.5199%" y="373" width="0.0247%" height="15" fill="rgb(207,102,14)" fg:x="1019302" fg:w="593"/><text x="42.7699%" y="383.50"></text></g><g><title>select_task_rq_fair (2,873 samples, 0.12%)</title><rect x="42.4687%" y="389" width="0.1198%" height="15" fill="rgb(248,201,50)" fg:x="1018075" fg:w="2873"/><text x="42.7187%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (671 samples, 0.03%)</title><rect x="42.5605%" y="373" width="0.0280%" height="15" fill="rgb(222,185,44)" fg:x="1020277" fg:w="671"/><text x="42.8105%" y="383.50"></text></g><g><title>set_task_cpu (258 samples, 0.01%)</title><rect x="42.5885%" y="389" width="0.0108%" height="15" fill="rgb(218,107,18)" fg:x="1020948" fg:w="258"/><text x="42.8385%" y="399.50"></text></g><g><title>update_curr (314 samples, 0.01%)</title><rect x="42.6886%" y="341" width="0.0131%" height="15" fill="rgb(237,177,39)" fg:x="1023347" fg:w="314"/><text x="42.9386%" y="351.50"></text></g><g><title>enqueue_entity (2,655 samples, 0.11%)</title><rect x="42.6302%" y="357" width="0.1108%" height="15" fill="rgb(246,69,6)" fg:x="1021946" fg:w="2655"/><text x="42.8802%" y="367.50"></text></g><g><title>update_load_avg (940 samples, 0.04%)</title><rect x="42.7017%" y="341" width="0.0392%" height="15" fill="rgb(234,208,37)" fg:x="1023661" fg:w="940"/><text x="42.9517%" y="351.50"></text></g><g><title>enqueue_task_fair (3,349 samples, 0.14%)</title><rect x="42.6092%" y="373" width="0.1397%" height="15" fill="rgb(225,4,6)" fg:x="1021444" fg:w="3349"/><text x="42.8592%" y="383.50"></text></g><g><title>ttwu_do_activate (6,933 samples, 0.29%)</title><rect x="42.5993%" y="389" width="0.2892%" height="15" fill="rgb(233,45,0)" fg:x="1021206" fg:w="6933"/><text x="42.8493%" y="399.50"></text></g><g><title>psi_task_change (3,344 samples, 0.14%)</title><rect x="42.7490%" y="373" width="0.1395%" height="15" fill="rgb(226,136,5)" fg:x="1024795" fg:w="3344"/><text x="42.9990%" y="383.50"></text></g><g><title>psi_group_change (2,999 samples, 0.13%)</title><rect x="42.7634%" y="357" width="0.1251%" height="15" fill="rgb(211,91,47)" fg:x="1025140" fg:w="2999"/><text x="43.0134%" y="367.50"></text></g><g><title>record_times (479 samples, 0.02%)</title><rect x="42.8685%" y="341" width="0.0200%" height="15" fill="rgb(242,88,51)" fg:x="1027660" fg:w="479"/><text x="43.1185%" y="351.50"></text></g><g><title>sched_clock_cpu (297 samples, 0.01%)</title><rect x="42.8761%" y="325" width="0.0124%" height="15" fill="rgb(230,91,28)" fg:x="1027842" fg:w="297"/><text x="43.1261%" y="335.50"></text></g><g><title>sched_clock (260 samples, 0.01%)</title><rect x="42.8777%" y="309" width="0.0108%" height="15" fill="rgb(254,186,29)" fg:x="1027879" fg:w="260"/><text x="43.1277%" y="319.50"></text></g><g><title>resched_curr (261 samples, 0.01%)</title><rect x="42.9043%" y="357" width="0.0109%" height="15" fill="rgb(238,6,4)" fg:x="1028517" fg:w="261"/><text x="43.1543%" y="367.50"></text></g><g><title>ttwu_do_wakeup (642 samples, 0.03%)</title><rect x="42.8885%" y="389" width="0.0268%" height="15" fill="rgb(221,151,16)" fg:x="1028139" fg:w="642"/><text x="43.1385%" y="399.50"></text></g><g><title>check_preempt_curr (571 samples, 0.02%)</title><rect x="42.8915%" y="373" width="0.0238%" height="15" fill="rgb(251,143,52)" fg:x="1028210" fg:w="571"/><text x="43.1415%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (531 samples, 0.02%)</title><rect x="42.9153%" y="389" width="0.0222%" height="15" fill="rgb(206,90,15)" fg:x="1028781" fg:w="531"/><text x="43.1653%" y="399.50"></text></g><g><title>__wake_up_common (18,584 samples, 0.78%)</title><rect x="42.1859%" y="437" width="0.7752%" height="15" fill="rgb(218,35,8)" fg:x="1011295" fg:w="18584"/><text x="42.4359%" y="447.50"></text></g><g><title>autoremove_wake_function (18,221 samples, 0.76%)</title><rect x="42.2010%" y="421" width="0.7601%" height="15" fill="rgb(239,215,6)" fg:x="1011658" fg:w="18221"/><text x="42.4510%" y="431.50"></text></g><g><title>try_to_wake_up (17,756 samples, 0.74%)</title><rect x="42.2204%" y="405" width="0.7407%" height="15" fill="rgb(245,116,39)" fg:x="1012123" fg:w="17756"/><text x="42.4704%" y="415.50"></text></g><g><title>update_rq_clock (567 samples, 0.02%)</title><rect x="42.9374%" y="389" width="0.0237%" height="15" fill="rgb(242,65,28)" fg:x="1029312" fg:w="567"/><text x="43.1874%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (2,619 samples, 0.11%)</title><rect x="42.9611%" y="437" width="0.1093%" height="15" fill="rgb(252,132,53)" fg:x="1029879" fg:w="2619"/><text x="43.2111%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,439 samples, 0.10%)</title><rect x="42.9686%" y="421" width="0.1017%" height="15" fill="rgb(224,159,50)" fg:x="1030059" fg:w="2439"/><text x="43.2186%" y="431.50"></text></g><g><title>__wake_up_common_lock (21,446 samples, 0.89%)</title><rect x="42.1839%" y="453" width="0.8946%" height="15" fill="rgb(224,93,4)" fg:x="1011248" fg:w="21446"/><text x="42.4339%" y="463.50"></text></g><g><title>btrfs_search_slot (154,434 samples, 6.44%)</title><rect x="36.6590%" y="485" width="6.4422%" height="15" fill="rgb(208,81,34)" fg:x="878803" fg:w="154434"/><text x="36.9090%" y="495.50">btrfs_se..</text></g><g><title>unlock_up (22,910 samples, 0.96%)</title><rect x="42.1455%" y="469" width="0.9557%" height="15" fill="rgb(233,92,54)" fg:x="1010327" fg:w="22910"/><text x="42.3955%" y="479.50"></text></g><g><title>btrfs_tree_unlock (535 samples, 0.02%)</title><rect x="43.0788%" y="453" width="0.0223%" height="15" fill="rgb(237,21,14)" fg:x="1032702" fg:w="535"/><text x="43.3288%" y="463.50"></text></g><g><title>_raw_spin_lock (391 samples, 0.02%)</title><rect x="43.1112%" y="469" width="0.0163%" height="15" fill="rgb(249,128,51)" fg:x="1033477" fg:w="391"/><text x="43.3612%" y="479.50"></text></g><g><title>inode_sub_bytes (635 samples, 0.03%)</title><rect x="43.1012%" y="485" width="0.0265%" height="15" fill="rgb(223,129,24)" fg:x="1033237" fg:w="635"/><text x="43.3512%" y="495.50"></text></g><g><title>kmem_cache_alloc (784 samples, 0.03%)</title><rect x="43.1277%" y="485" width="0.0327%" height="15" fill="rgb(231,168,25)" fg:x="1033872" fg:w="784"/><text x="43.3777%" y="495.50"></text></g><g><title>kmem_cache_free (697 samples, 0.03%)</title><rect x="43.1604%" y="485" width="0.0291%" height="15" fill="rgb(224,39,20)" fg:x="1034656" fg:w="697"/><text x="43.4104%" y="495.50"></text></g><g><title>_raw_spin_lock (267 samples, 0.01%)</title><rect x="43.2406%" y="453" width="0.0111%" height="15" fill="rgb(225,152,53)" fg:x="1036579" fg:w="267"/><text x="43.4906%" y="463.50"></text></g><g><title>alloc_extent_state (1,650 samples, 0.07%)</title><rect x="43.2517%" y="453" width="0.0688%" height="15" fill="rgb(252,17,24)" fg:x="1036846" fg:w="1650"/><text x="43.5017%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,124 samples, 0.05%)</title><rect x="43.2737%" y="437" width="0.0469%" height="15" fill="rgb(250,114,30)" fg:x="1037372" fg:w="1124"/><text x="43.5237%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (247 samples, 0.01%)</title><rect x="43.3102%" y="421" width="0.0103%" height="15" fill="rgb(229,5,4)" fg:x="1038249" fg:w="247"/><text x="43.5602%" y="431.50"></text></g><g><title>cache_state_if_flags (390 samples, 0.02%)</title><rect x="43.3209%" y="453" width="0.0163%" height="15" fill="rgb(225,176,49)" fg:x="1038505" fg:w="390"/><text x="43.5709%" y="463.50"></text></g><g><title>btrfs_set_delalloc_extent (468 samples, 0.02%)</title><rect x="43.3841%" y="421" width="0.0195%" height="15" fill="rgb(224,221,49)" fg:x="1040020" fg:w="468"/><text x="43.6341%" y="431.50"></text></g><g><title>__set_extent_bit (4,805 samples, 0.20%)</title><rect x="43.2032%" y="469" width="0.2004%" height="15" fill="rgb(253,169,27)" fg:x="1035684" fg:w="4805"/><text x="43.4532%" y="479.50"></text></g><g><title>insert_state (1,594 samples, 0.07%)</title><rect x="43.3372%" y="453" width="0.0665%" height="15" fill="rgb(211,206,16)" fg:x="1038895" fg:w="1594"/><text x="43.5872%" y="463.50"></text></g><g><title>set_state_bits (1,008 samples, 0.04%)</title><rect x="43.3616%" y="437" width="0.0420%" height="15" fill="rgb(244,87,35)" fg:x="1039481" fg:w="1008"/><text x="43.6116%" y="447.50"></text></g><g><title>lock_extent_bits (5,138 samples, 0.21%)</title><rect x="43.1894%" y="485" width="0.2143%" height="15" fill="rgb(246,28,10)" fg:x="1035353" fg:w="5138"/><text x="43.4394%" y="495.50"></text></g><g><title>btrfs_truncate_inode_items (233,048 samples, 9.72%)</title><rect x="33.7137%" y="501" width="9.7215%" height="15" fill="rgb(229,12,44)" fg:x="808197" fg:w="233048"/><text x="33.9637%" y="511.50">btrfs_truncate..</text></g><g><title>read_extent_buffer (754 samples, 0.03%)</title><rect x="43.4038%" y="485" width="0.0315%" height="15" fill="rgb(210,145,37)" fg:x="1040491" fg:w="754"/><text x="43.6538%" y="495.50"></text></g><g><title>clear_extent_bit (334 samples, 0.01%)</title><rect x="43.4352%" y="501" width="0.0139%" height="15" fill="rgb(227,112,52)" fg:x="1041245" fg:w="334"/><text x="43.6852%" y="511.50"></text></g><g><title>__clear_extent_bit (327 samples, 0.01%)</title><rect x="43.4355%" y="485" width="0.0136%" height="15" fill="rgb(238,155,34)" fg:x="1041252" fg:w="327"/><text x="43.6855%" y="495.50"></text></g><g><title>_raw_spin_lock (1,223 samples, 0.05%)</title><rect x="43.4749%" y="469" width="0.0510%" height="15" fill="rgb(239,226,36)" fg:x="1042196" fg:w="1223"/><text x="43.7249%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (1,412 samples, 0.06%)</title><rect x="43.4671%" y="485" width="0.0589%" height="15" fill="rgb(230,16,23)" fg:x="1042009" fg:w="1412"/><text x="43.7171%" y="495.50"></text></g><g><title>_raw_spin_lock (439 samples, 0.02%)</title><rect x="43.5465%" y="469" width="0.0183%" height="15" fill="rgb(236,171,36)" fg:x="1043914" fg:w="439"/><text x="43.7965%" y="479.50"></text></g><g><title>_raw_spin_lock (379 samples, 0.02%)</title><rect x="43.5794%" y="453" width="0.0158%" height="15" fill="rgb(221,22,14)" fg:x="1044702" fg:w="379"/><text x="43.8294%" y="463.50"></text></g><g><title>btrfs_block_rsv_add_bytes (731 samples, 0.03%)</title><rect x="43.5649%" y="469" width="0.0305%" height="15" fill="rgb(242,43,11)" fg:x="1044353" fg:w="731"/><text x="43.8149%" y="479.50"></text></g><g><title>_raw_spin_lock (1,206 samples, 0.05%)</title><rect x="43.6619%" y="437" width="0.0503%" height="15" fill="rgb(232,69,23)" fg:x="1046679" fg:w="1206"/><text x="43.9119%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (593 samples, 0.02%)</title><rect x="43.6875%" y="421" width="0.0247%" height="15" fill="rgb(216,180,54)" fg:x="1047292" fg:w="593"/><text x="43.9375%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (319 samples, 0.01%)</title><rect x="43.7904%" y="421" width="0.0133%" height="15" fill="rgb(216,5,24)" fg:x="1049759" fg:w="319"/><text x="44.0404%" y="431.50"></text></g><g><title>_raw_spin_lock (663 samples, 0.03%)</title><rect x="43.8469%" y="405" width="0.0277%" height="15" fill="rgb(225,89,9)" fg:x="1051113" fg:w="663"/><text x="44.0969%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (3,884 samples, 0.16%)</title><rect x="43.7127%" y="437" width="0.1620%" height="15" fill="rgb(243,75,33)" fg:x="1047898" fg:w="3884"/><text x="43.9627%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,704 samples, 0.07%)</title><rect x="43.8037%" y="421" width="0.0711%" height="15" fill="rgb(247,141,45)" fg:x="1050078" fg:w="1704"/><text x="44.0537%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (726 samples, 0.03%)</title><rect x="43.9153%" y="421" width="0.0303%" height="15" fill="rgb(232,177,36)" fg:x="1052753" fg:w="726"/><text x="44.1653%" y="431.50"></text></g><g><title>_raw_spin_lock (781 samples, 0.03%)</title><rect x="43.9734%" y="405" width="0.0326%" height="15" fill="rgb(219,125,36)" fg:x="1054147" fg:w="781"/><text x="44.2234%" y="415.50"></text></g><g><title>__reserve_bytes (9,510 samples, 0.40%)</title><rect x="43.6094%" y="453" width="0.3967%" height="15" fill="rgb(227,94,9)" fg:x="1045420" fg:w="9510"/><text x="43.8594%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (3,148 samples, 0.13%)</title><rect x="43.8748%" y="437" width="0.1313%" height="15" fill="rgb(240,34,52)" fg:x="1051782" fg:w="3148"/><text x="44.1248%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,451 samples, 0.06%)</title><rect x="43.9456%" y="421" width="0.0605%" height="15" fill="rgb(216,45,12)" fg:x="1053479" fg:w="1451"/><text x="44.1956%" y="431.50"></text></g><g><title>btrfs_block_rsv_refill (11,511 samples, 0.48%)</title><rect x="43.5260%" y="485" width="0.4802%" height="15" fill="rgb(246,21,19)" fg:x="1043421" fg:w="11511"/><text x="43.7760%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (9,848 samples, 0.41%)</title><rect x="43.5954%" y="469" width="0.4108%" height="15" fill="rgb(213,98,42)" fg:x="1045084" fg:w="9848"/><text x="43.8454%" y="479.50"></text></g><g><title>_raw_spin_lock (1,118 samples, 0.05%)</title><rect x="44.1347%" y="453" width="0.0466%" height="15" fill="rgb(250,136,47)" fg:x="1058013" fg:w="1118"/><text x="44.3847%" y="463.50"></text></g><g><title>join_transaction (2,211 samples, 0.09%)</title><rect x="44.0894%" y="469" width="0.0922%" height="15" fill="rgb(251,124,27)" fg:x="1056928" fg:w="2211"/><text x="44.3394%" y="479.50"></text></g><g><title>memset_erms (383 samples, 0.02%)</title><rect x="44.2237%" y="453" width="0.0160%" height="15" fill="rgb(229,180,14)" fg:x="1060146" fg:w="383"/><text x="44.4737%" y="463.50"></text></g><g><title>evict_refill_and_join (19,410 samples, 0.81%)</title><rect x="43.4491%" y="501" width="0.8097%" height="15" fill="rgb(245,216,25)" fg:x="1041579" fg:w="19410"/><text x="43.6991%" y="511.50"></text></g><g><title>start_transaction (5,849 samples, 0.24%)</title><rect x="44.0148%" y="485" width="0.2440%" height="15" fill="rgb(251,43,5)" fg:x="1055140" fg:w="5849"/><text x="44.2648%" y="495.50"></text></g><g><title>kmem_cache_alloc (1,850 samples, 0.08%)</title><rect x="44.1817%" y="469" width="0.0772%" height="15" fill="rgb(250,128,24)" fg:x="1059139" fg:w="1850"/><text x="44.4317%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (460 samples, 0.02%)</title><rect x="44.2396%" y="453" width="0.0192%" height="15" fill="rgb(217,117,27)" fg:x="1060529" fg:w="460"/><text x="44.4896%" y="463.50"></text></g><g><title>kfree (1,440 samples, 0.06%)</title><rect x="44.2625%" y="501" width="0.0601%" height="15" fill="rgb(245,147,4)" fg:x="1061076" fg:w="1440"/><text x="44.5125%" y="511.50"></text></g><g><title>__slab_free (540 samples, 0.02%)</title><rect x="44.3676%" y="485" width="0.0225%" height="15" fill="rgb(242,201,35)" fg:x="1063597" fg:w="540"/><text x="44.6176%" y="495.50"></text></g><g><title>kmem_cache_free (2,119 samples, 0.09%)</title><rect x="44.3225%" y="501" width="0.0884%" height="15" fill="rgb(218,181,1)" fg:x="1062516" fg:w="2119"/><text x="44.5725%" y="511.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (363 samples, 0.02%)</title><rect x="44.3958%" y="485" width="0.0151%" height="15" fill="rgb(222,6,29)" fg:x="1064272" fg:w="363"/><text x="44.6458%" y="495.50"></text></g><g><title>lock_extent_bits (264 samples, 0.01%)</title><rect x="44.4109%" y="501" width="0.0110%" height="15" fill="rgb(208,186,3)" fg:x="1064635" fg:w="264"/><text x="44.6609%" y="511.50"></text></g><g><title>__set_extent_bit (257 samples, 0.01%)</title><rect x="44.4112%" y="485" width="0.0107%" height="15" fill="rgb(216,36,26)" fg:x="1064642" fg:w="257"/><text x="44.6612%" y="495.50"></text></g><g><title>truncate_inode_pages_final (687 samples, 0.03%)</title><rect x="44.4265%" y="501" width="0.0287%" height="15" fill="rgb(248,201,23)" fg:x="1065009" fg:w="687"/><text x="44.6765%" y="511.50"></text></g><g><title>__pagevec_release (904 samples, 0.04%)</title><rect x="44.4664%" y="485" width="0.0377%" height="15" fill="rgb(251,170,31)" fg:x="1065964" fg:w="904"/><text x="44.7164%" y="495.50"></text></g><g><title>release_pages (605 samples, 0.03%)</title><rect x="44.4788%" y="469" width="0.0252%" height="15" fill="rgb(207,110,25)" fg:x="1066263" fg:w="605"/><text x="44.7288%" y="479.50"></text></g><g><title>delete_from_page_cache_batch (363 samples, 0.02%)</title><rect x="44.5046%" y="485" width="0.0151%" height="15" fill="rgb(250,54,15)" fg:x="1066880" fg:w="363"/><text x="44.7546%" y="495.50"></text></g><g><title>btrfs_evict_inode (666,214 samples, 27.79%)</title><rect x="16.7476%" y="517" width="27.7909%" height="15" fill="rgb(227,68,33)" fg:x="401480" fg:w="666214"/><text x="16.9976%" y="527.50">btrfs_evict_inode</text></g><g><title>truncate_inode_pages_range (1,998 samples, 0.08%)</title><rect x="44.4552%" y="501" width="0.0833%" height="15" fill="rgb(238,34,41)" fg:x="1065696" fg:w="1998"/><text x="44.7052%" y="511.50"></text></g><g><title>_raw_spin_lock_irq (400 samples, 0.02%)</title><rect x="44.5442%" y="501" width="0.0167%" height="15" fill="rgb(220,11,15)" fg:x="1067830" fg:w="400"/><text x="44.7942%" y="511.50"></text></g><g><title>clear_inode (538 samples, 0.02%)</title><rect x="44.5385%" y="517" width="0.0224%" height="15" fill="rgb(246,111,35)" fg:x="1067694" fg:w="538"/><text x="44.7885%" y="527.50"></text></g><g><title>inode_wait_for_writeback (438 samples, 0.02%)</title><rect x="44.5610%" y="517" width="0.0183%" height="15" fill="rgb(209,88,53)" fg:x="1068232" fg:w="438"/><text x="44.8110%" y="527.50"></text></g><g><title>_raw_spin_lock (307 samples, 0.01%)</title><rect x="44.5664%" y="501" width="0.0128%" height="15" fill="rgb(231,185,47)" fg:x="1068363" fg:w="307"/><text x="44.8164%" y="511.50"></text></g><g><title>evict (670,642 samples, 27.98%)</title><rect x="16.6100%" y="533" width="27.9756%" height="15" fill="rgb(233,154,1)" fg:x="398182" fg:w="670642"/><text x="16.8600%" y="543.50">evict</text></g><g><title>__legitimize_mnt (453 samples, 0.02%)</title><rect x="44.6644%" y="453" width="0.0189%" height="15" fill="rgb(225,15,46)" fg:x="1070712" fg:w="453"/><text x="44.9144%" y="463.50"></text></g><g><title>__legitimize_path (956 samples, 0.04%)</title><rect x="44.6535%" y="469" width="0.0399%" height="15" fill="rgb(211,135,41)" fg:x="1070450" fg:w="956"/><text x="44.9035%" y="479.50"></text></g><g><title>lockref_get_not_dead (241 samples, 0.01%)</title><rect x="44.6833%" y="453" width="0.0101%" height="15" fill="rgb(208,54,0)" fg:x="1071165" fg:w="241"/><text x="44.9333%" y="463.50"></text></g><g><title>legitimize_links (322 samples, 0.01%)</title><rect x="44.6935%" y="469" width="0.0134%" height="15" fill="rgb(244,136,14)" fg:x="1071409" fg:w="322"/><text x="44.9435%" y="479.50"></text></g><g><title>complete_walk (2,002 samples, 0.08%)</title><rect x="44.6264%" y="501" width="0.0835%" height="15" fill="rgb(241,56,14)" fg:x="1069801" fg:w="2002"/><text x="44.8764%" y="511.50"></text></g><g><title>try_to_unlazy (1,729 samples, 0.07%)</title><rect x="44.6378%" y="485" width="0.0721%" height="15" fill="rgb(205,80,24)" fg:x="1070074" fg:w="1729"/><text x="44.8878%" y="495.50"></text></g><g><title>inode_permission.part.0 (1,240 samples, 0.05%)</title><rect x="44.7326%" y="485" width="0.0517%" height="15" fill="rgb(220,57,4)" fg:x="1072346" fg:w="1240"/><text x="44.9826%" y="495.50"></text></g><g><title>generic_permission (529 samples, 0.02%)</title><rect x="44.7622%" y="469" width="0.0221%" height="15" fill="rgb(226,193,50)" fg:x="1073057" fg:w="529"/><text x="45.0122%" y="479.50"></text></g><g><title>link_path_walk.part.0 (1,900 samples, 0.08%)</title><rect x="44.7099%" y="501" width="0.0793%" height="15" fill="rgb(231,168,22)" fg:x="1071803" fg:w="1900"/><text x="44.9599%" y="511.50"></text></g><g><title>__fget_files (1,327 samples, 0.06%)</title><rect x="44.8477%" y="469" width="0.0554%" height="15" fill="rgb(254,215,14)" fg:x="1075106" fg:w="1327"/><text x="45.0977%" y="479.50"></text></g><g><title>__fget_light (1,918 samples, 0.08%)</title><rect x="44.8232%" y="485" width="0.0800%" height="15" fill="rgb(211,115,16)" fg:x="1074519" fg:w="1918"/><text x="45.0732%" y="495.50"></text></g><g><title>path_init (2,897 samples, 0.12%)</title><rect x="44.7892%" y="501" width="0.1208%" height="15" fill="rgb(236,210,16)" fg:x="1073703" fg:w="2897"/><text x="45.0392%" y="511.50"></text></g><g><title>filename_parentat (8,768 samples, 0.37%)</title><rect x="44.5857%" y="533" width="0.3658%" height="15" fill="rgb(221,94,12)" fg:x="1068824" fg:w="8768"/><text x="44.8357%" y="543.50"></text></g><g><title>path_parentat (7,998 samples, 0.33%)</title><rect x="44.6178%" y="517" width="0.3336%" height="15" fill="rgb(235,218,49)" fg:x="1069594" fg:w="7998"/><text x="44.8678%" y="527.50"></text></g><g><title>terminate_walk (992 samples, 0.04%)</title><rect x="44.9100%" y="501" width="0.0414%" height="15" fill="rgb(217,114,14)" fg:x="1076600" fg:w="992"/><text x="45.1600%" y="511.50"></text></g><g><title>ihold (1,055 samples, 0.04%)</title><rect x="44.9514%" y="533" width="0.0440%" height="15" fill="rgb(216,145,22)" fg:x="1077592" fg:w="1055"/><text x="45.2014%" y="543.50"></text></g><g><title>_atomic_dec_and_lock (379 samples, 0.02%)</title><rect x="45.0173%" y="517" width="0.0158%" height="15" fill="rgb(217,112,39)" fg:x="1079171" fg:w="379"/><text x="45.2673%" y="527.50"></text></g><g><title>btrfs_drop_inode (330 samples, 0.01%)</title><rect x="45.0333%" y="517" width="0.0138%" height="15" fill="rgb(225,85,32)" fg:x="1079554" fg:w="330"/><text x="45.2833%" y="527.50"></text></g><g><title>iput.part.0 (1,240 samples, 0.05%)</title><rect x="44.9958%" y="533" width="0.0517%" height="15" fill="rgb(245,209,47)" fg:x="1078655" fg:w="1240"/><text x="45.2458%" y="543.50"></text></g><g><title>kmem_cache_free (1,152 samples, 0.05%)</title><rect x="45.0475%" y="533" width="0.0481%" height="15" fill="rgb(218,220,15)" fg:x="1079895" fg:w="1152"/><text x="45.2975%" y="543.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (386 samples, 0.02%)</title><rect x="45.0794%" y="517" width="0.0161%" height="15" fill="rgb(222,202,31)" fg:x="1080661" fg:w="386"/><text x="45.3294%" y="527.50"></text></g><g><title>mnt_drop_write (782 samples, 0.03%)</title><rect x="45.0955%" y="533" width="0.0326%" height="15" fill="rgb(243,203,4)" fg:x="1081047" fg:w="782"/><text x="45.3455%" y="543.50"></text></g><g><title>__mnt_want_write (510 samples, 0.02%)</title><rect x="45.1434%" y="517" width="0.0213%" height="15" fill="rgb(237,92,17)" fg:x="1082194" fg:w="510"/><text x="45.3934%" y="527.50"></text></g><g><title>mnt_want_write (999 samples, 0.04%)</title><rect x="45.1282%" y="533" width="0.0417%" height="15" fill="rgb(231,119,7)" fg:x="1081829" fg:w="999"/><text x="45.3782%" y="543.50"></text></g><g><title>putname (795 samples, 0.03%)</title><rect x="45.1859%" y="533" width="0.0332%" height="15" fill="rgb(237,82,41)" fg:x="1083212" fg:w="795"/><text x="45.4359%" y="543.50"></text></g><g><title>apparmor_path_unlink (363 samples, 0.02%)</title><rect x="45.2239%" y="517" width="0.0151%" height="15" fill="rgb(226,81,48)" fg:x="1084123" fg:w="363"/><text x="45.4739%" y="527.50"></text></g><g><title>security_path_unlink (1,862 samples, 0.08%)</title><rect x="45.2192%" y="533" width="0.0777%" height="15" fill="rgb(234,70,51)" fg:x="1084011" fg:w="1862"/><text x="45.4692%" y="543.50"></text></g><g><title>tomoyo_path_unlink (1,384 samples, 0.06%)</title><rect x="45.2391%" y="517" width="0.0577%" height="15" fill="rgb(251,86,4)" fg:x="1084489" fg:w="1384"/><text x="45.4891%" y="527.50"></text></g><g><title>tomoyo_path_perm (1,347 samples, 0.06%)</title><rect x="45.2407%" y="501" width="0.0562%" height="15" fill="rgb(244,144,28)" fg:x="1084526" fg:w="1347"/><text x="45.4907%" y="511.50"></text></g><g><title>tomoyo_init_request_info (944 samples, 0.04%)</title><rect x="45.2575%" y="485" width="0.0394%" height="15" fill="rgb(232,161,39)" fg:x="1084929" fg:w="944"/><text x="45.5075%" y="495.50"></text></g><g><title>tomoyo_domain (554 samples, 0.02%)</title><rect x="45.2737%" y="469" width="0.0231%" height="15" fill="rgb(247,34,51)" fg:x="1085319" fg:w="554"/><text x="45.5237%" y="479.50"></text></g><g><title>up_write (260 samples, 0.01%)</title><rect x="45.2969%" y="533" width="0.0108%" height="15" fill="rgb(225,132,2)" fg:x="1085873" fg:w="260"/><text x="45.5469%" y="543.50"></text></g><g><title>_raw_spin_lock (308 samples, 0.01%)</title><rect x="45.3292%" y="517" width="0.0128%" height="15" fill="rgb(209,159,44)" fg:x="1086648" fg:w="308"/><text x="45.5792%" y="527.50"></text></g><g><title>_raw_spin_lock (1,846 samples, 0.08%)</title><rect x="45.5038%" y="453" width="0.0770%" height="15" fill="rgb(251,214,1)" fg:x="1090834" fg:w="1846"/><text x="45.7538%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (680 samples, 0.03%)</title><rect x="45.5524%" y="437" width="0.0284%" height="15" fill="rgb(247,84,47)" fg:x="1092000" fg:w="680"/><text x="45.8024%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (2,975 samples, 0.12%)</title><rect x="45.4645%" y="485" width="0.1241%" height="15" fill="rgb(240,111,43)" fg:x="1089891" fg:w="2975"/><text x="45.7145%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (2,788 samples, 0.12%)</title><rect x="45.4723%" y="469" width="0.1163%" height="15" fill="rgb(215,214,35)" fg:x="1090078" fg:w="2788"/><text x="45.7223%" y="479.50"></text></g><g><title>__btrfs_end_transaction (6,222 samples, 0.26%)</title><rect x="45.3641%" y="501" width="0.2595%" height="15" fill="rgb(248,207,23)" fg:x="1087485" fg:w="6222"/><text x="45.6141%" y="511.50"></text></g><g><title>kmem_cache_free (841 samples, 0.04%)</title><rect x="45.5886%" y="485" width="0.0351%" height="15" fill="rgb(214,186,4)" fg:x="1092866" fg:w="841"/><text x="45.8386%" y="495.50"></text></g><g><title>btrfs_end_log_trans (322 samples, 0.01%)</title><rect x="45.7328%" y="469" width="0.0134%" height="15" fill="rgb(220,133,22)" fg:x="1096323" fg:w="322"/><text x="45.9828%" y="479.50"></text></g><g><title>__wake_up_common (359 samples, 0.01%)</title><rect x="45.7571%" y="421" width="0.0150%" height="15" fill="rgb(239,134,19)" fg:x="1096906" fg:w="359"/><text x="46.0071%" y="431.50"></text></g><g><title>autoremove_wake_function (351 samples, 0.01%)</title><rect x="45.7574%" y="405" width="0.0146%" height="15" fill="rgb(250,140,9)" fg:x="1096914" fg:w="351"/><text x="46.0074%" y="415.50"></text></g><g><title>try_to_wake_up (346 samples, 0.01%)</title><rect x="45.7576%" y="389" width="0.0144%" height="15" fill="rgb(225,59,14)" fg:x="1096919" fg:w="346"/><text x="46.0076%" y="399.50"></text></g><g><title>__wake_up_common_lock (427 samples, 0.02%)</title><rect x="45.7571%" y="437" width="0.0178%" height="15" fill="rgb(214,152,51)" fg:x="1096905" fg:w="427"/><text x="46.0071%" y="447.50"></text></g><g><title>btrfs_tree_unlock (251 samples, 0.01%)</title><rect x="45.7749%" y="437" width="0.0105%" height="15" fill="rgb(251,227,43)" fg:x="1097332" fg:w="251"/><text x="46.0249%" y="447.50"></text></g><g><title>btrfs_free_path (1,326 samples, 0.06%)</title><rect x="45.7462%" y="469" width="0.0553%" height="15" fill="rgb(241,96,17)" fg:x="1096645" fg:w="1326"/><text x="45.9962%" y="479.50"></text></g><g><title>btrfs_release_path (1,233 samples, 0.05%)</title><rect x="45.7501%" y="453" width="0.0514%" height="15" fill="rgb(234,198,43)" fg:x="1096738" fg:w="1233"/><text x="46.0001%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (440 samples, 0.02%)</title><rect x="45.8385%" y="421" width="0.0184%" height="15" fill="rgb(220,108,29)" fg:x="1098858" fg:w="440"/><text x="46.0885%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (691 samples, 0.03%)</title><rect x="45.8367%" y="437" width="0.0288%" height="15" fill="rgb(226,163,33)" fg:x="1098814" fg:w="691"/><text x="46.0867%" y="447.50"></text></g><g><title>__btrfs_tree_lock (665 samples, 0.03%)</title><rect x="45.8714%" y="421" width="0.0277%" height="15" fill="rgb(205,194,45)" fg:x="1099647" fg:w="665"/><text x="46.1214%" y="431.50"></text></g><g><title>btrfs_lock_root_node (889 samples, 0.04%)</title><rect x="45.8701%" y="437" width="0.0371%" height="15" fill="rgb(206,143,44)" fg:x="1099616" fg:w="889"/><text x="46.1201%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (333 samples, 0.01%)</title><rect x="45.9072%" y="437" width="0.0139%" height="15" fill="rgb(236,136,36)" fg:x="1100505" fg:w="333"/><text x="46.1572%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (635 samples, 0.03%)</title><rect x="45.9378%" y="437" width="0.0265%" height="15" fill="rgb(249,172,42)" fg:x="1101237" fg:w="635"/><text x="46.1878%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (316 samples, 0.01%)</title><rect x="45.9642%" y="437" width="0.0132%" height="15" fill="rgb(216,139,23)" fg:x="1101872" fg:w="316"/><text x="46.2142%" y="447.50"></text></g><g><title>btrfs_lookup_dir_index_item (4,516 samples, 0.19%)</title><rect x="45.8015%" y="469" width="0.1884%" height="15" fill="rgb(207,166,20)" fg:x="1097971" fg:w="4516"/><text x="46.0515%" y="479.50"></text></g><g><title>btrfs_search_slot (4,272 samples, 0.18%)</title><rect x="45.8117%" y="453" width="0.1782%" height="15" fill="rgb(210,209,22)" fg:x="1098215" fg:w="4272"/><text x="46.0617%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (254 samples, 0.01%)</title><rect x="46.0555%" y="389" width="0.0106%" height="15" fill="rgb(232,118,20)" fg:x="1104060" fg:w="254"/><text x="46.3055%" y="399.50"></text></g><g><title>prepare_to_wait_event (275 samples, 0.01%)</title><rect x="46.0549%" y="405" width="0.0115%" height="15" fill="rgb(238,113,42)" fg:x="1104046" fg:w="275"/><text x="46.3049%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (957 samples, 0.04%)</title><rect x="46.0390%" y="421" width="0.0399%" height="15" fill="rgb(231,42,5)" fg:x="1103664" fg:w="957"/><text x="46.2890%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (1,384 samples, 0.06%)</title><rect x="46.0372%" y="437" width="0.0577%" height="15" fill="rgb(243,166,24)" fg:x="1103620" fg:w="1384"/><text x="46.2872%" y="447.50"></text></g><g><title>btrfs_root_node (383 samples, 0.02%)</title><rect x="46.0789%" y="421" width="0.0160%" height="15" fill="rgb(237,226,12)" fg:x="1104621" fg:w="383"/><text x="46.3289%" y="431.50"></text></g><g><title>__btrfs_tree_lock (610 samples, 0.03%)</title><rect x="46.1016%" y="421" width="0.0254%" height="15" fill="rgb(229,133,24)" fg:x="1105164" fg:w="610"/><text x="46.3516%" y="431.50"></text></g><g><title>btrfs_lock_root_node (823 samples, 0.03%)</title><rect x="46.1008%" y="437" width="0.0343%" height="15" fill="rgb(238,33,43)" fg:x="1105145" fg:w="823"/><text x="46.3508%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (559 samples, 0.02%)</title><rect x="46.1351%" y="437" width="0.0233%" height="15" fill="rgb(227,59,38)" fg:x="1105968" fg:w="559"/><text x="46.3851%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (701 samples, 0.03%)</title><rect x="46.1747%" y="437" width="0.0292%" height="15" fill="rgb(230,97,0)" fg:x="1106916" fg:w="701"/><text x="46.4247%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (285 samples, 0.01%)</title><rect x="46.2039%" y="437" width="0.0119%" height="15" fill="rgb(250,173,50)" fg:x="1107617" fg:w="285"/><text x="46.4539%" y="447.50"></text></g><g><title>btrfs_search_slot (5,356 samples, 0.22%)</title><rect x="46.0055%" y="453" width="0.2234%" height="15" fill="rgb(240,15,50)" fg:x="1102860" fg:w="5356"/><text x="46.2555%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (6,025 samples, 0.25%)</title><rect x="45.9899%" y="469" width="0.2513%" height="15" fill="rgb(221,93,22)" fg:x="1102487" fg:w="6025"/><text x="46.2399%" y="479.50"></text></g><g><title>crc32c (296 samples, 0.01%)</title><rect x="46.2289%" y="453" width="0.0123%" height="15" fill="rgb(245,180,53)" fg:x="1108216" fg:w="296"/><text x="46.4789%" y="463.50"></text></g><g><title>__wake_up_common (290 samples, 0.01%)</title><rect x="46.2526%" y="437" width="0.0121%" height="15" fill="rgb(231,88,51)" fg:x="1108784" fg:w="290"/><text x="46.5026%" y="447.50"></text></g><g><title>autoremove_wake_function (289 samples, 0.01%)</title><rect x="46.2526%" y="421" width="0.0121%" height="15" fill="rgb(240,58,21)" fg:x="1108785" fg:w="289"/><text x="46.5026%" y="431.50"></text></g><g><title>try_to_wake_up (287 samples, 0.01%)</title><rect x="46.2527%" y="405" width="0.0120%" height="15" fill="rgb(237,21,10)" fg:x="1108787" fg:w="287"/><text x="46.5027%" y="415.50"></text></g><g><title>__wake_up_common_lock (367 samples, 0.02%)</title><rect x="46.2525%" y="453" width="0.0153%" height="15" fill="rgb(218,43,11)" fg:x="1108782" fg:w="367"/><text x="46.5025%" y="463.50"></text></g><g><title>btrfs_tree_unlock (361 samples, 0.02%)</title><rect x="46.2680%" y="453" width="0.0151%" height="15" fill="rgb(218,221,29)" fg:x="1109153" fg:w="361"/><text x="46.5180%" y="463.50"></text></g><g><title>btrfs_release_path (1,373 samples, 0.06%)</title><rect x="46.2412%" y="469" width="0.0573%" height="15" fill="rgb(214,118,42)" fg:x="1108512" fg:w="1373"/><text x="46.4912%" y="479.50"></text></g><g><title>kmem_cache_alloc (523 samples, 0.02%)</title><rect x="46.2985%" y="469" width="0.0218%" height="15" fill="rgb(251,200,26)" fg:x="1109885" fg:w="523"/><text x="46.5485%" y="479.50"></text></g><g><title>kmem_cache_free (588 samples, 0.02%)</title><rect x="46.3203%" y="469" width="0.0245%" height="15" fill="rgb(237,101,39)" fg:x="1110408" fg:w="588"/><text x="46.5703%" y="479.50"></text></g><g><title>mutex_lock (462 samples, 0.02%)</title><rect x="46.3449%" y="469" width="0.0193%" height="15" fill="rgb(251,117,11)" fg:x="1110996" fg:w="462"/><text x="46.5949%" y="479.50"></text></g><g><title>btrfs_del_dir_entries_in_log (16,410 samples, 0.68%)</title><rect x="45.6934%" y="485" width="0.6845%" height="15" fill="rgb(216,223,23)" fg:x="1095378" fg:w="16410"/><text x="45.9434%" y="495.50"></text></g><g><title>mutex_unlock (330 samples, 0.01%)</title><rect x="46.3641%" y="469" width="0.0138%" height="15" fill="rgb(251,54,12)" fg:x="1111458" fg:w="330"/><text x="46.6141%" y="479.50"></text></g><g><title>__wake_up_common (820 samples, 0.03%)</title><rect x="46.4291%" y="405" width="0.0342%" height="15" fill="rgb(254,176,54)" fg:x="1113015" fg:w="820"/><text x="46.6791%" y="415.50"></text></g><g><title>autoremove_wake_function (800 samples, 0.03%)</title><rect x="46.4299%" y="389" width="0.0334%" height="15" fill="rgb(210,32,8)" fg:x="1113035" fg:w="800"/><text x="46.6799%" y="399.50"></text></g><g><title>try_to_wake_up (790 samples, 0.03%)</title><rect x="46.4303%" y="373" width="0.0330%" height="15" fill="rgb(235,52,38)" fg:x="1113045" fg:w="790"/><text x="46.6803%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (277 samples, 0.01%)</title><rect x="46.4633%" y="405" width="0.0116%" height="15" fill="rgb(231,4,44)" fg:x="1113835" fg:w="277"/><text x="46.7133%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (262 samples, 0.01%)</title><rect x="46.4639%" y="389" width="0.0109%" height="15" fill="rgb(249,2,32)" fg:x="1113850" fg:w="262"/><text x="46.7139%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,111 samples, 0.05%)</title><rect x="46.4289%" y="421" width="0.0463%" height="15" fill="rgb(224,65,26)" fg:x="1113011" fg:w="1111"/><text x="46.6789%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (421 samples, 0.02%)</title><rect x="46.4846%" y="421" width="0.0176%" height="15" fill="rgb(250,73,40)" fg:x="1114346" fg:w="421"/><text x="46.7346%" y="431.50"></text></g><g><title>_raw_spin_lock (257 samples, 0.01%)</title><rect x="46.4914%" y="405" width="0.0107%" height="15" fill="rgb(253,177,16)" fg:x="1114510" fg:w="257"/><text x="46.7414%" y="415.50"></text></g><g><title>btrfs_free_path (2,594 samples, 0.11%)</title><rect x="46.4077%" y="453" width="0.1082%" height="15" fill="rgb(217,32,34)" fg:x="1112503" fg:w="2594"/><text x="46.6577%" y="463.50"></text></g><g><title>btrfs_release_path (2,443 samples, 0.10%)</title><rect x="46.4140%" y="437" width="0.1019%" height="15" fill="rgb(212,7,10)" fg:x="1112654" fg:w="2443"/><text x="46.6640%" y="447.50"></text></g><g><title>release_extent_buffer (330 samples, 0.01%)</title><rect x="46.5022%" y="421" width="0.0138%" height="15" fill="rgb(245,89,8)" fg:x="1114767" fg:w="330"/><text x="46.7522%" y="431.50"></text></g><g><title>_raw_read_lock (399 samples, 0.02%)</title><rect x="46.5914%" y="405" width="0.0166%" height="15" fill="rgb(237,16,53)" fg:x="1116907" fg:w="399"/><text x="46.8414%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (323 samples, 0.01%)</title><rect x="46.6145%" y="389" width="0.0135%" height="15" fill="rgb(250,204,30)" fg:x="1117459" fg:w="323"/><text x="46.8645%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (301 samples, 0.01%)</title><rect x="46.6154%" y="373" width="0.0126%" height="15" fill="rgb(208,77,27)" fg:x="1117481" fg:w="301"/><text x="46.8654%" y="383.50"></text></g><g><title>prepare_to_wait_event (352 samples, 0.01%)</title><rect x="46.6135%" y="405" width="0.0147%" height="15" fill="rgb(250,204,28)" fg:x="1117435" fg:w="352"/><text x="46.8635%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (1,721 samples, 0.07%)</title><rect x="46.5820%" y="421" width="0.0718%" height="15" fill="rgb(244,63,21)" fg:x="1116680" fg:w="1721"/><text x="46.8320%" y="431.50"></text></g><g><title>schedule (408 samples, 0.02%)</title><rect x="46.6367%" y="405" width="0.0170%" height="15" fill="rgb(236,85,44)" fg:x="1117993" fg:w="408"/><text x="46.8867%" y="415.50"></text></g><g><title>__schedule (404 samples, 0.02%)</title><rect x="46.6369%" y="389" width="0.0169%" height="15" fill="rgb(215,98,4)" fg:x="1117997" fg:w="404"/><text x="46.8869%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (3,189 samples, 0.13%)</title><rect x="46.5766%" y="437" width="0.1330%" height="15" fill="rgb(235,38,11)" fg:x="1116551" fg:w="3189"/><text x="46.8266%" y="447.50"></text></g><g><title>btrfs_root_node (1,339 samples, 0.06%)</title><rect x="46.6538%" y="421" width="0.0559%" height="15" fill="rgb(254,186,25)" fg:x="1118401" fg:w="1339"/><text x="46.9038%" y="431.50"></text></g><g><title>_raw_write_lock (296 samples, 0.01%)</title><rect x="46.7332%" y="405" width="0.0123%" height="15" fill="rgb(225,55,31)" fg:x="1120306" fg:w="296"/><text x="46.9832%" y="415.50"></text></g><g><title>prepare_to_wait_event (242 samples, 0.01%)</title><rect x="46.7489%" y="405" width="0.0101%" height="15" fill="rgb(211,15,21)" fg:x="1120681" fg:w="242"/><text x="46.9989%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,168 samples, 0.05%)</title><rect x="46.7217%" y="421" width="0.0487%" height="15" fill="rgb(215,187,41)" fg:x="1120031" fg:w="1168"/><text x="46.9717%" y="431.50"></text></g><g><title>btrfs_lock_root_node (1,517 samples, 0.06%)</title><rect x="46.7202%" y="437" width="0.0633%" height="15" fill="rgb(248,69,32)" fg:x="1119995" fg:w="1517"/><text x="46.9702%" y="447.50"></text></g><g><title>btrfs_root_node (313 samples, 0.01%)</title><rect x="46.7705%" y="421" width="0.0131%" height="15" fill="rgb(252,102,52)" fg:x="1121199" fg:w="313"/><text x="47.0205%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (278 samples, 0.01%)</title><rect x="46.7875%" y="437" width="0.0116%" height="15" fill="rgb(253,140,32)" fg:x="1121607" fg:w="278"/><text x="47.0375%" y="447.50"></text></g><g><title>_raw_spin_lock (272 samples, 0.01%)</title><rect x="46.8059%" y="421" width="0.0113%" height="15" fill="rgb(216,56,42)" fg:x="1122049" fg:w="272"/><text x="47.0559%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (372 samples, 0.02%)</title><rect x="46.8018%" y="437" width="0.0155%" height="15" fill="rgb(216,184,14)" fg:x="1121950" fg:w="372"/><text x="47.0518%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (1,389 samples, 0.06%)</title><rect x="46.8173%" y="437" width="0.0579%" height="15" fill="rgb(237,187,27)" fg:x="1122322" fg:w="1389"/><text x="47.0673%" y="447.50"></text></g><g><title>__radix_tree_lookup (289 samples, 0.01%)</title><rect x="46.8922%" y="405" width="0.0121%" height="15" fill="rgb(219,65,3)" fg:x="1124117" fg:w="289"/><text x="47.1422%" y="415.50"></text></g><g><title>find_extent_buffer (578 samples, 0.02%)</title><rect x="46.8864%" y="421" width="0.0241%" height="15" fill="rgb(245,83,25)" fg:x="1123977" fg:w="578"/><text x="47.1364%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (956 samples, 0.04%)</title><rect x="46.8753%" y="437" width="0.0399%" height="15" fill="rgb(214,205,45)" fg:x="1123711" fg:w="956"/><text x="47.1253%" y="447.50"></text></g><g><title>release_extent_buffer (243 samples, 0.01%)</title><rect x="46.9162%" y="437" width="0.0101%" height="15" fill="rgb(241,20,18)" fg:x="1124693" fg:w="243"/><text x="47.1662%" y="447.50"></text></g><g><title>btrfs_search_slot (10,131 samples, 0.42%)</title><rect x="46.5159%" y="453" width="0.4226%" height="15" fill="rgb(232,163,23)" fg:x="1115097" fg:w="10131"/><text x="46.7659%" y="463.50"></text></g><g><title>unlock_up (292 samples, 0.01%)</title><rect x="46.9264%" y="437" width="0.0122%" height="15" fill="rgb(214,5,46)" fg:x="1124936" fg:w="292"/><text x="47.1764%" y="447.50"></text></g><g><title>crc32c (656 samples, 0.03%)</title><rect x="46.9385%" y="453" width="0.0274%" height="15" fill="rgb(229,78,17)" fg:x="1125228" fg:w="656"/><text x="47.1885%" y="463.50"></text></g><g><title>crypto_shash_update (337 samples, 0.01%)</title><rect x="46.9518%" y="437" width="0.0141%" height="15" fill="rgb(248,89,10)" fg:x="1125547" fg:w="337"/><text x="47.2018%" y="447.50"></text></g><g><title>memset_erms (263 samples, 0.01%)</title><rect x="47.0004%" y="437" width="0.0110%" height="15" fill="rgb(248,54,15)" fg:x="1126710" fg:w="263"/><text x="47.2504%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,393 samples, 0.06%)</title><rect x="46.9659%" y="453" width="0.0581%" height="15" fill="rgb(223,116,6)" fg:x="1125884" fg:w="1393"/><text x="47.2159%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (304 samples, 0.01%)</title><rect x="47.0113%" y="437" width="0.0127%" height="15" fill="rgb(205,125,38)" fg:x="1126973" fg:w="304"/><text x="47.2613%" y="447.50"></text></g><g><title>btrfs_del_inode_ref (16,295 samples, 0.68%)</title><rect x="46.3954%" y="469" width="0.6797%" height="15" fill="rgb(251,78,38)" fg:x="1112208" fg:w="16295"/><text x="46.6454%" y="479.50"></text></g><g><title>kmem_cache_free (1,226 samples, 0.05%)</title><rect x="47.0240%" y="453" width="0.0511%" height="15" fill="rgb(253,78,28)" fg:x="1127277" fg:w="1226"/><text x="47.2740%" y="463.50"></text></g><g><title>btrfs_end_log_trans (427 samples, 0.02%)</title><rect x="47.0752%" y="469" width="0.0178%" height="15" fill="rgb(209,120,3)" fg:x="1128503" fg:w="427"/><text x="47.3252%" y="479.50"></text></g><g><title>mutex_lock (622 samples, 0.03%)</title><rect x="47.0930%" y="469" width="0.0259%" height="15" fill="rgb(238,229,9)" fg:x="1128930" fg:w="622"/><text x="47.3430%" y="479.50"></text></g><g><title>btrfs_del_inode_ref_in_log (18,048 samples, 0.75%)</title><rect x="46.3779%" y="485" width="0.7529%" height="15" fill="rgb(253,159,18)" fg:x="1111788" fg:w="18048"/><text x="46.6279%" y="495.50"></text></g><g><title>mutex_unlock (284 samples, 0.01%)</title><rect x="47.1189%" y="469" width="0.0118%" height="15" fill="rgb(244,42,34)" fg:x="1129552" fg:w="284"/><text x="47.3689%" y="479.50"></text></g><g><title>_find_next_bit.constprop.0 (438 samples, 0.02%)</title><rect x="47.2971%" y="405" width="0.0183%" height="15" fill="rgb(224,8,7)" fg:x="1133824" fg:w="438"/><text x="47.5471%" y="415.50"></text></g><g><title>steal_from_bitmap.part.0 (520 samples, 0.02%)</title><rect x="47.2950%" y="421" width="0.0217%" height="15" fill="rgb(210,201,45)" fg:x="1133774" fg:w="520"/><text x="47.5450%" y="431.50"></text></g><g><title>__btrfs_add_free_space (696 samples, 0.03%)</title><rect x="47.2909%" y="437" width="0.0290%" height="15" fill="rgb(252,185,21)" fg:x="1133676" fg:w="696"/><text x="47.5409%" y="447.50"></text></g><g><title>btrfs_free_tree_block (1,002 samples, 0.04%)</title><rect x="47.2906%" y="453" width="0.0418%" height="15" fill="rgb(223,131,1)" fg:x="1133668" fg:w="1002"/><text x="47.5406%" y="463.50"></text></g><g><title>btrfs_del_leaf (1,138 samples, 0.05%)</title><rect x="47.2903%" y="469" width="0.0475%" height="15" fill="rgb(245,141,16)" fg:x="1133661" fg:w="1138"/><text x="47.5403%" y="479.50"></text></g><g><title>btrfs_get_32 (713 samples, 0.03%)</title><rect x="47.3378%" y="469" width="0.0297%" height="15" fill="rgb(229,55,45)" fg:x="1134799" fg:w="713"/><text x="47.5878%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,906 samples, 0.08%)</title><rect x="47.8954%" y="453" width="0.0795%" height="15" fill="rgb(208,92,15)" fg:x="1148167" fg:w="1906"/><text x="48.1454%" y="463.50"></text></g><g><title>btrfs_get_token_32 (14,562 samples, 0.61%)</title><rect x="47.3675%" y="469" width="0.6074%" height="15" fill="rgb(234,185,47)" fg:x="1135512" fg:w="14562"/><text x="47.6175%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (834 samples, 0.03%)</title><rect x="47.9750%" y="469" width="0.0348%" height="15" fill="rgb(253,104,50)" fg:x="1150074" fg:w="834"/><text x="48.2250%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (300 samples, 0.01%)</title><rect x="47.9973%" y="453" width="0.0125%" height="15" fill="rgb(205,70,7)" fg:x="1150608" fg:w="300"/><text x="48.2473%" y="463.50"></text></g><g><title>btrfs_set_token_32 (10,365 samples, 0.43%)</title><rect x="48.0109%" y="469" width="0.4324%" height="15" fill="rgb(240,178,43)" fg:x="1150936" fg:w="10365"/><text x="48.2609%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,523 samples, 0.06%)</title><rect x="48.3798%" y="453" width="0.0635%" height="15" fill="rgb(214,112,2)" fg:x="1159778" fg:w="1523"/><text x="48.6298%" y="463.50"></text></g><g><title>leaf_space_used (568 samples, 0.02%)</title><rect x="48.4446%" y="469" width="0.0237%" height="15" fill="rgb(206,46,17)" fg:x="1161332" fg:w="568"/><text x="48.6946%" y="479.50"></text></g><g><title>btrfs_get_32 (421 samples, 0.02%)</title><rect x="48.4507%" y="453" width="0.0176%" height="15" fill="rgb(225,220,16)" fg:x="1161479" fg:w="421"/><text x="48.7007%" y="463.50"></text></g><g><title>memcpy_extent_buffer (1,962 samples, 0.08%)</title><rect x="48.4683%" y="469" width="0.0818%" height="15" fill="rgb(238,65,40)" fg:x="1161900" fg:w="1962"/><text x="48.7183%" y="479.50"></text></g><g><title>memmove (1,478 samples, 0.06%)</title><rect x="48.4885%" y="453" width="0.0617%" height="15" fill="rgb(230,151,21)" fg:x="1162384" fg:w="1478"/><text x="48.7385%" y="463.50"></text></g><g><title>copy_pages (789 samples, 0.03%)</title><rect x="48.5768%" y="453" width="0.0329%" height="15" fill="rgb(218,58,49)" fg:x="1164502" fg:w="789"/><text x="48.8268%" y="463.50"></text></g><g><title>memmove_extent_buffer (7,605 samples, 0.32%)</title><rect x="48.5501%" y="469" width="0.3172%" height="15" fill="rgb(219,179,14)" fg:x="1163862" fg:w="7605"/><text x="48.8001%" y="479.50"></text></g><g><title>memmove (6,176 samples, 0.26%)</title><rect x="48.6098%" y="453" width="0.2576%" height="15" fill="rgb(223,72,1)" fg:x="1165291" fg:w="6176"/><text x="48.8598%" y="463.50"></text></g><g><title>__push_leaf_left (427 samples, 0.02%)</title><rect x="48.8684%" y="453" width="0.0178%" height="15" fill="rgb(238,126,10)" fg:x="1171492" fg:w="427"/><text x="49.1184%" y="463.50"></text></g><g><title>push_leaf_left (655 samples, 0.03%)</title><rect x="48.8674%" y="469" width="0.0273%" height="15" fill="rgb(224,206,38)" fg:x="1171467" fg:w="655"/><text x="49.1174%" y="479.50"></text></g><g><title>__push_leaf_right (424 samples, 0.02%)</title><rect x="48.8952%" y="453" width="0.0177%" height="15" fill="rgb(212,201,54)" fg:x="1172135" fg:w="424"/><text x="49.1452%" y="463.50"></text></g><g><title>push_leaf_right (669 samples, 0.03%)</title><rect x="48.8947%" y="469" width="0.0279%" height="15" fill="rgb(218,154,48)" fg:x="1172122" fg:w="669"/><text x="49.1447%" y="479.50"></text></g><g><title>btrfs_del_items (43,008 samples, 1.79%)</title><rect x="47.1308%" y="485" width="1.7941%" height="15" fill="rgb(232,93,24)" fg:x="1129836" fg:w="43008"/><text x="47.3808%" y="495.50">b..</text></g><g><title>__list_add_valid (576 samples, 0.02%)</title><rect x="49.0054%" y="453" width="0.0240%" height="15" fill="rgb(245,30,21)" fg:x="1174775" fg:w="576"/><text x="49.2554%" y="463.50"></text></g><g><title>_raw_spin_lock (405 samples, 0.02%)</title><rect x="49.0294%" y="453" width="0.0169%" height="15" fill="rgb(242,148,29)" fg:x="1175351" fg:w="405"/><text x="49.2794%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,667 samples, 0.11%)</title><rect x="48.9523%" y="469" width="0.1113%" height="15" fill="rgb(244,153,54)" fg:x="1173503" fg:w="2667"/><text x="49.2023%" y="479.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,569 samples, 0.07%)</title><rect x="49.0638%" y="469" width="0.0655%" height="15" fill="rgb(252,87,22)" fg:x="1176176" fg:w="1569"/><text x="49.3138%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (1,518 samples, 0.06%)</title><rect x="49.0659%" y="453" width="0.0633%" height="15" fill="rgb(210,51,29)" fg:x="1176227" fg:w="1518"/><text x="49.3159%" y="463.50"></text></g><g><title>__schedule (279 samples, 0.01%)</title><rect x="49.1428%" y="437" width="0.0116%" height="15" fill="rgb(242,136,47)" fg:x="1178070" fg:w="279"/><text x="49.3928%" y="447.50"></text></g><g><title>_cond_resched (308 samples, 0.01%)</title><rect x="49.1422%" y="453" width="0.0128%" height="15" fill="rgb(238,68,4)" fg:x="1178054" fg:w="308"/><text x="49.3922%" y="463.50"></text></g><g><title>mutex_lock (618 samples, 0.03%)</title><rect x="49.1293%" y="469" width="0.0258%" height="15" fill="rgb(242,161,30)" fg:x="1177745" fg:w="618"/><text x="49.3793%" y="479.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (5,697 samples, 0.24%)</title><rect x="48.9248%" y="485" width="0.2376%" height="15" fill="rgb(218,58,44)" fg:x="1172844" fg:w="5697"/><text x="49.1748%" y="495.50"></text></g><g><title>btrfs_comp_cpu_keys (895 samples, 0.04%)</title><rect x="49.2021%" y="453" width="0.0373%" height="15" fill="rgb(252,125,32)" fg:x="1179491" fg:w="895"/><text x="49.4521%" y="463.50"></text></g><g><title>__btrfs_add_delayed_item (2,139 samples, 0.09%)</title><rect x="49.1712%" y="469" width="0.0892%" height="15" fill="rgb(219,178,0)" fg:x="1178751" fg:w="2139"/><text x="49.4212%" y="479.50"></text></g><g><title>rb_insert_color (504 samples, 0.02%)</title><rect x="49.2394%" y="453" width="0.0210%" height="15" fill="rgb(213,152,7)" fg:x="1180386" fg:w="504"/><text x="49.4894%" y="463.50"></text></g><g><title>__list_del_entry_valid (362 samples, 0.02%)</title><rect x="49.2775%" y="453" width="0.0151%" height="15" fill="rgb(249,109,34)" fg:x="1181298" fg:w="362"/><text x="49.5275%" y="463.50"></text></g><g><title>_raw_spin_lock (281 samples, 0.01%)</title><rect x="49.2932%" y="453" width="0.0117%" height="15" fill="rgb(232,96,21)" fg:x="1181674" fg:w="281"/><text x="49.5432%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,822 samples, 0.08%)</title><rect x="49.2605%" y="469" width="0.0760%" height="15" fill="rgb(228,27,39)" fg:x="1180890" fg:w="1822"/><text x="49.5105%" y="479.50"></text></g><g><title>mutex_unlock (586 samples, 0.02%)</title><rect x="49.3120%" y="453" width="0.0244%" height="15" fill="rgb(211,182,52)" fg:x="1182126" fg:w="586"/><text x="49.5620%" y="463.50"></text></g><g><title>mutex_spin_on_owner (1,807 samples, 0.08%)</title><rect x="49.3411%" y="453" width="0.0754%" height="15" fill="rgb(234,178,38)" fg:x="1182823" fg:w="1807"/><text x="49.5911%" y="463.50"></text></g><g><title>__mutex_lock.constprop.0 (2,454 samples, 0.10%)</title><rect x="49.3365%" y="469" width="0.1024%" height="15" fill="rgb(221,111,3)" fg:x="1182712" fg:w="2454"/><text x="49.5865%" y="479.50"></text></g><g><title>schedule_preempt_disabled (510 samples, 0.02%)</title><rect x="49.4176%" y="453" width="0.0213%" height="15" fill="rgb(228,175,21)" fg:x="1184656" fg:w="510"/><text x="49.6676%" y="463.50"></text></g><g><title>schedule (509 samples, 0.02%)</title><rect x="49.4176%" y="437" width="0.0212%" height="15" fill="rgb(228,174,43)" fg:x="1184657" fg:w="509"/><text x="49.6676%" y="447.50"></text></g><g><title>__schedule (505 samples, 0.02%)</title><rect x="49.4178%" y="421" width="0.0211%" height="15" fill="rgb(211,191,0)" fg:x="1184661" fg:w="505"/><text x="49.6678%" y="431.50"></text></g><g><title>_raw_spin_lock (1,400 samples, 0.06%)</title><rect x="49.4669%" y="437" width="0.0584%" height="15" fill="rgb(253,117,3)" fg:x="1185838" fg:w="1400"/><text x="49.7169%" y="447.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (2,001 samples, 0.08%)</title><rect x="49.4419%" y="469" width="0.0835%" height="15" fill="rgb(241,127,19)" fg:x="1185239" fg:w="2001"/><text x="49.6919%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (1,625 samples, 0.07%)</title><rect x="49.4576%" y="453" width="0.0678%" height="15" fill="rgb(218,103,12)" fg:x="1185615" fg:w="1625"/><text x="49.7076%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (619 samples, 0.03%)</title><rect x="49.5253%" y="469" width="0.0258%" height="15" fill="rgb(236,214,43)" fg:x="1187240" fg:w="619"/><text x="49.7753%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (540 samples, 0.02%)</title><rect x="49.5286%" y="453" width="0.0225%" height="15" fill="rgb(244,144,19)" fg:x="1187319" fg:w="540"/><text x="49.7786%" y="463.50"></text></g><g><title>kmem_cache_alloc_trace (1,095 samples, 0.05%)</title><rect x="49.5512%" y="469" width="0.0457%" height="15" fill="rgb(246,188,10)" fg:x="1187859" fg:w="1095"/><text x="49.8012%" y="479.50"></text></g><g><title>mutex_lock (461 samples, 0.02%)</title><rect x="49.5968%" y="469" width="0.0192%" height="15" fill="rgb(212,193,33)" fg:x="1188954" fg:w="461"/><text x="49.8468%" y="479.50"></text></g><g><title>btrfs_delete_delayed_dir_index (11,169 samples, 0.47%)</title><rect x="49.1625%" y="485" width="0.4659%" height="15" fill="rgb(241,51,29)" fg:x="1178541" fg:w="11169"/><text x="49.4125%" y="495.50"></text></g><g><title>mutex_unlock (295 samples, 0.01%)</title><rect x="49.6161%" y="469" width="0.0123%" height="15" fill="rgb(211,58,19)" fg:x="1189415" fg:w="295"/><text x="49.8661%" y="479.50"></text></g><g><title>btrfs_get_16 (343 samples, 0.01%)</title><rect x="49.6468%" y="469" width="0.0143%" height="15" fill="rgb(229,111,26)" fg:x="1190151" fg:w="343"/><text x="49.8968%" y="479.50"></text></g><g><title>btrfs_delete_one_dir_name (936 samples, 0.04%)</title><rect x="49.6284%" y="485" width="0.0390%" height="15" fill="rgb(213,115,40)" fg:x="1189710" fg:w="936"/><text x="49.8784%" y="495.50"></text></g><g><title>btrfs_get_16 (839 samples, 0.03%)</title><rect x="49.7257%" y="453" width="0.0350%" height="15" fill="rgb(209,56,44)" fg:x="1192044" fg:w="839"/><text x="49.9757%" y="463.50"></text></g><g><title>btrfs_get_32 (533 samples, 0.02%)</title><rect x="49.7607%" y="453" width="0.0222%" height="15" fill="rgb(230,108,32)" fg:x="1192883" fg:w="533"/><text x="50.0107%" y="463.50"></text></g><g><title>btrfs_match_dir_item_name (3,240 samples, 0.14%)</title><rect x="49.7008%" y="469" width="0.1352%" height="15" fill="rgb(216,165,31)" fg:x="1191447" fg:w="3240"/><text x="49.9508%" y="479.50"></text></g><g><title>memcmp_extent_buffer (1,271 samples, 0.05%)</title><rect x="49.7830%" y="453" width="0.0530%" height="15" fill="rgb(218,122,21)" fg:x="1193416" fg:w="1271"/><text x="50.0330%" y="463.50"></text></g><g><title>memcmp (746 samples, 0.03%)</title><rect x="49.8049%" y="437" width="0.0311%" height="15" fill="rgb(223,224,47)" fg:x="1193941" fg:w="746"/><text x="50.0549%" y="447.50"></text></g><g><title>_raw_read_lock (673 samples, 0.03%)</title><rect x="49.9885%" y="421" width="0.0281%" height="15" fill="rgb(238,102,44)" fg:x="1198342" fg:w="673"/><text x="50.2385%" y="431.50"></text></g><g><title>finish_wait (3,662 samples, 0.15%)</title><rect x="50.0189%" y="421" width="0.1528%" height="15" fill="rgb(236,46,40)" fg:x="1199072" fg:w="3662"/><text x="50.2689%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (3,457 samples, 0.14%)</title><rect x="50.0275%" y="405" width="0.1442%" height="15" fill="rgb(247,202,50)" fg:x="1199277" fg:w="3457"/><text x="50.2775%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,309 samples, 0.14%)</title><rect x="50.0336%" y="389" width="0.1380%" height="15" fill="rgb(209,99,20)" fg:x="1199425" fg:w="3309"/><text x="50.2836%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (9,462 samples, 0.39%)</title><rect x="50.2093%" y="405" width="0.3947%" height="15" fill="rgb(252,27,34)" fg:x="1203635" fg:w="9462"/><text x="50.4593%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,028 samples, 0.38%)</title><rect x="50.2274%" y="389" width="0.3766%" height="15" fill="rgb(215,206,23)" fg:x="1204069" fg:w="9028"/><text x="50.4774%" y="399.50"></text></g><g><title>prepare_to_wait_event (10,528 samples, 0.44%)</title><rect x="50.1721%" y="421" width="0.4392%" height="15" fill="rgb(212,135,36)" fg:x="1202745" fg:w="10528"/><text x="50.4221%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (10,500 samples, 0.44%)</title><rect x="50.6113%" y="421" width="0.4380%" height="15" fill="rgb(240,189,1)" fg:x="1213273" fg:w="10500"/><text x="50.8613%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,560 samples, 0.32%)</title><rect x="50.7339%" y="405" width="0.3154%" height="15" fill="rgb(242,56,20)" fg:x="1216213" fg:w="7560"/><text x="50.9839%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (326 samples, 0.01%)</title><rect x="51.0716%" y="389" width="0.0136%" height="15" fill="rgb(247,132,33)" fg:x="1224307" fg:w="326"/><text x="51.3216%" y="399.50"></text></g><g><title>update_curr (583 samples, 0.02%)</title><rect x="51.1205%" y="357" width="0.0243%" height="15" fill="rgb(208,149,11)" fg:x="1225479" fg:w="583"/><text x="51.3705%" y="367.50"></text></g><g><title>dequeue_entity (1,671 samples, 0.07%)</title><rect x="51.0979%" y="373" width="0.0697%" height="15" fill="rgb(211,33,11)" fg:x="1224937" fg:w="1671"/><text x="51.3479%" y="383.50"></text></g><g><title>update_load_avg (546 samples, 0.02%)</title><rect x="51.1448%" y="357" width="0.0228%" height="15" fill="rgb(221,29,38)" fg:x="1226062" fg:w="546"/><text x="51.3948%" y="367.50"></text></g><g><title>dequeue_task_fair (2,009 samples, 0.08%)</title><rect x="51.0895%" y="389" width="0.0838%" height="15" fill="rgb(206,182,49)" fg:x="1224736" fg:w="2009"/><text x="51.3395%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (2,827 samples, 0.12%)</title><rect x="51.1868%" y="373" width="0.1179%" height="15" fill="rgb(216,140,1)" fg:x="1227068" fg:w="2827"/><text x="51.4368%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,733 samples, 0.11%)</title><rect x="51.1907%" y="357" width="0.1140%" height="15" fill="rgb(232,57,40)" fg:x="1227162" fg:w="2733"/><text x="51.4407%" y="367.50"></text></g><g><title>native_write_msr (2,697 samples, 0.11%)</title><rect x="51.1922%" y="341" width="0.1125%" height="15" fill="rgb(224,186,18)" fg:x="1227198" fg:w="2697"/><text x="51.4422%" y="351.50"></text></g><g><title>finish_task_switch (3,271 samples, 0.14%)</title><rect x="51.1733%" y="389" width="0.1364%" height="15" fill="rgb(215,121,11)" fg:x="1226745" fg:w="3271"/><text x="51.4233%" y="399.50"></text></g><g><title>pick_next_task_fair (373 samples, 0.02%)</title><rect x="51.3099%" y="389" width="0.0156%" height="15" fill="rgb(245,147,10)" fg:x="1230020" fg:w="373"/><text x="51.5599%" y="399.50"></text></g><g><title>pick_next_task_idle (325 samples, 0.01%)</title><rect x="51.3255%" y="389" width="0.0136%" height="15" fill="rgb(238,153,13)" fg:x="1230393" fg:w="325"/><text x="51.5755%" y="399.50"></text></g><g><title>__update_idle_core (278 samples, 0.01%)</title><rect x="51.3274%" y="373" width="0.0116%" height="15" fill="rgb(233,108,0)" fg:x="1230440" fg:w="278"/><text x="51.5774%" y="383.50"></text></g><g><title>psi_task_change (1,485 samples, 0.06%)</title><rect x="51.3390%" y="389" width="0.0619%" height="15" fill="rgb(212,157,17)" fg:x="1230718" fg:w="1485"/><text x="51.5890%" y="399.50"></text></g><g><title>psi_group_change (1,227 samples, 0.05%)</title><rect x="51.3498%" y="373" width="0.0512%" height="15" fill="rgb(225,213,38)" fg:x="1230976" fg:w="1227"/><text x="51.5998%" y="383.50"></text></g><g><title>record_times (250 samples, 0.01%)</title><rect x="51.3905%" y="357" width="0.0104%" height="15" fill="rgb(248,16,11)" fg:x="1231953" fg:w="250"/><text x="51.6405%" y="367.50"></text></g><g><title>__schedule (8,805 samples, 0.37%)</title><rect x="51.0529%" y="405" width="0.3673%" height="15" fill="rgb(241,33,4)" fg:x="1223858" fg:w="8805"/><text x="51.3029%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (35,097 samples, 1.46%)</title><rect x="49.9561%" y="437" width="1.4641%" height="15" fill="rgb(222,26,43)" fg:x="1197567" fg:w="35097"/><text x="50.2061%" y="447.50"></text></g><g><title>schedule (8,891 samples, 0.37%)</title><rect x="51.0493%" y="421" width="0.3709%" height="15" fill="rgb(243,29,36)" fg:x="1223773" fg:w="8891"/><text x="51.2993%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (36,655 samples, 1.53%)</title><rect x="49.9468%" y="453" width="1.5291%" height="15" fill="rgb(241,9,27)" fg:x="1197342" fg:w="36655"/><text x="50.1968%" y="463.50"></text></g><g><title>btrfs_root_node (1,333 samples, 0.06%)</title><rect x="51.4202%" y="437" width="0.0556%" height="15" fill="rgb(205,117,26)" fg:x="1232664" fg:w="1333"/><text x="51.6702%" y="447.50"></text></g><g><title>dequeue_entity (529 samples, 0.02%)</title><rect x="51.5082%" y="389" width="0.0221%" height="15" fill="rgb(209,80,39)" fg:x="1234774" fg:w="529"/><text x="51.7582%" y="399.50"></text></g><g><title>dequeue_task_fair (652 samples, 0.03%)</title><rect x="51.5051%" y="405" width="0.0272%" height="15" fill="rgb(239,155,6)" fg:x="1234700" fg:w="652"/><text x="51.7551%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (1,195 samples, 0.05%)</title><rect x="51.5367%" y="389" width="0.0498%" height="15" fill="rgb(212,104,12)" fg:x="1235457" fg:w="1195"/><text x="51.7867%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,170 samples, 0.05%)</title><rect x="51.5377%" y="373" width="0.0488%" height="15" fill="rgb(234,204,3)" fg:x="1235482" fg:w="1170"/><text x="51.7877%" y="383.50"></text></g><g><title>native_write_msr (1,163 samples, 0.05%)</title><rect x="51.5380%" y="357" width="0.0485%" height="15" fill="rgb(251,218,7)" fg:x="1235489" fg:w="1163"/><text x="51.7880%" y="367.50"></text></g><g><title>finish_task_switch (1,346 samples, 0.06%)</title><rect x="51.5323%" y="405" width="0.0561%" height="15" fill="rgb(221,81,32)" fg:x="1235352" fg:w="1346"/><text x="51.7823%" y="415.50"></text></g><g><title>psi_task_change (484 samples, 0.02%)</title><rect x="51.5980%" y="405" width="0.0202%" height="15" fill="rgb(214,152,26)" fg:x="1236927" fg:w="484"/><text x="51.8480%" y="415.50"></text></g><g><title>psi_group_change (397 samples, 0.02%)</title><rect x="51.6017%" y="389" width="0.0166%" height="15" fill="rgb(223,22,3)" fg:x="1237014" fg:w="397"/><text x="51.8517%" y="399.50"></text></g><g><title>__btrfs_tree_lock (3,595 samples, 0.15%)</title><rect x="51.4758%" y="453" width="0.1500%" height="15" fill="rgb(207,174,7)" fg:x="1233997" fg:w="3595"/><text x="51.7258%" y="463.50"></text></g><g><title>schedule (3,198 samples, 0.13%)</title><rect x="51.4924%" y="437" width="0.1334%" height="15" fill="rgb(224,19,52)" fg:x="1234394" fg:w="3198"/><text x="51.7424%" y="447.50"></text></g><g><title>__schedule (3,169 samples, 0.13%)</title><rect x="51.4936%" y="421" width="0.1322%" height="15" fill="rgb(228,24,14)" fg:x="1234423" fg:w="3169"/><text x="51.7436%" y="431.50"></text></g><g><title>alloc_tree_block_no_bg_flush (287 samples, 0.01%)</title><rect x="51.6445%" y="421" width="0.0120%" height="15" fill="rgb(230,153,43)" fg:x="1238040" fg:w="287"/><text x="51.8945%" y="431.50"></text></g><g><title>btrfs_alloc_tree_block (285 samples, 0.01%)</title><rect x="51.6445%" y="405" width="0.0119%" height="15" fill="rgb(231,106,12)" fg:x="1238042" fg:w="285"/><text x="51.8945%" y="415.50"></text></g><g><title>__btrfs_cow_block (593 samples, 0.02%)</title><rect x="51.6442%" y="437" width="0.0247%" height="15" fill="rgb(215,92,2)" fg:x="1238033" fg:w="593"/><text x="51.8942%" y="447.50"></text></g><g><title>btrfs_cow_block (600 samples, 0.03%)</title><rect x="51.6440%" y="453" width="0.0250%" height="15" fill="rgb(249,143,25)" fg:x="1238030" fg:w="600"/><text x="51.8940%" y="463.50"></text></g><g><title>_cond_resched (263 samples, 0.01%)</title><rect x="51.7192%" y="421" width="0.0110%" height="15" fill="rgb(252,7,35)" fg:x="1239832" fg:w="263"/><text x="51.9692%" y="431.50"></text></g><g><title>_raw_write_lock (657 samples, 0.03%)</title><rect x="51.7327%" y="421" width="0.0274%" height="15" fill="rgb(216,69,40)" fg:x="1240155" fg:w="657"/><text x="51.9827%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (4,115 samples, 0.17%)</title><rect x="51.7714%" y="405" width="0.1717%" height="15" fill="rgb(240,36,33)" fg:x="1241083" fg:w="4115"/><text x="52.0214%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,842 samples, 0.16%)</title><rect x="51.7828%" y="389" width="0.1603%" height="15" fill="rgb(231,128,14)" fg:x="1241356" fg:w="3842"/><text x="52.0328%" y="399.50"></text></g><g><title>finish_wait (4,381 samples, 0.18%)</title><rect x="51.7604%" y="421" width="0.1828%" height="15" fill="rgb(245,143,14)" fg:x="1240819" fg:w="4381"/><text x="52.0104%" y="431.50"></text></g><g><title>__list_add_valid (308 samples, 0.01%)</title><rect x="51.9868%" y="405" width="0.0128%" height="15" fill="rgb(222,130,28)" fg:x="1246246" fg:w="308"/><text x="52.2368%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (11,238 samples, 0.47%)</title><rect x="51.9996%" y="405" width="0.4688%" height="15" fill="rgb(212,10,48)" fg:x="1246554" fg:w="11238"/><text x="52.2496%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,384 samples, 0.43%)</title><rect x="52.0352%" y="389" width="0.4332%" height="15" fill="rgb(254,118,45)" fg:x="1247408" fg:w="10384"/><text x="52.2852%" y="399.50"></text></g><g><title>_raw_spin_unlock_irqrestore (296 samples, 0.01%)</title><rect x="52.4684%" y="405" width="0.0123%" height="15" fill="rgb(228,6,45)" fg:x="1257792" fg:w="296"/><text x="52.7184%" y="415.50"></text></g><g><title>prepare_to_wait_event (12,841 samples, 0.54%)</title><rect x="51.9451%" y="421" width="0.5357%" height="15" fill="rgb(241,18,35)" fg:x="1245248" fg:w="12841"/><text x="52.1951%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (19,279 samples, 0.80%)</title><rect x="52.4808%" y="421" width="0.8042%" height="15" fill="rgb(227,214,53)" fg:x="1258089" fg:w="19279"/><text x="52.7308%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,725 samples, 0.36%)</title><rect x="52.9211%" y="405" width="0.3640%" height="15" fill="rgb(224,107,51)" fg:x="1268643" fg:w="8725"/><text x="53.1711%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (492 samples, 0.02%)</title><rect x="53.3259%" y="389" width="0.0205%" height="15" fill="rgb(248,60,28)" fg:x="1278349" fg:w="492"/><text x="53.5759%" y="399.50"></text></g><g><title>update_cfs_group (311 samples, 0.01%)</title><rect x="53.3921%" y="357" width="0.0130%" height="15" fill="rgb(249,101,23)" fg:x="1279935" fg:w="311"/><text x="53.6421%" y="367.50"></text></g><g><title>update_curr (971 samples, 0.04%)</title><rect x="53.4051%" y="357" width="0.0405%" height="15" fill="rgb(228,51,19)" fg:x="1280246" fg:w="971"/><text x="53.6551%" y="367.50"></text></g><g><title>__update_load_avg_se (279 samples, 0.01%)</title><rect x="53.4694%" y="341" width="0.0116%" height="15" fill="rgb(213,20,6)" fg:x="1281788" fg:w="279"/><text x="53.7194%" y="351.50"></text></g><g><title>dequeue_entity (2,763 samples, 0.12%)</title><rect x="53.3666%" y="373" width="0.1153%" height="15" fill="rgb(212,124,10)" fg:x="1279324" fg:w="2763"/><text x="53.6166%" y="383.50"></text></g><g><title>update_load_avg (870 samples, 0.04%)</title><rect x="53.4456%" y="357" width="0.0363%" height="15" fill="rgb(248,3,40)" fg:x="1281217" fg:w="870"/><text x="53.6956%" y="367.50"></text></g><g><title>dequeue_task_fair (3,295 samples, 0.14%)</title><rect x="53.3540%" y="389" width="0.1374%" height="15" fill="rgb(223,178,23)" fg:x="1279023" fg:w="3295"/><text x="53.6040%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (4,787 samples, 0.20%)</title><rect x="53.5157%" y="373" width="0.1997%" height="15" fill="rgb(240,132,45)" fg:x="1282897" fg:w="4787"/><text x="53.7657%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,620 samples, 0.19%)</title><rect x="53.5226%" y="357" width="0.1927%" height="15" fill="rgb(245,164,36)" fg:x="1283064" fg:w="4620"/><text x="53.7726%" y="367.50"></text></g><g><title>native_write_msr (4,557 samples, 0.19%)</title><rect x="53.5252%" y="341" width="0.1901%" height="15" fill="rgb(231,188,53)" fg:x="1283127" fg:w="4557"/><text x="53.7752%" y="351.50"></text></g><g><title>finish_task_switch (5,633 samples, 0.23%)</title><rect x="53.4915%" y="389" width="0.2350%" height="15" fill="rgb(237,198,39)" fg:x="1282318" fg:w="5633"/><text x="53.7415%" y="399.50"></text></g><g><title>newidle_balance (313 samples, 0.01%)</title><rect x="53.7336%" y="373" width="0.0131%" height="15" fill="rgb(223,120,35)" fg:x="1288121" fg:w="313"/><text x="53.9836%" y="383.50"></text></g><g><title>pick_next_task_fair (601 samples, 0.03%)</title><rect x="53.7269%" y="389" width="0.0251%" height="15" fill="rgb(253,107,49)" fg:x="1287960" fg:w="601"/><text x="53.9769%" y="399.50"></text></g><g><title>pick_next_task_idle (602 samples, 0.03%)</title><rect x="53.7519%" y="389" width="0.0251%" height="15" fill="rgb(216,44,31)" fg:x="1288561" fg:w="602"/><text x="54.0019%" y="399.50"></text></g><g><title>__update_idle_core (524 samples, 0.02%)</title><rect x="53.7552%" y="373" width="0.0219%" height="15" fill="rgb(253,87,21)" fg:x="1288639" fg:w="524"/><text x="54.0052%" y="383.50"></text></g><g><title>psi_task_change (2,572 samples, 0.11%)</title><rect x="53.7770%" y="389" width="0.1073%" height="15" fill="rgb(226,18,2)" fg:x="1289163" fg:w="2572"/><text x="54.0270%" y="399.50"></text></g><g><title>psi_group_change (2,183 samples, 0.09%)</title><rect x="53.7933%" y="373" width="0.0911%" height="15" fill="rgb(216,8,46)" fg:x="1289552" fg:w="2183"/><text x="54.0433%" y="383.50"></text></g><g><title>record_times (549 samples, 0.02%)</title><rect x="53.8614%" y="357" width="0.0229%" height="15" fill="rgb(226,140,39)" fg:x="1291186" fg:w="549"/><text x="54.1114%" y="367.50"></text></g><g><title>sched_clock_cpu (369 samples, 0.02%)</title><rect x="53.8689%" y="341" width="0.0154%" height="15" fill="rgb(221,194,54)" fg:x="1291366" fg:w="369"/><text x="54.1189%" y="351.50"></text></g><g><title>sched_clock (314 samples, 0.01%)</title><rect x="53.8712%" y="325" width="0.0131%" height="15" fill="rgb(213,92,11)" fg:x="1291421" fg:w="314"/><text x="54.1212%" y="335.50"></text></g><g><title>native_sched_clock (294 samples, 0.01%)</title><rect x="53.8721%" y="309" width="0.0123%" height="15" fill="rgb(229,162,46)" fg:x="1291441" fg:w="294"/><text x="54.1221%" y="319.50"></text></g><g><title>psi_task_switch (268 samples, 0.01%)</title><rect x="53.8843%" y="389" width="0.0112%" height="15" fill="rgb(214,111,36)" fg:x="1291735" fg:w="268"/><text x="54.1343%" y="399.50"></text></g><g><title>__schedule (14,914 samples, 0.62%)</title><rect x="53.2935%" y="405" width="0.6221%" height="15" fill="rgb(207,6,21)" fg:x="1277571" fg:w="14914"/><text x="53.5435%" y="415.50"></text></g><g><title>update_rq_clock (271 samples, 0.01%)</title><rect x="53.9043%" y="389" width="0.0113%" height="15" fill="rgb(213,127,38)" fg:x="1292214" fg:w="271"/><text x="54.1543%" y="399.50"></text></g><g><title>__btrfs_tree_lock (53,787 samples, 2.24%)</title><rect x="51.6720%" y="437" width="2.2437%" height="15" fill="rgb(238,118,32)" fg:x="1238700" fg:w="53787"/><text x="51.9220%" y="447.50">_..</text></g><g><title>schedule (15,119 samples, 0.63%)</title><rect x="53.2850%" y="421" width="0.6307%" height="15" fill="rgb(240,139,39)" fg:x="1277368" fg:w="15119"/><text x="53.5350%" y="431.50"></text></g><g><title>btrfs_lock_root_node (54,395 samples, 2.27%)</title><rect x="51.6691%" y="453" width="2.2691%" height="15" fill="rgb(235,10,37)" fg:x="1238630" fg:w="54395"/><text x="51.9191%" y="463.50">b..</text></g><g><title>btrfs_root_node (538 samples, 0.02%)</title><rect x="53.9157%" y="437" width="0.0224%" height="15" fill="rgb(249,171,38)" fg:x="1292487" fg:w="538"/><text x="54.1657%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (561 samples, 0.02%)</title><rect x="53.9381%" y="453" width="0.0234%" height="15" fill="rgb(242,144,32)" fg:x="1293025" fg:w="561"/><text x="54.1881%" y="463.50"></text></g><g><title>btrfs_set_lock_blocking_write (305 samples, 0.01%)</title><rect x="53.9488%" y="437" width="0.0127%" height="15" fill="rgb(217,117,21)" fg:x="1293281" fg:w="305"/><text x="54.1988%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (505 samples, 0.02%)</title><rect x="53.9617%" y="453" width="0.0211%" height="15" fill="rgb(249,87,1)" fg:x="1293589" fg:w="505"/><text x="54.2117%" y="463.50"></text></g><g><title>_raw_write_lock (388 samples, 0.02%)</title><rect x="53.9881%" y="437" width="0.0162%" height="15" fill="rgb(248,196,48)" fg:x="1294223" fg:w="388"/><text x="54.2381%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (3,142 samples, 0.13%)</title><rect x="53.9827%" y="453" width="0.1311%" height="15" fill="rgb(251,206,33)" fg:x="1294094" fg:w="3142"/><text x="54.2327%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (2,624 samples, 0.11%)</title><rect x="54.0043%" y="437" width="0.1095%" height="15" fill="rgb(232,141,28)" fg:x="1294612" fg:w="2624"/><text x="54.2543%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (638 samples, 0.03%)</title><rect x="54.1148%" y="453" width="0.0266%" height="15" fill="rgb(209,167,14)" fg:x="1297261" fg:w="638"/><text x="54.3648%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (6,270 samples, 0.26%)</title><rect x="54.1415%" y="453" width="0.2616%" height="15" fill="rgb(225,11,50)" fg:x="1297899" fg:w="6270"/><text x="54.3915%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (769 samples, 0.03%)</title><rect x="54.4343%" y="437" width="0.0321%" height="15" fill="rgb(209,50,20)" fg:x="1304918" fg:w="769"/><text x="54.6843%" y="447.50"></text></g><g><title>verify_parent_transid (603 samples, 0.03%)</title><rect x="54.4412%" y="421" width="0.0252%" height="15" fill="rgb(212,17,46)" fg:x="1305084" fg:w="603"/><text x="54.6912%" y="431.50"></text></g><g><title>btrfs_get_64 (883 samples, 0.04%)</title><rect x="54.4663%" y="437" width="0.0368%" height="15" fill="rgb(216,101,39)" fg:x="1305687" fg:w="883"/><text x="54.7163%" y="447.50"></text></g><g><title>__radix_tree_lookup (3,183 samples, 0.13%)</title><rect x="54.5843%" y="421" width="0.1328%" height="15" fill="rgb(212,228,48)" fg:x="1308516" fg:w="3183"/><text x="54.8343%" y="431.50"></text></g><g><title>mark_page_accessed (1,155 samples, 0.05%)</title><rect x="54.7300%" y="405" width="0.0482%" height="15" fill="rgb(250,6,50)" fg:x="1312007" fg:w="1155"/><text x="54.9800%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,456 samples, 0.06%)</title><rect x="54.7175%" y="421" width="0.0607%" height="15" fill="rgb(250,160,48)" fg:x="1311708" fg:w="1456"/><text x="54.9675%" y="431.50"></text></g><g><title>find_extent_buffer (6,277 samples, 0.26%)</title><rect x="54.5184%" y="437" width="0.2618%" height="15" fill="rgb(244,216,33)" fg:x="1306935" fg:w="6277"/><text x="54.7684%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (9,838 samples, 0.41%)</title><rect x="54.4030%" y="453" width="0.4104%" height="15" fill="rgb(207,157,5)" fg:x="1304169" fg:w="9838"/><text x="54.6530%" y="463.50"></text></g><g><title>read_extent_buffer (795 samples, 0.03%)</title><rect x="54.7802%" y="437" width="0.0332%" height="15" fill="rgb(228,199,8)" fg:x="1313212" fg:w="795"/><text x="55.0302%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (312 samples, 0.01%)</title><rect x="54.8229%" y="437" width="0.0130%" height="15" fill="rgb(227,80,20)" fg:x="1314235" fg:w="312"/><text x="55.0729%" y="447.50"></text></g><g><title>verify_parent_transid (277 samples, 0.01%)</title><rect x="54.8244%" y="421" width="0.0116%" height="15" fill="rgb(222,9,33)" fg:x="1314270" fg:w="277"/><text x="55.0744%" y="431.50"></text></g><g><title>btrfs_get_64 (432 samples, 0.02%)</title><rect x="54.8359%" y="437" width="0.0180%" height="15" fill="rgb(239,44,28)" fg:x="1314547" fg:w="432"/><text x="55.0859%" y="447.50"></text></g><g><title>__radix_tree_lookup (1,405 samples, 0.06%)</title><rect x="54.8939%" y="421" width="0.0586%" height="15" fill="rgb(249,187,43)" fg:x="1315936" fg:w="1405"/><text x="55.1439%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (603 samples, 0.03%)</title><rect x="54.9528%" y="421" width="0.0252%" height="15" fill="rgb(216,141,28)" fg:x="1317348" fg:w="603"/><text x="55.2028%" y="431.50"></text></g><g><title>mark_page_accessed (471 samples, 0.02%)</title><rect x="54.9583%" y="405" width="0.0196%" height="15" fill="rgb(230,154,53)" fg:x="1317480" fg:w="471"/><text x="55.2083%" y="415.50"></text></g><g><title>find_extent_buffer (2,988 samples, 0.12%)</title><rect x="54.8539%" y="437" width="0.1246%" height="15" fill="rgb(227,82,4)" fg:x="1314979" fg:w="2988"/><text x="55.1039%" y="447.50"></text></g><g><title>reada_for_balance (4,172 samples, 0.17%)</title><rect x="54.8134%" y="453" width="0.1740%" height="15" fill="rgb(220,107,16)" fg:x="1314007" fg:w="4172"/><text x="55.0634%" y="463.50"></text></g><g><title>__list_del_entry_valid (529 samples, 0.02%)</title><rect x="55.0616%" y="389" width="0.0221%" height="15" fill="rgb(207,187,2)" fg:x="1319956" fg:w="529"/><text x="55.3116%" y="399.50"></text></g><g><title>_raw_spin_lock (669 samples, 0.03%)</title><rect x="55.3846%" y="373" width="0.0279%" height="15" fill="rgb(210,162,52)" fg:x="1327699" fg:w="669"/><text x="55.6346%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (346 samples, 0.01%)</title><rect x="55.3980%" y="357" width="0.0144%" height="15" fill="rgb(217,216,49)" fg:x="1328022" fg:w="346"/><text x="55.6480%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (837 samples, 0.03%)</title><rect x="55.4125%" y="373" width="0.0349%" height="15" fill="rgb(218,146,49)" fg:x="1328368" fg:w="837"/><text x="55.6625%" y="383.50"></text></g><g><title>available_idle_cpu (697 samples, 0.03%)</title><rect x="55.5169%" y="357" width="0.0291%" height="15" fill="rgb(216,55,40)" fg:x="1330871" fg:w="697"/><text x="55.7669%" y="367.50"></text></g><g><title>select_task_rq_fair (3,435 samples, 0.14%)</title><rect x="55.4522%" y="373" width="0.1433%" height="15" fill="rgb(208,196,21)" fg:x="1329320" fg:w="3435"/><text x="55.7022%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (810 samples, 0.03%)</title><rect x="55.5617%" y="357" width="0.0338%" height="15" fill="rgb(242,117,42)" fg:x="1331945" fg:w="810"/><text x="55.8117%" y="367.50"></text></g><g><title>set_task_cpu (260 samples, 0.01%)</title><rect x="55.5955%" y="373" width="0.0108%" height="15" fill="rgb(210,11,23)" fg:x="1332755" fg:w="260"/><text x="55.8455%" y="383.50"></text></g><g><title>update_cfs_group (284 samples, 0.01%)</title><rect x="55.7068%" y="325" width="0.0118%" height="15" fill="rgb(217,110,2)" fg:x="1335423" fg:w="284"/><text x="55.9568%" y="335.50"></text></g><g><title>update_curr (421 samples, 0.02%)</title><rect x="55.7186%" y="325" width="0.0176%" height="15" fill="rgb(229,77,54)" fg:x="1335707" fg:w="421"/><text x="55.9686%" y="335.50"></text></g><g><title>__update_load_avg_cfs_rq (271 samples, 0.01%)</title><rect x="55.7612%" y="309" width="0.0113%" height="15" fill="rgb(218,53,16)" fg:x="1336729" fg:w="271"/><text x="56.0112%" y="319.50"></text></g><g><title>enqueue_entity (3,302 samples, 0.14%)</title><rect x="55.6470%" y="341" width="0.1377%" height="15" fill="rgb(215,38,13)" fg:x="1333991" fg:w="3302"/><text x="55.8970%" y="351.50"></text></g><g><title>update_load_avg (1,165 samples, 0.05%)</title><rect x="55.7362%" y="325" width="0.0486%" height="15" fill="rgb(235,42,18)" fg:x="1336128" fg:w="1165"/><text x="55.9862%" y="335.50"></text></g><g><title>enqueue_task_fair (4,239 samples, 0.18%)</title><rect x="55.6194%" y="357" width="0.1768%" height="15" fill="rgb(219,66,54)" fg:x="1333328" fg:w="4239"/><text x="55.8694%" y="367.50"></text></g><g><title>ttwu_do_activate (8,748 samples, 0.36%)</title><rect x="55.6063%" y="373" width="0.3649%" height="15" fill="rgb(222,205,4)" fg:x="1333015" fg:w="8748"/><text x="55.8563%" y="383.50"></text></g><g><title>psi_task_change (4,191 samples, 0.17%)</title><rect x="55.7964%" y="357" width="0.1748%" height="15" fill="rgb(227,213,46)" fg:x="1337572" fg:w="4191"/><text x="56.0464%" y="367.50"></text></g><g><title>psi_group_change (3,766 samples, 0.16%)</title><rect x="55.8141%" y="341" width="0.1571%" height="15" fill="rgb(250,145,42)" fg:x="1337997" fg:w="3766"/><text x="56.0641%" y="351.50"></text></g><g><title>record_times (612 samples, 0.03%)</title><rect x="55.9457%" y="325" width="0.0255%" height="15" fill="rgb(219,15,2)" fg:x="1341151" fg:w="612"/><text x="56.1957%" y="335.50"></text></g><g><title>sched_clock_cpu (400 samples, 0.02%)</title><rect x="55.9545%" y="309" width="0.0167%" height="15" fill="rgb(231,181,52)" fg:x="1341363" fg:w="400"/><text x="56.2045%" y="319.50"></text></g><g><title>sched_clock (348 samples, 0.01%)</title><rect x="55.9567%" y="293" width="0.0145%" height="15" fill="rgb(235,1,42)" fg:x="1341415" fg:w="348"/><text x="56.2067%" y="303.50"></text></g><g><title>native_sched_clock (306 samples, 0.01%)</title><rect x="55.9585%" y="277" width="0.0128%" height="15" fill="rgb(249,88,27)" fg:x="1341457" fg:w="306"/><text x="56.2085%" y="287.50"></text></g><g><title>resched_curr (329 samples, 0.01%)</title><rect x="55.9919%" y="341" width="0.0137%" height="15" fill="rgb(235,145,16)" fg:x="1342258" fg:w="329"/><text x="56.2419%" y="351.50"></text></g><g><title>ttwu_do_wakeup (828 samples, 0.03%)</title><rect x="55.9712%" y="373" width="0.0345%" height="15" fill="rgb(237,114,19)" fg:x="1341763" fg:w="828"/><text x="56.2212%" y="383.50"></text></g><g><title>check_preempt_curr (749 samples, 0.03%)</title><rect x="55.9745%" y="357" width="0.0312%" height="15" fill="rgb(238,51,50)" fg:x="1341842" fg:w="749"/><text x="56.2245%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (727 samples, 0.03%)</title><rect x="56.0058%" y="373" width="0.0303%" height="15" fill="rgb(205,194,25)" fg:x="1342591" fg:w="727"/><text x="56.2558%" y="383.50"></text></g><g><title>__wake_up_common (24,719 samples, 1.03%)</title><rect x="55.0370%" y="421" width="1.0311%" height="15" fill="rgb(215,203,17)" fg:x="1319367" fg:w="24719"/><text x="55.2870%" y="431.50"></text></g><g><title>autoremove_wake_function (24,192 samples, 1.01%)</title><rect x="55.0590%" y="405" width="1.0092%" height="15" fill="rgb(233,112,49)" fg:x="1319894" fg:w="24192"/><text x="55.3090%" y="415.50"></text></g><g><title>try_to_wake_up (23,573 samples, 0.98%)</title><rect x="55.0848%" y="389" width="0.9833%" height="15" fill="rgb(241,130,26)" fg:x="1320513" fg:w="23573"/><text x="55.3348%" y="399.50"></text></g><g><title>update_rq_clock (768 samples, 0.03%)</title><rect x="56.0361%" y="373" width="0.0320%" height="15" fill="rgb(252,223,19)" fg:x="1343318" fg:w="768"/><text x="56.2861%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (4,485 samples, 0.19%)</title><rect x="56.0681%" y="421" width="0.1871%" height="15" fill="rgb(211,95,25)" fg:x="1344086" fg:w="4485"/><text x="56.3181%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,232 samples, 0.18%)</title><rect x="56.0787%" y="405" width="0.1765%" height="15" fill="rgb(251,182,27)" fg:x="1344339" fg:w="4232"/><text x="56.3287%" y="415.50"></text></g><g><title>__wake_up_common_lock (29,494 samples, 1.23%)</title><rect x="55.0339%" y="437" width="1.2303%" height="15" fill="rgb(238,24,4)" fg:x="1319294" fg:w="29494"/><text x="55.2839%" y="447.50"></text></g><g><title>btrfs_search_slot (154,786 samples, 6.46%)</title><rect x="49.8360%" y="469" width="6.4569%" height="15" fill="rgb(224,220,25)" fg:x="1194687" fg:w="154786"/><text x="50.0860%" y="479.50">btrfs_se..</text></g><g><title>unlock_up (31,199 samples, 1.30%)</title><rect x="54.9914%" y="453" width="1.3015%" height="15" fill="rgb(239,133,26)" fg:x="1318274" fg:w="31199"/><text x="55.2414%" y="463.50"></text></g><g><title>btrfs_tree_unlock (680 samples, 0.03%)</title><rect x="56.2645%" y="437" width="0.0284%" height="15" fill="rgb(211,94,48)" fg:x="1348793" fg:w="680"/><text x="56.5145%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (159,885 samples, 6.67%)</title><rect x="49.6764%" y="485" width="6.6696%" height="15" fill="rgb(239,87,6)" fg:x="1190861" fg:w="159885"/><text x="49.9264%" y="495.50">btrfs_loo..</text></g><g><title>crc32c (1,273 samples, 0.05%)</title><rect x="56.2928%" y="469" width="0.0531%" height="15" fill="rgb(227,62,0)" fg:x="1349473" fg:w="1273"/><text x="56.5428%" y="479.50"></text></g><g><title>crypto_shash_update (569 samples, 0.02%)</title><rect x="56.3222%" y="453" width="0.0237%" height="15" fill="rgb(211,226,4)" fg:x="1350177" fg:w="569"/><text x="56.5722%" y="463.50"></text></g><g><title>select_task_rq_fair (766 samples, 0.03%)</title><rect x="56.4203%" y="405" width="0.0320%" height="15" fill="rgb(253,38,52)" fg:x="1352528" fg:w="766"/><text x="56.6703%" y="415.50"></text></g><g><title>enqueue_entity (821 samples, 0.03%)</title><rect x="56.4644%" y="373" width="0.0342%" height="15" fill="rgb(229,126,40)" fg:x="1353586" fg:w="821"/><text x="56.7144%" y="383.50"></text></g><g><title>update_load_avg (299 samples, 0.01%)</title><rect x="56.4862%" y="357" width="0.0125%" height="15" fill="rgb(229,165,44)" fg:x="1354108" fg:w="299"/><text x="56.7362%" y="367.50"></text></g><g><title>enqueue_task_fair (1,025 samples, 0.04%)</title><rect x="56.4575%" y="389" width="0.0428%" height="15" fill="rgb(247,95,47)" fg:x="1353420" fg:w="1025"/><text x="56.7075%" y="399.50"></text></g><g><title>ttwu_do_activate (2,094 samples, 0.09%)</title><rect x="56.4543%" y="405" width="0.0874%" height="15" fill="rgb(216,140,30)" fg:x="1353344" fg:w="2094"/><text x="56.7043%" y="415.50"></text></g><g><title>psi_task_change (991 samples, 0.04%)</title><rect x="56.5003%" y="389" width="0.0413%" height="15" fill="rgb(246,214,8)" fg:x="1354447" fg:w="991"/><text x="56.7503%" y="399.50"></text></g><g><title>psi_group_change (887 samples, 0.04%)</title><rect x="56.5047%" y="373" width="0.0370%" height="15" fill="rgb(227,224,15)" fg:x="1354551" fg:w="887"/><text x="56.7547%" y="383.50"></text></g><g><title>__wake_up_common (4,946 samples, 0.21%)</title><rect x="56.3573%" y="453" width="0.2063%" height="15" fill="rgb(233,175,4)" fg:x="1351017" fg:w="4946"/><text x="56.6073%" y="463.50"></text></g><g><title>autoremove_wake_function (4,855 samples, 0.20%)</title><rect x="56.3611%" y="437" width="0.2025%" height="15" fill="rgb(221,66,45)" fg:x="1351108" fg:w="4855"/><text x="56.6111%" y="447.50"></text></g><g><title>try_to_wake_up (4,760 samples, 0.20%)</title><rect x="56.3650%" y="421" width="0.1986%" height="15" fill="rgb(221,178,18)" fg:x="1351203" fg:w="4760"/><text x="56.6150%" y="431.50"></text></g><g><title>__wake_up_common_lock (5,185 samples, 0.22%)</title><rect x="56.3560%" y="469" width="0.2163%" height="15" fill="rgb(213,81,29)" fg:x="1350987" fg:w="5185"/><text x="56.6060%" y="479.50"></text></g><g><title>btrfs_tree_unlock (395 samples, 0.02%)</title><rect x="56.5724%" y="469" width="0.0165%" height="15" fill="rgb(220,89,49)" fg:x="1356175" fg:w="395"/><text x="56.8224%" y="479.50"></text></g><g><title>_raw_spin_lock (433 samples, 0.02%)</title><rect x="56.6336%" y="453" width="0.0181%" height="15" fill="rgb(227,60,33)" fg:x="1357641" fg:w="433"/><text x="56.8836%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,470 samples, 0.06%)</title><rect x="56.5905%" y="469" width="0.0613%" height="15" fill="rgb(205,113,12)" fg:x="1356609" fg:w="1470"/><text x="56.8405%" y="479.50"></text></g><g><title>btrfs_release_path (7,749 samples, 0.32%)</title><rect x="56.3460%" y="485" width="0.3232%" height="15" fill="rgb(211,32,1)" fg:x="1350746" fg:w="7749"/><text x="56.5960%" y="495.50"></text></g><g><title>release_extent_buffer (416 samples, 0.02%)</title><rect x="56.6518%" y="469" width="0.0174%" height="15" fill="rgb(246,2,12)" fg:x="1358079" fg:w="416"/><text x="56.9018%" y="479.50"></text></g><g><title>_raw_spin_lock (307 samples, 0.01%)</title><rect x="56.7266%" y="437" width="0.0128%" height="15" fill="rgb(243,37,27)" fg:x="1359872" fg:w="307"/><text x="56.9766%" y="447.50"></text></g><g><title>mutex_lock (359 samples, 0.01%)</title><rect x="56.7395%" y="437" width="0.0150%" height="15" fill="rgb(248,211,31)" fg:x="1360181" fg:w="359"/><text x="56.9895%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,653 samples, 0.07%)</title><rect x="56.7017%" y="453" width="0.0690%" height="15" fill="rgb(242,146,47)" fg:x="1359274" fg:w="1653"/><text x="56.9517%" y="463.50"></text></g><g><title>mutex_unlock (387 samples, 0.02%)</title><rect x="56.7545%" y="437" width="0.0161%" height="15" fill="rgb(206,70,20)" fg:x="1360540" fg:w="387"/><text x="57.0045%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (470 samples, 0.02%)</title><rect x="56.7787%" y="453" width="0.0196%" height="15" fill="rgb(215,10,51)" fg:x="1361120" fg:w="470"/><text x="57.0287%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (399 samples, 0.02%)</title><rect x="56.7817%" y="437" width="0.0166%" height="15" fill="rgb(243,178,53)" fg:x="1361191" fg:w="399"/><text x="57.0317%" y="447.50"></text></g><g><title>inode_get_bytes (325 samples, 0.01%)</title><rect x="56.8104%" y="437" width="0.0136%" height="15" fill="rgb(233,221,20)" fg:x="1361879" fg:w="325"/><text x="57.0604%" y="447.50"></text></g><g><title>fill_stack_inode_item (1,008 samples, 0.04%)</title><rect x="56.7983%" y="453" width="0.0420%" height="15" fill="rgb(218,95,35)" fg:x="1361590" fg:w="1008"/><text x="57.0483%" y="463.50"></text></g><g><title>map_id_up (394 samples, 0.02%)</title><rect x="56.8239%" y="437" width="0.0164%" height="15" fill="rgb(229,13,5)" fg:x="1362204" fg:w="394"/><text x="57.0739%" y="447.50"></text></g><g><title>btrfs_delayed_update_inode (3,987 samples, 0.17%)</title><rect x="56.6940%" y="469" width="0.1663%" height="15" fill="rgb(252,164,30)" fg:x="1359089" fg:w="3987"/><text x="56.9440%" y="479.50"></text></g><g><title>mutex_unlock (273 samples, 0.01%)</title><rect x="56.8489%" y="453" width="0.0114%" height="15" fill="rgb(232,68,36)" fg:x="1362803" fg:w="273"/><text x="57.0989%" y="463.50"></text></g><g><title>_raw_spin_lock (515 samples, 0.02%)</title><rect x="56.8682%" y="453" width="0.0215%" height="15" fill="rgb(219,59,54)" fg:x="1363265" fg:w="515"/><text x="57.1182%" y="463.50"></text></g><g><title>btrfs_update_inode (5,940 samples, 0.25%)</title><rect x="56.6692%" y="485" width="0.2478%" height="15" fill="rgb(250,92,33)" fg:x="1358495" fg:w="5940"/><text x="56.9192%" y="495.50"></text></g><g><title>btrfs_update_root_times (1,359 samples, 0.06%)</title><rect x="56.8603%" y="469" width="0.0567%" height="15" fill="rgb(229,162,54)" fg:x="1363076" fg:w="1359"/><text x="57.1103%" y="479.50"></text></g><g><title>ktime_get_real_ts64 (654 samples, 0.03%)</title><rect x="56.8897%" y="453" width="0.0273%" height="15" fill="rgb(244,114,52)" fg:x="1363781" fg:w="654"/><text x="57.1397%" y="463.50"></text></g><g><title>read_tsc (244 samples, 0.01%)</title><rect x="56.9068%" y="437" width="0.0102%" height="15" fill="rgb(212,211,43)" fg:x="1364191" fg:w="244"/><text x="57.1568%" y="447.50"></text></g><g><title>kmem_cache_alloc (699 samples, 0.03%)</title><rect x="56.9244%" y="485" width="0.0292%" height="15" fill="rgb(226,147,8)" fg:x="1364612" fg:w="699"/><text x="57.1744%" y="495.50"></text></g><g><title>__btrfs_unlink_inode (272,330 samples, 11.36%)</title><rect x="45.6236%" y="501" width="11.3602%" height="15" fill="rgb(226,23,13)" fg:x="1093707" fg:w="272330"/><text x="45.8736%" y="511.50">__btrfs_unlink_in..</text></g><g><title>kmem_cache_free (726 samples, 0.03%)</title><rect x="56.9535%" y="485" width="0.0303%" height="15" fill="rgb(240,63,4)" fg:x="1365311" fg:w="726"/><text x="57.2035%" y="495.50"></text></g><g><title>__radix_tree_lookup (376 samples, 0.02%)</title><rect x="57.0117%" y="485" width="0.0157%" height="15" fill="rgb(221,1,32)" fg:x="1366705" fg:w="376"/><text x="57.2617%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,049 samples, 0.04%)</title><rect x="56.9839%" y="501" width="0.0438%" height="15" fill="rgb(242,117,10)" fg:x="1366039" fg:w="1049"/><text x="57.2339%" y="511.50"></text></g><g><title>btrfs_balance_delayed_items (649 samples, 0.03%)</title><rect x="57.0400%" y="485" width="0.0271%" height="15" fill="rgb(249,172,44)" fg:x="1367385" fg:w="649"/><text x="57.2900%" y="495.50"></text></g><g><title>_raw_spin_lock (353 samples, 0.01%)</title><rect x="57.0753%" y="453" width="0.0147%" height="15" fill="rgb(244,46,45)" fg:x="1368231" fg:w="353"/><text x="57.3253%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (295 samples, 0.01%)</title><rect x="57.0778%" y="437" width="0.0123%" height="15" fill="rgb(206,43,17)" fg:x="1368289" fg:w="295"/><text x="57.3278%" y="447.50"></text></g><g><title>select_task_rq_fair (272 samples, 0.01%)</title><rect x="57.1085%" y="437" width="0.0113%" height="15" fill="rgb(239,218,39)" fg:x="1369026" fg:w="272"/><text x="57.3585%" y="447.50"></text></g><g><title>ttwu_do_activate (376 samples, 0.02%)</title><rect x="57.1213%" y="437" width="0.0157%" height="15" fill="rgb(208,169,54)" fg:x="1369333" fg:w="376"/><text x="57.3713%" y="447.50"></text></g><g><title>try_to_wake_up (1,211 samples, 0.05%)</title><rect x="57.0942%" y="453" width="0.0505%" height="15" fill="rgb(247,25,42)" fg:x="1368683" fg:w="1211"/><text x="57.3442%" y="463.50"></text></g><g><title>__queue_work (1,780 samples, 0.07%)</title><rect x="57.0705%" y="469" width="0.0743%" height="15" fill="rgb(226,23,31)" fg:x="1368116" fg:w="1780"/><text x="57.3205%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (2,837 samples, 0.12%)</title><rect x="57.0277%" y="501" width="0.1183%" height="15" fill="rgb(247,16,28)" fg:x="1367088" fg:w="2837"/><text x="57.2777%" y="511.50"></text></g><g><title>queue_work_on (1,835 samples, 0.08%)</title><rect x="57.0695%" y="485" width="0.0765%" height="15" fill="rgb(231,147,38)" fg:x="1368090" fg:w="1835"/><text x="57.3195%" y="495.50"></text></g><g><title>enqueue_task_fair (249 samples, 0.01%)</title><rect x="57.2591%" y="357" width="0.0104%" height="15" fill="rgb(253,81,48)" fg:x="1372636" fg:w="249"/><text x="57.5091%" y="367.50"></text></g><g><title>ttwu_do_activate (518 samples, 0.02%)</title><rect x="57.2583%" y="373" width="0.0216%" height="15" fill="rgb(249,222,43)" fg:x="1372617" fg:w="518"/><text x="57.5083%" y="383.50"></text></g><g><title>psi_task_change (250 samples, 0.01%)</title><rect x="57.2695%" y="357" width="0.0104%" height="15" fill="rgb(221,3,27)" fg:x="1372885" fg:w="250"/><text x="57.5195%" y="367.50"></text></g><g><title>__wake_up_common (2,315 samples, 0.10%)</title><rect x="57.1883%" y="421" width="0.0966%" height="15" fill="rgb(228,180,5)" fg:x="1370939" fg:w="2315"/><text x="57.4383%" y="431.50"></text></g><g><title>autoremove_wake_function (2,282 samples, 0.10%)</title><rect x="57.1897%" y="405" width="0.0952%" height="15" fill="rgb(227,131,42)" fg:x="1370972" fg:w="2282"/><text x="57.4397%" y="415.50"></text></g><g><title>try_to_wake_up (2,264 samples, 0.09%)</title><rect x="57.1904%" y="389" width="0.0944%" height="15" fill="rgb(212,3,39)" fg:x="1370990" fg:w="2264"/><text x="57.4404%" y="399.50"></text></g><g><title>__wake_up_common_lock (2,395 samples, 0.10%)</title><rect x="57.1875%" y="437" width="0.0999%" height="15" fill="rgb(226,45,5)" fg:x="1370921" fg:w="2395"/><text x="57.4375%" y="447.50"></text></g><g><title>btrfs_tree_unlock (377 samples, 0.02%)</title><rect x="57.2875%" y="437" width="0.0157%" height="15" fill="rgb(215,167,45)" fg:x="1373318" fg:w="377"/><text x="57.5375%" y="447.50"></text></g><g><title>_raw_spin_lock (482 samples, 0.02%)</title><rect x="57.3491%" y="421" width="0.0201%" height="15" fill="rgb(250,218,53)" fg:x="1374794" fg:w="482"/><text x="57.5991%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,568 samples, 0.07%)</title><rect x="57.3040%" y="437" width="0.0654%" height="15" fill="rgb(207,140,0)" fg:x="1373713" fg:w="1568"/><text x="57.5540%" y="447.50"></text></g><g><title>btrfs_free_path (5,202 samples, 0.22%)</title><rect x="57.1702%" y="469" width="0.2170%" height="15" fill="rgb(238,133,51)" fg:x="1370505" fg:w="5202"/><text x="57.4202%" y="479.50"></text></g><g><title>btrfs_release_path (5,058 samples, 0.21%)</title><rect x="57.1762%" y="453" width="0.2110%" height="15" fill="rgb(218,203,53)" fg:x="1370649" fg:w="5058"/><text x="57.4262%" y="463.50"></text></g><g><title>release_extent_buffer (426 samples, 0.02%)</title><rect x="57.3694%" y="437" width="0.0178%" height="15" fill="rgb(226,184,25)" fg:x="1375281" fg:w="426"/><text x="57.6194%" y="447.50"></text></g><g><title>_raw_read_lock (636 samples, 0.03%)</title><rect x="57.5357%" y="405" width="0.0265%" height="15" fill="rgb(231,121,21)" fg:x="1379267" fg:w="636"/><text x="57.7857%" y="415.50"></text></g><g><title>finish_wait (4,789 samples, 0.20%)</title><rect x="57.5649%" y="405" width="0.1998%" height="15" fill="rgb(251,14,34)" fg:x="1379967" fg:w="4789"/><text x="57.8149%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,602 samples, 0.19%)</title><rect x="57.5727%" y="389" width="0.1920%" height="15" fill="rgb(249,193,11)" fg:x="1380154" fg:w="4602"/><text x="57.8227%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,409 samples, 0.18%)</title><rect x="57.5807%" y="373" width="0.1839%" height="15" fill="rgb(220,172,37)" fg:x="1380347" fg:w="4409"/><text x="57.8307%" y="383.50"></text></g><g><title>__list_add_valid (260 samples, 0.01%)</title><rect x="57.7966%" y="389" width="0.0108%" height="15" fill="rgb(231,229,43)" fg:x="1385521" fg:w="260"/><text x="58.0466%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (12,054 samples, 0.50%)</title><rect x="57.8074%" y="389" width="0.5028%" height="15" fill="rgb(250,161,5)" fg:x="1385781" fg:w="12054"/><text x="58.0574%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,502 samples, 0.48%)</title><rect x="57.8305%" y="373" width="0.4798%" height="15" fill="rgb(218,225,18)" fg:x="1386333" fg:w="11502"/><text x="58.0805%" y="383.50"></text></g><g><title>prepare_to_wait_event (13,259 samples, 0.55%)</title><rect x="57.7650%" y="405" width="0.5531%" height="15" fill="rgb(245,45,42)" fg:x="1384765" fg:w="13259"/><text x="58.0150%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,108 samples, 0.34%)</title><rect x="58.4457%" y="389" width="0.3382%" height="15" fill="rgb(211,115,1)" fg:x="1401081" fg:w="8108"/><text x="58.6957%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (11,166 samples, 0.47%)</title><rect x="58.3181%" y="405" width="0.4658%" height="15" fill="rgb(248,133,52)" fg:x="1398024" fg:w="11166"/><text x="58.5681%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (400 samples, 0.02%)</title><rect x="58.8110%" y="373" width="0.0167%" height="15" fill="rgb(238,100,21)" fg:x="1409839" fg:w="400"/><text x="59.0610%" y="383.50"></text></g><g><title>update_curr (680 samples, 0.03%)</title><rect x="58.8679%" y="341" width="0.0284%" height="15" fill="rgb(247,144,11)" fg:x="1411202" fg:w="680"/><text x="59.1179%" y="351.50"></text></g><g><title>dequeue_entity (1,864 samples, 0.08%)</title><rect x="58.8427%" y="357" width="0.0778%" height="15" fill="rgb(206,164,16)" fg:x="1410600" fg:w="1864"/><text x="59.0927%" y="367.50"></text></g><g><title>update_load_avg (582 samples, 0.02%)</title><rect x="58.8962%" y="341" width="0.0243%" height="15" fill="rgb(222,34,3)" fg:x="1411882" fg:w="582"/><text x="59.1462%" y="351.50"></text></g><g><title>dequeue_task_fair (2,263 samples, 0.09%)</title><rect x="58.8318%" y="373" width="0.0944%" height="15" fill="rgb(248,82,4)" fg:x="1410337" fg:w="2263"/><text x="59.0818%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (4,217 samples, 0.18%)</title><rect x="58.9446%" y="357" width="0.1759%" height="15" fill="rgb(228,81,46)" fg:x="1413042" fg:w="4217"/><text x="59.1946%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,094 samples, 0.17%)</title><rect x="58.9497%" y="341" width="0.1708%" height="15" fill="rgb(227,67,47)" fg:x="1413165" fg:w="4094"/><text x="59.1997%" y="351.50"></text></g><g><title>native_write_msr (4,044 samples, 0.17%)</title><rect x="58.9518%" y="325" width="0.1687%" height="15" fill="rgb(215,93,53)" fg:x="1413215" fg:w="4044"/><text x="59.2018%" y="335.50"></text></g><g><title>finish_task_switch (4,844 samples, 0.20%)</title><rect x="58.9262%" y="373" width="0.2021%" height="15" fill="rgb(248,194,39)" fg:x="1412600" fg:w="4844"/><text x="59.1762%" y="383.50"></text></g><g><title>pick_next_task_fair (367 samples, 0.02%)</title><rect x="59.1285%" y="373" width="0.0153%" height="15" fill="rgb(215,5,19)" fg:x="1417450" fg:w="367"/><text x="59.3785%" y="383.50"></text></g><g><title>pick_next_task_idle (341 samples, 0.01%)</title><rect x="59.1438%" y="373" width="0.0142%" height="15" fill="rgb(226,215,51)" fg:x="1417817" fg:w="341"/><text x="59.3938%" y="383.50"></text></g><g><title>__update_idle_core (290 samples, 0.01%)</title><rect x="59.1459%" y="357" width="0.0121%" height="15" fill="rgb(225,56,26)" fg:x="1417868" fg:w="290"/><text x="59.3959%" y="367.50"></text></g><g><title>psi_task_change (1,652 samples, 0.07%)</title><rect x="59.1580%" y="373" width="0.0689%" height="15" fill="rgb(222,75,29)" fg:x="1418158" fg:w="1652"/><text x="59.4080%" y="383.50"></text></g><g><title>psi_group_change (1,367 samples, 0.06%)</title><rect x="59.1699%" y="357" width="0.0570%" height="15" fill="rgb(236,139,6)" fg:x="1418443" fg:w="1367"/><text x="59.4199%" y="367.50"></text></g><g><title>record_times (278 samples, 0.01%)</title><rect x="59.2153%" y="341" width="0.0116%" height="15" fill="rgb(223,137,36)" fg:x="1419532" fg:w="278"/><text x="59.4653%" y="351.50"></text></g><g><title>__schedule (11,014 samples, 0.46%)</title><rect x="58.7898%" y="389" width="0.4594%" height="15" fill="rgb(226,99,2)" fg:x="1409331" fg:w="11014"/><text x="59.0398%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (41,930 samples, 1.75%)</title><rect x="57.5002%" y="421" width="1.7491%" height="15" fill="rgb(206,133,23)" fg:x="1378416" fg:w="41930"/><text x="57.7502%" y="431.50"></text></g><g><title>schedule (11,156 samples, 0.47%)</title><rect x="58.7839%" y="405" width="0.4654%" height="15" fill="rgb(243,173,15)" fg:x="1409190" fg:w="11156"/><text x="59.0339%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (43,132 samples, 1.80%)</title><rect x="57.4954%" y="437" width="1.7992%" height="15" fill="rgb(228,69,28)" fg:x="1378302" fg:w="43132"/><text x="57.7454%" y="447.50">_..</text></g><g><title>btrfs_root_node (1,086 samples, 0.05%)</title><rect x="59.2494%" y="421" width="0.0453%" height="15" fill="rgb(212,51,22)" fg:x="1420348" fg:w="1086"/><text x="59.4994%" y="431.50"></text></g><g><title>finish_wait (342 samples, 0.01%)</title><rect x="59.3132%" y="421" width="0.0143%" height="15" fill="rgb(227,113,0)" fg:x="1421877" fg:w="342"/><text x="59.5632%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (290 samples, 0.01%)</title><rect x="59.3153%" y="405" width="0.0121%" height="15" fill="rgb(252,84,27)" fg:x="1421929" fg:w="290"/><text x="59.5653%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (677 samples, 0.03%)</title><rect x="59.3414%" y="405" width="0.0282%" height="15" fill="rgb(223,145,39)" fg:x="1422554" fg:w="677"/><text x="59.5914%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (424 samples, 0.02%)</title><rect x="59.3520%" y="389" width="0.0177%" height="15" fill="rgb(239,219,30)" fg:x="1422807" fg:w="424"/><text x="59.6020%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,062 samples, 0.04%)</title><rect x="59.3285%" y="421" width="0.0443%" height="15" fill="rgb(224,196,39)" fg:x="1422245" fg:w="1062"/><text x="59.5785%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,298 samples, 0.05%)</title><rect x="59.3728%" y="421" width="0.0541%" height="15" fill="rgb(205,35,43)" fg:x="1423307" fg:w="1298"/><text x="59.6228%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (438 samples, 0.02%)</title><rect x="59.4087%" y="405" width="0.0183%" height="15" fill="rgb(228,201,21)" fg:x="1424167" fg:w="438"/><text x="59.6587%" y="415.50"></text></g><g><title>update_curr (417 samples, 0.02%)</title><rect x="59.4761%" y="357" width="0.0174%" height="15" fill="rgb(237,118,16)" fg:x="1425782" fg:w="417"/><text x="59.7261%" y="367.50"></text></g><g><title>dequeue_entity (1,113 samples, 0.05%)</title><rect x="59.4615%" y="373" width="0.0464%" height="15" fill="rgb(241,17,19)" fg:x="1425433" fg:w="1113"/><text x="59.7115%" y="383.50"></text></g><g><title>update_load_avg (347 samples, 0.01%)</title><rect x="59.4935%" y="357" width="0.0145%" height="15" fill="rgb(214,10,25)" fg:x="1426199" fg:w="347"/><text x="59.7435%" y="367.50"></text></g><g><title>dequeue_task_fair (1,392 samples, 0.06%)</title><rect x="59.4549%" y="389" width="0.0581%" height="15" fill="rgb(238,37,29)" fg:x="1425275" fg:w="1392"/><text x="59.7049%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (2,778 samples, 0.12%)</title><rect x="59.5236%" y="373" width="0.1159%" height="15" fill="rgb(253,83,25)" fg:x="1426921" fg:w="2778"/><text x="59.7736%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,691 samples, 0.11%)</title><rect x="59.5272%" y="357" width="0.1123%" height="15" fill="rgb(234,192,12)" fg:x="1427008" fg:w="2691"/><text x="59.7772%" y="367.50"></text></g><g><title>native_write_msr (2,660 samples, 0.11%)</title><rect x="59.5285%" y="341" width="0.1110%" height="15" fill="rgb(241,216,45)" fg:x="1427039" fg:w="2660"/><text x="59.7785%" y="351.50"></text></g><g><title>finish_task_switch (3,147 samples, 0.13%)</title><rect x="59.5130%" y="389" width="0.1313%" height="15" fill="rgb(242,22,33)" fg:x="1426667" fg:w="3147"/><text x="59.7630%" y="399.50"></text></g><g><title>pick_next_task_fair (254 samples, 0.01%)</title><rect x="59.6443%" y="389" width="0.0106%" height="15" fill="rgb(231,105,49)" fg:x="1429816" fg:w="254"/><text x="59.8943%" y="399.50"></text></g><g><title>pick_next_task_idle (255 samples, 0.01%)</title><rect x="59.6549%" y="389" width="0.0106%" height="15" fill="rgb(218,204,15)" fg:x="1430070" fg:w="255"/><text x="59.9049%" y="399.50"></text></g><g><title>psi_task_change (1,013 samples, 0.04%)</title><rect x="59.6656%" y="389" width="0.0423%" height="15" fill="rgb(235,138,41)" fg:x="1430325" fg:w="1013"/><text x="59.9156%" y="399.50"></text></g><g><title>psi_group_change (842 samples, 0.04%)</title><rect x="59.6727%" y="373" width="0.0351%" height="15" fill="rgb(246,0,9)" fg:x="1430496" fg:w="842"/><text x="59.9227%" y="383.50"></text></g><g><title>__btrfs_tree_lock (10,228 samples, 0.43%)</title><rect x="59.2947%" y="437" width="0.4267%" height="15" fill="rgb(210,74,4)" fg:x="1421434" fg:w="10228"/><text x="59.5447%" y="447.50"></text></g><g><title>schedule (7,057 samples, 0.29%)</title><rect x="59.4270%" y="421" width="0.2944%" height="15" fill="rgb(250,60,41)" fg:x="1424605" fg:w="7057"/><text x="59.6770%" y="431.50"></text></g><g><title>__schedule (6,979 samples, 0.29%)</title><rect x="59.4302%" y="405" width="0.2911%" height="15" fill="rgb(220,115,12)" fg:x="1424683" fg:w="6979"/><text x="59.6802%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (1,049 samples, 0.04%)</title><rect x="59.7305%" y="437" width="0.0438%" height="15" fill="rgb(237,100,13)" fg:x="1431882" fg:w="1049"/><text x="59.9805%" y="447.50"></text></g><g><title>leaf_space_used (746 samples, 0.03%)</title><rect x="59.7432%" y="421" width="0.0311%" height="15" fill="rgb(213,55,26)" fg:x="1432185" fg:w="746"/><text x="59.9932%" y="431.50"></text></g><g><title>btrfs_get_32 (512 samples, 0.02%)</title><rect x="59.7529%" y="405" width="0.0214%" height="15" fill="rgb(216,17,4)" fg:x="1432419" fg:w="512"/><text x="60.0029%" y="415.50"></text></g><g><title>btrfs_set_lock_blocking_read (254 samples, 0.01%)</title><rect x="59.8044%" y="421" width="0.0106%" height="15" fill="rgb(220,153,47)" fg:x="1433653" fg:w="254"/><text x="60.0544%" y="431.50"></text></g><g><title>btrfs_set_path_blocking (928 samples, 0.04%)</title><rect x="59.7818%" y="437" width="0.0387%" height="15" fill="rgb(215,131,9)" fg:x="1433112" fg:w="928"/><text x="60.0318%" y="447.50"></text></g><g><title>_raw_write_lock (553 samples, 0.02%)</title><rect x="59.8295%" y="421" width="0.0231%" height="15" fill="rgb(233,46,42)" fg:x="1434256" fg:w="553"/><text x="60.0795%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (7,334 samples, 0.31%)</title><rect x="59.8209%" y="437" width="0.3059%" height="15" fill="rgb(226,86,7)" fg:x="1434048" fg:w="7334"/><text x="60.0709%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (6,573 samples, 0.27%)</title><rect x="59.8526%" y="421" width="0.2742%" height="15" fill="rgb(239,226,21)" fg:x="1434809" fg:w="6573"/><text x="60.1026%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,080 samples, 0.05%)</title><rect x="60.0818%" y="405" width="0.0451%" height="15" fill="rgb(244,137,22)" fg:x="1440302" fg:w="1080"/><text x="60.3318%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (3,888 samples, 0.16%)</title><rect x="60.1268%" y="437" width="0.1622%" height="15" fill="rgb(211,139,35)" fg:x="1441383" fg:w="3888"/><text x="60.3768%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (810 samples, 0.03%)</title><rect x="60.3135%" y="421" width="0.0338%" height="15" fill="rgb(214,62,50)" fg:x="1445858" fg:w="810"/><text x="60.5635%" y="431.50"></text></g><g><title>verify_parent_transid (645 samples, 0.03%)</title><rect x="60.3204%" y="405" width="0.0269%" height="15" fill="rgb(212,113,44)" fg:x="1446023" fg:w="645"/><text x="60.5704%" y="415.50"></text></g><g><title>btrfs_get_64 (805 samples, 0.03%)</title><rect x="60.3473%" y="421" width="0.0336%" height="15" fill="rgb(226,150,43)" fg:x="1446668" fg:w="805"/><text x="60.5973%" y="431.50"></text></g><g><title>btrfs_verify_level_key (277 samples, 0.01%)</title><rect x="60.3831%" y="421" width="0.0116%" height="15" fill="rgb(250,71,37)" fg:x="1447527" fg:w="277"/><text x="60.6331%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,503 samples, 0.10%)</title><rect x="60.4860%" y="405" width="0.1044%" height="15" fill="rgb(219,76,19)" fg:x="1449993" fg:w="2503"/><text x="60.7360%" y="415.50"></text></g><g><title>mark_page_accessed (822 samples, 0.03%)</title><rect x="60.6045%" y="389" width="0.0343%" height="15" fill="rgb(250,39,11)" fg:x="1452834" fg:w="822"/><text x="60.8545%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,158 samples, 0.05%)</title><rect x="60.5908%" y="405" width="0.0483%" height="15" fill="rgb(230,64,31)" fg:x="1452506" fg:w="1158"/><text x="60.8408%" y="415.50"></text></g><g><title>find_extent_buffer (5,894 samples, 0.25%)</title><rect x="60.3947%" y="421" width="0.2459%" height="15" fill="rgb(208,222,23)" fg:x="1447804" fg:w="5894"/><text x="60.6447%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (9,168 samples, 0.38%)</title><rect x="60.2890%" y="437" width="0.3824%" height="15" fill="rgb(227,125,18)" fg:x="1445271" fg:w="9168"/><text x="60.5390%" y="447.50"></text></g><g><title>read_extent_buffer (741 samples, 0.03%)</title><rect x="60.6406%" y="421" width="0.0309%" height="15" fill="rgb(234,210,9)" fg:x="1453698" fg:w="741"/><text x="60.8906%" y="431.50"></text></g><g><title>_raw_spin_lock (326 samples, 0.01%)</title><rect x="60.7911%" y="357" width="0.0136%" height="15" fill="rgb(217,127,24)" fg:x="1457306" fg:w="326"/><text x="61.0411%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (308 samples, 0.01%)</title><rect x="60.8047%" y="357" width="0.0128%" height="15" fill="rgb(239,141,48)" fg:x="1457632" fg:w="308"/><text x="61.0547%" y="367.50"></text></g><g><title>available_idle_cpu (289 samples, 0.01%)</title><rect x="60.8491%" y="341" width="0.0121%" height="15" fill="rgb(227,109,8)" fg:x="1458698" fg:w="289"/><text x="61.0991%" y="351.50"></text></g><g><title>select_task_rq_fair (1,567 samples, 0.07%)</title><rect x="60.8186%" y="357" width="0.0654%" height="15" fill="rgb(235,184,23)" fg:x="1457965" fg:w="1567"/><text x="61.0686%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (331 samples, 0.01%)</title><rect x="60.8701%" y="341" width="0.0138%" height="15" fill="rgb(227,226,48)" fg:x="1459201" fg:w="331"/><text x="61.1201%" y="351.50"></text></g><g><title>enqueue_entity (1,413 samples, 0.06%)</title><rect x="60.9063%" y="325" width="0.0589%" height="15" fill="rgb(206,150,11)" fg:x="1460069" fg:w="1413"/><text x="61.1563%" y="335.50"></text></g><g><title>update_load_avg (492 samples, 0.02%)</title><rect x="60.9447%" y="309" width="0.0205%" height="15" fill="rgb(254,2,33)" fg:x="1460990" fg:w="492"/><text x="61.1947%" y="319.50"></text></g><g><title>enqueue_task_fair (1,792 samples, 0.07%)</title><rect x="60.8946%" y="341" width="0.0748%" height="15" fill="rgb(243,160,20)" fg:x="1459787" fg:w="1792"/><text x="61.1446%" y="351.50"></text></g><g><title>ttwu_do_activate (3,553 samples, 0.15%)</title><rect x="60.8893%" y="357" width="0.1482%" height="15" fill="rgb(218,208,30)" fg:x="1459660" fg:w="3553"/><text x="61.1393%" y="367.50"></text></g><g><title>psi_task_change (1,633 samples, 0.07%)</title><rect x="60.9694%" y="341" width="0.0681%" height="15" fill="rgb(224,120,49)" fg:x="1461580" fg:w="1633"/><text x="61.2194%" y="351.50"></text></g><g><title>psi_group_change (1,443 samples, 0.06%)</title><rect x="60.9773%" y="325" width="0.0602%" height="15" fill="rgb(246,12,2)" fg:x="1461770" fg:w="1443"/><text x="61.2273%" y="335.50"></text></g><g><title>record_times (242 samples, 0.01%)</title><rect x="61.0274%" y="309" width="0.0101%" height="15" fill="rgb(236,117,3)" fg:x="1462971" fg:w="242"/><text x="61.2774%" y="319.50"></text></g><g><title>ttwu_do_wakeup (331 samples, 0.01%)</title><rect x="61.0375%" y="357" width="0.0138%" height="15" fill="rgb(216,128,52)" fg:x="1463213" fg:w="331"/><text x="61.2875%" y="367.50"></text></g><g><title>check_preempt_curr (291 samples, 0.01%)</title><rect x="61.0391%" y="341" width="0.0121%" height="15" fill="rgb(246,145,19)" fg:x="1463253" fg:w="291"/><text x="61.2891%" y="351.50"></text></g><g><title>__wake_up_common (8,341 samples, 0.35%)</title><rect x="60.7249%" y="405" width="0.3479%" height="15" fill="rgb(222,11,46)" fg:x="1455720" fg:w="8341"/><text x="60.9749%" y="415.50"></text></g><g><title>autoremove_wake_function (8,190 samples, 0.34%)</title><rect x="60.7312%" y="389" width="0.3416%" height="15" fill="rgb(245,82,36)" fg:x="1455871" fg:w="8190"/><text x="60.9812%" y="399.50"></text></g><g><title>try_to_wake_up (7,959 samples, 0.33%)</title><rect x="60.7408%" y="373" width="0.3320%" height="15" fill="rgb(250,73,51)" fg:x="1456102" fg:w="7959"/><text x="60.9908%" y="383.50"></text></g><g><title>update_rq_clock (312 samples, 0.01%)</title><rect x="61.0598%" y="357" width="0.0130%" height="15" fill="rgb(221,189,23)" fg:x="1463749" fg:w="312"/><text x="61.3098%" y="367.50"></text></g><g><title>__wake_up_common_lock (8,599 samples, 0.36%)</title><rect x="60.7236%" y="421" width="0.3587%" height="15" fill="rgb(210,33,7)" fg:x="1455688" fg:w="8599"/><text x="60.9736%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (667 samples, 0.03%)</title><rect x="61.0826%" y="421" width="0.0278%" height="15" fill="rgb(210,107,22)" fg:x="1464294" fg:w="667"/><text x="61.3326%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (266 samples, 0.01%)</title><rect x="61.1104%" y="421" width="0.0111%" height="15" fill="rgb(222,116,37)" fg:x="1464961" fg:w="266"/><text x="61.3604%" y="431.50"></text></g><g><title>btrfs_search_slot (89,433 samples, 3.73%)</title><rect x="57.4021%" y="453" width="3.7307%" height="15" fill="rgb(254,17,48)" fg:x="1376065" fg:w="89433"/><text x="57.6521%" y="463.50">btrf..</text></g><g><title>unlock_up (10,719 samples, 0.45%)</title><rect x="60.6857%" y="437" width="0.4471%" height="15" fill="rgb(224,36,32)" fg:x="1454779" fg:w="10719"/><text x="60.9357%" y="447.50"></text></g><g><title>btrfs_tree_unlock (271 samples, 0.01%)</title><rect x="61.1215%" y="421" width="0.0113%" height="15" fill="rgb(232,90,46)" fg:x="1465227" fg:w="271"/><text x="61.3715%" y="431.50"></text></g><g><title>btrfs_get_32 (411 samples, 0.02%)</title><rect x="61.1914%" y="437" width="0.0171%" height="15" fill="rgb(241,66,40)" fg:x="1466902" fg:w="411"/><text x="61.4414%" y="447.50"></text></g><g><title>btrfs_get_token_32 (387 samples, 0.02%)</title><rect x="61.2085%" y="437" width="0.0161%" height="15" fill="rgb(249,184,29)" fg:x="1467313" fg:w="387"/><text x="61.4585%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (1,225 samples, 0.05%)</title><rect x="61.2247%" y="437" width="0.0511%" height="15" fill="rgb(231,181,1)" fg:x="1467700" fg:w="1225"/><text x="61.4747%" y="447.50"></text></g><g><title>leaf_space_used (1,004 samples, 0.04%)</title><rect x="61.2339%" y="421" width="0.0419%" height="15" fill="rgb(224,94,2)" fg:x="1467921" fg:w="1004"/><text x="61.4839%" y="431.50"></text></g><g><title>btrfs_get_32 (749 samples, 0.03%)</title><rect x="61.2445%" y="405" width="0.0312%" height="15" fill="rgb(229,170,15)" fg:x="1468176" fg:w="749"/><text x="61.4945%" y="415.50"></text></g><g><title>btrfs_mark_buffer_dirty (850 samples, 0.04%)</title><rect x="61.2758%" y="437" width="0.0355%" height="15" fill="rgb(240,127,35)" fg:x="1468925" fg:w="850"/><text x="61.5258%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (390 samples, 0.02%)</title><rect x="61.2949%" y="421" width="0.0163%" height="15" fill="rgb(248,196,34)" fg:x="1469385" fg:w="390"/><text x="61.5449%" y="431.50"></text></g><g><title>btrfs_set_token_32 (588 samples, 0.02%)</title><rect x="61.3112%" y="437" width="0.0245%" height="15" fill="rgb(236,137,7)" fg:x="1469775" fg:w="588"/><text x="61.5612%" y="447.50"></text></g><g><title>btrfs_unlock_up_safe (438 samples, 0.02%)</title><rect x="61.3357%" y="437" width="0.0183%" height="15" fill="rgb(235,127,16)" fg:x="1470363" fg:w="438"/><text x="61.5857%" y="447.50"></text></g><g><title>copy_pages (260 samples, 0.01%)</title><rect x="61.3692%" y="421" width="0.0108%" height="15" fill="rgb(250,192,54)" fg:x="1471166" fg:w="260"/><text x="61.6192%" y="431.50"></text></g><g><title>memmove_extent_buffer (779 samples, 0.03%)</title><rect x="61.3540%" y="437" width="0.0325%" height="15" fill="rgb(218,98,20)" fg:x="1470801" fg:w="779"/><text x="61.6040%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (96,650 samples, 4.03%)</title><rect x="57.3872%" y="469" width="4.0317%" height="15" fill="rgb(230,176,47)" fg:x="1375707" fg:w="96650"/><text x="57.6372%" y="479.50">btrf..</text></g><g><title>setup_items_for_insert (6,859 samples, 0.29%)</title><rect x="61.1328%" y="453" width="0.2861%" height="15" fill="rgb(244,2,33)" fg:x="1465498" fg:w="6859"/><text x="61.3828%" y="463.50"></text></g><g><title>write_extent_buffer (777 samples, 0.03%)</title><rect x="61.3865%" y="437" width="0.0324%" height="15" fill="rgb(231,100,17)" fg:x="1471580" fg:w="777"/><text x="61.6365%" y="447.50"></text></g><g><title>kmem_cache_alloc (694 samples, 0.03%)</title><rect x="61.4189%" y="469" width="0.0289%" height="15" fill="rgb(245,23,12)" fg:x="1472357" fg:w="694"/><text x="61.6689%" y="479.50"></text></g><g><title>btrfs_orphan_add (103,588 samples, 4.32%)</title><rect x="57.1537%" y="501" width="4.3211%" height="15" fill="rgb(249,55,22)" fg:x="1370109" fg:w="103588"/><text x="57.4037%" y="511.50">btrfs..</text></g><g><title>btrfs_insert_orphan_item (103,412 samples, 4.31%)</title><rect x="57.1610%" y="485" width="4.3138%" height="15" fill="rgb(207,134,9)" fg:x="1370285" fg:w="103412"/><text x="57.4110%" y="495.50">btrfs..</text></g><g><title>kmem_cache_free (646 samples, 0.03%)</title><rect x="61.4479%" y="469" width="0.0269%" height="15" fill="rgb(218,134,0)" fg:x="1473051" fg:w="646"/><text x="61.6979%" y="479.50"></text></g><g><title>mutex_lock (876 samples, 0.04%)</title><rect x="61.4787%" y="485" width="0.0365%" height="15" fill="rgb(213,212,33)" fg:x="1473789" fg:w="876"/><text x="61.7287%" y="495.50"></text></g><g><title>btrfs_record_unlink_dir (1,166 samples, 0.05%)</title><rect x="61.4748%" y="501" width="0.0486%" height="15" fill="rgb(252,106,18)" fg:x="1473697" fg:w="1166"/><text x="61.7248%" y="511.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,169 samples, 0.05%)</title><rect x="61.5575%" y="469" width="0.0488%" height="15" fill="rgb(208,126,42)" fg:x="1475678" fg:w="1169"/><text x="61.8075%" y="479.50"></text></g><g><title>mutex_unlock (351 samples, 0.01%)</title><rect x="61.5916%" y="453" width="0.0146%" height="15" fill="rgb(246,175,29)" fg:x="1476496" fg:w="351"/><text x="61.8416%" y="463.50"></text></g><g><title>_raw_spin_lock (741 samples, 0.03%)</title><rect x="61.6108%" y="453" width="0.0309%" height="15" fill="rgb(215,13,50)" fg:x="1476956" fg:w="741"/><text x="61.8608%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (848 samples, 0.04%)</title><rect x="61.6064%" y="469" width="0.0354%" height="15" fill="rgb(216,172,15)" fg:x="1476851" fg:w="848"/><text x="61.8564%" y="479.50"></text></g><g><title>btrfs_get_or_create_delayed_node (330 samples, 0.01%)</title><rect x="61.6418%" y="469" width="0.0138%" height="15" fill="rgb(212,103,13)" fg:x="1477699" fg:w="330"/><text x="61.8918%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (297 samples, 0.01%)</title><rect x="61.6431%" y="453" width="0.0124%" height="15" fill="rgb(231,171,36)" fg:x="1477732" fg:w="297"/><text x="61.8931%" y="463.50"></text></g><g><title>inode_get_bytes (242 samples, 0.01%)</title><rect x="61.6619%" y="453" width="0.0101%" height="15" fill="rgb(250,123,20)" fg:x="1478181" fg:w="242"/><text x="61.9119%" y="463.50"></text></g><g><title>fill_stack_inode_item (506 samples, 0.02%)</title><rect x="61.6555%" y="469" width="0.0211%" height="15" fill="rgb(212,53,50)" fg:x="1478029" fg:w="506"/><text x="61.9055%" y="479.50"></text></g><g><title>mutex_lock (374 samples, 0.02%)</title><rect x="61.6766%" y="469" width="0.0156%" height="15" fill="rgb(243,54,12)" fg:x="1478535" fg:w="374"/><text x="61.9266%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (3,895 samples, 0.16%)</title><rect x="61.5361%" y="485" width="0.1625%" height="15" fill="rgb(234,101,34)" fg:x="1475166" fg:w="3895"/><text x="61.7861%" y="495.50"></text></g><g><title>btrfs_update_inode (4,672 samples, 0.19%)</title><rect x="61.5257%" y="501" width="0.1949%" height="15" fill="rgb(254,67,22)" fg:x="1474916" fg:w="4672"/><text x="61.7757%" y="511.50"></text></g><g><title>btrfs_update_root_times (527 samples, 0.02%)</title><rect x="61.6986%" y="485" width="0.0220%" height="15" fill="rgb(250,35,47)" fg:x="1479061" fg:w="527"/><text x="61.9486%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (283 samples, 0.01%)</title><rect x="61.7088%" y="469" width="0.0118%" height="15" fill="rgb(226,126,38)" fg:x="1479305" fg:w="283"/><text x="61.9588%" y="479.50"></text></g><g><title>drop_nlink (722 samples, 0.03%)</title><rect x="61.7206%" y="501" width="0.0301%" height="15" fill="rgb(216,138,53)" fg:x="1479588" fg:w="722"/><text x="61.9706%" y="511.50"></text></g><g><title>_raw_spin_lock (659 samples, 0.03%)</title><rect x="61.8157%" y="469" width="0.0275%" height="15" fill="rgb(246,199,43)" fg:x="1481869" fg:w="659"/><text x="62.0657%" y="479.50"></text></g><g><title>_raw_spin_lock (1,149 samples, 0.05%)</title><rect x="61.8865%" y="437" width="0.0479%" height="15" fill="rgb(232,125,11)" fg:x="1483567" fg:w="1149"/><text x="62.1365%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (455 samples, 0.02%)</title><rect x="61.9155%" y="421" width="0.0190%" height="15" fill="rgb(218,219,45)" fg:x="1484261" fg:w="455"/><text x="62.1655%" y="431.50"></text></g><g><title>_raw_spin_lock (317 samples, 0.01%)</title><rect x="61.9970%" y="405" width="0.0132%" height="15" fill="rgb(216,102,54)" fg:x="1486214" fg:w="317"/><text x="62.2470%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,818 samples, 0.08%)</title><rect x="61.9346%" y="437" width="0.0758%" height="15" fill="rgb(250,228,7)" fg:x="1484719" fg:w="1818"/><text x="62.1846%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (827 samples, 0.03%)</title><rect x="61.9759%" y="421" width="0.0345%" height="15" fill="rgb(226,125,25)" fg:x="1485710" fg:w="827"/><text x="62.2259%" y="431.50"></text></g><g><title>__reserve_bytes (4,559 samples, 0.19%)</title><rect x="61.8673%" y="453" width="0.1902%" height="15" fill="rgb(224,165,27)" fg:x="1483106" fg:w="4559"/><text x="62.1173%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (1,128 samples, 0.05%)</title><rect x="62.0104%" y="437" width="0.0471%" height="15" fill="rgb(233,86,3)" fg:x="1486537" fg:w="1128"/><text x="62.2604%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (626 samples, 0.03%)</title><rect x="62.0314%" y="421" width="0.0261%" height="15" fill="rgb(228,116,20)" fg:x="1487039" fg:w="626"/><text x="62.2814%" y="431.50"></text></g><g><title>_raw_spin_lock (388 samples, 0.02%)</title><rect x="62.0413%" y="405" width="0.0162%" height="15" fill="rgb(209,192,17)" fg:x="1487277" fg:w="388"/><text x="62.2913%" y="415.50"></text></g><g><title>btrfs_block_rsv_add (5,935 samples, 0.25%)</title><rect x="61.8100%" y="485" width="0.2476%" height="15" fill="rgb(224,88,34)" fg:x="1481733" fg:w="5935"/><text x="62.0600%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,139 samples, 0.21%)</title><rect x="61.8432%" y="469" width="0.2144%" height="15" fill="rgb(233,38,6)" fg:x="1482529" fg:w="5139"/><text x="62.0932%" y="479.50"></text></g><g><title>_raw_spin_lock (431 samples, 0.02%)</title><rect x="62.0835%" y="469" width="0.0180%" height="15" fill="rgb(212,59,30)" fg:x="1488288" fg:w="431"/><text x="62.3335%" y="479.50"></text></g><g><title>join_transaction (988 samples, 0.04%)</title><rect x="62.0604%" y="485" width="0.0412%" height="15" fill="rgb(213,80,3)" fg:x="1487736" fg:w="988"/><text x="62.3104%" y="495.50"></text></g><g><title>kmem_cache_alloc (758 samples, 0.03%)</title><rect x="62.1017%" y="485" width="0.0316%" height="15" fill="rgb(251,178,7)" fg:x="1488724" fg:w="758"/><text x="62.3517%" y="495.50"></text></g><g><title>_raw_spin_lock (680 samples, 0.03%)</title><rect x="62.1465%" y="469" width="0.0284%" height="15" fill="rgb(213,154,26)" fg:x="1489800" fg:w="680"/><text x="62.3965%" y="479.50"></text></g><g><title>btrfs_unlink (403,521 samples, 16.83%)</title><rect x="45.3422%" y="517" width="16.8328%" height="15" fill="rgb(238,165,49)" fg:x="1086961" fg:w="403521"/><text x="45.5922%" y="527.50">btrfs_unlink</text></g><g><title>start_transaction (10,171 samples, 0.42%)</title><rect x="61.7507%" y="501" width="0.4243%" height="15" fill="rgb(248,91,46)" fg:x="1480311" fg:w="10171"/><text x="62.0007%" y="511.50"></text></g><g><title>wait_current_trans (1,000 samples, 0.04%)</title><rect x="62.1333%" y="485" width="0.0417%" height="15" fill="rgb(244,21,52)" fg:x="1489482" fg:w="1000"/><text x="62.3833%" y="495.50"></text></g><g><title>_raw_spin_lock (300 samples, 0.01%)</title><rect x="62.1808%" y="501" width="0.0125%" height="15" fill="rgb(247,122,20)" fg:x="1490622" fg:w="300"/><text x="62.4308%" y="511.50"></text></g><g><title>d_delete (445 samples, 0.02%)</title><rect x="62.1750%" y="517" width="0.0186%" height="15" fill="rgb(218,27,9)" fg:x="1490482" fg:w="445"/><text x="62.4250%" y="527.50"></text></g><g><title>__srcu_read_lock (713 samples, 0.03%)</title><rect x="62.2470%" y="469" width="0.0297%" height="15" fill="rgb(246,7,6)" fg:x="1492207" fg:w="713"/><text x="62.4970%" y="479.50"></text></g><g><title>dentry_unlink_inode (2,189 samples, 0.09%)</title><rect x="62.1936%" y="517" width="0.0913%" height="15" fill="rgb(227,135,54)" fg:x="1490927" fg:w="2189"/><text x="62.4436%" y="527.50"></text></g><g><title>fsnotify_destroy_marks (1,394 samples, 0.06%)</title><rect x="62.2267%" y="501" width="0.0582%" height="15" fill="rgb(247,14,11)" fg:x="1491722" fg:w="1394"/><text x="62.4767%" y="511.50"></text></g><g><title>fsnotify_grab_connector (1,144 samples, 0.05%)</title><rect x="62.2372%" y="485" width="0.0477%" height="15" fill="rgb(206,149,34)" fg:x="1491972" fg:w="1144"/><text x="62.4872%" y="495.50"></text></g><g><title>down_write (1,077 samples, 0.04%)</title><rect x="62.2849%" y="517" width="0.0449%" height="15" fill="rgb(227,228,4)" fg:x="1493116" fg:w="1077"/><text x="62.5349%" y="527.50"></text></g><g><title>fsnotify (1,406 samples, 0.06%)</title><rect x="62.3298%" y="517" width="0.0587%" height="15" fill="rgb(238,218,28)" fg:x="1494193" fg:w="1406"/><text x="62.5798%" y="527.50"></text></g><g><title>ihold (290 samples, 0.01%)</title><rect x="62.3884%" y="517" width="0.0121%" height="15" fill="rgb(252,86,40)" fg:x="1495599" fg:w="290"/><text x="62.6384%" y="527.50"></text></g><g><title>_atomic_dec_and_lock (556 samples, 0.02%)</title><rect x="62.4096%" y="501" width="0.0232%" height="15" fill="rgb(251,225,11)" fg:x="1496106" fg:w="556"/><text x="62.6596%" y="511.50"></text></g><g><title>iput.part.0 (710 samples, 0.03%)</title><rect x="62.4032%" y="517" width="0.0296%" height="15" fill="rgb(206,46,49)" fg:x="1495953" fg:w="710"/><text x="62.6532%" y="527.50"></text></g><g><title>btrfs_permission (542 samples, 0.02%)</title><rect x="62.4530%" y="485" width="0.0226%" height="15" fill="rgb(245,128,24)" fg:x="1497146" fg:w="542"/><text x="62.7030%" y="495.50"></text></g><g><title>inode_permission.part.0 (810 samples, 0.03%)</title><rect x="62.4438%" y="501" width="0.0338%" height="15" fill="rgb(219,177,34)" fg:x="1496925" fg:w="810"/><text x="62.6938%" y="511.50"></text></g><g><title>may_delete (1,091 samples, 0.05%)</title><rect x="62.4328%" y="517" width="0.0455%" height="15" fill="rgb(218,60,48)" fg:x="1496663" fg:w="1091"/><text x="62.6828%" y="527.50"></text></g><g><title>do_unlinkat (1,129,531 samples, 47.12%)</title><rect x="15.3770%" y="549" width="47.1180%" height="15" fill="rgb(221,11,5)" fg:x="368623" fg:w="1129531"/><text x="15.6270%" y="559.50">do_unlinkat</text></g><g><title>vfs_unlink (412,021 samples, 17.19%)</title><rect x="45.3077%" y="533" width="17.1873%" height="15" fill="rgb(220,148,13)" fg:x="1086133" fg:w="412021"/><text x="45.5577%" y="543.50">vfs_unlink</text></g><g><title>up_write (354 samples, 0.01%)</title><rect x="62.4803%" y="517" width="0.0148%" height="15" fill="rgb(210,16,3)" fg:x="1497800" fg:w="354"/><text x="62.7303%" y="527.50"></text></g><g><title>do_syscall_64 (1,242,935 samples, 51.85%)</title><rect x="10.6556%" y="565" width="51.8486%" height="15" fill="rgb(236,80,2)" fg:x="255440" fg:w="1242935"/><text x="10.9056%" y="575.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (1,245,535 samples, 51.96%)</title><rect x="10.6370%" y="581" width="51.9571%" height="15" fill="rgb(239,129,19)" fg:x="254995" fg:w="1245535"/><text x="10.8870%" y="591.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (2,155 samples, 0.09%)</title><rect x="62.5042%" y="565" width="0.0899%" height="15" fill="rgb(220,106,35)" fg:x="1498375" fg:w="2155"/><text x="62.7542%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,835 samples, 0.08%)</title><rect x="62.5176%" y="549" width="0.0765%" height="15" fill="rgb(252,139,45)" fg:x="1498695" fg:w="1835"/><text x="62.7676%" y="559.50"></text></g><g><title>switch_fpu_return (1,523 samples, 0.06%)</title><rect x="62.5306%" y="533" width="0.0635%" height="15" fill="rgb(229,8,36)" fg:x="1499007" fg:w="1523"/><text x="62.7806%" y="543.50"></text></g><g><title>copy_kernel_to_fpregs (675 samples, 0.03%)</title><rect x="62.5660%" y="517" width="0.0282%" height="15" fill="rgb(230,126,33)" fg:x="1499855" fg:w="675"/><text x="62.8160%" y="527.50"></text></g><g><title>syscall_return_via_sysret (408 samples, 0.02%)</title><rect x="62.5988%" y="581" width="0.0170%" height="15" fill="rgb(239,140,21)" fg:x="1500641" fg:w="408"/><text x="62.8488%" y="591.50"></text></g><g><title>__GI_unlinkat (1,248,951 samples, 52.10%)</title><rect x="10.5163%" y="597" width="52.0996%" height="15" fill="rgb(254,104,9)" fg:x="252100" fg:w="1248951"/><text x="10.7663%" y="607.50">__GI_unlinkat</text></g><g><title>__closedir (478 samples, 0.02%)</title><rect x="62.6166%" y="597" width="0.0199%" height="15" fill="rgb(239,52,14)" fg:x="1501068" fg:w="478"/><text x="62.8666%" y="607.50"></text></g><g><title>_int_free (360 samples, 0.02%)</title><rect x="62.6215%" y="581" width="0.0150%" height="15" fill="rgb(208,227,44)" fg:x="1501186" fg:w="360"/><text x="62.8715%" y="591.50"></text></g><g><title>__dirfd (573 samples, 0.02%)</title><rect x="62.6365%" y="597" width="0.0239%" height="15" fill="rgb(246,18,19)" fg:x="1501546" fg:w="573"/><text x="62.8865%" y="607.50"></text></g><g><title>__GI___fcntl64_nocancel (295 samples, 0.01%)</title><rect x="62.6641%" y="581" width="0.0123%" height="15" fill="rgb(235,228,25)" fg:x="1502208" fg:w="295"/><text x="62.9141%" y="591.50"></text></g><g><title>__fcntl64_nocancel_adjusted (287 samples, 0.01%)</title><rect x="62.6645%" y="565" width="0.0120%" height="15" fill="rgb(240,156,20)" fg:x="1502216" fg:w="287"/><text x="62.9145%" y="575.50"></text></g><g><title>__do_sys_newfstat (671 samples, 0.03%)</title><rect x="62.6819%" y="533" width="0.0280%" height="15" fill="rgb(224,8,20)" fg:x="1502633" fg:w="671"/><text x="62.9319%" y="543.50"></text></g><g><title>vfs_fstat (509 samples, 0.02%)</title><rect x="62.6886%" y="517" width="0.0212%" height="15" fill="rgb(214,12,52)" fg:x="1502795" fg:w="509"/><text x="62.9386%" y="527.50"></text></g><g><title>do_syscall_64 (720 samples, 0.03%)</title><rect x="62.6806%" y="549" width="0.0300%" height="15" fill="rgb(211,220,47)" fg:x="1502602" fg:w="720"/><text x="62.9306%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (749 samples, 0.03%)</title><rect x="62.6801%" y="565" width="0.0312%" height="15" fill="rgb(250,173,5)" fg:x="1502590" fg:w="749"/><text x="62.9301%" y="575.50"></text></g><g><title>__GI___fxstat (846 samples, 0.04%)</title><rect x="62.6764%" y="581" width="0.0353%" height="15" fill="rgb(250,125,52)" fg:x="1502503" fg:w="846"/><text x="62.9264%" y="591.50"></text></g><g><title>_int_malloc (602 samples, 0.03%)</title><rect x="62.7288%" y="549" width="0.0251%" height="15" fill="rgb(209,133,18)" fg:x="1503757" fg:w="602"/><text x="62.9788%" y="559.50"></text></g><g><title>__GI___libc_malloc (799 samples, 0.03%)</title><rect x="62.7206%" y="565" width="0.0333%" height="15" fill="rgb(216,173,22)" fg:x="1503562" fg:w="799"/><text x="62.9706%" y="575.50"></text></g><g><title>__fdopendir (2,207 samples, 0.09%)</title><rect x="62.6638%" y="597" width="0.0921%" height="15" fill="rgb(205,3,22)" fg:x="1502199" fg:w="2207"/><text x="62.9138%" y="607.50"></text></g><g><title>__alloc_dir (1,057 samples, 0.04%)</title><rect x="62.7117%" y="581" width="0.0441%" height="15" fill="rgb(248,22,20)" fg:x="1503349" fg:w="1057"/><text x="62.9617%" y="591.50"></text></g><g><title>memcg_slab_post_alloc_hook (252 samples, 0.01%)</title><rect x="62.8060%" y="437" width="0.0105%" height="15" fill="rgb(233,6,29)" fg:x="1505609" fg:w="252"/><text x="63.0560%" y="447.50"></text></g><g><title>kmem_cache_alloc (815 samples, 0.03%)</title><rect x="62.7995%" y="453" width="0.0340%" height="15" fill="rgb(240,22,54)" fg:x="1505454" fg:w="815"/><text x="63.0495%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (397 samples, 0.02%)</title><rect x="62.8170%" y="437" width="0.0166%" height="15" fill="rgb(231,133,32)" fg:x="1505872" fg:w="397"/><text x="63.0670%" y="447.50"></text></g><g><title>__alloc_file (1,160 samples, 0.05%)</title><rect x="62.7963%" y="469" width="0.0484%" height="15" fill="rgb(248,193,4)" fg:x="1505376" fg:w="1160"/><text x="63.0463%" y="479.50"></text></g><g><title>security_file_alloc (267 samples, 0.01%)</title><rect x="62.8335%" y="453" width="0.0111%" height="15" fill="rgb(211,178,46)" fg:x="1506269" fg:w="267"/><text x="63.0835%" y="463.50"></text></g><g><title>alloc_empty_file (1,214 samples, 0.05%)</title><rect x="62.7950%" y="485" width="0.0506%" height="15" fill="rgb(224,5,42)" fg:x="1505346" fg:w="1214"/><text x="63.0450%" y="495.50"></text></g><g><title>btrfs_opendir (632 samples, 0.03%)</title><rect x="62.8586%" y="469" width="0.0264%" height="15" fill="rgb(239,176,25)" fg:x="1506869" fg:w="632"/><text x="63.1086%" y="479.50"></text></g><g><title>kmem_cache_alloc_trace (555 samples, 0.02%)</title><rect x="62.8618%" y="453" width="0.0232%" height="15" fill="rgb(245,187,50)" fg:x="1506946" fg:w="555"/><text x="63.1118%" y="463.50"></text></g><g><title>security_file_open (428 samples, 0.02%)</title><rect x="62.8937%" y="469" width="0.0179%" height="15" fill="rgb(248,24,15)" fg:x="1507712" fg:w="428"/><text x="63.1437%" y="479.50"></text></g><g><title>do_dentry_open (1,443 samples, 0.06%)</title><rect x="62.8516%" y="485" width="0.0602%" height="15" fill="rgb(205,166,13)" fg:x="1506701" fg:w="1443"/><text x="63.1016%" y="495.50"></text></g><g><title>do_filp_open (3,904 samples, 0.16%)</title><rect x="62.7869%" y="517" width="0.1629%" height="15" fill="rgb(208,114,23)" fg:x="1505150" fg:w="3904"/><text x="63.0369%" y="527.50"></text></g><g><title>path_openat (3,841 samples, 0.16%)</title><rect x="62.7895%" y="501" width="0.1602%" height="15" fill="rgb(239,127,18)" fg:x="1505213" fg:w="3841"/><text x="63.0395%" y="511.50"></text></g><g><title>kmem_cache_alloc (245 samples, 0.01%)</title><rect x="62.9569%" y="501" width="0.0102%" height="15" fill="rgb(219,154,28)" fg:x="1509227" fg:w="245"/><text x="63.2069%" y="511.50"></text></g><g><title>getname_flags.part.0 (543 samples, 0.02%)</title><rect x="62.9565%" y="517" width="0.0227%" height="15" fill="rgb(225,157,23)" fg:x="1509216" fg:w="543"/><text x="63.2065%" y="527.50"></text></g><g><title>strncpy_from_user (287 samples, 0.01%)</title><rect x="62.9672%" y="501" width="0.0120%" height="15" fill="rgb(219,8,6)" fg:x="1509472" fg:w="287"/><text x="63.2172%" y="511.50"></text></g><g><title>__x64_sys_openat (5,139 samples, 0.21%)</title><rect x="62.7680%" y="549" width="0.2144%" height="15" fill="rgb(212,47,6)" fg:x="1504698" fg:w="5139"/><text x="63.0180%" y="559.50"></text></g><g><title>do_sys_openat2 (5,086 samples, 0.21%)</title><rect x="62.7702%" y="533" width="0.2122%" height="15" fill="rgb(224,190,4)" fg:x="1504751" fg:w="5086"/><text x="63.0202%" y="543.50"></text></g><g><title>do_syscall_64 (5,209 samples, 0.22%)</title><rect x="62.7658%" y="565" width="0.2173%" height="15" fill="rgb(239,183,29)" fg:x="1504646" fg:w="5209"/><text x="63.0158%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5,261 samples, 0.22%)</title><rect x="62.7652%" y="581" width="0.2195%" height="15" fill="rgb(213,57,7)" fg:x="1504630" fg:w="5261"/><text x="63.0152%" y="591.50"></text></g><g><title>__libc_openat64 (5,501 samples, 0.23%)</title><rect x="62.7566%" y="597" width="0.2295%" height="15" fill="rgb(216,148,1)" fg:x="1504425" fg:w="5501"/><text x="63.0066%" y="607.50"></text></g><g><title>crc32c_pcl_intel_update (323 samples, 0.01%)</title><rect x="63.0207%" y="581" width="0.0135%" height="15" fill="rgb(236,182,29)" fg:x="1510755" fg:w="323"/><text x="63.2707%" y="591.50"></text></g><g><title>entry_SYSCALL_64 (500 samples, 0.02%)</title><rect x="63.0342%" y="581" width="0.0209%" height="15" fill="rgb(244,120,48)" fg:x="1511078" fg:w="500"/><text x="63.2842%" y="591.50"></text></g><g><title>btrfs_dentry_delete (308 samples, 0.01%)</title><rect x="63.1538%" y="517" width="0.0128%" height="15" fill="rgb(206,71,34)" fg:x="1513946" fg:w="308"/><text x="63.4038%" y="527.50"></text></g><g><title>__list_add_valid (545 samples, 0.02%)</title><rect x="63.2308%" y="485" width="0.0227%" height="15" fill="rgb(242,32,6)" fg:x="1515791" fg:w="545"/><text x="63.4808%" y="495.50"></text></g><g><title>_raw_spin_lock (723 samples, 0.03%)</title><rect x="63.2535%" y="485" width="0.0302%" height="15" fill="rgb(241,35,3)" fg:x="1516336" fg:w="723"/><text x="63.5035%" y="495.50"></text></g><g><title>d_lru_add (3,177 samples, 0.13%)</title><rect x="63.1666%" y="517" width="0.1325%" height="15" fill="rgb(222,62,19)" fg:x="1514254" fg:w="3177"/><text x="63.4166%" y="527.50"></text></g><g><title>list_lru_add (2,922 samples, 0.12%)</title><rect x="63.1773%" y="501" width="0.1219%" height="15" fill="rgb(223,110,41)" fg:x="1514509" fg:w="2922"/><text x="63.4273%" y="511.50"></text></g><g><title>mem_cgroup_from_obj (366 samples, 0.02%)</title><rect x="63.2839%" y="485" width="0.0153%" height="15" fill="rgb(208,224,4)" fg:x="1517065" fg:w="366"/><text x="63.5339%" y="495.50"></text></g><g><title>lockref_put_or_lock (609 samples, 0.03%)</title><rect x="63.2992%" y="517" width="0.0254%" height="15" fill="rgb(241,137,19)" fg:x="1517431" fg:w="609"/><text x="63.5492%" y="527.50"></text></g><g><title>dput (4,813 samples, 0.20%)</title><rect x="63.1249%" y="533" width="0.2008%" height="15" fill="rgb(244,24,17)" fg:x="1513254" fg:w="4813"/><text x="63.3749%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (397 samples, 0.02%)</title><rect x="63.4074%" y="437" width="0.0166%" height="15" fill="rgb(245,178,49)" fg:x="1520026" fg:w="397"/><text x="63.6574%" y="447.50"></text></g><g><title>_raw_spin_lock (377 samples, 0.02%)</title><rect x="63.4653%" y="421" width="0.0157%" height="15" fill="rgb(219,160,38)" fg:x="1521414" fg:w="377"/><text x="63.7153%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,349 samples, 0.06%)</title><rect x="63.4252%" y="437" width="0.0563%" height="15" fill="rgb(228,137,14)" fg:x="1520452" fg:w="1349"/><text x="63.6752%" y="447.50"></text></g><g><title>btrfs_free_path (2,464 samples, 0.10%)</title><rect x="63.3933%" y="469" width="0.1028%" height="15" fill="rgb(237,134,11)" fg:x="1519687" fg:w="2464"/><text x="63.6433%" y="479.50"></text></g><g><title>btrfs_release_path (2,344 samples, 0.10%)</title><rect x="63.3983%" y="453" width="0.0978%" height="15" fill="rgb(211,126,44)" fg:x="1519807" fg:w="2344"/><text x="63.6483%" y="463.50"></text></g><g><title>release_extent_buffer (350 samples, 0.01%)</title><rect x="63.4815%" y="437" width="0.0146%" height="15" fill="rgb(226,171,33)" fg:x="1521801" fg:w="350"/><text x="63.7315%" y="447.50"></text></g><g><title>_raw_read_lock (557 samples, 0.02%)</title><rect x="63.6294%" y="405" width="0.0232%" height="15" fill="rgb(253,99,13)" fg:x="1525348" fg:w="557"/><text x="63.8794%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (2,514 samples, 0.10%)</title><rect x="63.6586%" y="389" width="0.1049%" height="15" fill="rgb(244,48,7)" fg:x="1526048" fg:w="2514"/><text x="63.9086%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,409 samples, 0.10%)</title><rect x="63.6630%" y="373" width="0.1005%" height="15" fill="rgb(244,217,54)" fg:x="1526153" fg:w="2409"/><text x="63.9130%" y="383.50"></text></g><g><title>finish_wait (2,627 samples, 0.11%)</title><rect x="63.6539%" y="405" width="0.1096%" height="15" fill="rgb(224,15,18)" fg:x="1525936" fg:w="2627"/><text x="63.9039%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (6,728 samples, 0.28%)</title><rect x="63.7899%" y="389" width="0.2807%" height="15" fill="rgb(244,99,12)" fg:x="1529194" fg:w="6728"/><text x="64.0399%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,409 samples, 0.27%)</title><rect x="63.8032%" y="373" width="0.2673%" height="15" fill="rgb(233,226,8)" fg:x="1529513" fg:w="6409"/><text x="64.0532%" y="383.50"></text></g><g><title>prepare_to_wait_event (7,477 samples, 0.31%)</title><rect x="63.7641%" y="405" width="0.3119%" height="15" fill="rgb(229,211,3)" fg:x="1528576" fg:w="7477"/><text x="64.0141%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (8,044 samples, 0.34%)</title><rect x="64.0760%" y="405" width="0.3356%" height="15" fill="rgb(216,140,21)" fg:x="1536053" fg:w="8044"/><text x="64.3260%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,002 samples, 0.25%)</title><rect x="64.1612%" y="389" width="0.2504%" height="15" fill="rgb(234,122,30)" fg:x="1538095" fg:w="6002"/><text x="64.4112%" y="399.50"></text></g><g><title>update_curr (375 samples, 0.02%)</title><rect x="64.4605%" y="341" width="0.0156%" height="15" fill="rgb(236,25,46)" fg:x="1545272" fg:w="375"/><text x="64.7105%" y="351.50"></text></g><g><title>dequeue_entity (1,110 samples, 0.05%)</title><rect x="64.4449%" y="357" width="0.0463%" height="15" fill="rgb(217,52,54)" fg:x="1544897" fg:w="1110"/><text x="64.6949%" y="367.50"></text></g><g><title>update_load_avg (360 samples, 0.02%)</title><rect x="64.4762%" y="341" width="0.0150%" height="15" fill="rgb(222,29,26)" fg:x="1545647" fg:w="360"/><text x="64.7262%" y="351.50"></text></g><g><title>dequeue_task_fair (1,352 samples, 0.06%)</title><rect x="64.4375%" y="373" width="0.0564%" height="15" fill="rgb(216,177,29)" fg:x="1544719" fg:w="1352"/><text x="64.6875%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (1,959 samples, 0.08%)</title><rect x="64.5031%" y="357" width="0.0817%" height="15" fill="rgb(247,136,51)" fg:x="1546293" fg:w="1959"/><text x="64.7531%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,897 samples, 0.08%)</title><rect x="64.5057%" y="341" width="0.0791%" height="15" fill="rgb(231,47,47)" fg:x="1546355" fg:w="1897"/><text x="64.7557%" y="351.50"></text></g><g><title>native_write_msr (1,871 samples, 0.08%)</title><rect x="64.5068%" y="325" width="0.0780%" height="15" fill="rgb(211,192,36)" fg:x="1546381" fg:w="1871"/><text x="64.7568%" y="335.50"></text></g><g><title>finish_task_switch (2,289 samples, 0.10%)</title><rect x="64.4939%" y="373" width="0.0955%" height="15" fill="rgb(229,156,32)" fg:x="1546071" fg:w="2289"/><text x="64.7439%" y="383.50"></text></g><g><title>pick_next_task_idle (247 samples, 0.01%)</title><rect x="64.5993%" y="373" width="0.0103%" height="15" fill="rgb(248,213,20)" fg:x="1548598" fg:w="247"/><text x="64.8493%" y="383.50"></text></g><g><title>psi_task_change (996 samples, 0.04%)</title><rect x="64.6096%" y="373" width="0.0415%" height="15" fill="rgb(217,64,7)" fg:x="1548845" fg:w="996"/><text x="64.8596%" y="383.50"></text></g><g><title>psi_group_change (831 samples, 0.03%)</title><rect x="64.6165%" y="357" width="0.0347%" height="15" fill="rgb(232,142,8)" fg:x="1549010" fg:w="831"/><text x="64.8665%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (25,387 samples, 1.06%)</title><rect x="63.6045%" y="421" width="1.0590%" height="15" fill="rgb(224,92,44)" fg:x="1524751" fg:w="25387"/><text x="63.8545%" y="431.50"></text></g><g><title>schedule (6,041 samples, 0.25%)</title><rect x="64.4115%" y="405" width="0.2520%" height="15" fill="rgb(214,169,17)" fg:x="1544097" fg:w="6041"/><text x="64.6615%" y="415.50"></text></g><g><title>__schedule (5,982 samples, 0.25%)</title><rect x="64.4140%" y="389" width="0.2495%" height="15" fill="rgb(210,59,37)" fg:x="1544156" fg:w="5982"/><text x="64.6640%" y="399.50"></text></g><g><title>btrfs_root_node (1,294 samples, 0.05%)</title><rect x="64.6635%" y="421" width="0.0540%" height="15" fill="rgb(214,116,48)" fg:x="1550138" fg:w="1294"/><text x="64.9135%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (26,929 samples, 1.12%)</title><rect x="63.5942%" y="437" width="1.1233%" height="15" fill="rgb(244,191,6)" fg:x="1524504" fg:w="26929"/><text x="63.8442%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (309 samples, 0.01%)</title><rect x="64.7325%" y="405" width="0.0129%" height="15" fill="rgb(241,50,52)" fg:x="1551791" fg:w="309"/><text x="64.9825%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (248 samples, 0.01%)</title><rect x="64.7350%" y="389" width="0.0103%" height="15" fill="rgb(236,75,39)" fg:x="1551852" fg:w="248"/><text x="64.9850%" y="399.50"></text></g><g><title>prepare_to_wait_event (425 samples, 0.02%)</title><rect x="64.7284%" y="421" width="0.0177%" height="15" fill="rgb(236,99,0)" fg:x="1551693" fg:w="425"/><text x="64.9784%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (287 samples, 0.01%)</title><rect x="64.7461%" y="421" width="0.0120%" height="15" fill="rgb(207,202,15)" fg:x="1552118" fg:w="287"/><text x="64.9961%" y="431.50"></text></g><g><title>dequeue_entity (298 samples, 0.01%)</title><rect x="64.7671%" y="373" width="0.0124%" height="15" fill="rgb(233,207,14)" fg:x="1552622" fg:w="298"/><text x="65.0171%" y="383.50"></text></g><g><title>dequeue_task_fair (356 samples, 0.01%)</title><rect x="64.7656%" y="389" width="0.0149%" height="15" fill="rgb(226,27,51)" fg:x="1552586" fg:w="356"/><text x="65.0156%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (397 samples, 0.02%)</title><rect x="64.7827%" y="373" width="0.0166%" height="15" fill="rgb(206,104,42)" fg:x="1552994" fg:w="397"/><text x="65.0327%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (384 samples, 0.02%)</title><rect x="64.7832%" y="357" width="0.0160%" height="15" fill="rgb(212,225,4)" fg:x="1553007" fg:w="384"/><text x="65.0332%" y="367.50"></text></g><g><title>native_write_msr (378 samples, 0.02%)</title><rect x="64.7835%" y="341" width="0.0158%" height="15" fill="rgb(233,96,42)" fg:x="1553013" fg:w="378"/><text x="65.0335%" y="351.50"></text></g><g><title>finish_task_switch (471 samples, 0.02%)</title><rect x="64.7805%" y="389" width="0.0196%" height="15" fill="rgb(229,21,32)" fg:x="1552942" fg:w="471"/><text x="65.0305%" y="399.50"></text></g><g><title>psi_task_change (264 samples, 0.01%)</title><rect x="64.8072%" y="389" width="0.0110%" height="15" fill="rgb(226,216,24)" fg:x="1553583" fg:w="264"/><text x="65.0572%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (2,496 samples, 0.10%)</title><rect x="64.7175%" y="437" width="0.1041%" height="15" fill="rgb(221,163,17)" fg:x="1551433" fg:w="2496"/><text x="64.9675%" y="447.50"></text></g><g><title>schedule (1,524 samples, 0.06%)</title><rect x="64.7581%" y="421" width="0.0636%" height="15" fill="rgb(216,216,42)" fg:x="1552405" fg:w="1524"/><text x="65.0081%" y="431.50"></text></g><g><title>__schedule (1,493 samples, 0.06%)</title><rect x="64.7594%" y="405" width="0.0623%" height="15" fill="rgb(240,118,7)" fg:x="1552436" fg:w="1493"/><text x="65.0094%" y="415.50"></text></g><g><title>select_task_rq_fair (311 samples, 0.01%)</title><rect x="64.8379%" y="373" width="0.0130%" height="15" fill="rgb(221,67,37)" fg:x="1554318" fg:w="311"/><text x="65.0879%" y="383.50"></text></g><g><title>enqueue_entity (286 samples, 0.01%)</title><rect x="64.8550%" y="341" width="0.0119%" height="15" fill="rgb(241,32,44)" fg:x="1554727" fg:w="286"/><text x="65.1050%" y="351.50"></text></g><g><title>enqueue_task_fair (359 samples, 0.01%)</title><rect x="64.8530%" y="357" width="0.0150%" height="15" fill="rgb(235,204,43)" fg:x="1554679" fg:w="359"/><text x="65.1030%" y="367.50"></text></g><g><title>ttwu_do_activate (677 samples, 0.03%)</title><rect x="64.8519%" y="373" width="0.0282%" height="15" fill="rgb(213,116,10)" fg:x="1554654" fg:w="677"/><text x="65.1019%" y="383.50"></text></g><g><title>psi_task_change (292 samples, 0.01%)</title><rect x="64.8680%" y="357" width="0.0122%" height="15" fill="rgb(239,15,48)" fg:x="1555039" fg:w="292"/><text x="65.1180%" y="367.50"></text></g><g><title>psi_group_change (255 samples, 0.01%)</title><rect x="64.8695%" y="341" width="0.0106%" height="15" fill="rgb(207,123,36)" fg:x="1555076" fg:w="255"/><text x="65.1195%" y="351.50"></text></g><g><title>__wake_up_common (1,531 samples, 0.06%)</title><rect x="64.8219%" y="421" width="0.0639%" height="15" fill="rgb(209,103,30)" fg:x="1553934" fg:w="1531"/><text x="65.0719%" y="431.50"></text></g><g><title>autoremove_wake_function (1,502 samples, 0.06%)</title><rect x="64.8231%" y="405" width="0.0627%" height="15" fill="rgb(238,100,19)" fg:x="1553963" fg:w="1502"/><text x="65.0731%" y="415.50"></text></g><g><title>try_to_wake_up (1,456 samples, 0.06%)</title><rect x="64.8250%" y="389" width="0.0607%" height="15" fill="rgb(244,30,14)" fg:x="1554009" fg:w="1456"/><text x="65.0750%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,572 samples, 0.07%)</title><rect x="64.8217%" y="437" width="0.0656%" height="15" fill="rgb(249,174,6)" fg:x="1553929" fg:w="1572"/><text x="65.0717%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (1,102 samples, 0.05%)</title><rect x="64.8956%" y="437" width="0.0460%" height="15" fill="rgb(235,213,41)" fg:x="1555701" fg:w="1102"/><text x="65.1456%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_read (633 samples, 0.03%)</title><rect x="64.9152%" y="421" width="0.0264%" height="15" fill="rgb(213,118,6)" fg:x="1556170" fg:w="633"/><text x="65.1652%" y="431.50"></text></g><g><title>_raw_read_lock (428 samples, 0.02%)</title><rect x="64.9573%" y="421" width="0.0179%" height="15" fill="rgb(235,44,51)" fg:x="1557181" fg:w="428"/><text x="65.2073%" y="431.50"></text></g><g><title>btrfs_tree_read_lock_atomic (2,810 samples, 0.12%)</title><rect x="64.9416%" y="437" width="0.1172%" height="15" fill="rgb(217,9,53)" fg:x="1556803" fg:w="2810"/><text x="65.1916%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (2,001 samples, 0.08%)</title><rect x="64.9753%" y="421" width="0.0835%" height="15" fill="rgb(237,172,34)" fg:x="1557612" fg:w="2001"/><text x="65.2253%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (648 samples, 0.03%)</title><rect x="65.0317%" y="405" width="0.0270%" height="15" fill="rgb(206,206,11)" fg:x="1558965" fg:w="648"/><text x="65.2817%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (924 samples, 0.04%)</title><rect x="65.0588%" y="437" width="0.0385%" height="15" fill="rgb(214,149,29)" fg:x="1559613" fg:w="924"/><text x="65.3088%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,618 samples, 0.19%)</title><rect x="65.1008%" y="437" width="0.1926%" height="15" fill="rgb(208,123,3)" fg:x="1560621" fg:w="4618"/><text x="65.3508%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (592 samples, 0.02%)</title><rect x="65.3219%" y="421" width="0.0247%" height="15" fill="rgb(229,126,4)" fg:x="1565920" fg:w="592"/><text x="65.5719%" y="431.50"></text></g><g><title>verify_parent_transid (443 samples, 0.02%)</title><rect x="65.3281%" y="405" width="0.0185%" height="15" fill="rgb(222,92,36)" fg:x="1566069" fg:w="443"/><text x="65.5781%" y="415.50"></text></g><g><title>btrfs_get_64 (763 samples, 0.03%)</title><rect x="65.3466%" y="421" width="0.0318%" height="15" fill="rgb(216,39,41)" fg:x="1566512" fg:w="763"/><text x="65.5966%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,724 samples, 0.11%)</title><rect x="65.4347%" y="405" width="0.1136%" height="15" fill="rgb(253,127,28)" fg:x="1568624" fg:w="2724"/><text x="65.6847%" y="415.50"></text></g><g><title>mark_page_accessed (932 samples, 0.04%)</title><rect x="65.5606%" y="389" width="0.0389%" height="15" fill="rgb(249,152,51)" fg:x="1571643" fg:w="932"/><text x="65.8106%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,220 samples, 0.05%)</title><rect x="65.5488%" y="405" width="0.0509%" height="15" fill="rgb(209,123,42)" fg:x="1571360" fg:w="1220"/><text x="65.7988%" y="415.50"></text></g><g><title>find_extent_buffer (5,043 samples, 0.21%)</title><rect x="65.3909%" y="421" width="0.2104%" height="15" fill="rgb(241,118,22)" fg:x="1567576" fg:w="5043"/><text x="65.6409%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (8,064 samples, 0.34%)</title><rect x="65.2935%" y="437" width="0.3364%" height="15" fill="rgb(208,25,7)" fg:x="1565239" fg:w="8064"/><text x="65.5435%" y="447.50"></text></g><g><title>read_extent_buffer (684 samples, 0.03%)</title><rect x="65.6013%" y="421" width="0.0285%" height="15" fill="rgb(243,144,39)" fg:x="1572619" fg:w="684"/><text x="65.8513%" y="431.50"></text></g><g><title>btrfs_search_slot (51,449 samples, 2.15%)</title><rect x="63.5107%" y="453" width="2.1462%" height="15" fill="rgb(250,50,5)" fg:x="1522503" fg:w="51449"/><text x="63.7607%" y="463.50">b..</text></g><g><title>unlock_up (648 samples, 0.03%)</title><rect x="65.6299%" y="437" width="0.0270%" height="15" fill="rgb(207,67,11)" fg:x="1573304" fg:w="648"/><text x="65.8799%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (52,673 samples, 2.20%)</title><rect x="63.4961%" y="469" width="2.1972%" height="15" fill="rgb(245,204,40)" fg:x="1522151" fg:w="52673"/><text x="63.7461%" y="479.50">b..</text></g><g><title>crc32c (872 samples, 0.04%)</title><rect x="65.6569%" y="453" width="0.0364%" height="15" fill="rgb(238,228,24)" fg:x="1573952" fg:w="872"/><text x="65.9069%" y="463.50"></text></g><g><title>crypto_shash_update (476 samples, 0.02%)</title><rect x="65.6734%" y="437" width="0.0199%" height="15" fill="rgb(217,116,22)" fg:x="1574348" fg:w="476"/><text x="65.9234%" y="447.50"></text></g><g><title>kmem_cache_alloc (956 samples, 0.04%)</title><rect x="65.6933%" y="469" width="0.0399%" height="15" fill="rgb(234,98,12)" fg:x="1574824" fg:w="956"/><text x="65.9433%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (244 samples, 0.01%)</title><rect x="65.7230%" y="453" width="0.0102%" height="15" fill="rgb(242,170,50)" fg:x="1575536" fg:w="244"/><text x="65.9730%" y="463.50"></text></g><g><title>btrfs_lookup (57,691 samples, 2.41%)</title><rect x="63.3508%" y="501" width="2.4066%" height="15" fill="rgb(235,7,5)" fg:x="1518669" fg:w="57691"/><text x="63.6008%" y="511.50">bt..</text></g><g><title>btrfs_lookup_dentry (57,549 samples, 2.40%)</title><rect x="63.3567%" y="485" width="2.4006%" height="15" fill="rgb(241,114,28)" fg:x="1518811" fg:w="57549"/><text x="63.6067%" y="495.50">bt..</text></g><g><title>kmem_cache_free (580 samples, 0.02%)</title><rect x="65.7332%" y="469" width="0.0242%" height="15" fill="rgb(246,112,42)" fg:x="1575780" fg:w="580"/><text x="65.9832%" y="479.50"></text></g><g><title>d_set_d_op (407 samples, 0.02%)</title><rect x="65.7748%" y="469" width="0.0170%" height="15" fill="rgb(248,228,14)" fg:x="1576779" fg:w="407"/><text x="66.0248%" y="479.50"></text></g><g><title>allocate_slab (315 samples, 0.01%)</title><rect x="65.8344%" y="421" width="0.0131%" height="15" fill="rgb(208,133,18)" fg:x="1578207" fg:w="315"/><text x="66.0844%" y="431.50"></text></g><g><title>___slab_alloc (760 samples, 0.03%)</title><rect x="65.8191%" y="437" width="0.0317%" height="15" fill="rgb(207,35,49)" fg:x="1577839" fg:w="760"/><text x="66.0691%" y="447.50"></text></g><g><title>__slab_alloc (814 samples, 0.03%)</title><rect x="65.8170%" y="453" width="0.0340%" height="15" fill="rgb(205,68,36)" fg:x="1577789" fg:w="814"/><text x="66.0670%" y="463.50"></text></g><g><title>__mod_memcg_lruvec_state (403 samples, 0.02%)</title><rect x="65.9036%" y="437" width="0.0168%" height="15" fill="rgb(245,62,40)" fg:x="1579865" fg:w="403"/><text x="66.1536%" y="447.50"></text></g><g><title>__mod_memcg_state.part.0 (295 samples, 0.01%)</title><rect x="65.9081%" y="421" width="0.0123%" height="15" fill="rgb(228,27,24)" fg:x="1579973" fg:w="295"/><text x="66.1581%" y="431.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,759 samples, 0.07%)</title><rect x="65.8512%" y="453" width="0.0734%" height="15" fill="rgb(253,19,12)" fg:x="1578609" fg:w="1759"/><text x="66.1012%" y="463.50"></text></g><g><title>get_obj_cgroup_from_current (1,003 samples, 0.04%)</title><rect x="65.9445%" y="437" width="0.0418%" height="15" fill="rgb(232,28,20)" fg:x="1580845" fg:w="1003"/><text x="66.1945%" y="447.50"></text></g><g><title>obj_cgroup_charge (547 samples, 0.02%)</title><rect x="65.9863%" y="437" width="0.0228%" height="15" fill="rgb(218,35,51)" fg:x="1581848" fg:w="547"/><text x="66.2363%" y="447.50"></text></g><g><title>kmem_cache_alloc (5,221 samples, 0.22%)</title><rect x="65.7918%" y="469" width="0.2178%" height="15" fill="rgb(212,90,40)" fg:x="1577186" fg:w="5221"/><text x="66.0418%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,847 samples, 0.08%)</title><rect x="65.9326%" y="453" width="0.0770%" height="15" fill="rgb(220,172,12)" fg:x="1580560" fg:w="1847"/><text x="66.1826%" y="463.50"></text></g><g><title>__d_alloc (6,099 samples, 0.25%)</title><rect x="65.7614%" y="485" width="0.2544%" height="15" fill="rgb(226,159,20)" fg:x="1576456" fg:w="6099"/><text x="66.0114%" y="495.50"></text></g><g><title>__list_add_valid (249 samples, 0.01%)</title><rect x="66.0158%" y="485" width="0.0104%" height="15" fill="rgb(234,205,16)" fg:x="1582555" fg:w="249"/><text x="66.2658%" y="495.50"></text></g><g><title>d_alloc (6,655 samples, 0.28%)</title><rect x="65.7574%" y="501" width="0.2776%" height="15" fill="rgb(207,9,39)" fg:x="1576360" fg:w="6655"/><text x="66.0074%" y="511.50"></text></g><g><title>__d_rehash (449 samples, 0.02%)</title><rect x="66.0585%" y="469" width="0.0187%" height="15" fill="rgb(249,143,15)" fg:x="1583578" fg:w="449"/><text x="66.3085%" y="479.50"></text></g><g><title>__d_add (894 samples, 0.04%)</title><rect x="66.0475%" y="485" width="0.0373%" height="15" fill="rgb(253,133,29)" fg:x="1583316" fg:w="894"/><text x="66.2975%" y="495.50"></text></g><g><title>d_splice_alias (1,196 samples, 0.05%)</title><rect x="66.0350%" y="501" width="0.0499%" height="15" fill="rgb(221,187,0)" fg:x="1583015" fg:w="1196"/><text x="66.2850%" y="511.50"></text></g><g><title>__lookup_hash (67,365 samples, 2.81%)</title><rect x="63.3436%" y="517" width="2.8101%" height="15" fill="rgb(205,204,26)" fg:x="1518496" fg:w="67365"/><text x="63.5936%" y="527.50">__..</text></g><g><title>lookup_dcache (1,650 samples, 0.07%)</title><rect x="66.0849%" y="501" width="0.0688%" height="15" fill="rgb(224,68,54)" fg:x="1584211" fg:w="1650"/><text x="66.3349%" y="511.50"></text></g><g><title>d_lookup (1,597 samples, 0.07%)</title><rect x="66.0871%" y="485" width="0.0666%" height="15" fill="rgb(209,67,4)" fg:x="1584264" fg:w="1597"/><text x="66.3371%" y="495.50"></text></g><g><title>__d_lookup (1,399 samples, 0.06%)</title><rect x="66.0953%" y="469" width="0.0584%" height="15" fill="rgb(228,229,18)" fg:x="1584462" fg:w="1399"/><text x="66.3453%" y="479.50"></text></g><g><title>down_write (310 samples, 0.01%)</title><rect x="66.1537%" y="517" width="0.0129%" height="15" fill="rgb(231,89,13)" fg:x="1585862" fg:w="310"/><text x="66.4037%" y="527.50"></text></g><g><title>__legitimize_mnt (572 samples, 0.02%)</title><rect x="66.2289%" y="437" width="0.0239%" height="15" fill="rgb(210,182,18)" fg:x="1587664" fg:w="572"/><text x="66.4789%" y="447.50"></text></g><g><title>__legitimize_path (1,030 samples, 0.04%)</title><rect x="66.2179%" y="453" width="0.0430%" height="15" fill="rgb(240,105,2)" fg:x="1587399" fg:w="1030"/><text x="66.4679%" y="463.50"></text></g><g><title>legitimize_links (255 samples, 0.01%)</title><rect x="66.2608%" y="453" width="0.0106%" height="15" fill="rgb(207,170,50)" fg:x="1588429" fg:w="255"/><text x="66.5108%" y="463.50"></text></g><g><title>complete_walk (1,814 samples, 0.08%)</title><rect x="66.1982%" y="485" width="0.0757%" height="15" fill="rgb(232,133,24)" fg:x="1586928" fg:w="1814"/><text x="66.4482%" y="495.50"></text></g><g><title>try_to_unlazy (1,582 samples, 0.07%)</title><rect x="66.2079%" y="469" width="0.0660%" height="15" fill="rgb(235,166,27)" fg:x="1587160" fg:w="1582"/><text x="66.4579%" y="479.50"></text></g><g><title>btrfs_permission (261 samples, 0.01%)</title><rect x="66.6762%" y="453" width="0.0109%" height="15" fill="rgb(209,19,13)" fg:x="1598386" fg:w="261"/><text x="66.9262%" y="463.50"></text></g><g><title>inode_permission.part.0 (6,983 samples, 0.29%)</title><rect x="66.4572%" y="469" width="0.2913%" height="15" fill="rgb(226,79,39)" fg:x="1593137" fg:w="6983"/><text x="66.7072%" y="479.50"></text></g><g><title>generic_permission (1,472 samples, 0.06%)</title><rect x="66.6871%" y="453" width="0.0614%" height="15" fill="rgb(222,163,10)" fg:x="1598648" fg:w="1472"/><text x="66.9371%" y="463.50"></text></g><g><title>security_inode_permission (452 samples, 0.02%)</title><rect x="66.7485%" y="469" width="0.0189%" height="15" fill="rgb(214,44,19)" fg:x="1600120" fg:w="452"/><text x="66.9985%" y="479.50"></text></g><g><title>__d_lookup_rcu (10,429 samples, 0.44%)</title><rect x="66.8921%" y="437" width="0.4350%" height="15" fill="rgb(210,217,13)" fg:x="1603563" fg:w="10429"/><text x="67.1421%" y="447.50"></text></g><g><title>lookup_fast (11,821 samples, 0.49%)</title><rect x="66.8346%" y="453" width="0.4931%" height="15" fill="rgb(237,61,54)" fg:x="1602183" fg:w="11821"/><text x="67.0846%" y="463.50"></text></g><g><title>__lookup_mnt (324 samples, 0.01%)</title><rect x="67.3852%" y="437" width="0.0135%" height="15" fill="rgb(226,184,24)" fg:x="1615382" fg:w="324"/><text x="67.6352%" y="447.50"></text></g><g><title>link_path_walk.part.0 (26,983 samples, 1.13%)</title><rect x="66.2739%" y="485" width="1.1256%" height="15" fill="rgb(223,226,4)" fg:x="1588742" fg:w="26983"/><text x="66.5239%" y="495.50"></text></g><g><title>walk_component (15,153 samples, 0.63%)</title><rect x="66.7674%" y="469" width="0.6321%" height="15" fill="rgb(210,26,41)" fg:x="1600572" fg:w="15153"/><text x="67.0174%" y="479.50"></text></g><g><title>step_into (1,721 samples, 0.07%)</title><rect x="67.3277%" y="453" width="0.0718%" height="15" fill="rgb(220,221,6)" fg:x="1614004" fg:w="1721"/><text x="67.5777%" y="463.50"></text></g><g><title>path_init (2,009 samples, 0.08%)</title><rect x="67.3995%" y="485" width="0.0838%" height="15" fill="rgb(225,89,49)" fg:x="1615725" fg:w="2009"/><text x="67.6495%" y="495.50"></text></g><g><title>nd_jump_root (1,187 samples, 0.05%)</title><rect x="67.4338%" y="469" width="0.0495%" height="15" fill="rgb(218,70,45)" fg:x="1616547" fg:w="1187"/><text x="67.6838%" y="479.50"></text></g><g><title>set_root (916 samples, 0.04%)</title><rect x="67.4451%" y="453" width="0.0382%" height="15" fill="rgb(238,166,21)" fg:x="1616818" fg:w="916"/><text x="67.6951%" y="463.50"></text></g><g><title>filename_parentat (32,360 samples, 1.35%)</title><rect x="66.1667%" y="517" width="1.3499%" height="15" fill="rgb(224,141,44)" fg:x="1586172" fg:w="32360"/><text x="66.4167%" y="527.50"></text></g><g><title>path_parentat (31,815 samples, 1.33%)</title><rect x="66.1894%" y="501" width="1.3272%" height="15" fill="rgb(230,12,49)" fg:x="1586717" fg:w="31815"/><text x="66.4394%" y="511.50"></text></g><g><title>terminate_walk (798 samples, 0.03%)</title><rect x="67.4833%" y="485" width="0.0333%" height="15" fill="rgb(212,174,12)" fg:x="1617734" fg:w="798"/><text x="67.7333%" y="495.50"></text></g><g><title>kmem_cache_free (713 samples, 0.03%)</title><rect x="67.5166%" y="517" width="0.0297%" height="15" fill="rgb(246,67,9)" fg:x="1618532" fg:w="713"/><text x="67.7666%" y="527.50"></text></g><g><title>__mnt_want_write (371 samples, 0.02%)</title><rect x="67.5638%" y="501" width="0.0155%" height="15" fill="rgb(239,35,23)" fg:x="1619665" fg:w="371"/><text x="67.8138%" y="511.50"></text></g><g><title>mnt_want_write (907 samples, 0.04%)</title><rect x="67.5463%" y="517" width="0.0378%" height="15" fill="rgb(211,167,0)" fg:x="1619245" fg:w="907"/><text x="67.7963%" y="527.50"></text></g><g><title>filename_create (102,256 samples, 4.27%)</title><rect x="63.3257%" y="533" width="4.2656%" height="15" fill="rgb(225,119,45)" fg:x="1518067" fg:w="102256"/><text x="63.5757%" y="543.50">filen..</text></g><g><title>memset_erms (3,008 samples, 0.13%)</title><rect x="67.6647%" y="501" width="0.1255%" height="15" fill="rgb(210,162,6)" fg:x="1622084" fg:w="3008"/><text x="67.9147%" y="511.50"></text></g><g><title>kmem_cache_alloc (4,637 samples, 0.19%)</title><rect x="67.6159%" y="517" width="0.1934%" height="15" fill="rgb(208,118,35)" fg:x="1620914" fg:w="4637"/><text x="67.8659%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (459 samples, 0.02%)</title><rect x="67.7902%" y="501" width="0.0191%" height="15" fill="rgb(239,4,53)" fg:x="1625092" fg:w="459"/><text x="68.0402%" y="511.50"></text></g><g><title>__check_heap_object (509 samples, 0.02%)</title><rect x="67.9434%" y="485" width="0.0212%" height="15" fill="rgb(213,130,21)" fg:x="1628765" fg:w="509"/><text x="68.1934%" y="495.50"></text></g><g><title>__virt_addr_valid (1,040 samples, 0.04%)</title><rect x="67.9647%" y="485" width="0.0434%" height="15" fill="rgb(235,148,0)" fg:x="1629274" fg:w="1040"/><text x="68.2147%" y="495.50"></text></g><g><title>__check_object_size (2,424 samples, 0.10%)</title><rect x="67.9159%" y="501" width="0.1011%" height="15" fill="rgb(244,224,18)" fg:x="1628105" fg:w="2424"/><text x="68.1659%" y="511.50"></text></g><g><title>getname_flags.part.0 (10,060 samples, 0.42%)</title><rect x="67.5978%" y="533" width="0.4196%" height="15" fill="rgb(211,214,4)" fg:x="1620479" fg:w="10060"/><text x="67.8478%" y="543.50"></text></g><g><title>strncpy_from_user (4,988 samples, 0.21%)</title><rect x="67.8094%" y="517" width="0.2081%" height="15" fill="rgb(206,119,25)" fg:x="1625551" fg:w="4988"/><text x="68.0594%" y="527.50"></text></g><g><title>kmem_cache_free (953 samples, 0.04%)</title><rect x="68.0176%" y="533" width="0.0398%" height="15" fill="rgb(243,93,47)" fg:x="1630542" fg:w="953"/><text x="68.2676%" y="543.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (332 samples, 0.01%)</title><rect x="68.0435%" y="517" width="0.0138%" height="15" fill="rgb(224,194,6)" fg:x="1631163" fg:w="332"/><text x="68.2935%" y="527.50"></text></g><g><title>apparmor_path_symlink (625 samples, 0.03%)</title><rect x="68.0874%" y="517" width="0.0261%" height="15" fill="rgb(243,229,6)" fg:x="1632216" fg:w="625"/><text x="68.3374%" y="527.50"></text></g><g><title>security_path_symlink (2,245 samples, 0.09%)</title><rect x="68.0703%" y="533" width="0.0936%" height="15" fill="rgb(207,23,50)" fg:x="1631806" fg:w="2245"/><text x="68.3203%" y="543.50"></text></g><g><title>tomoyo_path_symlink (1,208 samples, 0.05%)</title><rect x="68.1135%" y="517" width="0.0504%" height="15" fill="rgb(253,192,32)" fg:x="1632843" fg:w="1208"/><text x="68.3635%" y="527.50"></text></g><g><title>tomoyo_path_perm (1,174 samples, 0.05%)</title><rect x="68.1150%" y="501" width="0.0490%" height="15" fill="rgb(213,21,6)" fg:x="1632877" fg:w="1174"/><text x="68.3650%" y="511.50"></text></g><g><title>tomoyo_init_request_info (842 samples, 0.04%)</title><rect x="68.1288%" y="485" width="0.0351%" height="15" fill="rgb(243,151,13)" fg:x="1633209" fg:w="842"/><text x="68.3788%" y="495.50"></text></g><g><title>tomoyo_domain (482 samples, 0.02%)</title><rect x="68.1438%" y="469" width="0.0201%" height="15" fill="rgb(233,165,41)" fg:x="1633569" fg:w="482"/><text x="68.3938%" y="479.50"></text></g><g><title>up_write (653 samples, 0.03%)</title><rect x="68.1639%" y="533" width="0.0272%" height="15" fill="rgb(246,176,45)" fg:x="1634051" fg:w="653"/><text x="68.4139%" y="543.50"></text></g><g><title>btrfs_create_pending_block_groups (365 samples, 0.02%)</title><rect x="68.3451%" y="485" width="0.0152%" height="15" fill="rgb(217,170,52)" fg:x="1638395" fg:w="365"/><text x="68.5951%" y="495.50"></text></g><g><title>_raw_spin_lock (1,448 samples, 0.06%)</title><rect x="68.4048%" y="453" width="0.0604%" height="15" fill="rgb(214,203,54)" fg:x="1639826" fg:w="1448"/><text x="68.6548%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (515 samples, 0.02%)</title><rect x="68.4438%" y="437" width="0.0215%" height="15" fill="rgb(248,215,49)" fg:x="1640759" fg:w="515"/><text x="68.6938%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (2,394 samples, 0.10%)</title><rect x="68.3763%" y="485" width="0.0999%" height="15" fill="rgb(208,46,10)" fg:x="1639142" fg:w="2394"/><text x="68.6263%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (2,218 samples, 0.09%)</title><rect x="68.3836%" y="469" width="0.0925%" height="15" fill="rgb(254,5,31)" fg:x="1639318" fg:w="2218"/><text x="68.6336%" y="479.50"></text></g><g><title>__btrfs_end_transaction (5,473 samples, 0.23%)</title><rect x="68.2824%" y="501" width="0.2283%" height="15" fill="rgb(222,104,33)" fg:x="1636891" fg:w="5473"/><text x="68.5324%" y="511.50"></text></g><g><title>kmem_cache_free (827 samples, 0.03%)</title><rect x="68.4762%" y="485" width="0.0345%" height="15" fill="rgb(248,49,16)" fg:x="1641537" fg:w="827"/><text x="68.7262%" y="495.50"></text></g><g><title>__radix_tree_lookup (416 samples, 0.02%)</title><rect x="68.5392%" y="485" width="0.0174%" height="15" fill="rgb(232,198,41)" fg:x="1643047" fg:w="416"/><text x="68.7892%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,117 samples, 0.05%)</title><rect x="68.5109%" y="501" width="0.0466%" height="15" fill="rgb(214,125,3)" fg:x="1642369" fg:w="1117"/><text x="68.7609%" y="511.50"></text></g><g><title>btrfs_comp_cpu_keys (917 samples, 0.04%)</title><rect x="68.6719%" y="437" width="0.0383%" height="15" fill="rgb(229,220,28)" fg:x="1646228" fg:w="917"/><text x="68.9219%" y="447.50"></text></g><g><title>rb_insert_color (438 samples, 0.02%)</title><rect x="68.7101%" y="437" width="0.0183%" height="15" fill="rgb(222,64,37)" fg:x="1647145" fg:w="438"/><text x="68.9601%" y="447.50"></text></g><g><title>__btrfs_add_delayed_item (2,247 samples, 0.09%)</title><rect x="68.6347%" y="453" width="0.0937%" height="15" fill="rgb(249,184,13)" fg:x="1645337" fg:w="2247"/><text x="68.8847%" y="463.50"></text></g><g><title>__list_del_entry_valid (274 samples, 0.01%)</title><rect x="68.7480%" y="437" width="0.0114%" height="15" fill="rgb(252,176,6)" fg:x="1648052" fg:w="274"/><text x="68.9980%" y="447.50"></text></g><g><title>_raw_spin_lock (295 samples, 0.01%)</title><rect x="68.7599%" y="437" width="0.0123%" height="15" fill="rgb(228,153,7)" fg:x="1648338" fg:w="295"/><text x="69.0099%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,797 samples, 0.07%)</title><rect x="68.7285%" y="453" width="0.0750%" height="15" fill="rgb(242,193,5)" fg:x="1647584" fg:w="1797"/><text x="68.9785%" y="463.50"></text></g><g><title>mutex_unlock (549 samples, 0.02%)</title><rect x="68.7805%" y="437" width="0.0229%" height="15" fill="rgb(232,140,9)" fg:x="1648832" fg:w="549"/><text x="69.0305%" y="447.50"></text></g><g><title>__slab_alloc (273 samples, 0.01%)</title><rect x="68.8307%" y="437" width="0.0114%" height="15" fill="rgb(213,222,16)" fg:x="1650035" fg:w="273"/><text x="69.0807%" y="447.50"></text></g><g><title>__kmalloc (1,697 samples, 0.07%)</title><rect x="68.8034%" y="453" width="0.0708%" height="15" fill="rgb(222,75,50)" fg:x="1649381" fg:w="1697"/><text x="69.0534%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (427 samples, 0.02%)</title><rect x="68.8564%" y="437" width="0.0178%" height="15" fill="rgb(205,180,2)" fg:x="1650651" fg:w="427"/><text x="69.1064%" y="447.50"></text></g><g><title>mutex_spin_on_owner (1,261 samples, 0.05%)</title><rect x="68.8756%" y="437" width="0.0526%" height="15" fill="rgb(216,34,7)" fg:x="1651112" fg:w="1261"/><text x="69.1256%" y="447.50"></text></g><g><title>__mutex_lock.constprop.0 (1,389 samples, 0.06%)</title><rect x="68.8742%" y="453" width="0.0579%" height="15" fill="rgb(253,16,32)" fg:x="1651078" fg:w="1389"/><text x="69.1242%" y="463.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,625 samples, 0.07%)</title><rect x="68.9327%" y="453" width="0.0678%" height="15" fill="rgb(208,97,28)" fg:x="1652479" fg:w="1625"/><text x="69.1827%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (1,417 samples, 0.06%)</title><rect x="68.9413%" y="437" width="0.0591%" height="15" fill="rgb(225,92,11)" fg:x="1652687" fg:w="1417"/><text x="69.1913%" y="447.50"></text></g><g><title>_raw_spin_lock (1,256 samples, 0.05%)</title><rect x="68.9480%" y="421" width="0.0524%" height="15" fill="rgb(243,38,12)" fg:x="1652848" fg:w="1256"/><text x="69.1980%" y="431.50"></text></g><g><title>btrfs_get_or_create_delayed_node (699 samples, 0.03%)</title><rect x="69.0004%" y="453" width="0.0292%" height="15" fill="rgb(208,139,16)" fg:x="1654104" fg:w="699"/><text x="69.2504%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (612 samples, 0.03%)</title><rect x="69.0041%" y="437" width="0.0255%" height="15" fill="rgb(227,24,9)" fg:x="1654191" fg:w="612"/><text x="69.2541%" y="447.50"></text></g><g><title>memcpy_erms (256 samples, 0.01%)</title><rect x="69.0296%" y="453" width="0.0107%" height="15" fill="rgb(206,62,11)" fg:x="1654803" fg:w="256"/><text x="69.2796%" y="463.50"></text></g><g><title>mutex_lock (241 samples, 0.01%)</title><rect x="69.0403%" y="453" width="0.0101%" height="15" fill="rgb(228,134,27)" fg:x="1655059" fg:w="241"/><text x="69.2903%" y="463.50"></text></g><g><title>btrfs_insert_delayed_dir_index (10,531 samples, 0.44%)</title><rect x="68.6172%" y="469" width="0.4393%" height="15" fill="rgb(205,55,33)" fg:x="1644918" fg:w="10531"/><text x="68.8672%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (457 samples, 0.02%)</title><rect x="69.0565%" y="469" width="0.0191%" height="15" fill="rgb(243,75,43)" fg:x="1655449" fg:w="457"/><text x="69.3065%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (293 samples, 0.01%)</title><rect x="69.0634%" y="453" width="0.0122%" height="15" fill="rgb(223,27,42)" fg:x="1655613" fg:w="293"/><text x="69.3134%" y="463.50"></text></g><g><title>_raw_spin_lock (406 samples, 0.02%)</title><rect x="69.1276%" y="437" width="0.0169%" height="15" fill="rgb(232,189,33)" fg:x="1657153" fg:w="406"/><text x="69.3776%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,420 samples, 0.06%)</title><rect x="69.0855%" y="453" width="0.0592%" height="15" fill="rgb(210,9,39)" fg:x="1656144" fg:w="1420"/><text x="69.3355%" y="463.50"></text></g><g><title>btrfs_release_path (1,973 samples, 0.08%)</title><rect x="69.0756%" y="469" width="0.0823%" height="15" fill="rgb(242,85,26)" fg:x="1655906" fg:w="1973"/><text x="69.3256%" y="479.50"></text></g><g><title>release_extent_buffer (315 samples, 0.01%)</title><rect x="69.1448%" y="453" width="0.0131%" height="15" fill="rgb(248,44,4)" fg:x="1657564" fg:w="315"/><text x="69.3948%" y="463.50"></text></g><g><title>btrfs_set_16 (305 samples, 0.01%)</title><rect x="69.1579%" y="469" width="0.0127%" height="15" fill="rgb(250,96,46)" fg:x="1657879" fg:w="305"/><text x="69.4079%" y="479.50"></text></g><g><title>crc32c (669 samples, 0.03%)</title><rect x="69.1813%" y="469" width="0.0279%" height="15" fill="rgb(229,116,26)" fg:x="1658440" fg:w="669"/><text x="69.4313%" y="479.50"></text></g><g><title>crypto_shash_update (364 samples, 0.02%)</title><rect x="69.1940%" y="453" width="0.0152%" height="15" fill="rgb(246,94,34)" fg:x="1658745" fg:w="364"/><text x="69.4440%" y="463.50"></text></g><g><title>btrfs_get_32 (438 samples, 0.02%)</title><rect x="69.2231%" y="453" width="0.0183%" height="15" fill="rgb(251,73,21)" fg:x="1659441" fg:w="438"/><text x="69.4731%" y="463.50"></text></g><g><title>_raw_read_lock (437 samples, 0.02%)</title><rect x="69.3524%" y="389" width="0.0182%" height="15" fill="rgb(254,121,25)" fg:x="1662542" fg:w="437"/><text x="69.6024%" y="399.50"></text></g><g><title>finish_wait (2,244 samples, 0.09%)</title><rect x="69.3715%" y="389" width="0.0936%" height="15" fill="rgb(215,161,49)" fg:x="1662999" fg:w="2244"/><text x="69.6215%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (2,133 samples, 0.09%)</title><rect x="69.3761%" y="373" width="0.0890%" height="15" fill="rgb(221,43,13)" fg:x="1663110" fg:w="2133"/><text x="69.6261%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,035 samples, 0.08%)</title><rect x="69.3802%" y="357" width="0.0849%" height="15" fill="rgb(249,5,37)" fg:x="1663208" fg:w="2035"/><text x="69.6302%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (5,860 samples, 0.24%)</title><rect x="69.4873%" y="373" width="0.2444%" height="15" fill="rgb(226,25,44)" fg:x="1665776" fg:w="5860"/><text x="69.7373%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,590 samples, 0.23%)</title><rect x="69.4986%" y="357" width="0.2332%" height="15" fill="rgb(238,189,16)" fg:x="1666046" fg:w="5590"/><text x="69.7486%" y="367.50"></text></g><g><title>prepare_to_wait_event (6,493 samples, 0.27%)</title><rect x="69.4656%" y="389" width="0.2709%" height="15" fill="rgb(251,186,8)" fg:x="1665254" fg:w="6493"/><text x="69.7156%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (6,514 samples, 0.27%)</title><rect x="69.7364%" y="389" width="0.2717%" height="15" fill="rgb(254,34,31)" fg:x="1671747" fg:w="6514"/><text x="69.9864%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,859 samples, 0.20%)</title><rect x="69.8054%" y="373" width="0.2027%" height="15" fill="rgb(225,215,27)" fg:x="1673402" fg:w="4859"/><text x="70.0554%" y="383.50"></text></g><g><title>update_curr (332 samples, 0.01%)</title><rect x="70.0479%" y="325" width="0.0138%" height="15" fill="rgb(221,192,48)" fg:x="1679215" fg:w="332"/><text x="70.2979%" y="335.50"></text></g><g><title>dequeue_entity (924 samples, 0.04%)</title><rect x="70.0354%" y="341" width="0.0385%" height="15" fill="rgb(219,137,20)" fg:x="1678914" fg:w="924"/><text x="70.2854%" y="351.50"></text></g><g><title>update_load_avg (291 samples, 0.01%)</title><rect x="70.0618%" y="325" width="0.0121%" height="15" fill="rgb(219,84,11)" fg:x="1679547" fg:w="291"/><text x="70.3118%" y="335.50"></text></g><g><title>dequeue_task_fair (1,104 samples, 0.05%)</title><rect x="70.0300%" y="357" width="0.0461%" height="15" fill="rgb(224,10,23)" fg:x="1678786" fg:w="1104"/><text x="70.2800%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (1,773 samples, 0.07%)</title><rect x="70.0849%" y="341" width="0.0740%" height="15" fill="rgb(248,22,39)" fg:x="1680101" fg:w="1773"/><text x="70.3349%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,697 samples, 0.07%)</title><rect x="70.0881%" y="325" width="0.0708%" height="15" fill="rgb(212,154,20)" fg:x="1680177" fg:w="1697"/><text x="70.3381%" y="335.50"></text></g><g><title>native_write_msr (1,662 samples, 0.07%)</title><rect x="70.0895%" y="309" width="0.0693%" height="15" fill="rgb(236,199,50)" fg:x="1680212" fg:w="1662"/><text x="70.3395%" y="319.50"></text></g><g><title>finish_task_switch (2,057 samples, 0.09%)</title><rect x="70.0761%" y="357" width="0.0858%" height="15" fill="rgb(211,9,17)" fg:x="1679890" fg:w="2057"/><text x="70.3261%" y="367.50"></text></g><g><title>psi_task_change (768 samples, 0.03%)</title><rect x="70.1792%" y="357" width="0.0320%" height="15" fill="rgb(243,216,36)" fg:x="1682362" fg:w="768"/><text x="70.4292%" y="367.50"></text></g><g><title>psi_group_change (644 samples, 0.03%)</title><rect x="70.1844%" y="341" width="0.0269%" height="15" fill="rgb(250,2,10)" fg:x="1682486" fg:w="644"/><text x="70.4344%" y="351.50"></text></g><g><title>__btrfs_tree_read_lock (21,306 samples, 0.89%)</title><rect x="69.3318%" y="405" width="0.8888%" height="15" fill="rgb(226,50,48)" fg:x="1662047" fg:w="21306"/><text x="69.5818%" y="415.50"></text></g><g><title>schedule (5,092 samples, 0.21%)</title><rect x="70.0081%" y="389" width="0.2124%" height="15" fill="rgb(243,81,16)" fg:x="1678261" fg:w="5092"/><text x="70.2581%" y="399.50"></text></g><g><title>__schedule (5,022 samples, 0.21%)</title><rect x="70.0111%" y="373" width="0.2095%" height="15" fill="rgb(250,14,2)" fg:x="1678331" fg:w="5022"/><text x="70.2611%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (22,311 samples, 0.93%)</title><rect x="69.3268%" y="421" width="0.9307%" height="15" fill="rgb(233,135,29)" fg:x="1661927" fg:w="22311"/><text x="69.5768%" y="431.50"></text></g><g><title>btrfs_root_node (885 samples, 0.04%)</title><rect x="70.2205%" y="405" width="0.0369%" height="15" fill="rgb(224,64,43)" fg:x="1683353" fg:w="885"/><text x="70.4705%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (552 samples, 0.02%)</title><rect x="70.2789%" y="389" width="0.0230%" height="15" fill="rgb(238,84,13)" fg:x="1684751" fg:w="552"/><text x="70.5289%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (451 samples, 0.02%)</title><rect x="70.2831%" y="373" width="0.0188%" height="15" fill="rgb(253,48,26)" fg:x="1684852" fg:w="451"/><text x="70.5331%" y="383.50"></text></g><g><title>prepare_to_wait_event (749 samples, 0.03%)</title><rect x="70.2724%" y="405" width="0.0312%" height="15" fill="rgb(205,223,31)" fg:x="1684597" fg:w="749"/><text x="70.5224%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (724 samples, 0.03%)</title><rect x="70.3037%" y="405" width="0.0302%" height="15" fill="rgb(221,41,32)" fg:x="1685346" fg:w="724"/><text x="70.5537%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (244 samples, 0.01%)</title><rect x="70.3237%" y="389" width="0.0102%" height="15" fill="rgb(213,158,31)" fg:x="1685826" fg:w="244"/><text x="70.5737%" y="399.50"></text></g><g><title>dequeue_entity (505 samples, 0.02%)</title><rect x="70.3485%" y="357" width="0.0211%" height="15" fill="rgb(245,126,43)" fg:x="1686421" fg:w="505"/><text x="70.5985%" y="367.50"></text></g><g><title>dequeue_task_fair (609 samples, 0.03%)</title><rect x="70.3457%" y="373" width="0.0254%" height="15" fill="rgb(227,7,22)" fg:x="1686353" fg:w="609"/><text x="70.5957%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (613 samples, 0.03%)</title><rect x="70.3748%" y="357" width="0.0256%" height="15" fill="rgb(252,90,44)" fg:x="1687050" fg:w="613"/><text x="70.6248%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (593 samples, 0.02%)</title><rect x="70.3756%" y="341" width="0.0247%" height="15" fill="rgb(253,91,0)" fg:x="1687070" fg:w="593"/><text x="70.6256%" y="351.50"></text></g><g><title>native_write_msr (580 samples, 0.02%)</title><rect x="70.3761%" y="325" width="0.0242%" height="15" fill="rgb(252,175,49)" fg:x="1687083" fg:w="580"/><text x="70.6261%" y="335.50"></text></g><g><title>finish_task_switch (728 samples, 0.03%)</title><rect x="70.3711%" y="373" width="0.0304%" height="15" fill="rgb(246,150,1)" fg:x="1686962" fg:w="728"/><text x="70.6211%" y="383.50"></text></g><g><title>psi_task_change (379 samples, 0.02%)</title><rect x="70.4092%" y="373" width="0.0158%" height="15" fill="rgb(241,192,25)" fg:x="1687876" fg:w="379"/><text x="70.6592%" y="383.50"></text></g><g><title>psi_group_change (316 samples, 0.01%)</title><rect x="70.4119%" y="357" width="0.0132%" height="15" fill="rgb(239,187,11)" fg:x="1687939" fg:w="316"/><text x="70.6619%" y="367.50"></text></g><g><title>__btrfs_tree_lock (4,174 samples, 0.17%)</title><rect x="70.2575%" y="421" width="0.1741%" height="15" fill="rgb(218,202,51)" fg:x="1684238" fg:w="4174"/><text x="70.5075%" y="431.50"></text></g><g><title>schedule (2,342 samples, 0.10%)</title><rect x="70.3339%" y="405" width="0.0977%" height="15" fill="rgb(225,176,8)" fg:x="1686070" fg:w="2342"/><text x="70.5839%" y="415.50"></text></g><g><title>__schedule (2,307 samples, 0.10%)</title><rect x="70.3353%" y="389" width="0.0962%" height="15" fill="rgb(219,122,41)" fg:x="1686105" fg:w="2307"/><text x="70.5853%" y="399.50"></text></g><g><title>btrfs_leaf_free_space (858 samples, 0.04%)</title><rect x="70.4435%" y="421" width="0.0358%" height="15" fill="rgb(248,140,20)" fg:x="1688697" fg:w="858"/><text x="70.6935%" y="431.50"></text></g><g><title>leaf_space_used (698 samples, 0.03%)</title><rect x="70.4501%" y="405" width="0.0291%" height="15" fill="rgb(245,41,37)" fg:x="1688857" fg:w="698"/><text x="70.7001%" y="415.50"></text></g><g><title>btrfs_get_32 (534 samples, 0.02%)</title><rect x="70.4570%" y="389" width="0.0223%" height="15" fill="rgb(235,82,39)" fg:x="1689021" fg:w="534"/><text x="70.7070%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (311 samples, 0.01%)</title><rect x="70.4864%" y="373" width="0.0130%" height="15" fill="rgb(230,108,42)" fg:x="1689727" fg:w="311"/><text x="70.7364%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (290 samples, 0.01%)</title><rect x="70.4873%" y="357" width="0.0121%" height="15" fill="rgb(215,150,50)" fg:x="1689748" fg:w="290"/><text x="70.7373%" y="367.50"></text></g><g><title>prepare_to_wait_event (352 samples, 0.01%)</title><rect x="70.4849%" y="389" width="0.0147%" height="15" fill="rgb(233,212,5)" fg:x="1689690" fg:w="352"/><text x="70.7349%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (273 samples, 0.01%)</title><rect x="70.4996%" y="389" width="0.0114%" height="15" fill="rgb(245,80,22)" fg:x="1690042" fg:w="273"/><text x="70.7496%" y="399.50"></text></g><g><title>__btrfs_tree_lock (1,071 samples, 0.04%)</title><rect x="70.4793%" y="405" width="0.0447%" height="15" fill="rgb(238,129,16)" fg:x="1689557" fg:w="1071"/><text x="70.7293%" y="415.50"></text></g><g><title>schedule (313 samples, 0.01%)</title><rect x="70.5110%" y="389" width="0.0131%" height="15" fill="rgb(240,19,0)" fg:x="1690315" fg:w="313"/><text x="70.7610%" y="399.50"></text></g><g><title>__schedule (303 samples, 0.01%)</title><rect x="70.5114%" y="373" width="0.0126%" height="15" fill="rgb(232,42,35)" fg:x="1690325" fg:w="303"/><text x="70.7614%" y="383.50"></text></g><g><title>btrfs_lock_root_node (1,078 samples, 0.04%)</title><rect x="70.4793%" y="421" width="0.0450%" height="15" fill="rgb(223,130,24)" fg:x="1689555" fg:w="1078"/><text x="70.7293%" y="431.50"></text></g><g><title>_raw_write_lock (351 samples, 0.01%)</title><rect x="70.5372%" y="405" width="0.0146%" height="15" fill="rgb(237,16,22)" fg:x="1690943" fg:w="351"/><text x="70.7872%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (3,079 samples, 0.13%)</title><rect x="70.5315%" y="421" width="0.1284%" height="15" fill="rgb(248,192,20)" fg:x="1690808" fg:w="3079"/><text x="70.7815%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (2,591 samples, 0.11%)</title><rect x="70.5519%" y="405" width="0.1081%" height="15" fill="rgb(233,167,2)" fg:x="1691296" fg:w="2591"/><text x="70.8019%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (624 samples, 0.03%)</title><rect x="70.6339%" y="389" width="0.0260%" height="15" fill="rgb(252,71,44)" fg:x="1693263" fg:w="624"/><text x="70.8839%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (4,698 samples, 0.20%)</title><rect x="70.6601%" y="421" width="0.1960%" height="15" fill="rgb(238,37,47)" fg:x="1693890" fg:w="4698"/><text x="70.9101%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (519 samples, 0.02%)</title><rect x="70.8789%" y="405" width="0.0216%" height="15" fill="rgb(214,202,54)" fg:x="1699135" fg:w="519"/><text x="71.1289%" y="415.50"></text></g><g><title>verify_parent_transid (427 samples, 0.02%)</title><rect x="70.8827%" y="389" width="0.0178%" height="15" fill="rgb(254,165,40)" fg:x="1699227" fg:w="427"/><text x="71.1327%" y="399.50"></text></g><g><title>btrfs_get_64 (628 samples, 0.03%)</title><rect x="70.9005%" y="405" width="0.0262%" height="15" fill="rgb(246,173,38)" fg:x="1699654" fg:w="628"/><text x="71.1505%" y="415.50"></text></g><g><title>__radix_tree_lookup (2,323 samples, 0.10%)</title><rect x="70.9805%" y="389" width="0.0969%" height="15" fill="rgb(215,3,27)" fg:x="1701570" fg:w="2323"/><text x="71.2305%" y="399.50"></text></g><g><title>mark_page_accessed (812 samples, 0.03%)</title><rect x="71.0891%" y="373" width="0.0339%" height="15" fill="rgb(239,169,51)" fg:x="1704174" fg:w="812"/><text x="71.3391%" y="383.50"></text></g><g><title>mark_extent_buffer_accessed (1,091 samples, 0.05%)</title><rect x="71.0775%" y="389" width="0.0455%" height="15" fill="rgb(212,5,25)" fg:x="1703897" fg:w="1091"/><text x="71.3275%" y="399.50"></text></g><g><title>find_extent_buffer (4,521 samples, 0.19%)</title><rect x="70.9356%" y="405" width="0.1886%" height="15" fill="rgb(243,45,17)" fg:x="1700495" fg:w="4521"/><text x="71.1856%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (7,036 samples, 0.29%)</title><rect x="70.8561%" y="421" width="0.2935%" height="15" fill="rgb(242,97,9)" fg:x="1698588" fg:w="7036"/><text x="71.1061%" y="431.50"></text></g><g><title>read_extent_buffer (608 samples, 0.03%)</title><rect x="71.1242%" y="405" width="0.0254%" height="15" fill="rgb(228,71,31)" fg:x="1705016" fg:w="608"/><text x="71.3742%" y="415.50"></text></g><g><title>alloc_tree_block_no_bg_flush (580 samples, 0.02%)</title><rect x="71.1537%" y="405" width="0.0242%" height="15" fill="rgb(252,184,16)" fg:x="1705724" fg:w="580"/><text x="71.4037%" y="415.50"></text></g><g><title>btrfs_alloc_tree_block (579 samples, 0.02%)</title><rect x="71.1538%" y="389" width="0.0242%" height="15" fill="rgb(236,169,46)" fg:x="1705725" fg:w="579"/><text x="71.4038%" y="399.50"></text></g><g><title>copy_for_split (391 samples, 0.02%)</title><rect x="71.1804%" y="405" width="0.0163%" height="15" fill="rgb(207,17,47)" fg:x="1706364" fg:w="391"/><text x="71.4304%" y="415.50"></text></g><g><title>btrfs_get_token_32 (415 samples, 0.02%)</title><rect x="71.2076%" y="373" width="0.0173%" height="15" fill="rgb(206,201,28)" fg:x="1707014" fg:w="415"/><text x="71.4576%" y="383.50"></text></g><g><title>btrfs_set_token_32 (406 samples, 0.02%)</title><rect x="71.2260%" y="373" width="0.0169%" height="15" fill="rgb(224,184,23)" fg:x="1707457" fg:w="406"/><text x="71.4760%" y="383.50"></text></g><g><title>memmove_extent_buffer (262 samples, 0.01%)</title><rect x="71.2511%" y="373" width="0.0109%" height="15" fill="rgb(208,139,48)" fg:x="1708057" fg:w="262"/><text x="71.5011%" y="383.50"></text></g><g><title>__push_leaf_left (1,546 samples, 0.06%)</title><rect x="71.1977%" y="389" width="0.0645%" height="15" fill="rgb(208,130,10)" fg:x="1706777" fg:w="1546"/><text x="71.4477%" y="399.50"></text></g><g><title>push_leaf_left (1,776 samples, 0.07%)</title><rect x="71.1968%" y="405" width="0.0741%" height="15" fill="rgb(211,213,45)" fg:x="1706755" fg:w="1776"/><text x="71.4468%" y="415.50"></text></g><g><title>btrfs_get_token_32 (471 samples, 0.02%)</title><rect x="71.2863%" y="373" width="0.0196%" height="15" fill="rgb(235,100,30)" fg:x="1708902" fg:w="471"/><text x="71.5363%" y="383.50"></text></g><g><title>btrfs_set_token_32 (462 samples, 0.02%)</title><rect x="71.3077%" y="373" width="0.0193%" height="15" fill="rgb(206,144,31)" fg:x="1709414" fg:w="462"/><text x="71.5577%" y="383.50"></text></g><g><title>__push_leaf_right (1,715 samples, 0.07%)</title><rect x="71.2739%" y="389" width="0.0715%" height="15" fill="rgb(224,200,26)" fg:x="1708605" fg:w="1715"/><text x="71.5239%" y="399.50"></text></g><g><title>btrfs_read_node_slot (303 samples, 0.01%)</title><rect x="71.3564%" y="389" width="0.0126%" height="15" fill="rgb(247,104,53)" fg:x="1710583" fg:w="303"/><text x="71.6064%" y="399.50"></text></g><g><title>read_tree_block (274 samples, 0.01%)</title><rect x="71.3577%" y="373" width="0.0114%" height="15" fill="rgb(220,14,17)" fg:x="1710612" fg:w="274"/><text x="71.6077%" y="383.50"></text></g><g><title>push_leaf_right (2,407 samples, 0.10%)</title><rect x="71.2708%" y="405" width="0.1004%" height="15" fill="rgb(230,140,40)" fg:x="1708531" fg:w="2407"/><text x="71.5208%" y="415.50"></text></g><g><title>split_leaf (5,286 samples, 0.22%)</title><rect x="71.1508%" y="421" width="0.2205%" height="15" fill="rgb(229,2,41)" fg:x="1705653" fg:w="5286"/><text x="71.4008%" y="431.50"></text></g><g><title>split_node (351 samples, 0.01%)</title><rect x="71.3713%" y="421" width="0.0146%" height="15" fill="rgb(232,89,16)" fg:x="1710939" fg:w="351"/><text x="71.6213%" y="431.50"></text></g><g><title>push_nodes_for_insert (337 samples, 0.01%)</title><rect x="71.3719%" y="405" width="0.0141%" height="15" fill="rgb(247,59,52)" fg:x="1710953" fg:w="337"/><text x="71.6219%" y="415.50"></text></g><g><title>select_task_rq_fair (666 samples, 0.03%)</title><rect x="71.4540%" y="341" width="0.0278%" height="15" fill="rgb(226,110,21)" fg:x="1712921" fg:w="666"/><text x="71.7040%" y="351.50"></text></g><g><title>enqueue_entity (602 samples, 0.03%)</title><rect x="71.4923%" y="309" width="0.0251%" height="15" fill="rgb(224,176,43)" fg:x="1713839" fg:w="602"/><text x="71.7423%" y="319.50"></text></g><g><title>enqueue_task_fair (777 samples, 0.03%)</title><rect x="71.4873%" y="325" width="0.0324%" height="15" fill="rgb(221,73,6)" fg:x="1713719" fg:w="777"/><text x="71.7373%" y="335.50"></text></g><g><title>ttwu_do_activate (1,651 samples, 0.07%)</title><rect x="71.4848%" y="341" width="0.0689%" height="15" fill="rgb(232,78,19)" fg:x="1713661" fg:w="1651"/><text x="71.7348%" y="351.50"></text></g><g><title>psi_task_change (816 samples, 0.03%)</title><rect x="71.5197%" y="325" width="0.0340%" height="15" fill="rgb(233,112,48)" fg:x="1714496" fg:w="816"/><text x="71.7697%" y="335.50"></text></g><g><title>psi_group_change (730 samples, 0.03%)</title><rect x="71.5233%" y="309" width="0.0305%" height="15" fill="rgb(243,131,47)" fg:x="1714582" fg:w="730"/><text x="71.7733%" y="319.50"></text></g><g><title>__wake_up_common (3,666 samples, 0.15%)</title><rect x="71.4160%" y="389" width="0.1529%" height="15" fill="rgb(226,51,1)" fg:x="1712011" fg:w="3666"/><text x="71.6660%" y="399.50"></text></g><g><title>autoremove_wake_function (3,606 samples, 0.15%)</title><rect x="71.4185%" y="373" width="0.1504%" height="15" fill="rgb(247,58,7)" fg:x="1712071" fg:w="3606"/><text x="71.6685%" y="383.50"></text></g><g><title>try_to_wake_up (3,499 samples, 0.15%)</title><rect x="71.4230%" y="357" width="0.1460%" height="15" fill="rgb(209,7,32)" fg:x="1712178" fg:w="3499"/><text x="71.6730%" y="367.50"></text></g><g><title>__wake_up_common_lock (3,797 samples, 0.16%)</title><rect x="71.4149%" y="405" width="0.1584%" height="15" fill="rgb(209,39,41)" fg:x="1711985" fg:w="3797"/><text x="71.6649%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (596 samples, 0.02%)</title><rect x="71.5735%" y="405" width="0.0249%" height="15" fill="rgb(226,182,46)" fg:x="1715787" fg:w="596"/><text x="71.8235%" y="415.50"></text></g><g><title>btrfs_search_slot (56,501 samples, 2.36%)</title><rect x="69.2501%" y="437" width="2.3569%" height="15" fill="rgb(230,219,10)" fg:x="1660088" fg:w="56501"/><text x="69.5001%" y="447.50">b..</text></g><g><title>unlock_up (5,299 samples, 0.22%)</title><rect x="71.3859%" y="421" width="0.2210%" height="15" fill="rgb(227,175,30)" fg:x="1711290" fg:w="5299"/><text x="71.6359%" y="431.50"></text></g><g><title>btrfs_get_32 (368 samples, 0.02%)</title><rect x="71.7073%" y="421" width="0.0154%" height="15" fill="rgb(217,2,50)" fg:x="1718994" fg:w="368"/><text x="71.9573%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,619 samples, 0.07%)</title><rect x="72.1267%" y="405" width="0.0675%" height="15" fill="rgb(229,160,0)" fg:x="1729048" fg:w="1619"/><text x="72.3767%" y="415.50"></text></g><g><title>btrfs_get_token_32 (11,306 samples, 0.47%)</title><rect x="71.7227%" y="421" width="0.4716%" height="15" fill="rgb(207,78,37)" fg:x="1719362" fg:w="11306"/><text x="71.9727%" y="431.50"></text></g><g><title>btrfs_leaf_free_space (967 samples, 0.04%)</title><rect x="72.1943%" y="421" width="0.0403%" height="15" fill="rgb(225,57,0)" fg:x="1730668" fg:w="967"/><text x="72.4443%" y="431.50"></text></g><g><title>leaf_space_used (837 samples, 0.03%)</title><rect x="72.1997%" y="405" width="0.0349%" height="15" fill="rgb(232,154,2)" fg:x="1730798" fg:w="837"/><text x="72.4497%" y="415.50"></text></g><g><title>btrfs_get_32 (612 samples, 0.03%)</title><rect x="72.2091%" y="389" width="0.0255%" height="15" fill="rgb(241,212,25)" fg:x="1731023" fg:w="612"/><text x="72.4591%" y="399.50"></text></g><g><title>btrfs_mark_buffer_dirty (579 samples, 0.02%)</title><rect x="72.2346%" y="421" width="0.0242%" height="15" fill="rgb(226,69,20)" fg:x="1731635" fg:w="579"/><text x="72.4846%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (282 samples, 0.01%)</title><rect x="72.2470%" y="405" width="0.0118%" height="15" fill="rgb(247,184,54)" fg:x="1731932" fg:w="282"/><text x="72.4970%" y="415.50"></text></g><g><title>btrfs_set_token_32 (8,925 samples, 0.37%)</title><rect x="72.2588%" y="421" width="0.3723%" height="15" fill="rgb(210,145,0)" fg:x="1732214" fg:w="8925"/><text x="72.5088%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,413 samples, 0.06%)</title><rect x="72.5721%" y="405" width="0.0589%" height="15" fill="rgb(253,82,12)" fg:x="1739726" fg:w="1413"/><text x="72.8221%" y="415.50"></text></g><g><title>btrfs_unlock_up_safe (272 samples, 0.01%)</title><rect x="72.6311%" y="421" width="0.0113%" height="15" fill="rgb(245,42,11)" fg:x="1741139" fg:w="272"/><text x="72.8811%" y="431.50"></text></g><g><title>copy_pages (433 samples, 0.02%)</title><rect x="72.6521%" y="405" width="0.0181%" height="15" fill="rgb(219,147,32)" fg:x="1741643" fg:w="433"/><text x="72.9021%" y="415.50"></text></g><g><title>memcpy_extent_buffer (3,785 samples, 0.16%)</title><rect x="72.6428%" y="421" width="0.1579%" height="15" fill="rgb(246,12,7)" fg:x="1741419" fg:w="3785"/><text x="72.8928%" y="431.50"></text></g><g><title>memmove (3,128 samples, 0.13%)</title><rect x="72.6702%" y="405" width="0.1305%" height="15" fill="rgb(243,50,9)" fg:x="1742076" fg:w="3128"/><text x="72.9202%" y="415.50"></text></g><g><title>copy_pages (295 samples, 0.01%)</title><rect x="72.8180%" y="405" width="0.0123%" height="15" fill="rgb(219,149,6)" fg:x="1745621" fg:w="295"/><text x="73.0680%" y="415.50"></text></g><g><title>memmove_extent_buffer (2,964 samples, 0.12%)</title><rect x="72.8006%" y="421" width="0.1236%" height="15" fill="rgb(241,51,42)" fg:x="1745204" fg:w="2964"/><text x="73.0506%" y="431.50"></text></g><g><title>memmove (2,252 samples, 0.09%)</title><rect x="72.8303%" y="405" width="0.0939%" height="15" fill="rgb(226,128,27)" fg:x="1745916" fg:w="2252"/><text x="73.0803%" y="415.50"></text></g><g><title>insert_with_overflow (89,479 samples, 3.73%)</title><rect x="69.2092%" y="469" width="3.7326%" height="15" fill="rgb(244,144,4)" fg:x="1659109" fg:w="89479"/><text x="69.4592%" y="479.50">inse..</text></g><g><title>btrfs_insert_empty_items (88,709 samples, 3.70%)</title><rect x="69.2413%" y="453" width="3.7005%" height="15" fill="rgb(221,4,13)" fg:x="1659879" fg:w="88709"/><text x="69.4913%" y="463.50">btrf..</text></g><g><title>setup_items_for_insert (31,999 samples, 1.33%)</title><rect x="71.6070%" y="437" width="1.3348%" height="15" fill="rgb(208,170,28)" fg:x="1716589" fg:w="31999"/><text x="71.8570%" y="447.50"></text></g><g><title>write_extent_buffer (420 samples, 0.02%)</title><rect x="72.9243%" y="421" width="0.0175%" height="15" fill="rgb(226,131,13)" fg:x="1748168" fg:w="420"/><text x="73.1743%" y="431.50"></text></g><g><title>kmem_cache_alloc (688 samples, 0.03%)</title><rect x="72.9418%" y="469" width="0.0287%" height="15" fill="rgb(215,72,41)" fg:x="1748588" fg:w="688"/><text x="73.1918%" y="479.50"></text></g><g><title>kmem_cache_free (652 samples, 0.03%)</title><rect x="72.9705%" y="469" width="0.0272%" height="15" fill="rgb(243,108,20)" fg:x="1749276" fg:w="652"/><text x="73.2205%" y="479.50"></text></g><g><title>btrfs_insert_dir_item (106,622 samples, 4.45%)</title><rect x="68.5881%" y="485" width="4.4477%" height="15" fill="rgb(230,189,17)" fg:x="1644219" fg:w="106622"/><text x="68.8381%" y="495.50">btrfs..</text></g><g><title>write_extent_buffer (913 samples, 0.04%)</title><rect x="72.9977%" y="469" width="0.0381%" height="15" fill="rgb(220,50,17)" fg:x="1749928" fg:w="913"/><text x="73.2477%" y="479.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.01%)</title><rect x="73.0793%" y="437" width="0.0103%" height="15" fill="rgb(248,152,48)" fg:x="1751884" fg:w="246"/><text x="73.3293%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,075 samples, 0.04%)</title><rect x="73.0631%" y="453" width="0.0448%" height="15" fill="rgb(244,91,11)" fg:x="1751496" fg:w="1075"/><text x="73.3131%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (320 samples, 0.01%)</title><rect x="73.1160%" y="453" width="0.0133%" height="15" fill="rgb(220,157,5)" fg:x="1752764" fg:w="320"/><text x="73.3660%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (284 samples, 0.01%)</title><rect x="73.1175%" y="437" width="0.0118%" height="15" fill="rgb(253,137,8)" fg:x="1752800" fg:w="284"/><text x="73.3675%" y="447.50"></text></g><g><title>inode_get_bytes (268 samples, 0.01%)</title><rect x="73.1360%" y="437" width="0.0112%" height="15" fill="rgb(217,137,51)" fg:x="1753244" fg:w="268"/><text x="73.3860%" y="447.50"></text></g><g><title>fill_stack_inode_item (578 samples, 0.02%)</title><rect x="73.1294%" y="453" width="0.0241%" height="15" fill="rgb(218,209,53)" fg:x="1753084" fg:w="578"/><text x="73.3794%" y="463.50"></text></g><g><title>btrfs_delayed_update_inode (2,688 samples, 0.11%)</title><rect x="73.0586%" y="469" width="0.1121%" height="15" fill="rgb(249,137,25)" fg:x="1751387" fg:w="2688"/><text x="73.3086%" y="479.50"></text></g><g><title>_raw_spin_lock (498 samples, 0.02%)</title><rect x="73.1748%" y="453" width="0.0208%" height="15" fill="rgb(239,155,26)" fg:x="1754173" fg:w="498"/><text x="73.4248%" y="463.50"></text></g><g><title>btrfs_update_inode (4,230 samples, 0.18%)</title><rect x="73.0358%" y="485" width="0.1765%" height="15" fill="rgb(227,85,46)" fg:x="1750841" fg:w="4230"/><text x="73.2858%" y="495.50"></text></g><g><title>btrfs_update_root_times (996 samples, 0.04%)</title><rect x="73.1707%" y="469" width="0.0415%" height="15" fill="rgb(251,107,43)" fg:x="1754075" fg:w="996"/><text x="73.4207%" y="479.50"></text></g><g><title>ktime_get_real_ts64 (400 samples, 0.02%)</title><rect x="73.1956%" y="453" width="0.0167%" height="15" fill="rgb(234,170,33)" fg:x="1754671" fg:w="400"/><text x="73.4456%" y="463.50"></text></g><g><title>current_time (262 samples, 0.01%)</title><rect x="73.2122%" y="485" width="0.0109%" height="15" fill="rgb(206,29,35)" fg:x="1755071" fg:w="262"/><text x="73.4622%" y="495.50"></text></g><g><title>btrfs_add_link (111,921 samples, 4.67%)</title><rect x="68.5575%" y="501" width="4.6687%" height="15" fill="rgb(227,138,25)" fg:x="1643486" fg:w="111921"/><text x="68.8075%" y="511.50">btrfs..</text></g><g><title>btrfs_balance_delayed_items (832 samples, 0.03%)</title><rect x="73.2498%" y="485" width="0.0347%" height="15" fill="rgb(249,131,35)" fg:x="1755972" fg:w="832"/><text x="73.4998%" y="495.50"></text></g><g><title>_raw_spin_lock (595 samples, 0.02%)</title><rect x="73.3032%" y="453" width="0.0248%" height="15" fill="rgb(239,6,40)" fg:x="1757251" fg:w="595"/><text x="73.5532%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (435 samples, 0.02%)</title><rect x="73.3099%" y="437" width="0.0181%" height="15" fill="rgb(246,136,47)" fg:x="1757411" fg:w="435"/><text x="73.5599%" y="447.50"></text></g><g><title>_raw_spin_lock (339 samples, 0.01%)</title><rect x="73.3492%" y="437" width="0.0141%" height="15" fill="rgb(253,58,26)" fg:x="1758353" fg:w="339"/><text x="73.5992%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (272 samples, 0.01%)</title><rect x="73.3519%" y="421" width="0.0113%" height="15" fill="rgb(237,141,10)" fg:x="1758420" fg:w="272"/><text x="73.6019%" y="431.50"></text></g><g><title>select_task_rq_fair (632 samples, 0.03%)</title><rect x="73.3703%" y="437" width="0.0264%" height="15" fill="rgb(234,156,12)" fg:x="1758861" fg:w="632"/><text x="73.6203%" y="447.50"></text></g><g><title>enqueue_task_fair (565 samples, 0.02%)</title><rect x="73.4027%" y="421" width="0.0236%" height="15" fill="rgb(243,224,36)" fg:x="1759637" fg:w="565"/><text x="73.6527%" y="431.50"></text></g><g><title>enqueue_entity (441 samples, 0.02%)</title><rect x="73.4079%" y="405" width="0.0184%" height="15" fill="rgb(205,229,51)" fg:x="1759761" fg:w="441"/><text x="73.6579%" y="415.50"></text></g><g><title>ttwu_do_activate (913 samples, 0.04%)</title><rect x="73.4003%" y="437" width="0.0381%" height="15" fill="rgb(223,189,4)" fg:x="1759578" fg:w="913"/><text x="73.6503%" y="447.50"></text></g><g><title>psi_task_change (289 samples, 0.01%)</title><rect x="73.4263%" y="421" width="0.0121%" height="15" fill="rgb(249,167,54)" fg:x="1760202" fg:w="289"/><text x="73.6763%" y="431.50"></text></g><g><title>ttwu_do_wakeup (290 samples, 0.01%)</title><rect x="73.4383%" y="437" width="0.0121%" height="15" fill="rgb(218,34,28)" fg:x="1760491" fg:w="290"/><text x="73.6883%" y="447.50"></text></g><g><title>check_preempt_curr (280 samples, 0.01%)</title><rect x="73.4388%" y="421" width="0.0117%" height="15" fill="rgb(232,109,42)" fg:x="1760501" fg:w="280"/><text x="73.6888%" y="431.50"></text></g><g><title>try_to_wake_up (2,907 samples, 0.12%)</title><rect x="73.3366%" y="453" width="0.1213%" height="15" fill="rgb(248,214,46)" fg:x="1758052" fg:w="2907"/><text x="73.5866%" y="463.50"></text></g><g><title>__queue_work (3,931 samples, 0.16%)</title><rect x="73.2939%" y="469" width="0.1640%" height="15" fill="rgb(244,216,40)" fg:x="1757029" fg:w="3931"/><text x="73.5439%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (5,536 samples, 0.23%)</title><rect x="73.2278%" y="501" width="0.2309%" height="15" fill="rgb(231,226,31)" fg:x="1755445" fg:w="5536"/><text x="73.4778%" y="511.50"></text></g><g><title>queue_work_on (4,015 samples, 0.17%)</title><rect x="73.2913%" y="485" width="0.1675%" height="15" fill="rgb(238,38,43)" fg:x="1756966" fg:w="4015"/><text x="73.5413%" y="495.50"></text></g><g><title>mutex_lock (567 samples, 0.02%)</title><rect x="73.4664%" y="485" width="0.0237%" height="15" fill="rgb(208,88,43)" fg:x="1761164" fg:w="567"/><text x="73.7164%" y="495.50"></text></g><g><title>btrfs_find_free_ino (1,169 samples, 0.05%)</title><rect x="73.4614%" y="501" width="0.0488%" height="15" fill="rgb(205,136,37)" fg:x="1761043" fg:w="1169"/><text x="73.7114%" y="511.50"></text></g><g><title>mutex_unlock (481 samples, 0.02%)</title><rect x="73.4901%" y="485" width="0.0201%" height="15" fill="rgb(237,34,14)" fg:x="1761731" fg:w="481"/><text x="73.7401%" y="495.50"></text></g><g><title>_raw_spin_lock (298 samples, 0.01%)</title><rect x="73.7939%" y="405" width="0.0124%" height="15" fill="rgb(236,193,44)" fg:x="1769014" fg:w="298"/><text x="74.0439%" y="415.50"></text></g><g><title>select_task_rq_fair (998 samples, 0.04%)</title><rect x="73.8161%" y="405" width="0.0416%" height="15" fill="rgb(231,48,10)" fg:x="1769548" fg:w="998"/><text x="74.0661%" y="415.50"></text></g><g><title>update_cfs_rq_h_load (244 samples, 0.01%)</title><rect x="73.8476%" y="389" width="0.0102%" height="15" fill="rgb(213,141,34)" fg:x="1770302" fg:w="244"/><text x="74.0976%" y="399.50"></text></g><g><title>enqueue_entity (983 samples, 0.04%)</title><rect x="73.8762%" y="373" width="0.0410%" height="15" fill="rgb(249,130,34)" fg:x="1770987" fg:w="983"/><text x="74.1262%" y="383.50"></text></g><g><title>update_load_avg (375 samples, 0.02%)</title><rect x="73.9015%" y="357" width="0.0156%" height="15" fill="rgb(219,42,41)" fg:x="1771595" fg:w="375"/><text x="74.1515%" y="367.50"></text></g><g><title>enqueue_task_fair (1,266 samples, 0.05%)</title><rect x="73.8651%" y="389" width="0.0528%" height="15" fill="rgb(224,100,54)" fg:x="1770722" fg:w="1266"/><text x="74.1151%" y="399.50"></text></g><g><title>ttwu_do_activate (2,614 samples, 0.11%)</title><rect x="73.8611%" y="405" width="0.1090%" height="15" fill="rgb(229,200,27)" fg:x="1770626" fg:w="2614"/><text x="74.1111%" y="415.50"></text></g><g><title>psi_task_change (1,250 samples, 0.05%)</title><rect x="73.9180%" y="389" width="0.0521%" height="15" fill="rgb(217,118,10)" fg:x="1771990" fg:w="1250"/><text x="74.1680%" y="399.50"></text></g><g><title>psi_group_change (1,068 samples, 0.04%)</title><rect x="73.9256%" y="373" width="0.0446%" height="15" fill="rgb(206,22,3)" fg:x="1772172" fg:w="1068"/><text x="74.1756%" y="383.50"></text></g><g><title>ttwu_do_wakeup (317 samples, 0.01%)</title><rect x="73.9702%" y="405" width="0.0132%" height="15" fill="rgb(232,163,46)" fg:x="1773240" fg:w="317"/><text x="74.2202%" y="415.50"></text></g><g><title>check_preempt_curr (299 samples, 0.01%)</title><rect x="73.9709%" y="389" width="0.0125%" height="15" fill="rgb(206,95,13)" fg:x="1773258" fg:w="299"/><text x="74.2209%" y="399.50"></text></g><g><title>ttwu_queue_wakelist (666 samples, 0.03%)</title><rect x="73.9834%" y="405" width="0.0278%" height="15" fill="rgb(253,154,18)" fg:x="1773557" fg:w="666"/><text x="74.2334%" y="415.50"></text></g><g><title>__wake_up_common (11,968 samples, 0.50%)</title><rect x="73.5221%" y="453" width="0.4992%" height="15" fill="rgb(219,32,23)" fg:x="1762498" fg:w="11968"/><text x="73.7721%" y="463.50"></text></g><g><title>autoremove_wake_function (11,721 samples, 0.49%)</title><rect x="73.5324%" y="437" width="0.4889%" height="15" fill="rgb(230,191,45)" fg:x="1762745" fg:w="11721"/><text x="73.7824%" y="447.50"></text></g><g><title>try_to_wake_up (11,610 samples, 0.48%)</title><rect x="73.5370%" y="421" width="0.4843%" height="15" fill="rgb(229,64,36)" fg:x="1762856" fg:w="11610"/><text x="73.7870%" y="431.50"></text></g><g><title>update_rq_clock (243 samples, 0.01%)</title><rect x="74.0112%" y="405" width="0.0101%" height="15" fill="rgb(205,129,25)" fg:x="1774223" fg:w="243"/><text x="74.2612%" y="415.50"></text></g><g><title>__wake_up_common_lock (12,293 samples, 0.51%)</title><rect x="73.5178%" y="469" width="0.5128%" height="15" fill="rgb(254,112,7)" fg:x="1762395" fg:w="12293"/><text x="73.7678%" y="479.50"></text></g><g><title>btrfs_tree_unlock (320 samples, 0.01%)</title><rect x="74.0306%" y="469" width="0.0133%" height="15" fill="rgb(226,53,48)" fg:x="1774688" fg:w="320"/><text x="74.2806%" y="479.50"></text></g><g><title>_raw_spin_lock (354 samples, 0.01%)</title><rect x="74.0925%" y="453" width="0.0148%" height="15" fill="rgb(214,153,38)" fg:x="1776174" fg:w="354"/><text x="74.3425%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,503 samples, 0.06%)</title><rect x="74.0449%" y="469" width="0.0627%" height="15" fill="rgb(243,101,7)" fg:x="1775032" fg:w="1503"/><text x="74.2949%" y="479.50"></text></g><g><title>btrfs_free_path (14,614 samples, 0.61%)</title><rect x="73.5101%" y="501" width="0.6096%" height="15" fill="rgb(240,140,22)" fg:x="1762212" fg:w="14614"/><text x="73.7601%" y="511.50"></text></g><g><title>btrfs_release_path (14,599 samples, 0.61%)</title><rect x="73.5108%" y="485" width="0.6090%" height="15" fill="rgb(235,114,2)" fg:x="1762227" fg:w="14599"/><text x="73.7608%" y="495.50"></text></g><g><title>release_extent_buffer (291 samples, 0.01%)</title><rect x="74.1076%" y="469" width="0.0121%" height="15" fill="rgb(242,59,12)" fg:x="1776535" fg:w="291"/><text x="74.3576%" y="479.50"></text></g><g><title>btrfs_init_acl (702 samples, 0.03%)</title><rect x="74.1254%" y="501" width="0.0293%" height="15" fill="rgb(252,134,9)" fg:x="1776961" fg:w="702"/><text x="74.3754%" y="511.50"></text></g><g><title>_raw_read_lock (510 samples, 0.02%)</title><rect x="74.2796%" y="437" width="0.0213%" height="15" fill="rgb(236,4,44)" fg:x="1780659" fg:w="510"/><text x="74.5296%" y="447.50"></text></g><g><title>finish_wait (2,236 samples, 0.09%)</title><rect x="74.3022%" y="437" width="0.0933%" height="15" fill="rgb(254,172,41)" fg:x="1781199" fg:w="2236"/><text x="74.5522%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (2,141 samples, 0.09%)</title><rect x="74.3061%" y="421" width="0.0893%" height="15" fill="rgb(244,63,20)" fg:x="1781294" fg:w="2141"/><text x="74.5561%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,051 samples, 0.09%)</title><rect x="74.3099%" y="405" width="0.0856%" height="15" fill="rgb(250,73,31)" fg:x="1781384" fg:w="2051"/><text x="74.5599%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,927 samples, 0.21%)</title><rect x="74.4156%" y="421" width="0.2055%" height="15" fill="rgb(241,38,36)" fg:x="1783918" fg:w="4927"/><text x="74.6656%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,678 samples, 0.20%)</title><rect x="74.4260%" y="405" width="0.1951%" height="15" fill="rgb(245,211,2)" fg:x="1784167" fg:w="4678"/><text x="74.6760%" y="415.50"></text></g><g><title>prepare_to_wait_event (5,499 samples, 0.23%)</title><rect x="74.3956%" y="437" width="0.2294%" height="15" fill="rgb(206,120,28)" fg:x="1783440" fg:w="5499"/><text x="74.6456%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (8,165 samples, 0.34%)</title><rect x="74.6250%" y="437" width="0.3406%" height="15" fill="rgb(211,59,34)" fg:x="1788939" fg:w="8165"/><text x="74.8750%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,083 samples, 0.25%)</title><rect x="74.7119%" y="421" width="0.2538%" height="15" fill="rgb(233,168,5)" fg:x="1791021" fg:w="6083"/><text x="74.9619%" y="431.50"></text></g><g><title>update_curr (329 samples, 0.01%)</title><rect x="75.0021%" y="373" width="0.0137%" height="15" fill="rgb(234,33,13)" fg:x="1797978" fg:w="329"/><text x="75.2521%" y="383.50"></text></g><g><title>dequeue_entity (884 samples, 0.04%)</title><rect x="74.9913%" y="389" width="0.0369%" height="15" fill="rgb(231,150,26)" fg:x="1797720" fg:w="884"/><text x="75.2413%" y="399.50"></text></g><g><title>update_load_avg (297 samples, 0.01%)</title><rect x="75.0158%" y="373" width="0.0124%" height="15" fill="rgb(217,191,4)" fg:x="1798307" fg:w="297"/><text x="75.2658%" y="383.50"></text></g><g><title>dequeue_task_fair (1,032 samples, 0.04%)</title><rect x="74.9872%" y="405" width="0.0430%" height="15" fill="rgb(246,198,38)" fg:x="1797621" fg:w="1032"/><text x="75.2372%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (1,367 samples, 0.06%)</title><rect x="75.0387%" y="389" width="0.0570%" height="15" fill="rgb(245,64,37)" fg:x="1798855" fg:w="1367"/><text x="75.2887%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,323 samples, 0.06%)</title><rect x="75.0405%" y="373" width="0.0552%" height="15" fill="rgb(250,30,36)" fg:x="1798899" fg:w="1323"/><text x="75.2905%" y="383.50"></text></g><g><title>native_write_msr (1,302 samples, 0.05%)</title><rect x="75.0414%" y="357" width="0.0543%" height="15" fill="rgb(217,86,53)" fg:x="1798920" fg:w="1302"/><text x="75.2914%" y="367.50"></text></g><g><title>finish_task_switch (1,637 samples, 0.07%)</title><rect x="75.0303%" y="405" width="0.0683%" height="15" fill="rgb(228,157,16)" fg:x="1798653" fg:w="1637"/><text x="75.2803%" y="415.50"></text></g><g><title>psi_task_change (754 samples, 0.03%)</title><rect x="75.1151%" y="405" width="0.0315%" height="15" fill="rgb(217,59,31)" fg:x="1800686" fg:w="754"/><text x="75.3651%" y="415.50"></text></g><g><title>psi_group_change (627 samples, 0.03%)</title><rect x="75.1204%" y="389" width="0.0262%" height="15" fill="rgb(237,138,41)" fg:x="1800813" fg:w="627"/><text x="75.3704%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (21,576 samples, 0.90%)</title><rect x="74.2574%" y="453" width="0.9000%" height="15" fill="rgb(227,91,49)" fg:x="1780127" fg:w="21576"/><text x="74.5074%" y="463.50"></text></g><g><title>schedule (4,599 samples, 0.19%)</title><rect x="74.9656%" y="437" width="0.1918%" height="15" fill="rgb(247,21,44)" fg:x="1797104" fg:w="4599"/><text x="75.2156%" y="447.50"></text></g><g><title>__schedule (4,544 samples, 0.19%)</title><rect x="74.9679%" y="421" width="0.1896%" height="15" fill="rgb(219,210,51)" fg:x="1797159" fg:w="4544"/><text x="75.2179%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (22,714 samples, 0.95%)</title><rect x="74.2519%" y="469" width="0.9475%" height="15" fill="rgb(209,140,6)" fg:x="1779995" fg:w="22714"/><text x="74.5019%" y="479.50"></text></g><g><title>btrfs_root_node (1,006 samples, 0.04%)</title><rect x="75.1575%" y="453" width="0.0420%" height="15" fill="rgb(221,188,24)" fg:x="1801703" fg:w="1006"/><text x="75.4075%" y="463.50"></text></g><g><title>_raw_write_lock (242 samples, 0.01%)</title><rect x="75.2347%" y="453" width="0.0101%" height="15" fill="rgb(232,154,20)" fg:x="1803555" fg:w="242"/><text x="75.4847%" y="463.50"></text></g><g><title>finish_wait (1,623 samples, 0.07%)</title><rect x="75.2449%" y="453" width="0.0677%" height="15" fill="rgb(244,137,50)" fg:x="1803798" fg:w="1623"/><text x="75.4949%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (1,468 samples, 0.06%)</title><rect x="75.2513%" y="437" width="0.0612%" height="15" fill="rgb(225,185,43)" fg:x="1803953" fg:w="1468"/><text x="75.5013%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,284 samples, 0.05%)</title><rect x="75.2590%" y="421" width="0.0536%" height="15" fill="rgb(213,205,38)" fg:x="1804137" fg:w="1284"/><text x="75.5090%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (5,549 samples, 0.23%)</title><rect x="75.3564%" y="437" width="0.2315%" height="15" fill="rgb(236,73,12)" fg:x="1806471" fg:w="5549"/><text x="75.6064%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,818 samples, 0.20%)</title><rect x="75.3869%" y="421" width="0.2010%" height="15" fill="rgb(235,219,13)" fg:x="1807202" fg:w="4818"/><text x="75.6369%" y="431.50"></text></g><g><title>prepare_to_wait_event (6,813 samples, 0.28%)</title><rect x="75.3146%" y="453" width="0.2842%" height="15" fill="rgb(218,59,36)" fg:x="1805470" fg:w="6813"/><text x="75.5646%" y="463.50"></text></g><g><title>_raw_spin_unlock_irqrestore (263 samples, 0.01%)</title><rect x="75.5879%" y="437" width="0.0110%" height="15" fill="rgb(205,110,39)" fg:x="1812020" fg:w="263"/><text x="75.8379%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (6,998 samples, 0.29%)</title><rect x="75.5988%" y="453" width="0.2919%" height="15" fill="rgb(218,206,42)" fg:x="1812283" fg:w="6998"/><text x="75.8488%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,882 samples, 0.16%)</title><rect x="75.7288%" y="437" width="0.1619%" height="15" fill="rgb(248,125,24)" fg:x="1815399" fg:w="3882"/><text x="75.9788%" y="447.50"></text></g><g><title>__perf_event_task_sched_out (423 samples, 0.02%)</title><rect x="75.9307%" y="421" width="0.0176%" height="15" fill="rgb(242,28,27)" fg:x="1820240" fg:w="423"/><text x="76.1807%" y="431.50"></text></g><g><title>update_cfs_group (293 samples, 0.01%)</title><rect x="75.9931%" y="389" width="0.0122%" height="15" fill="rgb(216,228,15)" fg:x="1821735" fg:w="293"/><text x="76.2431%" y="399.50"></text></g><g><title>update_curr (972 samples, 0.04%)</title><rect x="76.0053%" y="389" width="0.0405%" height="15" fill="rgb(235,116,46)" fg:x="1822028" fg:w="972"/><text x="76.2553%" y="399.50"></text></g><g><title>__update_load_avg_se (298 samples, 0.01%)</title><rect x="76.0678%" y="373" width="0.0124%" height="15" fill="rgb(224,18,32)" fg:x="1823525" fg:w="298"/><text x="76.3178%" y="383.50"></text></g><g><title>dequeue_entity (2,676 samples, 0.11%)</title><rect x="75.9693%" y="405" width="0.1116%" height="15" fill="rgb(252,5,12)" fg:x="1821164" fg:w="2676"/><text x="76.2193%" y="415.50"></text></g><g><title>update_load_avg (840 samples, 0.04%)</title><rect x="76.0459%" y="389" width="0.0350%" height="15" fill="rgb(251,36,5)" fg:x="1823000" fg:w="840"/><text x="76.2959%" y="399.50"></text></g><g><title>dequeue_task_fair (3,144 samples, 0.13%)</title><rect x="75.9552%" y="421" width="0.1312%" height="15" fill="rgb(217,53,14)" fg:x="1820825" fg:w="3144"/><text x="76.2052%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (3,205 samples, 0.13%)</title><rect x="76.1096%" y="405" width="0.1337%" height="15" fill="rgb(215,86,45)" fg:x="1824527" fg:w="3205"/><text x="76.3596%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,135 samples, 0.13%)</title><rect x="76.1125%" y="389" width="0.1308%" height="15" fill="rgb(242,169,11)" fg:x="1824597" fg:w="3135"/><text x="76.3625%" y="399.50"></text></g><g><title>native_write_msr (3,093 samples, 0.13%)</title><rect x="76.1143%" y="373" width="0.1290%" height="15" fill="rgb(211,213,45)" fg:x="1824639" fg:w="3093"/><text x="76.3643%" y="383.50"></text></g><g><title>finish_task_switch (3,927 samples, 0.16%)</title><rect x="76.0863%" y="421" width="0.1638%" height="15" fill="rgb(205,88,11)" fg:x="1823969" fg:w="3927"/><text x="76.3363%" y="431.50"></text></g><g><title>newidle_balance (285 samples, 0.01%)</title><rect x="76.2556%" y="405" width="0.0119%" height="15" fill="rgb(252,69,26)" fg:x="1828028" fg:w="285"/><text x="76.5056%" y="415.50"></text></g><g><title>pick_next_task_fair (509 samples, 0.02%)</title><rect x="76.2503%" y="421" width="0.0212%" height="15" fill="rgb(246,123,37)" fg:x="1827901" fg:w="509"/><text x="76.5003%" y="431.50"></text></g><g><title>pick_next_task_idle (600 samples, 0.03%)</title><rect x="76.2716%" y="421" width="0.0250%" height="15" fill="rgb(212,205,5)" fg:x="1828410" fg:w="600"/><text x="76.5216%" y="431.50"></text></g><g><title>__update_idle_core (514 samples, 0.02%)</title><rect x="76.2751%" y="405" width="0.0214%" height="15" fill="rgb(253,148,0)" fg:x="1828496" fg:w="514"/><text x="76.5251%" y="415.50"></text></g><g><title>psi_task_change (2,402 samples, 0.10%)</title><rect x="76.2966%" y="421" width="0.1002%" height="15" fill="rgb(239,22,4)" fg:x="1829010" fg:w="2402"/><text x="76.5466%" y="431.50"></text></g><g><title>psi_group_change (2,015 samples, 0.08%)</title><rect x="76.3127%" y="405" width="0.0841%" height="15" fill="rgb(226,26,53)" fg:x="1829397" fg:w="2015"/><text x="76.5627%" y="415.50"></text></g><g><title>record_times (495 samples, 0.02%)</title><rect x="76.3761%" y="389" width="0.0206%" height="15" fill="rgb(225,229,45)" fg:x="1830917" fg:w="495"/><text x="76.6261%" y="399.50"></text></g><g><title>sched_clock_cpu (321 samples, 0.01%)</title><rect x="76.3834%" y="373" width="0.0134%" height="15" fill="rgb(220,60,37)" fg:x="1831091" fg:w="321"/><text x="76.6334%" y="383.50"></text></g><g><title>sched_clock (276 samples, 0.01%)</title><rect x="76.3853%" y="357" width="0.0115%" height="15" fill="rgb(217,180,35)" fg:x="1831136" fg:w="276"/><text x="76.6353%" y="367.50"></text></g><g><title>native_sched_clock (267 samples, 0.01%)</title><rect x="76.3856%" y="341" width="0.0111%" height="15" fill="rgb(229,7,53)" fg:x="1831145" fg:w="267"/><text x="76.6356%" y="351.50"></text></g><g><title>__btrfs_tree_lock (29,310 samples, 1.22%)</title><rect x="75.1994%" y="469" width="1.2227%" height="15" fill="rgb(254,137,3)" fg:x="1802709" fg:w="29310"/><text x="75.4494%" y="479.50"></text></g><g><title>schedule (12,738 samples, 0.53%)</title><rect x="75.8907%" y="453" width="0.5314%" height="15" fill="rgb(215,140,41)" fg:x="1819281" fg:w="12738"/><text x="76.1407%" y="463.50"></text></g><g><title>__schedule (12,522 samples, 0.52%)</title><rect x="75.8998%" y="437" width="0.5224%" height="15" fill="rgb(250,80,15)" fg:x="1819497" fg:w="12522"/><text x="76.1498%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (908 samples, 0.04%)</title><rect x="76.4302%" y="469" width="0.0379%" height="15" fill="rgb(252,191,6)" fg:x="1832213" fg:w="908"/><text x="76.6802%" y="479.50"></text></g><g><title>leaf_space_used (661 samples, 0.03%)</title><rect x="76.4405%" y="453" width="0.0276%" height="15" fill="rgb(246,217,18)" fg:x="1832460" fg:w="661"/><text x="76.6905%" y="463.50"></text></g><g><title>btrfs_get_32 (511 samples, 0.02%)</title><rect x="76.4468%" y="437" width="0.0213%" height="15" fill="rgb(223,93,7)" fg:x="1832610" fg:w="511"/><text x="76.6968%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_read (324 samples, 0.01%)</title><rect x="76.5033%" y="453" width="0.0135%" height="15" fill="rgb(225,55,52)" fg:x="1833966" fg:w="324"/><text x="76.7533%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (1,353 samples, 0.06%)</title><rect x="76.4755%" y="469" width="0.0564%" height="15" fill="rgb(240,31,24)" fg:x="1833300" fg:w="1353"/><text x="76.7255%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (363 samples, 0.02%)</title><rect x="76.5168%" y="453" width="0.0151%" height="15" fill="rgb(205,56,52)" fg:x="1834290" fg:w="363"/><text x="76.7668%" y="463.50"></text></g><g><title>_raw_write_lock (504 samples, 0.02%)</title><rect x="76.5421%" y="453" width="0.0210%" height="15" fill="rgb(246,146,12)" fg:x="1834896" fg:w="504"/><text x="76.7921%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (22,741 samples, 0.95%)</title><rect x="76.5325%" y="469" width="0.9486%" height="15" fill="rgb(239,84,36)" fg:x="1834665" fg:w="22741"/><text x="76.7825%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (22,005 samples, 0.92%)</title><rect x="76.5632%" y="453" width="0.9179%" height="15" fill="rgb(207,41,40)" fg:x="1835401" fg:w="22005"/><text x="76.8132%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,686 samples, 0.36%)</title><rect x="77.1188%" y="437" width="0.3623%" height="15" fill="rgb(241,179,25)" fg:x="1848720" fg:w="8686"/><text x="77.3688%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (3,648 samples, 0.15%)</title><rect x="77.4812%" y="469" width="0.1522%" height="15" fill="rgb(210,0,34)" fg:x="1857407" fg:w="3648"/><text x="77.7312%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (615 samples, 0.03%)</title><rect x="77.6584%" y="453" width="0.0257%" height="15" fill="rgb(225,217,29)" fg:x="1861656" fg:w="615"/><text x="77.9084%" y="463.50"></text></g><g><title>verify_parent_transid (476 samples, 0.02%)</title><rect x="77.6642%" y="437" width="0.0199%" height="15" fill="rgb(216,191,38)" fg:x="1861795" fg:w="476"/><text x="77.9142%" y="447.50"></text></g><g><title>btrfs_get_64 (759 samples, 0.03%)</title><rect x="77.6841%" y="453" width="0.0317%" height="15" fill="rgb(232,140,52)" fg:x="1862271" fg:w="759"/><text x="77.9341%" y="463.50"></text></g><g><title>btrfs_verify_level_key (246 samples, 0.01%)</title><rect x="77.7181%" y="453" width="0.0103%" height="15" fill="rgb(223,158,51)" fg:x="1863086" fg:w="246"/><text x="77.9681%" y="463.50"></text></g><g><title>__radix_tree_lookup (1,803 samples, 0.08%)</title><rect x="77.7981%" y="437" width="0.0752%" height="15" fill="rgb(235,29,51)" fg:x="1865004" fg:w="1803"/><text x="78.0481%" y="447.50"></text></g><g><title>mark_page_accessed (668 samples, 0.03%)</title><rect x="77.8894%" y="421" width="0.0279%" height="15" fill="rgb(215,181,18)" fg:x="1867194" fg:w="668"/><text x="78.1394%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,049 samples, 0.04%)</title><rect x="77.8739%" y="437" width="0.0438%" height="15" fill="rgb(227,125,34)" fg:x="1866822" fg:w="1049"/><text x="78.1239%" y="447.50"></text></g><g><title>find_extent_buffer (4,578 samples, 0.19%)</title><rect x="77.7283%" y="453" width="0.1910%" height="15" fill="rgb(230,197,49)" fg:x="1863332" fg:w="4578"/><text x="77.9783%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (7,516 samples, 0.31%)</title><rect x="77.6333%" y="469" width="0.3135%" height="15" fill="rgb(239,141,16)" fg:x="1861055" fg:w="7516"/><text x="77.8833%" y="479.50"></text></g><g><title>read_extent_buffer (661 samples, 0.03%)</title><rect x="77.9193%" y="453" width="0.0276%" height="15" fill="rgb(225,105,43)" fg:x="1867910" fg:w="661"/><text x="78.1693%" y="463.50"></text></g><g><title>alloc_extent_buffer (279 samples, 0.01%)</title><rect x="77.9502%" y="421" width="0.0116%" height="15" fill="rgb(214,131,14)" fg:x="1868651" fg:w="279"/><text x="78.2002%" y="431.50"></text></g><g><title>btrfs_add_delayed_tree_ref (262 samples, 0.01%)</title><rect x="77.9618%" y="421" width="0.0109%" height="15" fill="rgb(229,177,11)" fg:x="1868930" fg:w="262"/><text x="78.2118%" y="431.50"></text></g><g><title>btrfs_reserve_extent (413 samples, 0.02%)</title><rect x="77.9743%" y="421" width="0.0172%" height="15" fill="rgb(231,180,14)" fg:x="1869228" fg:w="413"/><text x="78.2243%" y="431.50"></text></g><g><title>find_free_extent (377 samples, 0.02%)</title><rect x="77.9758%" y="405" width="0.0157%" height="15" fill="rgb(232,88,2)" fg:x="1869264" fg:w="377"/><text x="78.2258%" y="415.50"></text></g><g><title>set_extent_bit (291 samples, 0.01%)</title><rect x="77.9940%" y="421" width="0.0121%" height="15" fill="rgb(205,220,8)" fg:x="1869700" fg:w="291"/><text x="78.2440%" y="431.50"></text></g><g><title>__set_extent_bit (286 samples, 0.01%)</title><rect x="77.9942%" y="405" width="0.0119%" height="15" fill="rgb(225,23,53)" fg:x="1869705" fg:w="286"/><text x="78.2442%" y="415.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,390 samples, 0.06%)</title><rect x="77.9487%" y="453" width="0.0580%" height="15" fill="rgb(213,62,29)" fg:x="1868616" fg:w="1390"/><text x="78.1987%" y="463.50"></text></g><g><title>btrfs_alloc_tree_block (1,384 samples, 0.06%)</title><rect x="77.9490%" y="437" width="0.0577%" height="15" fill="rgb(227,75,7)" fg:x="1868622" fg:w="1384"/><text x="78.1990%" y="447.50"></text></g><g><title>copy_for_split (654 samples, 0.03%)</title><rect x="78.0085%" y="453" width="0.0273%" height="15" fill="rgb(207,105,14)" fg:x="1870049" fg:w="654"/><text x="78.2585%" y="463.50"></text></g><g><title>__push_leaf_left (910 samples, 0.04%)</title><rect x="78.0382%" y="437" width="0.0380%" height="15" fill="rgb(245,62,29)" fg:x="1870761" fg:w="910"/><text x="78.2882%" y="447.50"></text></g><g><title>push_leaf_left (1,194 samples, 0.05%)</title><rect x="78.0362%" y="453" width="0.0498%" height="15" fill="rgb(236,202,4)" fg:x="1870713" fg:w="1194"/><text x="78.2862%" y="463.50"></text></g><g><title>split_leaf (3,371 samples, 0.14%)</title><rect x="77.9470%" y="469" width="0.1406%" height="15" fill="rgb(250,67,1)" fg:x="1868575" fg:w="3371"/><text x="78.1970%" y="479.50"></text></g><g><title>__list_del_entry_valid (311 samples, 0.01%)</title><rect x="78.1362%" y="405" width="0.0130%" height="15" fill="rgb(253,115,44)" fg:x="1873111" fg:w="311"/><text x="78.3862%" y="415.50"></text></g><g><title>_raw_spin_lock (641 samples, 0.03%)</title><rect x="78.2105%" y="389" width="0.0267%" height="15" fill="rgb(251,139,18)" fg:x="1874892" fg:w="641"/><text x="78.4605%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (452 samples, 0.02%)</title><rect x="78.2184%" y="373" width="0.0189%" height="15" fill="rgb(218,22,32)" fg:x="1875081" fg:w="452"/><text x="78.4684%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (508 samples, 0.02%)</title><rect x="78.2373%" y="389" width="0.0212%" height="15" fill="rgb(243,53,5)" fg:x="1875533" fg:w="508"/><text x="78.4873%" y="399.50"></text></g><g><title>available_idle_cpu (507 samples, 0.02%)</title><rect x="78.3054%" y="373" width="0.0211%" height="15" fill="rgb(227,56,16)" fg:x="1877165" fg:w="507"/><text x="78.5554%" y="383.50"></text></g><g><title>select_task_rq_fair (2,366 samples, 0.10%)</title><rect x="78.2608%" y="389" width="0.0987%" height="15" fill="rgb(245,53,0)" fg:x="1876098" fg:w="2366"/><text x="78.5108%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (462 samples, 0.02%)</title><rect x="78.3403%" y="373" width="0.0193%" height="15" fill="rgb(216,170,35)" fg:x="1878002" fg:w="462"/><text x="78.5903%" y="383.50"></text></g><g><title>set_task_cpu (240 samples, 0.01%)</title><rect x="78.3595%" y="389" width="0.0100%" height="15" fill="rgb(211,200,8)" fg:x="1878464" fg:w="240"/><text x="78.6095%" y="399.50"></text></g><g><title>update_curr (350 samples, 0.01%)</title><rect x="78.4501%" y="341" width="0.0146%" height="15" fill="rgb(228,204,44)" fg:x="1880634" fg:w="350"/><text x="78.7001%" y="351.50"></text></g><g><title>enqueue_entity (2,378 samples, 0.10%)</title><rect x="78.3988%" y="357" width="0.0992%" height="15" fill="rgb(214,121,17)" fg:x="1879406" fg:w="2378"/><text x="78.6488%" y="367.50"></text></g><g><title>update_load_avg (800 samples, 0.03%)</title><rect x="78.4647%" y="341" width="0.0334%" height="15" fill="rgb(233,64,38)" fg:x="1880984" fg:w="800"/><text x="78.7147%" y="351.50"></text></g><g><title>enqueue_task_fair (2,989 samples, 0.12%)</title><rect x="78.3797%" y="373" width="0.1247%" height="15" fill="rgb(253,54,19)" fg:x="1878948" fg:w="2989"/><text x="78.6297%" y="383.50"></text></g><g><title>ttwu_do_activate (6,009 samples, 0.25%)</title><rect x="78.3696%" y="389" width="0.2507%" height="15" fill="rgb(253,94,18)" fg:x="1878704" fg:w="6009"/><text x="78.6196%" y="399.50"></text></g><g><title>psi_task_change (2,769 samples, 0.12%)</title><rect x="78.5047%" y="373" width="0.1155%" height="15" fill="rgb(227,57,52)" fg:x="1881944" fg:w="2769"/><text x="78.7547%" y="383.50"></text></g><g><title>psi_group_change (2,470 samples, 0.10%)</title><rect x="78.5172%" y="357" width="0.1030%" height="15" fill="rgb(230,228,50)" fg:x="1882243" fg:w="2470"/><text x="78.7672%" y="367.50"></text></g><g><title>record_times (390 samples, 0.02%)</title><rect x="78.6040%" y="341" width="0.0163%" height="15" fill="rgb(217,205,27)" fg:x="1884323" fg:w="390"/><text x="78.8540%" y="351.50"></text></g><g><title>sched_clock_cpu (259 samples, 0.01%)</title><rect x="78.6094%" y="325" width="0.0108%" height="15" fill="rgb(252,71,50)" fg:x="1884454" fg:w="259"/><text x="78.8594%" y="335.50"></text></g><g><title>ttwu_do_wakeup (588 samples, 0.02%)</title><rect x="78.6202%" y="389" width="0.0245%" height="15" fill="rgb(209,86,4)" fg:x="1884713" fg:w="588"/><text x="78.8702%" y="399.50"></text></g><g><title>check_preempt_curr (528 samples, 0.02%)</title><rect x="78.6227%" y="373" width="0.0220%" height="15" fill="rgb(229,94,0)" fg:x="1884773" fg:w="528"/><text x="78.8727%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (296 samples, 0.01%)</title><rect x="78.6447%" y="389" width="0.0123%" height="15" fill="rgb(252,223,21)" fg:x="1885301" fg:w="296"/><text x="78.8947%" y="399.50"></text></g><g><title>__wake_up_common (13,243 samples, 0.55%)</title><rect x="78.1256%" y="437" width="0.5524%" height="15" fill="rgb(230,210,4)" fg:x="1872855" fg:w="13243"/><text x="78.3756%" y="447.50"></text></g><g><title>autoremove_wake_function (13,037 samples, 0.54%)</title><rect x="78.1342%" y="421" width="0.5438%" height="15" fill="rgb(240,149,38)" fg:x="1873061" fg:w="13037"/><text x="78.3842%" y="431.50"></text></g><g><title>try_to_wake_up (12,663 samples, 0.53%)</title><rect x="78.1498%" y="405" width="0.5282%" height="15" fill="rgb(254,105,20)" fg:x="1873435" fg:w="12663"/><text x="78.3998%" y="415.50"></text></g><g><title>update_rq_clock (501 samples, 0.02%)</title><rect x="78.6571%" y="389" width="0.0209%" height="15" fill="rgb(253,87,46)" fg:x="1885597" fg:w="501"/><text x="78.9071%" y="399.50"></text></g><g><title>__wake_up_common_lock (13,581 samples, 0.57%)</title><rect x="78.1228%" y="453" width="0.5665%" height="15" fill="rgb(253,116,33)" fg:x="1872788" fg:w="13581"/><text x="78.3728%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (545 samples, 0.02%)</title><rect x="78.6895%" y="453" width="0.0227%" height="15" fill="rgb(229,198,5)" fg:x="1886373" fg:w="545"/><text x="78.9395%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (305 samples, 0.01%)</title><rect x="78.7122%" y="453" width="0.0127%" height="15" fill="rgb(242,38,37)" fg:x="1886918" fg:w="305"/><text x="78.9622%" y="463.50"></text></g><g><title>btrfs_search_slot (109,708 samples, 4.58%)</title><rect x="74.1623%" y="485" width="4.5764%" height="15" fill="rgb(242,69,53)" fg:x="1777846" fg:w="109708"/><text x="74.4123%" y="495.50">btrfs..</text></g><g><title>unlock_up (15,566 samples, 0.65%)</title><rect x="78.0894%" y="469" width="0.6493%" height="15" fill="rgb(249,80,16)" fg:x="1871988" fg:w="15566"/><text x="78.3394%" y="479.50"></text></g><g><title>btrfs_tree_unlock (331 samples, 0.01%)</title><rect x="78.7249%" y="453" width="0.0138%" height="15" fill="rgb(206,128,11)" fg:x="1887223" fg:w="331"/><text x="78.9749%" y="463.50"></text></g><g><title>btrfs_get_32 (408 samples, 0.02%)</title><rect x="78.8020%" y="469" width="0.0170%" height="15" fill="rgb(212,35,20)" fg:x="1889071" fg:w="408"/><text x="79.0520%" y="479.50"></text></g><g><title>btrfs_get_token_32 (3,940 samples, 0.16%)</title><rect x="78.8190%" y="469" width="0.1644%" height="15" fill="rgb(236,79,13)" fg:x="1889479" fg:w="3940"/><text x="79.0690%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (567 samples, 0.02%)</title><rect x="78.9597%" y="453" width="0.0237%" height="15" fill="rgb(233,123,3)" fg:x="1892852" fg:w="567"/><text x="79.2097%" y="463.50"></text></g><g><title>btrfs_leaf_free_space (1,061 samples, 0.04%)</title><rect x="78.9834%" y="469" width="0.0443%" height="15" fill="rgb(214,93,52)" fg:x="1893419" fg:w="1061"/><text x="79.2334%" y="479.50"></text></g><g><title>leaf_space_used (904 samples, 0.04%)</title><rect x="78.9899%" y="453" width="0.0377%" height="15" fill="rgb(251,37,40)" fg:x="1893576" fg:w="904"/><text x="79.2399%" y="463.50"></text></g><g><title>btrfs_get_32 (656 samples, 0.03%)</title><rect x="79.0003%" y="437" width="0.0274%" height="15" fill="rgb(227,80,54)" fg:x="1893824" fg:w="656"/><text x="79.2503%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (757 samples, 0.03%)</title><rect x="79.0276%" y="469" width="0.0316%" height="15" fill="rgb(254,48,11)" fg:x="1894480" fg:w="757"/><text x="79.2776%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (379 samples, 0.02%)</title><rect x="79.0434%" y="453" width="0.0158%" height="15" fill="rgb(235,193,26)" fg:x="1894858" fg:w="379"/><text x="79.2934%" y="463.50"></text></g><g><title>btrfs_set_token_32 (3,249 samples, 0.14%)</title><rect x="79.0592%" y="469" width="0.1355%" height="15" fill="rgb(229,99,21)" fg:x="1895237" fg:w="3249"/><text x="79.3092%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (637 samples, 0.03%)</title><rect x="79.1682%" y="453" width="0.0266%" height="15" fill="rgb(211,140,41)" fg:x="1897849" fg:w="637"/><text x="79.4182%" y="463.50"></text></g><g><title>memcpy_extent_buffer (746 samples, 0.03%)</title><rect x="79.2023%" y="469" width="0.0311%" height="15" fill="rgb(240,227,30)" fg:x="1898668" fg:w="746"/><text x="79.4523%" y="479.50"></text></g><g><title>memmove (404 samples, 0.02%)</title><rect x="79.2166%" y="453" width="0.0169%" height="15" fill="rgb(215,224,45)" fg:x="1899010" fg:w="404"/><text x="79.4666%" y="463.50"></text></g><g><title>memmove_extent_buffer (1,392 samples, 0.06%)</title><rect x="79.2335%" y="469" width="0.0581%" height="15" fill="rgb(206,123,31)" fg:x="1899414" fg:w="1392"/><text x="79.4835%" y="479.50"></text></g><g><title>memmove (851 samples, 0.04%)</title><rect x="79.2560%" y="453" width="0.0355%" height="15" fill="rgb(210,138,16)" fg:x="1899955" fg:w="851"/><text x="79.5060%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (123,671 samples, 5.16%)</title><rect x="74.1547%" y="501" width="5.1589%" height="15" fill="rgb(228,57,28)" fg:x="1777663" fg:w="123671"/><text x="74.4047%" y="511.50">btrfs_..</text></g><g><title>setup_items_for_insert (13,780 samples, 0.57%)</title><rect x="78.7387%" y="485" width="0.5748%" height="15" fill="rgb(242,170,10)" fg:x="1887554" fg:w="13780"/><text x="78.9887%" y="495.50"></text></g><g><title>write_extent_buffer (528 samples, 0.02%)</title><rect x="79.2915%" y="469" width="0.0220%" height="15" fill="rgb(228,214,39)" fg:x="1900806" fg:w="528"/><text x="79.5415%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (515 samples, 0.02%)</title><rect x="79.3136%" y="501" width="0.0215%" height="15" fill="rgb(218,179,33)" fg:x="1901334" fg:w="515"/><text x="79.5636%" y="511.50"></text></g><g><title>set_extent_buffer_dirty (384 samples, 0.02%)</title><rect x="79.3190%" y="485" width="0.0160%" height="15" fill="rgb(235,193,39)" fg:x="1901465" fg:w="384"/><text x="79.5690%" y="495.50"></text></g><g><title>_raw_spin_lock (456 samples, 0.02%)</title><rect x="79.4119%" y="485" width="0.0190%" height="15" fill="rgb(219,221,36)" fg:x="1903691" fg:w="456"/><text x="79.6619%" y="495.50"></text></g><g><title>_raw_spin_lock (466 samples, 0.02%)</title><rect x="79.5019%" y="437" width="0.0194%" height="15" fill="rgb(248,218,19)" fg:x="1905850" fg:w="466"/><text x="79.7519%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,637 samples, 0.07%)</title><rect x="79.4532%" y="453" width="0.0683%" height="15" fill="rgb(205,50,9)" fg:x="1904682" fg:w="1637"/><text x="79.7032%" y="463.50"></text></g><g><title>btrfs_free_path (2,508 samples, 0.10%)</title><rect x="79.4320%" y="485" width="0.1046%" height="15" fill="rgb(238,81,28)" fg:x="1904173" fg:w="2508"/><text x="79.6820%" y="495.50"></text></g><g><title>btrfs_release_path (2,486 samples, 0.10%)</title><rect x="79.4329%" y="469" width="0.1037%" height="15" fill="rgb(235,110,19)" fg:x="1904195" fg:w="2486"/><text x="79.6829%" y="479.50"></text></g><g><title>release_extent_buffer (362 samples, 0.02%)</title><rect x="79.5215%" y="453" width="0.0151%" height="15" fill="rgb(214,7,14)" fg:x="1906319" fg:w="362"/><text x="79.7715%" y="463.50"></text></g><g><title>btrfs_get_32 (307 samples, 0.01%)</title><rect x="79.5366%" y="485" width="0.0128%" height="15" fill="rgb(211,77,3)" fg:x="1906681" fg:w="307"/><text x="79.7866%" y="495.50"></text></g><g><title>_raw_read_lock (449 samples, 0.02%)</title><rect x="79.6688%" y="421" width="0.0187%" height="15" fill="rgb(229,5,9)" fg:x="1909850" fg:w="449"/><text x="79.9188%" y="431.50"></text></g><g><title>finish_wait (1,887 samples, 0.08%)</title><rect x="79.6888%" y="421" width="0.0787%" height="15" fill="rgb(225,90,11)" fg:x="1910329" fg:w="1887"/><text x="79.9388%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (1,789 samples, 0.07%)</title><rect x="79.6929%" y="405" width="0.0746%" height="15" fill="rgb(242,56,8)" fg:x="1910427" fg:w="1789"/><text x="79.9429%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,707 samples, 0.07%)</title><rect x="79.6963%" y="389" width="0.0712%" height="15" fill="rgb(249,212,39)" fg:x="1910509" fg:w="1707"/><text x="79.9463%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (4,563 samples, 0.19%)</title><rect x="79.7876%" y="405" width="0.1903%" height="15" fill="rgb(236,90,9)" fg:x="1912699" fg:w="4563"/><text x="80.0376%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,288 samples, 0.18%)</title><rect x="79.7991%" y="389" width="0.1789%" height="15" fill="rgb(206,88,35)" fg:x="1912974" fg:w="4288"/><text x="80.0491%" y="399.50"></text></g><g><title>prepare_to_wait_event (5,156 samples, 0.22%)</title><rect x="79.7678%" y="421" width="0.2151%" height="15" fill="rgb(205,126,30)" fg:x="1912224" fg:w="5156"/><text x="80.0178%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (7,160 samples, 0.30%)</title><rect x="79.9829%" y="421" width="0.2987%" height="15" fill="rgb(230,176,12)" fg:x="1917380" fg:w="7160"/><text x="80.2329%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,207 samples, 0.22%)</title><rect x="80.0644%" y="405" width="0.2172%" height="15" fill="rgb(243,19,9)" fg:x="1919333" fg:w="5207"/><text x="80.3144%" y="415.50"></text></g><g><title>update_curr (333 samples, 0.01%)</title><rect x="80.3234%" y="357" width="0.0139%" height="15" fill="rgb(245,171,17)" fg:x="1925542" fg:w="333"/><text x="80.5734%" y="367.50"></text></g><g><title>dequeue_entity (925 samples, 0.04%)</title><rect x="80.3105%" y="373" width="0.0386%" height="15" fill="rgb(227,52,21)" fg:x="1925232" fg:w="925"/><text x="80.5605%" y="383.50"></text></g><g><title>update_load_avg (282 samples, 0.01%)</title><rect x="80.3373%" y="357" width="0.0118%" height="15" fill="rgb(238,69,14)" fg:x="1925875" fg:w="282"/><text x="80.5873%" y="367.50"></text></g><g><title>dequeue_task_fair (1,098 samples, 0.05%)</title><rect x="80.3055%" y="389" width="0.0458%" height="15" fill="rgb(241,156,39)" fg:x="1925112" fg:w="1098"/><text x="80.5555%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (1,223 samples, 0.05%)</title><rect x="80.3588%" y="373" width="0.0510%" height="15" fill="rgb(212,227,28)" fg:x="1926391" fg:w="1223"/><text x="80.6088%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,176 samples, 0.05%)</title><rect x="80.3608%" y="357" width="0.0491%" height="15" fill="rgb(209,118,27)" fg:x="1926438" fg:w="1176"/><text x="80.6108%" y="367.50"></text></g><g><title>native_write_msr (1,160 samples, 0.05%)</title><rect x="80.3614%" y="341" width="0.0484%" height="15" fill="rgb(226,102,5)" fg:x="1926454" fg:w="1160"/><text x="80.6114%" y="351.50"></text></g><g><title>finish_task_switch (1,472 samples, 0.06%)</title><rect x="80.3513%" y="389" width="0.0614%" height="15" fill="rgb(223,34,3)" fg:x="1926210" fg:w="1472"/><text x="80.6013%" y="399.50"></text></g><g><title>psi_task_change (817 samples, 0.03%)</title><rect x="80.4298%" y="389" width="0.0341%" height="15" fill="rgb(221,81,38)" fg:x="1928094" fg:w="817"/><text x="80.6798%" y="399.50"></text></g><g><title>psi_group_change (681 samples, 0.03%)</title><rect x="80.4355%" y="373" width="0.0284%" height="15" fill="rgb(236,219,28)" fg:x="1928230" fg:w="681"/><text x="80.6855%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (19,789 samples, 0.83%)</title><rect x="79.6486%" y="437" width="0.8255%" height="15" fill="rgb(213,200,14)" fg:x="1909366" fg:w="19789"/><text x="79.8986%" y="447.50"></text></g><g><title>schedule (4,615 samples, 0.19%)</title><rect x="80.2816%" y="421" width="0.1925%" height="15" fill="rgb(240,33,19)" fg:x="1924540" fg:w="4615"/><text x="80.5316%" y="431.50"></text></g><g><title>__schedule (4,546 samples, 0.19%)</title><rect x="80.2845%" y="405" width="0.1896%" height="15" fill="rgb(233,113,27)" fg:x="1924609" fg:w="4546"/><text x="80.5345%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (20,855 samples, 0.87%)</title><rect x="79.6446%" y="453" width="0.8700%" height="15" fill="rgb(220,221,18)" fg:x="1909269" fg:w="20855"/><text x="79.8946%" y="463.50"></text></g><g><title>btrfs_root_node (968 samples, 0.04%)</title><rect x="80.4741%" y="437" width="0.0404%" height="15" fill="rgb(238,92,8)" fg:x="1929156" fg:w="968"/><text x="80.7241%" y="447.50"></text></g><g><title>finish_wait (1,383 samples, 0.06%)</title><rect x="80.5531%" y="437" width="0.0577%" height="15" fill="rgb(222,164,16)" fg:x="1931048" fg:w="1383"/><text x="80.8031%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (1,262 samples, 0.05%)</title><rect x="80.5581%" y="421" width="0.0526%" height="15" fill="rgb(241,119,3)" fg:x="1931169" fg:w="1262"/><text x="80.8081%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,103 samples, 0.05%)</title><rect x="80.5648%" y="405" width="0.0460%" height="15" fill="rgb(241,44,8)" fg:x="1931328" fg:w="1103"/><text x="80.8148%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,332 samples, 0.18%)</title><rect x="80.6459%" y="421" width="0.1807%" height="15" fill="rgb(230,36,40)" fg:x="1933273" fg:w="4332"/><text x="80.8959%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,686 samples, 0.15%)</title><rect x="80.6728%" y="405" width="0.1538%" height="15" fill="rgb(243,16,36)" fg:x="1933919" fg:w="3686"/><text x="80.9228%" y="415.50"></text></g><g><title>prepare_to_wait_event (5,303 samples, 0.22%)</title><rect x="80.6132%" y="437" width="0.2212%" height="15" fill="rgb(231,4,26)" fg:x="1932489" fg:w="5303"/><text x="80.8632%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (4,711 samples, 0.20%)</title><rect x="80.8344%" y="437" width="0.1965%" height="15" fill="rgb(240,9,31)" fg:x="1937792" fg:w="4711"/><text x="81.0844%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,298 samples, 0.10%)</title><rect x="80.9351%" y="421" width="0.0959%" height="15" fill="rgb(207,173,15)" fg:x="1940205" fg:w="2298"/><text x="81.1851%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (480 samples, 0.02%)</title><rect x="81.0671%" y="405" width="0.0200%" height="15" fill="rgb(224,192,53)" fg:x="1943370" fg:w="480"/><text x="81.3171%" y="415.50"></text></g><g><title>update_cfs_group (246 samples, 0.01%)</title><rect x="81.1304%" y="373" width="0.0103%" height="15" fill="rgb(223,67,28)" fg:x="1944888" fg:w="246"/><text x="81.3804%" y="383.50"></text></g><g><title>update_curr (920 samples, 0.04%)</title><rect x="81.1407%" y="373" width="0.0384%" height="15" fill="rgb(211,20,47)" fg:x="1945134" fg:w="920"/><text x="81.3907%" y="383.50"></text></g><g><title>__update_load_avg_se (258 samples, 0.01%)</title><rect x="81.2005%" y="357" width="0.0108%" height="15" fill="rgb(240,228,2)" fg:x="1946568" fg:w="258"/><text x="81.4505%" y="367.50"></text></g><g><title>dequeue_entity (2,535 samples, 0.11%)</title><rect x="81.1062%" y="389" width="0.1057%" height="15" fill="rgb(248,151,12)" fg:x="1944308" fg:w="2535"/><text x="81.3562%" y="399.50"></text></g><g><title>update_load_avg (789 samples, 0.03%)</title><rect x="81.1790%" y="373" width="0.0329%" height="15" fill="rgb(244,8,39)" fg:x="1946054" fg:w="789"/><text x="81.4290%" y="383.50"></text></g><g><title>dequeue_task_fair (3,010 samples, 0.13%)</title><rect x="81.0921%" y="405" width="0.1256%" height="15" fill="rgb(222,26,8)" fg:x="1943970" fg:w="3010"/><text x="81.3421%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (3,272 samples, 0.14%)</title><rect x="81.2393%" y="389" width="0.1365%" height="15" fill="rgb(213,106,44)" fg:x="1947498" fg:w="3272"/><text x="81.4893%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,193 samples, 0.13%)</title><rect x="81.2426%" y="373" width="0.1332%" height="15" fill="rgb(214,129,20)" fg:x="1947577" fg:w="3193"/><text x="81.4926%" y="383.50"></text></g><g><title>native_write_msr (3,156 samples, 0.13%)</title><rect x="81.2441%" y="357" width="0.1317%" height="15" fill="rgb(212,32,13)" fg:x="1947614" fg:w="3156"/><text x="81.4941%" y="367.50"></text></g><g><title>finish_task_switch (3,934 samples, 0.16%)</title><rect x="81.2177%" y="405" width="0.1641%" height="15" fill="rgb(208,168,33)" fg:x="1946980" fg:w="3934"/><text x="81.4677%" y="415.50"></text></g><g><title>newidle_balance (285 samples, 0.01%)</title><rect x="81.3879%" y="389" width="0.0119%" height="15" fill="rgb(231,207,8)" fg:x="1951060" fg:w="285"/><text x="81.6379%" y="399.50"></text></g><g><title>pick_next_task_fair (533 samples, 0.02%)</title><rect x="81.3819%" y="405" width="0.0222%" height="15" fill="rgb(235,219,23)" fg:x="1950916" fg:w="533"/><text x="81.6319%" y="415.50"></text></g><g><title>pick_next_task_idle (551 samples, 0.02%)</title><rect x="81.4041%" y="405" width="0.0230%" height="15" fill="rgb(226,216,26)" fg:x="1951449" fg:w="551"/><text x="81.6541%" y="415.50"></text></g><g><title>__update_idle_core (471 samples, 0.02%)</title><rect x="81.4074%" y="389" width="0.0196%" height="15" fill="rgb(239,137,16)" fg:x="1951529" fg:w="471"/><text x="81.6574%" y="399.50"></text></g><g><title>psi_task_change (2,158 samples, 0.09%)</title><rect x="81.4271%" y="405" width="0.0900%" height="15" fill="rgb(207,12,36)" fg:x="1952000" fg:w="2158"/><text x="81.6771%" y="415.50"></text></g><g><title>psi_group_change (1,723 samples, 0.07%)</title><rect x="81.4452%" y="389" width="0.0719%" height="15" fill="rgb(210,214,24)" fg:x="1952435" fg:w="1723"/><text x="81.6952%" y="399.50"></text></g><g><title>record_times (313 samples, 0.01%)</title><rect x="81.5040%" y="373" width="0.0131%" height="15" fill="rgb(206,56,30)" fg:x="1953845" fg:w="313"/><text x="81.7540%" y="383.50"></text></g><g><title>__btrfs_tree_lock (24,664 samples, 1.03%)</title><rect x="80.5145%" y="453" width="1.0289%" height="15" fill="rgb(228,143,26)" fg:x="1930124" fg:w="24664"/><text x="80.7645%" y="463.50"></text></g><g><title>schedule (12,285 samples, 0.51%)</title><rect x="81.0309%" y="437" width="0.5125%" height="15" fill="rgb(216,218,46)" fg:x="1942503" fg:w="12285"/><text x="81.2809%" y="447.50"></text></g><g><title>__schedule (12,190 samples, 0.51%)</title><rect x="81.0349%" y="421" width="0.5085%" height="15" fill="rgb(206,6,19)" fg:x="1942598" fg:w="12190"/><text x="81.2849%" y="431.50"></text></g><g><title>update_rq_clock (261 samples, 0.01%)</title><rect x="81.5325%" y="405" width="0.0109%" height="15" fill="rgb(239,177,51)" fg:x="1954527" fg:w="261"/><text x="81.7825%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (1,030 samples, 0.04%)</title><rect x="81.5513%" y="453" width="0.0430%" height="15" fill="rgb(216,55,25)" fg:x="1954979" fg:w="1030"/><text x="81.8013%" y="463.50"></text></g><g><title>leaf_space_used (765 samples, 0.03%)</title><rect x="81.5624%" y="437" width="0.0319%" height="15" fill="rgb(231,163,29)" fg:x="1955244" fg:w="765"/><text x="81.8124%" y="447.50"></text></g><g><title>btrfs_get_32 (542 samples, 0.02%)</title><rect x="81.5717%" y="421" width="0.0226%" height="15" fill="rgb(232,149,50)" fg:x="1955467" fg:w="542"/><text x="81.8217%" y="431.50"></text></g><g><title>btrfs_lock_root_node (347 samples, 0.01%)</title><rect x="81.5943%" y="453" width="0.0145%" height="15" fill="rgb(223,142,48)" fg:x="1956009" fg:w="347"/><text x="81.8443%" y="463.50"></text></g><g><title>__btrfs_tree_lock (347 samples, 0.01%)</title><rect x="81.5943%" y="437" width="0.0145%" height="15" fill="rgb(245,83,23)" fg:x="1956009" fg:w="347"/><text x="81.8443%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_read (307 samples, 0.01%)</title><rect x="81.6170%" y="437" width="0.0128%" height="15" fill="rgb(224,63,2)" fg:x="1956553" fg:w="307"/><text x="81.8670%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (570 samples, 0.02%)</title><rect x="81.6095%" y="453" width="0.0238%" height="15" fill="rgb(218,65,53)" fg:x="1956374" fg:w="570"/><text x="81.8595%" y="463.50"></text></g><g><title>_raw_write_lock (544 samples, 0.02%)</title><rect x="81.6445%" y="437" width="0.0227%" height="15" fill="rgb(221,84,29)" fg:x="1957211" fg:w="544"/><text x="81.8945%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (15,397 samples, 0.64%)</title><rect x="81.6338%" y="453" width="0.6423%" height="15" fill="rgb(234,0,32)" fg:x="1956956" fg:w="15397"/><text x="81.8838%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (14,598 samples, 0.61%)</title><rect x="81.6671%" y="437" width="0.6090%" height="15" fill="rgb(206,20,16)" fg:x="1957755" fg:w="14598"/><text x="81.9171%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,272 samples, 0.18%)</title><rect x="82.0979%" y="421" width="0.1782%" height="15" fill="rgb(244,172,18)" fg:x="1968081" fg:w="4272"/><text x="82.3479%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (3,552 samples, 0.15%)</title><rect x="82.2761%" y="453" width="0.1482%" height="15" fill="rgb(254,133,1)" fg:x="1972354" fg:w="3552"/><text x="82.5261%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (752 samples, 0.03%)</title><rect x="82.4475%" y="437" width="0.0314%" height="15" fill="rgb(222,206,41)" fg:x="1976463" fg:w="752"/><text x="82.6975%" y="447.50"></text></g><g><title>verify_parent_transid (564 samples, 0.02%)</title><rect x="82.4554%" y="421" width="0.0235%" height="15" fill="rgb(212,3,42)" fg:x="1976651" fg:w="564"/><text x="82.7054%" y="431.50"></text></g><g><title>btrfs_get_64 (702 samples, 0.03%)</title><rect x="82.4789%" y="437" width="0.0293%" height="15" fill="rgb(241,11,4)" fg:x="1977215" fg:w="702"/><text x="82.7289%" y="447.50"></text></g><g><title>__radix_tree_lookup (2,159 samples, 0.09%)</title><rect x="82.6034%" y="421" width="0.0901%" height="15" fill="rgb(205,19,26)" fg:x="1980200" fg:w="2159"/><text x="82.8534%" y="431.50"></text></g><g><title>mark_page_accessed (794 samples, 0.03%)</title><rect x="82.7101%" y="405" width="0.0331%" height="15" fill="rgb(210,179,32)" fg:x="1982757" fg:w="794"/><text x="82.9601%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,190 samples, 0.05%)</title><rect x="82.6939%" y="421" width="0.0496%" height="15" fill="rgb(227,116,49)" fg:x="1982369" fg:w="1190"/><text x="82.9439%" y="431.50"></text></g><g><title>find_extent_buffer (5,402 samples, 0.23%)</title><rect x="82.5191%" y="437" width="0.2253%" height="15" fill="rgb(211,146,6)" fg:x="1978179" fg:w="5402"/><text x="82.7691%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (8,325 samples, 0.35%)</title><rect x="82.4243%" y="453" width="0.3473%" height="15" fill="rgb(219,44,39)" fg:x="1975906" fg:w="8325"/><text x="82.6743%" y="463.50"></text></g><g><title>read_extent_buffer (650 samples, 0.03%)</title><rect x="82.7445%" y="437" width="0.0271%" height="15" fill="rgb(234,128,11)" fg:x="1983581" fg:w="650"/><text x="82.9945%" y="447.50"></text></g><g><title>alloc_extent_buffer (348 samples, 0.01%)</title><rect x="82.7763%" y="405" width="0.0145%" height="15" fill="rgb(220,183,53)" fg:x="1984345" fg:w="348"/><text x="83.0263%" y="415.50"></text></g><g><title>btrfs_add_delayed_tree_ref (297 samples, 0.01%)</title><rect x="82.7909%" y="405" width="0.0124%" height="15" fill="rgb(213,219,32)" fg:x="1984693" fg:w="297"/><text x="83.0409%" y="415.50"></text></g><g><title>btrfs_alloc_from_cluster (243 samples, 0.01%)</title><rect x="82.8125%" y="373" width="0.0101%" height="15" fill="rgb(232,156,16)" fg:x="1985211" fg:w="243"/><text x="83.0625%" y="383.50"></text></g><g><title>btrfs_reserve_extent (454 samples, 0.02%)</title><rect x="82.8046%" y="405" width="0.0189%" height="15" fill="rgb(246,135,34)" fg:x="1985023" fg:w="454"/><text x="83.0546%" y="415.50"></text></g><g><title>find_free_extent (403 samples, 0.02%)</title><rect x="82.8067%" y="389" width="0.0168%" height="15" fill="rgb(241,99,0)" fg:x="1985074" fg:w="403"/><text x="83.0567%" y="399.50"></text></g><g><title>set_extent_bit (310 samples, 0.01%)</title><rect x="82.8265%" y="405" width="0.0129%" height="15" fill="rgb(222,103,45)" fg:x="1985547" fg:w="310"/><text x="83.0765%" y="415.50"></text></g><g><title>__set_extent_bit (307 samples, 0.01%)</title><rect x="82.8266%" y="389" width="0.0128%" height="15" fill="rgb(212,57,4)" fg:x="1985550" fg:w="307"/><text x="83.0766%" y="399.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,574 samples, 0.07%)</title><rect x="82.7745%" y="437" width="0.0657%" height="15" fill="rgb(215,68,47)" fg:x="1984300" fg:w="1574"/><text x="83.0245%" y="447.50"></text></g><g><title>btrfs_alloc_tree_block (1,566 samples, 0.07%)</title><rect x="82.7748%" y="421" width="0.0653%" height="15" fill="rgb(230,84,2)" fg:x="1984308" fg:w="1566"/><text x="83.0248%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (296 samples, 0.01%)</title><rect x="82.8484%" y="421" width="0.0123%" height="15" fill="rgb(220,102,14)" fg:x="1986072" fg:w="296"/><text x="83.0984%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (284 samples, 0.01%)</title><rect x="82.8489%" y="405" width="0.0118%" height="15" fill="rgb(240,10,32)" fg:x="1986084" fg:w="284"/><text x="83.0989%" y="415.50"></text></g><g><title>copy_for_split (760 samples, 0.03%)</title><rect x="82.8422%" y="437" width="0.0317%" height="15" fill="rgb(215,47,27)" fg:x="1985925" fg:w="760"/><text x="83.0922%" y="447.50"></text></g><g><title>btrfs_get_token_32 (263 samples, 0.01%)</title><rect x="82.8879%" y="405" width="0.0110%" height="15" fill="rgb(233,188,43)" fg:x="1987019" fg:w="263"/><text x="83.1379%" y="415.50"></text></g><g><title>__push_leaf_left (1,149 samples, 0.05%)</title><rect x="82.8768%" y="421" width="0.0479%" height="15" fill="rgb(253,190,1)" fg:x="1986754" fg:w="1149"/><text x="83.1268%" y="431.50"></text></g><g><title>push_leaf_left (1,466 samples, 0.06%)</title><rect x="82.8743%" y="437" width="0.0612%" height="15" fill="rgb(206,114,52)" fg:x="1986693" fg:w="1466"/><text x="83.1243%" y="447.50"></text></g><g><title>split_leaf (3,963 samples, 0.17%)</title><rect x="82.7720%" y="453" width="0.1653%" height="15" fill="rgb(233,120,37)" fg:x="1984240" fg:w="3963"/><text x="83.0220%" y="463.50"></text></g><g><title>__list_del_entry_valid (333 samples, 0.01%)</title><rect x="82.9863%" y="389" width="0.0139%" height="15" fill="rgb(214,52,39)" fg:x="1989379" fg:w="333"/><text x="83.2363%" y="399.50"></text></g><g><title>_raw_spin_lock (596 samples, 0.02%)</title><rect x="83.0555%" y="373" width="0.0249%" height="15" fill="rgb(223,80,29)" fg:x="1991036" fg:w="596"/><text x="83.3055%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (410 samples, 0.02%)</title><rect x="83.0632%" y="357" width="0.0171%" height="15" fill="rgb(230,101,40)" fg:x="1991222" fg:w="410"/><text x="83.3132%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (573 samples, 0.02%)</title><rect x="83.0803%" y="373" width="0.0239%" height="15" fill="rgb(219,211,8)" fg:x="1991632" fg:w="573"/><text x="83.3303%" y="383.50"></text></g><g><title>available_idle_cpu (519 samples, 0.02%)</title><rect x="83.1545%" y="357" width="0.0216%" height="15" fill="rgb(252,126,28)" fg:x="1993411" fg:w="519"/><text x="83.4045%" y="367.50"></text></g><g><title>select_task_rq_fair (2,584 samples, 0.11%)</title><rect x="83.1064%" y="373" width="0.1078%" height="15" fill="rgb(215,56,38)" fg:x="1992257" fg:w="2584"/><text x="83.3564%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (560 samples, 0.02%)</title><rect x="83.1908%" y="357" width="0.0234%" height="15" fill="rgb(249,55,44)" fg:x="1994281" fg:w="560"/><text x="83.4408%" y="367.50"></text></g><g><title>set_task_cpu (242 samples, 0.01%)</title><rect x="83.2142%" y="373" width="0.0101%" height="15" fill="rgb(220,221,32)" fg:x="1994841" fg:w="242"/><text x="83.4642%" y="383.50"></text></g><g><title>update_curr (348 samples, 0.01%)</title><rect x="83.3044%" y="325" width="0.0145%" height="15" fill="rgb(212,216,41)" fg:x="1997003" fg:w="348"/><text x="83.5544%" y="335.50"></text></g><g><title>enqueue_entity (2,431 samples, 0.10%)</title><rect x="83.2518%" y="341" width="0.1014%" height="15" fill="rgb(228,213,43)" fg:x="1995744" fg:w="2431"/><text x="83.5018%" y="351.50"></text></g><g><title>update_load_avg (824 samples, 0.03%)</title><rect x="83.3189%" y="325" width="0.0344%" height="15" fill="rgb(211,31,26)" fg:x="1997351" fg:w="824"/><text x="83.5689%" y="335.50"></text></g><g><title>enqueue_task_fair (3,058 samples, 0.13%)</title><rect x="83.2333%" y="357" width="0.1276%" height="15" fill="rgb(229,202,19)" fg:x="1995300" fg:w="3058"/><text x="83.4833%" y="367.50"></text></g><g><title>ttwu_do_activate (6,118 samples, 0.26%)</title><rect x="83.2243%" y="373" width="0.2552%" height="15" fill="rgb(229,105,46)" fg:x="1995083" fg:w="6118"/><text x="83.4743%" y="383.50"></text></g><g><title>psi_task_change (2,835 samples, 0.12%)</title><rect x="83.3612%" y="357" width="0.1183%" height="15" fill="rgb(235,108,1)" fg:x="1998366" fg:w="2835"/><text x="83.6112%" y="367.50"></text></g><g><title>psi_group_change (2,523 samples, 0.11%)</title><rect x="83.3742%" y="341" width="0.1052%" height="15" fill="rgb(245,111,35)" fg:x="1998678" fg:w="2523"/><text x="83.6242%" y="351.50"></text></g><g><title>record_times (470 samples, 0.02%)</title><rect x="83.4599%" y="325" width="0.0196%" height="15" fill="rgb(219,185,31)" fg:x="2000731" fg:w="470"/><text x="83.7099%" y="335.50"></text></g><g><title>sched_clock_cpu (313 samples, 0.01%)</title><rect x="83.4664%" y="309" width="0.0131%" height="15" fill="rgb(214,4,43)" fg:x="2000888" fg:w="313"/><text x="83.7164%" y="319.50"></text></g><g><title>sched_clock (270 samples, 0.01%)</title><rect x="83.4682%" y="293" width="0.0113%" height="15" fill="rgb(235,227,40)" fg:x="2000931" fg:w="270"/><text x="83.7182%" y="303.50"></text></g><g><title>native_sched_clock (243 samples, 0.01%)</title><rect x="83.4693%" y="277" width="0.0101%" height="15" fill="rgb(230,88,30)" fg:x="2000958" fg:w="243"/><text x="83.7193%" y="287.50"></text></g><g><title>ttwu_do_wakeup (567 samples, 0.02%)</title><rect x="83.4795%" y="373" width="0.0237%" height="15" fill="rgb(216,217,1)" fg:x="2001201" fg:w="567"/><text x="83.7295%" y="383.50"></text></g><g><title>check_preempt_curr (510 samples, 0.02%)</title><rect x="83.4819%" y="357" width="0.0213%" height="15" fill="rgb(248,139,50)" fg:x="2001258" fg:w="510"/><text x="83.7319%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (297 samples, 0.01%)</title><rect x="83.5031%" y="373" width="0.0124%" height="15" fill="rgb(233,1,21)" fg:x="2001768" fg:w="297"/><text x="83.7531%" y="383.50"></text></g><g><title>__wake_up_common (13,423 samples, 0.56%)</title><rect x="82.9767%" y="421" width="0.5599%" height="15" fill="rgb(215,183,12)" fg:x="1989148" fg:w="13423"/><text x="83.2267%" y="431.50"></text></g><g><title>autoremove_wake_function (13,221 samples, 0.55%)</title><rect x="82.9851%" y="405" width="0.5515%" height="15" fill="rgb(229,104,42)" fg:x="1989350" fg:w="13221"/><text x="83.2351%" y="415.50"></text></g><g><title>try_to_wake_up (12,845 samples, 0.54%)</title><rect x="83.0008%" y="389" width="0.5358%" height="15" fill="rgb(243,34,48)" fg:x="1989726" fg:w="12845"/><text x="83.2508%" y="399.50"></text></g><g><title>update_rq_clock (506 samples, 0.02%)</title><rect x="83.5155%" y="373" width="0.0211%" height="15" fill="rgb(239,11,44)" fg:x="2002065" fg:w="506"/><text x="83.7655%" y="383.50"></text></g><g><title>__wake_up_common_lock (13,752 samples, 0.57%)</title><rect x="82.9743%" y="437" width="0.5737%" height="15" fill="rgb(231,98,35)" fg:x="1989091" fg:w="13752"/><text x="83.2243%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (534 samples, 0.02%)</title><rect x="83.5482%" y="437" width="0.0223%" height="15" fill="rgb(233,28,25)" fg:x="2002849" fg:w="534"/><text x="83.7982%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (361 samples, 0.02%)</title><rect x="83.5705%" y="437" width="0.0151%" height="15" fill="rgb(234,123,11)" fg:x="2003383" fg:w="361"/><text x="83.8205%" y="447.50"></text></g><g><title>btrfs_search_slot (96,752 samples, 4.04%)</title><rect x="79.5630%" y="469" width="4.0360%" height="15" fill="rgb(220,69,3)" fg:x="1907313" fg:w="96752"/><text x="79.8130%" y="479.50">btrf..</text></g><g><title>unlock_up (15,779 samples, 0.66%)</title><rect x="82.9407%" y="453" width="0.6582%" height="15" fill="rgb(214,64,36)" fg:x="1988286" fg:w="15779"/><text x="83.1907%" y="463.50"></text></g><g><title>btrfs_tree_unlock (321 samples, 0.01%)</title><rect x="83.5856%" y="437" width="0.0134%" height="15" fill="rgb(211,138,32)" fg:x="2003744" fg:w="321"/><text x="83.8356%" y="447.50"></text></g><g><title>btrfs_get_32 (485 samples, 0.02%)</title><rect x="83.6797%" y="453" width="0.0202%" height="15" fill="rgb(213,118,47)" fg:x="2006001" fg:w="485"/><text x="83.9297%" y="463.50"></text></g><g><title>btrfs_get_token_32 (4,012 samples, 0.17%)</title><rect x="83.6999%" y="453" width="0.1674%" height="15" fill="rgb(243,124,49)" fg:x="2006486" fg:w="4012"/><text x="83.9499%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (586 samples, 0.02%)</title><rect x="83.8429%" y="437" width="0.0244%" height="15" fill="rgb(221,30,28)" fg:x="2009912" fg:w="586"/><text x="84.0929%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (1,038 samples, 0.04%)</title><rect x="83.8673%" y="453" width="0.0433%" height="15" fill="rgb(246,37,13)" fg:x="2010498" fg:w="1038"/><text x="84.1173%" y="463.50"></text></g><g><title>leaf_space_used (864 samples, 0.04%)</title><rect x="83.8746%" y="437" width="0.0360%" height="15" fill="rgb(249,66,14)" fg:x="2010672" fg:w="864"/><text x="84.1246%" y="447.50"></text></g><g><title>btrfs_get_32 (665 samples, 0.03%)</title><rect x="83.8829%" y="421" width="0.0277%" height="15" fill="rgb(213,166,5)" fg:x="2010871" fg:w="665"/><text x="84.1329%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (866 samples, 0.04%)</title><rect x="83.9106%" y="453" width="0.0361%" height="15" fill="rgb(221,66,24)" fg:x="2011536" fg:w="866"/><text x="84.1606%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (379 samples, 0.02%)</title><rect x="83.9309%" y="437" width="0.0158%" height="15" fill="rgb(210,132,17)" fg:x="2012023" fg:w="379"/><text x="84.1809%" y="447.50"></text></g><g><title>btrfs_set_token_32 (3,308 samples, 0.14%)</title><rect x="83.9467%" y="453" width="0.1380%" height="15" fill="rgb(243,202,5)" fg:x="2012402" fg:w="3308"/><text x="84.1967%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (597 samples, 0.02%)</title><rect x="84.0598%" y="437" width="0.0249%" height="15" fill="rgb(233,70,48)" fg:x="2015113" fg:w="597"/><text x="84.3098%" y="447.50"></text></g><g><title>memcpy_extent_buffer (351 samples, 0.01%)</title><rect x="84.0944%" y="453" width="0.0146%" height="15" fill="rgb(238,41,26)" fg:x="2015941" fg:w="351"/><text x="84.3444%" y="463.50"></text></g><g><title>memmove_extent_buffer (1,578 samples, 0.07%)</title><rect x="84.1090%" y="453" width="0.0658%" height="15" fill="rgb(241,19,31)" fg:x="2016292" fg:w="1578"/><text x="84.3590%" y="463.50"></text></g><g><title>memmove (870 samples, 0.04%)</title><rect x="84.1385%" y="437" width="0.0363%" height="15" fill="rgb(214,76,10)" fg:x="2017000" fg:w="870"/><text x="84.3885%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (111,656 samples, 4.66%)</title><rect x="79.5570%" y="485" width="4.6577%" height="15" fill="rgb(254,202,22)" fg:x="1907169" fg:w="111656"/><text x="79.8070%" y="495.50">btrfs..</text></g><g><title>setup_items_for_insert (14,760 samples, 0.62%)</title><rect x="83.5990%" y="469" width="0.6157%" height="15" fill="rgb(214,72,24)" fg:x="2004065" fg:w="14760"/><text x="83.8490%" y="479.50"></text></g><g><title>write_extent_buffer (955 samples, 0.04%)</title><rect x="84.1748%" y="453" width="0.0398%" height="15" fill="rgb(221,92,46)" fg:x="2017870" fg:w="955"/><text x="84.4248%" y="463.50"></text></g><g><title>btrfs_mark_buffer_dirty (529 samples, 0.02%)</title><rect x="84.2147%" y="485" width="0.0221%" height="15" fill="rgb(246,13,50)" fg:x="2018825" fg:w="529"/><text x="84.4647%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (330 samples, 0.01%)</title><rect x="84.2230%" y="469" width="0.0138%" height="15" fill="rgb(240,165,38)" fg:x="2019024" fg:w="330"/><text x="84.4730%" y="479.50"></text></g><g><title>btrfs_set_16 (349 samples, 0.01%)</title><rect x="84.2367%" y="485" width="0.0146%" height="15" fill="rgb(241,24,51)" fg:x="2019354" fg:w="349"/><text x="84.4867%" y="495.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (320 samples, 0.01%)</title><rect x="84.2603%" y="485" width="0.0133%" height="15" fill="rgb(227,51,44)" fg:x="2019920" fg:w="320"/><text x="84.5103%" y="495.50"></text></g><g><title>btrfs_update_root_times (568 samples, 0.02%)</title><rect x="84.2737%" y="485" width="0.0237%" height="15" fill="rgb(231,121,3)" fg:x="2020240" fg:w="568"/><text x="84.5237%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (314 samples, 0.01%)</title><rect x="84.2843%" y="469" width="0.0131%" height="15" fill="rgb(245,3,41)" fg:x="2020494" fg:w="314"/><text x="84.5343%" y="479.50"></text></g><g><title>current_time (499 samples, 0.02%)</title><rect x="84.2974%" y="485" width="0.0208%" height="15" fill="rgb(214,13,26)" fg:x="2020808" fg:w="499"/><text x="84.5474%" y="495.50"></text></g><g><title>btrfs_set_token_32 (1,511 samples, 0.06%)</title><rect x="84.3479%" y="469" width="0.0630%" height="15" fill="rgb(252,75,11)" fg:x="2022018" fg:w="1511"/><text x="84.5979%" y="479.50"></text></g><g><title>btrfs_set_token_64 (2,052 samples, 0.09%)</title><rect x="84.4109%" y="469" width="0.0856%" height="15" fill="rgb(218,226,17)" fg:x="2023529" fg:w="2052"/><text x="84.6609%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (296 samples, 0.01%)</title><rect x="84.4841%" y="453" width="0.0123%" height="15" fill="rgb(248,89,38)" fg:x="2025285" fg:w="296"/><text x="84.7341%" y="463.50"></text></g><g><title>inode_get_bytes (279 samples, 0.01%)</title><rect x="84.4987%" y="469" width="0.0116%" height="15" fill="rgb(237,73,46)" fg:x="2025635" fg:w="279"/><text x="84.7487%" y="479.50"></text></g><g><title>fill_inode_item (4,936 samples, 0.21%)</title><rect x="84.3182%" y="485" width="0.2059%" height="15" fill="rgb(242,78,33)" fg:x="2021307" fg:w="4936"/><text x="84.5682%" y="495.50"></text></g><g><title>map_id_up (329 samples, 0.01%)</title><rect x="84.5104%" y="469" width="0.0137%" height="15" fill="rgb(235,60,3)" fg:x="2025914" fg:w="329"/><text x="84.7604%" y="479.50"></text></g><g><title>inherit_props (468 samples, 0.02%)</title><rect x="84.5241%" y="485" width="0.0195%" height="15" fill="rgb(216,172,19)" fg:x="2026243" fg:w="468"/><text x="84.7741%" y="495.50"></text></g><g><title>inode_init_owner (590 samples, 0.02%)</title><rect x="84.5436%" y="485" width="0.0246%" height="15" fill="rgb(227,6,42)" fg:x="2026711" fg:w="590"/><text x="84.7936%" y="495.50"></text></g><g><title>_raw_spin_lock (908 samples, 0.04%)</title><rect x="84.9296%" y="469" width="0.0379%" height="15" fill="rgb(223,207,42)" fg:x="2035963" fg:w="908"/><text x="85.1796%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (330 samples, 0.01%)</title><rect x="84.9537%" y="453" width="0.0138%" height="15" fill="rgb(246,138,30)" fg:x="2036541" fg:w="330"/><text x="85.2037%" y="463.50"></text></g><g><title>inode_tree_add (10,510 samples, 0.44%)</title><rect x="84.5717%" y="485" width="0.4384%" height="15" fill="rgb(251,199,47)" fg:x="2027383" fg:w="10510"/><text x="84.8217%" y="495.50"></text></g><g><title>rb_insert_color (960 samples, 0.04%)</title><rect x="84.9700%" y="469" width="0.0400%" height="15" fill="rgb(228,218,44)" fg:x="2036933" fg:w="960"/><text x="85.2200%" y="479.50"></text></g><g><title>_raw_spin_lock (606 samples, 0.03%)</title><rect x="85.0159%" y="453" width="0.0253%" height="15" fill="rgb(220,68,6)" fg:x="2038032" fg:w="606"/><text x="85.2659%" y="463.50"></text></g><g><title>find_inode (1,011 samples, 0.04%)</title><rect x="85.0412%" y="453" width="0.0422%" height="15" fill="rgb(240,60,26)" fg:x="2038640" fg:w="1011"/><text x="85.2912%" y="463.50"></text></g><g><title>insert_inode_locked4 (1,759 samples, 0.07%)</title><rect x="85.0101%" y="485" width="0.0734%" height="15" fill="rgb(211,200,19)" fg:x="2037893" fg:w="1759"/><text x="85.2601%" y="495.50"></text></g><g><title>inode_insert5 (1,749 samples, 0.07%)</title><rect x="85.0105%" y="469" width="0.0730%" height="15" fill="rgb(242,145,30)" fg:x="2037903" fg:w="1749"/><text x="85.2605%" y="479.50"></text></g><g><title>kmem_cache_alloc (671 samples, 0.03%)</title><rect x="85.0835%" y="485" width="0.0280%" height="15" fill="rgb(225,64,13)" fg:x="2039652" fg:w="671"/><text x="85.3335%" y="495.50"></text></g><g><title>kmem_cache_free (640 samples, 0.03%)</title><rect x="85.1114%" y="485" width="0.0267%" height="15" fill="rgb(218,103,35)" fg:x="2040323" fg:w="640"/><text x="85.3614%" y="495.50"></text></g><g><title>memzero_extent_buffer (475 samples, 0.02%)</title><rect x="85.1381%" y="485" width="0.0198%" height="15" fill="rgb(216,93,46)" fg:x="2040963" fg:w="475"/><text x="85.3881%" y="495.50"></text></g><g><title>_raw_spin_lock (357 samples, 0.01%)</title><rect x="85.1617%" y="469" width="0.0149%" height="15" fill="rgb(225,159,27)" fg:x="2041527" fg:w="357"/><text x="85.4117%" y="479.50"></text></g><g><title>btrfs_init_metadata_block_rsv (715 samples, 0.03%)</title><rect x="85.2308%" y="437" width="0.0298%" height="15" fill="rgb(225,204,11)" fg:x="2043184" fg:w="715"/><text x="85.4808%" y="447.50"></text></g><g><title>btrfs_find_space_info (544 samples, 0.02%)</title><rect x="85.2379%" y="421" width="0.0227%" height="15" fill="rgb(205,56,4)" fg:x="2043355" fg:w="544"/><text x="85.4879%" y="431.50"></text></g><g><title>kernel_init_free_pages (301 samples, 0.01%)</title><rect x="85.3285%" y="325" width="0.0126%" height="15" fill="rgb(206,6,35)" fg:x="2045527" fg:w="301"/><text x="85.5785%" y="335.50"></text></g><g><title>clear_page_erms (292 samples, 0.01%)</title><rect x="85.3289%" y="309" width="0.0122%" height="15" fill="rgb(247,73,52)" fg:x="2045536" fg:w="292"/><text x="85.5789%" y="319.50"></text></g><g><title>prep_new_page (321 samples, 0.01%)</title><rect x="85.3283%" y="341" width="0.0134%" height="15" fill="rgb(246,97,4)" fg:x="2045521" fg:w="321"/><text x="85.5783%" y="351.50"></text></g><g><title>__alloc_pages_nodemask (429 samples, 0.02%)</title><rect x="85.3238%" y="373" width="0.0179%" height="15" fill="rgb(212,37,15)" fg:x="2045414" fg:w="429"/><text x="85.5738%" y="383.50"></text></g><g><title>get_page_from_freelist (416 samples, 0.02%)</title><rect x="85.3244%" y="357" width="0.0174%" height="15" fill="rgb(208,130,40)" fg:x="2045427" fg:w="416"/><text x="85.5744%" y="367.50"></text></g><g><title>allocate_slab (768 samples, 0.03%)</title><rect x="85.3213%" y="389" width="0.0320%" height="15" fill="rgb(236,55,29)" fg:x="2045354" fg:w="768"/><text x="85.5713%" y="399.50"></text></g><g><title>___slab_alloc (1,202 samples, 0.05%)</title><rect x="85.3080%" y="405" width="0.0501%" height="15" fill="rgb(209,156,45)" fg:x="2045035" fg:w="1202"/><text x="85.5580%" y="415.50"></text></g><g><title>__slab_alloc (1,239 samples, 0.05%)</title><rect x="85.3065%" y="421" width="0.0517%" height="15" fill="rgb(249,107,4)" fg:x="2044999" fg:w="1239"/><text x="85.5565%" y="431.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,303 samples, 0.05%)</title><rect x="85.3584%" y="421" width="0.0544%" height="15" fill="rgb(227,7,13)" fg:x="2046243" fg:w="1303"/><text x="85.6084%" y="431.50"></text></g><g><title>get_obj_cgroup_from_current (537 samples, 0.02%)</title><rect x="85.4269%" y="405" width="0.0224%" height="15" fill="rgb(250,129,14)" fg:x="2047885" fg:w="537"/><text x="85.6769%" y="415.50"></text></g><g><title>__memcg_kmem_charge (318 samples, 0.01%)</title><rect x="85.4677%" y="389" width="0.0133%" height="15" fill="rgb(229,92,13)" fg:x="2048864" fg:w="318"/><text x="85.7177%" y="399.50"></text></g><g><title>try_charge (281 samples, 0.01%)</title><rect x="85.4693%" y="373" width="0.0117%" height="15" fill="rgb(245,98,39)" fg:x="2048901" fg:w="281"/><text x="85.7193%" y="383.50"></text></g><g><title>obj_cgroup_charge (991 samples, 0.04%)</title><rect x="85.4493%" y="405" width="0.0413%" height="15" fill="rgb(234,135,48)" fg:x="2048422" fg:w="991"/><text x="85.6993%" y="415.50"></text></g><g><title>kmem_cache_alloc (5,153 samples, 0.21%)</title><rect x="85.2758%" y="437" width="0.2150%" height="15" fill="rgb(230,98,28)" fg:x="2044264" fg:w="5153"/><text x="85.5258%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,869 samples, 0.08%)</title><rect x="85.4128%" y="421" width="0.0780%" height="15" fill="rgb(223,121,0)" fg:x="2047548" fg:w="1869"/><text x="85.6628%" y="431.50"></text></g><g><title>btrfs_alloc_inode (7,188 samples, 0.30%)</title><rect x="85.1910%" y="453" width="0.2998%" height="15" fill="rgb(234,173,33)" fg:x="2042230" fg:w="7188"/><text x="85.4410%" y="463.50"></text></g><g><title>alloc_inode (9,301 samples, 0.39%)</title><rect x="85.1766%" y="469" width="0.3880%" height="15" fill="rgb(245,47,8)" fg:x="2041884" fg:w="9301"/><text x="85.4266%" y="479.50"></text></g><g><title>inode_init_always (1,767 samples, 0.07%)</title><rect x="85.4908%" y="453" width="0.0737%" height="15" fill="rgb(205,17,20)" fg:x="2049418" fg:w="1767"/><text x="85.7408%" y="463.50"></text></g><g><title>security_inode_alloc (471 samples, 0.02%)</title><rect x="85.5449%" y="437" width="0.0196%" height="15" fill="rgb(232,151,16)" fg:x="2050714" fg:w="471"/><text x="85.7949%" y="447.50"></text></g><g><title>new_inode (10,306 samples, 0.43%)</title><rect x="85.1580%" y="485" width="0.4299%" height="15" fill="rgb(208,30,32)" fg:x="2041438" fg:w="10306"/><text x="85.4080%" y="495.50"></text></g><g><title>inode_sb_list_add (559 samples, 0.02%)</title><rect x="85.5645%" y="469" width="0.0233%" height="15" fill="rgb(254,26,3)" fg:x="2051185" fg:w="559"/><text x="85.8145%" y="479.50"></text></g><g><title>_raw_spin_lock (265 samples, 0.01%)</title><rect x="85.5768%" y="453" width="0.0111%" height="15" fill="rgb(240,177,30)" fg:x="2051479" fg:w="265"/><text x="85.8268%" y="463.50"></text></g><g><title>btrfs_new_inode (150,397 samples, 6.27%)</title><rect x="79.3350%" y="501" width="6.2738%" height="15" fill="rgb(248,76,44)" fg:x="1901849" fg:w="150397"/><text x="79.5850%" y="511.50">btrfs_ne..</text></g><g><title>write_extent_buffer (502 samples, 0.02%)</title><rect x="85.5879%" y="485" width="0.0209%" height="15" fill="rgb(241,186,54)" fg:x="2051744" fg:w="502"/><text x="85.8379%" y="495.50"></text></g><g><title>btrfs_set_64 (421 samples, 0.02%)</title><rect x="85.6174%" y="501" width="0.0176%" height="15" fill="rgb(249,171,29)" fg:x="2052451" fg:w="421"/><text x="85.8674%" y="511.50"></text></g><g><title>btrfs_set_8 (435 samples, 0.02%)</title><rect x="85.6349%" y="501" width="0.0181%" height="15" fill="rgb(237,151,44)" fg:x="2052872" fg:w="435"/><text x="85.8849%" y="511.50"></text></g><g><title>__list_add_valid (520 samples, 0.02%)</title><rect x="85.7581%" y="453" width="0.0217%" height="15" fill="rgb(228,174,30)" fg:x="2055826" fg:w="520"/><text x="86.0081%" y="463.50"></text></g><g><title>_raw_spin_lock (320 samples, 0.01%)</title><rect x="85.7798%" y="453" width="0.0133%" height="15" fill="rgb(252,14,37)" fg:x="2056346" fg:w="320"/><text x="86.0298%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,297 samples, 0.10%)</title><rect x="85.7134%" y="469" width="0.0958%" height="15" fill="rgb(207,111,40)" fg:x="2054753" fg:w="2297"/><text x="85.9634%" y="479.50"></text></g><g><title>_raw_spin_lock (1,083 samples, 0.05%)</title><rect x="85.8158%" y="453" width="0.0452%" height="15" fill="rgb(248,171,54)" fg:x="2057207" fg:w="1083"/><text x="86.0658%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (1,238 samples, 0.05%)</title><rect x="85.8094%" y="469" width="0.0516%" height="15" fill="rgb(211,127,2)" fg:x="2057054" fg:w="1238"/><text x="86.0594%" y="479.50"></text></g><g><title>__radix_tree_preload (244 samples, 0.01%)</title><rect x="85.8939%" y="453" width="0.0102%" height="15" fill="rgb(236,87,47)" fg:x="2059081" fg:w="244"/><text x="86.1439%" y="463.50"></text></g><g><title>_raw_spin_lock (254 samples, 0.01%)</title><rect x="85.9041%" y="453" width="0.0106%" height="15" fill="rgb(223,190,45)" fg:x="2059325" fg:w="254"/><text x="86.1541%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,526 samples, 0.11%)</title><rect x="85.9230%" y="437" width="0.1054%" height="15" fill="rgb(215,5,16)" fg:x="2059778" fg:w="2526"/><text x="86.1730%" y="447.50"></text></g><g><title>_raw_spin_lock (418 samples, 0.02%)</title><rect x="86.0284%" y="437" width="0.0174%" height="15" fill="rgb(252,82,33)" fg:x="2062304" fg:w="418"/><text x="86.2784%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (3,157 samples, 0.13%)</title><rect x="85.9148%" y="453" width="0.1317%" height="15" fill="rgb(247,213,44)" fg:x="2059581" fg:w="3157"/><text x="86.1648%" y="463.50"></text></g><g><title>allocate_slab (276 samples, 0.01%)</title><rect x="86.0896%" y="405" width="0.0115%" height="15" fill="rgb(205,196,44)" fg:x="2063772" fg:w="276"/><text x="86.3396%" y="415.50"></text></g><g><title>___slab_alloc (696 samples, 0.03%)</title><rect x="86.0748%" y="421" width="0.0290%" height="15" fill="rgb(237,96,54)" fg:x="2063416" fg:w="696"/><text x="86.3248%" y="431.50"></text></g><g><title>__slab_alloc (743 samples, 0.03%)</title><rect x="86.0728%" y="437" width="0.0310%" height="15" fill="rgb(230,113,34)" fg:x="2063370" fg:w="743"/><text x="86.3228%" y="447.50"></text></g><g><title>memset_erms (260 samples, 0.01%)</title><rect x="86.1071%" y="437" width="0.0108%" height="15" fill="rgb(221,224,12)" fg:x="2064191" fg:w="260"/><text x="86.3571%" y="447.50"></text></g><g><title>__schedule (302 samples, 0.01%)</title><rect x="86.1218%" y="405" width="0.0126%" height="15" fill="rgb(219,112,44)" fg:x="2064543" fg:w="302"/><text x="86.3718%" y="415.50"></text></g><g><title>_cond_resched (335 samples, 0.01%)</title><rect x="86.1210%" y="421" width="0.0140%" height="15" fill="rgb(210,31,13)" fg:x="2064524" fg:w="335"/><text x="86.3710%" y="431.50"></text></g><g><title>kmem_cache_alloc (2,136 samples, 0.09%)</title><rect x="86.0465%" y="453" width="0.0891%" height="15" fill="rgb(230,25,16)" fg:x="2062738" fg:w="2136"/><text x="86.2965%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (423 samples, 0.02%)</title><rect x="86.1179%" y="437" width="0.0176%" height="15" fill="rgb(246,108,53)" fg:x="2064451" fg:w="423"/><text x="86.3679%" y="447.50"></text></g><g><title>radix_tree_insert (806 samples, 0.03%)</title><rect x="86.1356%" y="453" width="0.0336%" height="15" fill="rgb(241,172,50)" fg:x="2064874" fg:w="806"/><text x="86.3856%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (7,447 samples, 0.31%)</title><rect x="85.8610%" y="469" width="0.3106%" height="15" fill="rgb(235,141,10)" fg:x="2058292" fg:w="7447"/><text x="86.1110%" y="479.50"></text></g><g><title>inode_get_bytes (282 samples, 0.01%)</title><rect x="86.1803%" y="453" width="0.0118%" height="15" fill="rgb(220,174,43)" fg:x="2065945" fg:w="282"/><text x="86.4303%" y="463.50"></text></g><g><title>_raw_spin_lock (241 samples, 0.01%)</title><rect x="86.1820%" y="437" width="0.0101%" height="15" fill="rgb(215,181,40)" fg:x="2065986" fg:w="241"/><text x="86.4320%" y="447.50"></text></g><g><title>fill_stack_inode_item (636 samples, 0.03%)</title><rect x="86.1717%" y="469" width="0.0265%" height="15" fill="rgb(230,97,2)" fg:x="2065739" fg:w="636"/><text x="86.4217%" y="479.50"></text></g><g><title>mutex_lock (467 samples, 0.02%)</title><rect x="86.1982%" y="469" width="0.0195%" height="15" fill="rgb(211,25,27)" fg:x="2066375" fg:w="467"/><text x="86.4482%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (13,075 samples, 0.55%)</title><rect x="85.6787%" y="485" width="0.5454%" height="15" fill="rgb(230,87,26)" fg:x="2053922" fg:w="13075"/><text x="85.9287%" y="495.50"></text></g><g><title>_raw_spin_lock (543 samples, 0.02%)</title><rect x="86.2277%" y="469" width="0.0227%" height="15" fill="rgb(227,160,17)" fg:x="2067082" fg:w="543"/><text x="86.4777%" y="479.50"></text></g><g><title>btrfs_update_inode (14,616 samples, 0.61%)</title><rect x="85.6585%" y="501" width="0.6097%" height="15" fill="rgb(244,85,34)" fg:x="2053438" fg:w="14616"/><text x="85.9085%" y="511.50"></text></g><g><title>btrfs_update_root_times (1,057 samples, 0.04%)</title><rect x="86.2241%" y="485" width="0.0441%" height="15" fill="rgb(207,70,0)" fg:x="2066997" fg:w="1057"/><text x="86.4741%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (429 samples, 0.02%)</title><rect x="86.2503%" y="469" width="0.0179%" height="15" fill="rgb(223,129,7)" fg:x="2067625" fg:w="429"/><text x="86.5003%" y="479.50"></text></g><g><title>__d_instantiate (886 samples, 0.04%)</title><rect x="86.2881%" y="485" width="0.0370%" height="15" fill="rgb(246,105,7)" fg:x="2068530" fg:w="886"/><text x="86.5381%" y="495.50"></text></g><g><title>d_flags_for_inode (417 samples, 0.02%)</title><rect x="86.3077%" y="469" width="0.0174%" height="15" fill="rgb(215,154,42)" fg:x="2068999" fg:w="417"/><text x="86.5577%" y="479.50"></text></g><g><title>security_d_instantiate (327 samples, 0.01%)</title><rect x="86.3330%" y="485" width="0.0136%" height="15" fill="rgb(220,215,30)" fg:x="2069607" fg:w="327"/><text x="86.5830%" y="495.50"></text></g><g><title>d_instantiate_new (1,907 samples, 0.08%)</title><rect x="86.2763%" y="501" width="0.0795%" height="15" fill="rgb(228,81,51)" fg:x="2068248" fg:w="1907"/><text x="86.5263%" y="511.50"></text></g><g><title>__schedule (244 samples, 0.01%)</title><rect x="86.4003%" y="453" width="0.0102%" height="15" fill="rgb(247,71,54)" fg:x="2071220" fg:w="244"/><text x="86.6503%" y="463.50"></text></g><g><title>_cond_resched (368 samples, 0.02%)</title><rect x="86.3975%" y="469" width="0.0154%" height="15" fill="rgb(234,176,34)" fg:x="2071152" fg:w="368"/><text x="86.6475%" y="479.50"></text></g><g><title>kmem_cache_alloc (1,222 samples, 0.05%)</title><rect x="86.3628%" y="501" width="0.0510%" height="15" fill="rgb(241,103,54)" fg:x="2070320" fg:w="1222"/><text x="86.6128%" y="511.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (521 samples, 0.02%)</title><rect x="86.3920%" y="485" width="0.0217%" height="15" fill="rgb(228,22,34)" fg:x="2071021" fg:w="521"/><text x="86.6420%" y="495.50"></text></g><g><title>kmem_cache_free (590 samples, 0.02%)</title><rect x="86.4137%" y="501" width="0.0246%" height="15" fill="rgb(241,179,48)" fg:x="2071542" fg:w="590"/><text x="86.6637%" y="511.50"></text></g><g><title>security_inode_init_security (398 samples, 0.02%)</title><rect x="86.4386%" y="501" width="0.0166%" height="15" fill="rgb(235,167,37)" fg:x="2072137" fg:w="398"/><text x="86.6886%" y="511.50"></text></g><g><title>_raw_spin_lock (659 samples, 0.03%)</title><rect x="86.5476%" y="469" width="0.0275%" height="15" fill="rgb(213,109,30)" fg:x="2074752" fg:w="659"/><text x="86.7976%" y="479.50"></text></g><g><title>_raw_spin_lock (1,179 samples, 0.05%)</title><rect x="86.6211%" y="437" width="0.0492%" height="15" fill="rgb(222,172,16)" fg:x="2076512" fg:w="1179"/><text x="86.8711%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (483 samples, 0.02%)</title><rect x="86.6501%" y="421" width="0.0201%" height="15" fill="rgb(233,192,5)" fg:x="2077208" fg:w="483"/><text x="86.9001%" y="431.50"></text></g><g><title>_raw_spin_lock (284 samples, 0.01%)</title><rect x="86.7340%" y="405" width="0.0118%" height="15" fill="rgb(247,189,41)" fg:x="2079219" fg:w="284"/><text x="86.9840%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,812 samples, 0.08%)</title><rect x="86.6703%" y="437" width="0.0756%" height="15" fill="rgb(218,134,47)" fg:x="2077692" fg:w="1812"/><text x="86.9203%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (743 samples, 0.03%)</title><rect x="86.7149%" y="421" width="0.0310%" height="15" fill="rgb(216,29,3)" fg:x="2078761" fg:w="743"/><text x="86.9649%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (269 samples, 0.01%)</title><rect x="86.7599%" y="421" width="0.0112%" height="15" fill="rgb(246,140,12)" fg:x="2079841" fg:w="269"/><text x="87.0099%" y="431.50"></text></g><g><title>_raw_spin_lock (383 samples, 0.02%)</title><rect x="86.7830%" y="405" width="0.0160%" height="15" fill="rgb(230,136,11)" fg:x="2080395" fg:w="383"/><text x="87.0330%" y="415.50"></text></g><g><title>__reserve_bytes (4,866 samples, 0.20%)</title><rect x="86.5961%" y="453" width="0.2030%" height="15" fill="rgb(247,22,47)" fg:x="2075913" fg:w="4866"/><text x="86.8461%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (1,275 samples, 0.05%)</title><rect x="86.7459%" y="437" width="0.0532%" height="15" fill="rgb(218,84,22)" fg:x="2079504" fg:w="1275"/><text x="86.9959%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (669 samples, 0.03%)</title><rect x="86.7711%" y="421" width="0.0279%" height="15" fill="rgb(216,87,39)" fg:x="2080110" fg:w="669"/><text x="87.0211%" y="431.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,373 samples, 0.22%)</title><rect x="86.5751%" y="469" width="0.2241%" height="15" fill="rgb(221,178,8)" fg:x="2075411" fg:w="5373"/><text x="86.8251%" y="479.50"></text></g><g><title>btrfs_block_rsv_add (6,175 samples, 0.26%)</title><rect x="86.5417%" y="485" width="0.2576%" height="15" fill="rgb(230,42,11)" fg:x="2074610" fg:w="6175"/><text x="86.7917%" y="495.50"></text></g><g><title>_raw_spin_lock (435 samples, 0.02%)</title><rect x="86.8263%" y="469" width="0.0181%" height="15" fill="rgb(237,229,4)" fg:x="2081433" fg:w="435"/><text x="87.0763%" y="479.50"></text></g><g><title>join_transaction (1,011 samples, 0.04%)</title><rect x="86.8024%" y="485" width="0.0422%" height="15" fill="rgb(222,31,33)" fg:x="2080860" fg:w="1011"/><text x="87.0524%" y="495.50"></text></g><g><title>kmem_cache_alloc (968 samples, 0.04%)</title><rect x="86.8446%" y="485" width="0.0404%" height="15" fill="rgb(210,17,39)" fg:x="2081871" fg:w="968"/><text x="87.0946%" y="495.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (276 samples, 0.01%)</title><rect x="86.8735%" y="469" width="0.0115%" height="15" fill="rgb(244,93,20)" fg:x="2082563" fg:w="276"/><text x="87.1235%" y="479.50"></text></g><g><title>_raw_spin_lock (654 samples, 0.03%)</title><rect x="86.8969%" y="469" width="0.0273%" height="15" fill="rgb(210,40,47)" fg:x="2083124" fg:w="654"/><text x="87.1469%" y="479.50"></text></g><g><title>start_transaction (11,245 samples, 0.47%)</title><rect x="86.4552%" y="501" width="0.4691%" height="15" fill="rgb(239,211,47)" fg:x="2072535" fg:w="11245"/><text x="86.7052%" y="511.50"></text></g><g><title>wait_current_trans (941 samples, 0.04%)</title><rect x="86.8850%" y="485" width="0.0393%" height="15" fill="rgb(251,223,49)" fg:x="2082839" fg:w="941"/><text x="87.1350%" y="495.50"></text></g><g><title>strlen (2,916 samples, 0.12%)</title><rect x="86.9242%" y="501" width="0.1216%" height="15" fill="rgb(221,149,5)" fg:x="2083780" fg:w="2916"/><text x="87.1742%" y="511.50"></text></g><g><title>btrfs_symlink (452,072 samples, 18.86%)</title><rect x="68.2173%" y="517" width="18.8580%" height="15" fill="rgb(219,224,51)" fg:x="1635331" fg:w="452072"/><text x="68.4673%" y="527.50">btrfs_symlink</text></g><g><title>write_extent_buffer (707 samples, 0.03%)</title><rect x="87.0459%" y="501" width="0.0295%" height="15" fill="rgb(223,7,8)" fg:x="2086696" fg:w="707"/><text x="87.2959%" y="511.50"></text></g><g><title>fsnotify (579 samples, 0.02%)</title><rect x="87.0761%" y="517" width="0.0242%" height="15" fill="rgb(241,217,22)" fg:x="2087420" fg:w="579"/><text x="87.3261%" y="527.50"></text></g><g><title>btrfs_permission (381 samples, 0.02%)</title><rect x="87.1110%" y="501" width="0.0159%" height="15" fill="rgb(248,209,0)" fg:x="2088258" fg:w="381"/><text x="87.3610%" y="511.50"></text></g><g><title>inode_permission.part.0 (679 samples, 0.03%)</title><rect x="87.1002%" y="517" width="0.0283%" height="15" fill="rgb(217,205,4)" fg:x="2087999" fg:w="679"/><text x="87.3502%" y="527.50"></text></g><g><title>do_symlinkat (576,546 samples, 24.05%)</title><rect x="63.0930%" y="549" width="24.0504%" height="15" fill="rgb(228,124,39)" fg:x="1512488" fg:w="576546"/><text x="63.3430%" y="559.50">do_symlinkat</text></g><g><title>vfs_symlink (454,330 samples, 18.95%)</title><rect x="68.1912%" y="533" width="18.9522%" height="15" fill="rgb(250,116,42)" fg:x="1634704" fg:w="454330"/><text x="68.4412%" y="543.50">vfs_symlink</text></g><g><title>do_syscall_64 (577,339 samples, 24.08%)</title><rect x="63.0715%" y="565" width="24.0835%" height="15" fill="rgb(223,202,9)" fg:x="1511974" fg:w="577339"/><text x="63.3215%" y="575.50">do_syscall_64</text></g><g><title>syscall_enter_from_user_mode (279 samples, 0.01%)</title><rect x="87.1434%" y="549" width="0.0116%" height="15" fill="rgb(242,222,40)" fg:x="2089034" fg:w="279"/><text x="87.3934%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (579,038 samples, 24.15%)</title><rect x="63.0550%" y="581" width="24.1544%" height="15" fill="rgb(229,99,46)" fg:x="1511578" fg:w="579038"/><text x="63.3050%" y="591.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (1,303 samples, 0.05%)</title><rect x="87.1550%" y="565" width="0.0544%" height="15" fill="rgb(225,56,46)" fg:x="2089313" fg:w="1303"/><text x="87.4050%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,160 samples, 0.05%)</title><rect x="87.1610%" y="549" width="0.0484%" height="15" fill="rgb(227,94,5)" fg:x="2089456" fg:w="1160"/><text x="87.4110%" y="559.50"></text></g><g><title>switch_fpu_return (818 samples, 0.03%)</title><rect x="87.1753%" y="533" width="0.0341%" height="15" fill="rgb(205,112,38)" fg:x="2089798" fg:w="818"/><text x="87.4253%" y="543.50"></text></g><g><title>copy_kernel_to_fpregs (262 samples, 0.01%)</title><rect x="87.1985%" y="517" width="0.0109%" height="15" fill="rgb(231,133,46)" fg:x="2090354" fg:w="262"/><text x="87.4485%" y="527.50"></text></g><g><title>syscall_return_via_sysret (334 samples, 0.01%)</title><rect x="87.2165%" y="581" width="0.0139%" height="15" fill="rgb(217,16,9)" fg:x="2090787" fg:w="334"/><text x="87.4665%" y="591.50"></text></g><g><title>__symlink (581,154 samples, 24.24%)</title><rect x="62.9882%" y="597" width="24.2427%" height="15" fill="rgb(249,173,9)" fg:x="1509977" fg:w="581154"/><text x="63.2382%" y="607.50">__symlink</text></g><g><title>_int_free (788 samples, 0.03%)</title><rect x="87.2309%" y="597" width="0.0329%" height="15" fill="rgb(205,163,53)" fg:x="2091131" fg:w="788"/><text x="87.4809%" y="607.50"></text></g><g><title>free@plt (349 samples, 0.01%)</title><rect x="87.2671%" y="597" width="0.0146%" height="15" fill="rgb(217,54,41)" fg:x="2091999" fg:w="349"/><text x="87.5171%" y="607.50"></text></g><g><title>jni_ExceptionOccurred (623 samples, 0.03%)</title><rect x="87.2816%" y="597" width="0.0260%" height="15" fill="rgb(228,216,12)" fg:x="2092348" fg:w="623"/><text x="87.5316%" y="607.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (538 samples, 0.02%)</title><rect x="87.3315%" y="581" width="0.0224%" height="15" fill="rgb(244,228,15)" fg:x="2093543" fg:w="538"/><text x="87.5815%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (405 samples, 0.02%)</title><rect x="87.3539%" y="581" width="0.0169%" height="15" fill="rgb(221,176,53)" fg:x="2094081" fg:w="405"/><text x="87.6039%" y="591.50"></text></g><g><title>[libc-2.31.so] (397 samples, 0.02%)</title><rect x="87.3708%" y="581" width="0.0166%" height="15" fill="rgb(205,94,34)" fg:x="2094486" fg:w="397"/><text x="87.6208%" y="591.50"></text></g><g><title>check_bounds (846 samples, 0.04%)</title><rect x="87.3876%" y="581" width="0.0353%" height="15" fill="rgb(213,110,48)" fg:x="2094889" fg:w="846"/><text x="87.6376%" y="591.50"></text></g><g><title>jni_GetByteArrayRegion (3,098 samples, 0.13%)</title><rect x="87.3076%" y="597" width="0.1292%" height="15" fill="rgb(236,142,28)" fg:x="2092971" fg:w="3098"/><text x="87.5576%" y="607.50"></text></g><g><title>memmove@plt (334 samples, 0.01%)</title><rect x="87.4229%" y="581" width="0.0139%" height="15" fill="rgb(225,135,29)" fg:x="2095735" fg:w="334"/><text x="87.6729%" y="591.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (991 samples, 0.04%)</title><rect x="87.4691%" y="565" width="0.0413%" height="15" fill="rgb(252,45,31)" fg:x="2096841" fg:w="991"/><text x="87.7191%" y="575.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (897 samples, 0.04%)</title><rect x="87.4730%" y="549" width="0.0374%" height="15" fill="rgb(211,187,50)" fg:x="2096935" fg:w="897"/><text x="87.7230%" y="559.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (1,114 samples, 0.05%)</title><rect x="87.4640%" y="581" width="0.0465%" height="15" fill="rgb(229,109,7)" fg:x="2096719" fg:w="1114"/><text x="87.7140%" y="591.50"></text></g><g><title>HandleMark::pop_and_restore (635 samples, 0.03%)</title><rect x="87.5105%" y="581" width="0.0265%" height="15" fill="rgb(251,131,51)" fg:x="2097833" fg:w="635"/><text x="87.7605%" y="591.50"></text></g><g><title>JNIHandles::make_local (743 samples, 0.03%)</title><rect x="87.5369%" y="581" width="0.0310%" height="15" fill="rgb(251,180,35)" fg:x="2098468" fg:w="743"/><text x="87.7869%" y="591.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (387 samples, 0.02%)</title><rect x="87.5685%" y="581" width="0.0161%" height="15" fill="rgb(211,46,32)" fg:x="2099224" fg:w="387"/><text x="87.8185%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (527 samples, 0.02%)</title><rect x="87.5846%" y="581" width="0.0220%" height="15" fill="rgb(248,123,17)" fg:x="2099611" fg:w="527"/><text x="87.8346%" y="591.50"></text></g><g><title>jni_GetObjectField (4,071 samples, 0.17%)</title><rect x="87.4370%" y="597" width="0.1698%" height="15" fill="rgb(227,141,18)" fg:x="2096072" fg:w="4071"/><text x="87.6870%" y="607.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (454 samples, 0.02%)</title><rect x="87.6507%" y="581" width="0.0189%" height="15" fill="rgb(216,102,9)" fg:x="2101195" fg:w="454"/><text x="87.9007%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (791 samples, 0.03%)</title><rect x="87.6696%" y="581" width="0.0330%" height="15" fill="rgb(253,47,13)" fg:x="2101649" fg:w="791"/><text x="87.9196%" y="591.50"></text></g><g><title>jni_GetStringLength (2,304 samples, 0.10%)</title><rect x="87.6068%" y="597" width="0.0961%" height="15" fill="rgb(226,93,23)" fg:x="2100143" fg:w="2304"/><text x="87.8568%" y="607.50"></text></g><g><title>operator delete@plt (669 samples, 0.03%)</title><rect x="87.7213%" y="597" width="0.0279%" height="15" fill="rgb(247,104,17)" fg:x="2102887" fg:w="669"/><text x="87.9713%" y="607.50"></text></g><g><title>__GI___libc_malloc (1,059 samples, 0.04%)</title><rect x="87.7594%" y="581" width="0.0442%" height="15" fill="rgb(233,203,26)" fg:x="2103802" fg:w="1059"/><text x="88.0094%" y="591.50"></text></g><g><title>tcache_get (398 samples, 0.02%)</title><rect x="87.7870%" y="565" width="0.0166%" height="15" fill="rgb(244,98,49)" fg:x="2104463" fg:w="398"/><text x="88.0370%" y="575.50"></text></g><g><title>operator new (1,435 samples, 0.06%)</title><rect x="87.7591%" y="597" width="0.0599%" height="15" fill="rgb(235,134,22)" fg:x="2103793" fg:w="1435"/><text x="88.0091%" y="607.50"></text></g><g><title>malloc@plt (364 samples, 0.02%)</title><rect x="87.8038%" y="581" width="0.0152%" height="15" fill="rgb(221,70,32)" fg:x="2104864" fg:w="364"/><text x="88.0538%" y="591.50"></text></g><g><title>operator new@plt (517 samples, 0.02%)</title><rect x="87.8189%" y="597" width="0.0216%" height="15" fill="rgb(238,15,50)" fg:x="2105228" fg:w="517"/><text x="88.0689%" y="607.50"></text></g><g><title>operator new[] (253 samples, 0.01%)</title><rect x="87.8405%" y="597" width="0.0106%" height="15" fill="rgb(215,221,48)" fg:x="2105745" fg:w="253"/><text x="88.0905%" y="607.50"></text></g><g><title>btrfs_rename2 (278 samples, 0.01%)</title><rect x="87.8515%" y="501" width="0.0116%" height="15" fill="rgb(236,73,3)" fg:x="2106008" fg:w="278"/><text x="88.1015%" y="511.50"></text></g><g><title>rename (292 samples, 0.01%)</title><rect x="87.8511%" y="597" width="0.0122%" height="15" fill="rgb(250,107,11)" fg:x="2105998" fg:w="292"/><text x="88.1011%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (291 samples, 0.01%)</title><rect x="87.8511%" y="581" width="0.0121%" height="15" fill="rgb(242,39,14)" fg:x="2105999" fg:w="291"/><text x="88.1011%" y="591.50"></text></g><g><title>do_syscall_64 (291 samples, 0.01%)</title><rect x="87.8511%" y="565" width="0.0121%" height="15" fill="rgb(248,164,37)" fg:x="2105999" fg:w="291"/><text x="88.1011%" y="575.50"></text></g><g><title>__x64_sys_rename (291 samples, 0.01%)</title><rect x="87.8511%" y="549" width="0.0121%" height="15" fill="rgb(217,60,12)" fg:x="2105999" fg:w="291"/><text x="88.1011%" y="559.50"></text></g><g><title>do_renameat2 (291 samples, 0.01%)</title><rect x="87.8511%" y="533" width="0.0121%" height="15" fill="rgb(240,125,29)" fg:x="2105999" fg:w="291"/><text x="88.1011%" y="543.50"></text></g><g><title>vfs_rename (282 samples, 0.01%)</title><rect x="87.8515%" y="517" width="0.0118%" height="15" fill="rgb(208,207,28)" fg:x="2106008" fg:w="282"/><text x="88.1015%" y="527.50"></text></g><g><title>_int_malloc (518 samples, 0.02%)</title><rect x="87.8874%" y="549" width="0.0216%" height="15" fill="rgb(209,159,27)" fg:x="2106869" fg:w="518"/><text x="88.1374%" y="559.50"></text></g><g><title>__GI___libc_malloc (1,077 samples, 0.04%)</title><rect x="87.8697%" y="565" width="0.0449%" height="15" fill="rgb(251,176,53)" fg:x="2106446" fg:w="1077"/><text x="88.1197%" y="575.50"></text></g><g><title>operator new (1,150 samples, 0.05%)</title><rect x="87.8695%" y="581" width="0.0480%" height="15" fill="rgb(211,85,7)" fg:x="2106441" fg:w="1150"/><text x="88.1195%" y="591.50"></text></g><g><title>[libunix_jni.so] (1,927,412 samples, 80.40%)</title><rect x="7.5189%" y="613" width="80.4014%" height="15" fill="rgb(216,64,54)" fg:x="180246" fg:w="1927412"/><text x="7.7689%" y="623.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (1,316 samples, 0.05%)</title><rect x="87.8654%" y="597" width="0.0549%" height="15" fill="rgb(217,54,24)" fg:x="2106342" fg:w="1316"/><text x="88.1154%" y="607.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (299 samples, 0.01%)</title><rect x="92.3108%" y="597" width="0.0125%" height="15" fill="rgb(208,206,53)" fg:x="2212908" fg:w="299"/><text x="92.5608%" y="607.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (299 samples, 0.01%)</title><rect x="92.3108%" y="581" width="0.0125%" height="15" fill="rgb(251,74,39)" fg:x="2212908" fg:w="299"/><text x="92.5608%" y="591.50"></text></g><g><title>TieredThresholdPolicy::event (247 samples, 0.01%)</title><rect x="92.3129%" y="565" width="0.0103%" height="15" fill="rgb(226,47,5)" fg:x="2212960" fg:w="247"/><text x="92.5629%" y="575.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (317 samples, 0.01%)</title><rect x="92.3348%" y="581" width="0.0132%" height="15" fill="rgb(234,111,33)" fg:x="2213483" fg:w="317"/><text x="92.5848%" y="591.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (441 samples, 0.02%)</title><rect x="92.3327%" y="597" width="0.0184%" height="15" fill="rgb(251,14,10)" fg:x="2213433" fg:w="441"/><text x="92.5827%" y="607.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (339 samples, 0.01%)</title><rect x="92.3847%" y="469" width="0.0141%" height="15" fill="rgb(232,43,0)" fg:x="2214680" fg:w="339"/><text x="92.6347%" y="479.50"></text></g><g><title>SymbolTable::lookup_only (297 samples, 0.01%)</title><rect x="92.3864%" y="453" width="0.0124%" height="15" fill="rgb(222,68,43)" fg:x="2214722" fg:w="297"/><text x="92.6364%" y="463.50"></text></g><g><title>ClassFileParser::parse_constant_pool (349 samples, 0.01%)</title><rect x="92.3845%" y="485" width="0.0146%" height="15" fill="rgb(217,24,23)" fg:x="2214675" fg:w="349"/><text x="92.6345%" y="495.50"></text></g><g><title>ClassFileParser::ClassFileParser (430 samples, 0.02%)</title><rect x="92.3843%" y="517" width="0.0179%" height="15" fill="rgb(229,209,14)" fg:x="2214670" fg:w="430"/><text x="92.6343%" y="527.50"></text></g><g><title>ClassFileParser::parse_stream (430 samples, 0.02%)</title><rect x="92.3843%" y="501" width="0.0179%" height="15" fill="rgb(250,149,48)" fg:x="2214670" fg:w="430"/><text x="92.6343%" y="511.50"></text></g><g><title>KlassFactory::create_from_stream (529 samples, 0.02%)</title><rect x="92.3842%" y="533" width="0.0221%" height="15" fill="rgb(210,120,37)" fg:x="2214669" fg:w="529"/><text x="92.6342%" y="543.50"></text></g><g><title>SystemDictionary::resolve_from_stream (548 samples, 0.02%)</title><rect x="92.3842%" y="549" width="0.0229%" height="15" fill="rgb(210,21,8)" fg:x="2214668" fg:w="548"/><text x="92.6342%" y="559.50"></text></g><g><title>JVM_DefineClassWithSource (559 samples, 0.02%)</title><rect x="92.3838%" y="581" width="0.0233%" height="15" fill="rgb(243,145,7)" fg:x="2214658" fg:w="559"/><text x="92.6338%" y="591.50"></text></g><g><title>jvm_define_class_common (558 samples, 0.02%)</title><rect x="92.3838%" y="565" width="0.0233%" height="15" fill="rgb(238,178,32)" fg:x="2214659" fg:w="558"/><text x="92.6338%" y="575.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (571 samples, 0.02%)</title><rect x="92.3838%" y="597" width="0.0238%" height="15" fill="rgb(222,4,10)" fg:x="2214658" fg:w="571"/><text x="92.6338%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (442 samples, 0.02%)</title><rect x="92.4247%" y="501" width="0.0184%" height="15" fill="rgb(239,7,37)" fg:x="2215638" fg:w="442"/><text x="92.6747%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (434 samples, 0.02%)</title><rect x="92.4250%" y="485" width="0.0181%" height="15" fill="rgb(215,31,37)" fg:x="2215646" fg:w="434"/><text x="92.6750%" y="495.50"></text></g><g><title>native_write_msr (434 samples, 0.02%)</title><rect x="92.4250%" y="469" width="0.0181%" height="15" fill="rgb(224,83,33)" fg:x="2215646" fg:w="434"/><text x="92.6750%" y="479.50"></text></g><g><title>schedule_tail (472 samples, 0.02%)</title><rect x="92.4241%" y="533" width="0.0197%" height="15" fill="rgb(239,55,3)" fg:x="2215625" fg:w="472"/><text x="92.6741%" y="543.50"></text></g><g><title>finish_task_switch (469 samples, 0.02%)</title><rect x="92.4242%" y="517" width="0.0196%" height="15" fill="rgb(247,92,11)" fg:x="2215628" fg:w="469"/><text x="92.6742%" y="527.50"></text></g><g><title>ret_from_fork (496 samples, 0.02%)</title><rect x="92.4233%" y="549" width="0.0207%" height="15" fill="rgb(239,200,7)" fg:x="2215606" fg:w="496"/><text x="92.6733%" y="559.50"></text></g><g><title>__libc_vfork (676 samples, 0.03%)</title><rect x="92.4159%" y="565" width="0.0282%" height="15" fill="rgb(227,115,8)" fg:x="2215427" fg:w="676"/><text x="92.6659%" y="575.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,085 samples, 0.05%)</title><rect x="92.4123%" y="597" width="0.0453%" height="15" fill="rgb(215,189,27)" fg:x="2215341" fg:w="1085"/><text x="92.6623%" y="607.50"></text></g><g><title>vforkChild (1,001 samples, 0.04%)</title><rect x="92.4158%" y="581" width="0.0418%" height="15" fill="rgb(251,216,39)" fg:x="2215425" fg:w="1001"/><text x="92.6658%" y="591.50"></text></g><g><title>childProcess (323 samples, 0.01%)</title><rect x="92.4441%" y="565" width="0.0135%" height="15" fill="rgb(207,29,47)" fg:x="2216103" fg:w="323"/><text x="92.6941%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (474 samples, 0.02%)</title><rect x="92.5228%" y="373" width="0.0198%" height="15" fill="rgb(210,71,34)" fg:x="2217991" fg:w="474"/><text x="92.7728%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (461 samples, 0.02%)</title><rect x="92.5234%" y="357" width="0.0192%" height="15" fill="rgb(253,217,51)" fg:x="2218004" fg:w="461"/><text x="92.7734%" y="367.50"></text></g><g><title>native_write_msr (460 samples, 0.02%)</title><rect x="92.5234%" y="341" width="0.0192%" height="15" fill="rgb(222,117,46)" fg:x="2218005" fg:w="460"/><text x="92.7734%" y="351.50"></text></g><g><title>finish_task_switch (502 samples, 0.02%)</title><rect x="92.5224%" y="389" width="0.0209%" height="15" fill="rgb(226,132,6)" fg:x="2217981" fg:w="502"/><text x="92.7724%" y="399.50"></text></g><g><title>futex_wait_queue_me (596 samples, 0.02%)</title><rect x="92.5205%" y="437" width="0.0249%" height="15" fill="rgb(254,145,51)" fg:x="2217936" fg:w="596"/><text x="92.7705%" y="447.50"></text></g><g><title>schedule (592 samples, 0.02%)</title><rect x="92.5207%" y="421" width="0.0247%" height="15" fill="rgb(231,199,27)" fg:x="2217940" fg:w="592"/><text x="92.7707%" y="431.50"></text></g><g><title>__schedule (588 samples, 0.02%)</title><rect x="92.5208%" y="405" width="0.0245%" height="15" fill="rgb(245,158,14)" fg:x="2217944" fg:w="588"/><text x="92.7708%" y="415.50"></text></g><g><title>__x64_sys_futex (609 samples, 0.03%)</title><rect x="92.5201%" y="485" width="0.0254%" height="15" fill="rgb(240,113,14)" fg:x="2217926" fg:w="609"/><text x="92.7701%" y="495.50"></text></g><g><title>do_futex (606 samples, 0.03%)</title><rect x="92.5202%" y="469" width="0.0253%" height="15" fill="rgb(210,20,13)" fg:x="2217929" fg:w="606"/><text x="92.7702%" y="479.50"></text></g><g><title>futex_wait (601 samples, 0.03%)</title><rect x="92.5204%" y="453" width="0.0251%" height="15" fill="rgb(241,144,13)" fg:x="2217934" fg:w="601"/><text x="92.7704%" y="463.50"></text></g><g><title>do_syscall_64 (613 samples, 0.03%)</title><rect x="92.5200%" y="501" width="0.0256%" height="15" fill="rgb(235,43,34)" fg:x="2217923" fg:w="613"/><text x="92.7700%" y="511.50"></text></g><g><title>__pthread_cond_wait (638 samples, 0.03%)</title><rect x="92.5194%" y="565" width="0.0266%" height="15" fill="rgb(208,36,20)" fg:x="2217909" fg:w="638"/><text x="92.7694%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (638 samples, 0.03%)</title><rect x="92.5194%" y="549" width="0.0266%" height="15" fill="rgb(239,204,10)" fg:x="2217909" fg:w="638"/><text x="92.7694%" y="559.50"></text></g><g><title>futex_wait_cancelable (631 samples, 0.03%)</title><rect x="92.5197%" y="533" width="0.0263%" height="15" fill="rgb(217,84,43)" fg:x="2217916" fg:w="631"/><text x="92.7697%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (626 samples, 0.03%)</title><rect x="92.5199%" y="517" width="0.0261%" height="15" fill="rgb(241,170,50)" fg:x="2217921" fg:w="626"/><text x="92.7699%" y="527.50"></text></g><g><title>Parker::park (714 samples, 0.03%)</title><rect x="92.5172%" y="581" width="0.0298%" height="15" fill="rgb(226,205,29)" fg:x="2217857" fg:w="714"/><text x="92.7672%" y="591.50"></text></g><g><title>Unsafe_Park (724 samples, 0.03%)</title><rect x="92.5169%" y="597" width="0.0302%" height="15" fill="rgb(233,113,1)" fg:x="2217850" fg:w="724"/><text x="92.7669%" y="607.50"></text></g><g><title>do_syscall_64 (320 samples, 0.01%)</title><rect x="92.5499%" y="533" width="0.0133%" height="15" fill="rgb(253,98,13)" fg:x="2218641" fg:w="320"/><text x="92.7999%" y="543.50"></text></g><g><title>__x64_sys_futex (320 samples, 0.01%)</title><rect x="92.5499%" y="517" width="0.0133%" height="15" fill="rgb(211,115,12)" fg:x="2218641" fg:w="320"/><text x="92.7999%" y="527.50"></text></g><g><title>do_futex (318 samples, 0.01%)</title><rect x="92.5500%" y="501" width="0.0133%" height="15" fill="rgb(208,12,16)" fg:x="2218643" fg:w="318"/><text x="92.8000%" y="511.50"></text></g><g><title>futex_wake (313 samples, 0.01%)</title><rect x="92.5502%" y="485" width="0.0131%" height="15" fill="rgb(237,193,54)" fg:x="2218648" fg:w="313"/><text x="92.8002%" y="495.50"></text></g><g><title>wake_up_q (254 samples, 0.01%)</title><rect x="92.5527%" y="469" width="0.0106%" height="15" fill="rgb(243,22,42)" fg:x="2218707" fg:w="254"/><text x="92.8027%" y="479.50"></text></g><g><title>try_to_wake_up (248 samples, 0.01%)</title><rect x="92.5529%" y="453" width="0.0103%" height="15" fill="rgb(233,151,36)" fg:x="2218713" fg:w="248"/><text x="92.8029%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (339 samples, 0.01%)</title><rect x="92.5498%" y="549" width="0.0141%" height="15" fill="rgb(237,57,45)" fg:x="2218638" fg:w="339"/><text x="92.7998%" y="559.50"></text></g><g><title>__pthread_cond_signal (355 samples, 0.01%)</title><rect x="92.5492%" y="581" width="0.0148%" height="15" fill="rgb(221,88,17)" fg:x="2218623" fg:w="355"/><text x="92.7992%" y="591.50"></text></g><g><title>futex_wake (347 samples, 0.01%)</title><rect x="92.5495%" y="565" width="0.0145%" height="15" fill="rgb(230,79,15)" fg:x="2218631" fg:w="347"/><text x="92.7995%" y="575.50"></text></g><g><title>Unsafe_Unpark (409 samples, 0.02%)</title><rect x="92.5473%" y="597" width="0.0171%" height="15" fill="rgb(213,57,13)" fg:x="2218577" fg:w="409"/><text x="92.7973%" y="607.50"></text></g><g><title>asm_common_interrupt (241 samples, 0.01%)</title><rect x="92.5732%" y="597" width="0.0101%" height="15" fill="rgb(222,116,39)" fg:x="2219200" fg:w="241"/><text x="92.8232%" y="607.50"></text></g><g><title>common_interrupt (241 samples, 0.01%)</title><rect x="92.5732%" y="581" width="0.0101%" height="15" fill="rgb(245,107,2)" fg:x="2219200" fg:w="241"/><text x="92.8232%" y="591.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (271 samples, 0.01%)</title><rect x="92.5845%" y="597" width="0.0113%" height="15" fill="rgb(238,1,10)" fg:x="2219469" fg:w="271"/><text x="92.8345%" y="607.50"></text></g><g><title>do_filp_open (260 samples, 0.01%)</title><rect x="92.6162%" y="501" width="0.0108%" height="15" fill="rgb(249,4,48)" fg:x="2220229" fg:w="260"/><text x="92.8662%" y="511.50"></text></g><g><title>path_openat (257 samples, 0.01%)</title><rect x="92.6163%" y="485" width="0.0107%" height="15" fill="rgb(223,151,18)" fg:x="2220232" fg:w="257"/><text x="92.8663%" y="495.50"></text></g><g><title>do_syscall_64 (334 samples, 0.01%)</title><rect x="92.6148%" y="549" width="0.0139%" height="15" fill="rgb(227,65,43)" fg:x="2220197" fg:w="334"/><text x="92.8648%" y="559.50"></text></g><g><title>__x64_sys_openat (331 samples, 0.01%)</title><rect x="92.6150%" y="533" width="0.0138%" height="15" fill="rgb(218,40,45)" fg:x="2220200" fg:w="331"/><text x="92.8650%" y="543.50"></text></g><g><title>do_sys_openat2 (329 samples, 0.01%)</title><rect x="92.6150%" y="517" width="0.0137%" height="15" fill="rgb(252,121,31)" fg:x="2220202" fg:w="329"/><text x="92.8650%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (336 samples, 0.01%)</title><rect x="92.6148%" y="565" width="0.0140%" height="15" fill="rgb(219,158,43)" fg:x="2220197" fg:w="336"/><text x="92.8648%" y="575.50"></text></g><g><title>__libc_open64 (351 samples, 0.01%)</title><rect x="92.6143%" y="581" width="0.0146%" height="15" fill="rgb(231,162,42)" fg:x="2220184" fg:w="351"/><text x="92.8643%" y="591.50"></text></g><g><title>fileOpen (494 samples, 0.02%)</title><rect x="92.6093%" y="597" width="0.0206%" height="15" fill="rgb(217,179,25)" fg:x="2220065" fg:w="494"/><text x="92.8593%" y="607.50"></text></g><g><title>[perf-974282.map] (113,122 samples, 4.72%)</title><rect x="87.9203%" y="613" width="4.7188%" height="15" fill="rgb(206,212,31)" fg:x="2107658" fg:w="113122"/><text x="88.1703%" y="623.50">[perf..</text></g><g><title>SharedRuntime::resolve_sub_helper (331 samples, 0.01%)</title><rect x="92.6454%" y="597" width="0.0138%" height="15" fill="rgb(235,144,12)" fg:x="2220929" fg:w="331"/><text x="92.8954%" y="607.50"></text></g><g><title>generic_file_buffered_read (305 samples, 0.01%)</title><rect x="92.6856%" y="453" width="0.0127%" height="15" fill="rgb(213,51,10)" fg:x="2221893" fg:w="305"/><text x="92.9356%" y="463.50"></text></g><g><title>new_sync_read (317 samples, 0.01%)</title><rect x="92.6851%" y="469" width="0.0132%" height="15" fill="rgb(231,145,14)" fg:x="2221882" fg:w="317"/><text x="92.9351%" y="479.50"></text></g><g><title>ksys_read (382 samples, 0.02%)</title><rect x="92.6833%" y="501" width="0.0159%" height="15" fill="rgb(235,15,28)" fg:x="2221838" fg:w="382"/><text x="92.9333%" y="511.50"></text></g><g><title>vfs_read (354 samples, 0.01%)</title><rect x="92.6845%" y="485" width="0.0148%" height="15" fill="rgb(237,206,10)" fg:x="2221866" fg:w="354"/><text x="92.9345%" y="495.50"></text></g><g><title>do_syscall_64 (386 samples, 0.02%)</title><rect x="92.6832%" y="517" width="0.0161%" height="15" fill="rgb(236,227,27)" fg:x="2221835" fg:w="386"/><text x="92.9332%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (392 samples, 0.02%)</title><rect x="92.6831%" y="533" width="0.0164%" height="15" fill="rgb(246,83,35)" fg:x="2221834" fg:w="392"/><text x="92.9331%" y="543.50"></text></g><g><title>__libc_read (420 samples, 0.02%)</title><rect x="92.6820%" y="565" width="0.0175%" height="15" fill="rgb(220,136,24)" fg:x="2221808" fg:w="420"/><text x="92.9320%" y="575.50"></text></g><g><title>__libc_read (419 samples, 0.02%)</title><rect x="92.6821%" y="549" width="0.0175%" height="15" fill="rgb(217,3,25)" fg:x="2221809" fg:w="419"/><text x="92.9321%" y="559.50"></text></g><g><title>handleRead (422 samples, 0.02%)</title><rect x="92.6820%" y="581" width="0.0176%" height="15" fill="rgb(239,24,14)" fg:x="2221807" fg:w="422"/><text x="92.9320%" y="591.50"></text></g><g><title>readBytes (539 samples, 0.02%)</title><rect x="92.6817%" y="597" width="0.0225%" height="15" fill="rgb(244,16,53)" fg:x="2221801" fg:w="539"/><text x="92.9317%" y="607.50"></text></g><g><title>[unknown] (1,601 samples, 0.07%)</title><rect x="92.6392%" y="613" width="0.0668%" height="15" fill="rgb(208,175,44)" fg:x="2220780" fg:w="1601"/><text x="92.8892%" y="623.50"></text></g><g><title>__GI___clone (240 samples, 0.01%)</title><rect x="92.7059%" y="613" width="0.0100%" height="15" fill="rgb(252,18,48)" fg:x="2222381" fg:w="240"/><text x="92.9559%" y="623.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (277 samples, 0.01%)</title><rect x="92.7259%" y="613" width="0.0116%" height="15" fill="rgb(234,199,32)" fg:x="2222859" fg:w="277"/><text x="92.9759%" y="623.50"></text></g><g><title>skyframe-evalua (2,048,715 samples, 85.46%)</title><rect x="7.2868%" y="629" width="85.4615%" height="15" fill="rgb(225,77,54)" fg:x="174681" fg:w="2048715"/><text x="7.5368%" y="639.50">skyframe-evalua</text></g><g><title>kernel_init_free_pages (435 samples, 0.02%)</title><rect x="94.9891%" y="469" width="0.0181%" height="15" fill="rgb(225,42,25)" fg:x="2277114" fg:w="435"/><text x="95.2391%" y="479.50"></text></g><g><title>clear_page_erms (421 samples, 0.02%)</title><rect x="94.9897%" y="453" width="0.0176%" height="15" fill="rgb(242,227,46)" fg:x="2277128" fg:w="421"/><text x="95.2397%" y="463.50"></text></g><g><title>get_page_from_freelist (796 samples, 0.03%)</title><rect x="94.9744%" y="501" width="0.0332%" height="15" fill="rgb(246,197,35)" fg:x="2276761" fg:w="796"/><text x="95.2244%" y="511.50"></text></g><g><title>prep_new_page (470 samples, 0.02%)</title><rect x="94.9880%" y="485" width="0.0196%" height="15" fill="rgb(215,159,26)" fg:x="2277087" fg:w="470"/><text x="95.2380%" y="495.50"></text></g><g><title>__alloc_pages_nodemask (939 samples, 0.04%)</title><rect x="94.9688%" y="517" width="0.0392%" height="15" fill="rgb(212,194,50)" fg:x="2276628" fg:w="939"/><text x="95.2188%" y="527.50"></text></g><g><title>alloc_pages_vma (1,015 samples, 0.04%)</title><rect x="94.9665%" y="533" width="0.0423%" height="15" fill="rgb(246,132,1)" fg:x="2276572" fg:w="1015"/><text x="95.2165%" y="543.50"></text></g><g><title>page_add_file_rmap (289 samples, 0.01%)</title><rect x="95.0638%" y="501" width="0.0121%" height="15" fill="rgb(217,71,7)" fg:x="2278905" fg:w="289"/><text x="95.3138%" y="511.50"></text></g><g><title>alloc_set_pte (456 samples, 0.02%)</title><rect x="95.0581%" y="517" width="0.0190%" height="15" fill="rgb(252,59,32)" fg:x="2278767" fg:w="456"/><text x="95.3081%" y="527.50"></text></g><g><title>filemap_map_pages (1,437 samples, 0.06%)</title><rect x="95.0250%" y="533" width="0.0599%" height="15" fill="rgb(253,204,25)" fg:x="2277975" fg:w="1437"/><text x="95.2750%" y="543.50"></text></g><g><title>lru_cache_add (280 samples, 0.01%)</title><rect x="95.0850%" y="533" width="0.0117%" height="15" fill="rgb(232,21,16)" fg:x="2279414" fg:w="280"/><text x="95.3350%" y="543.50"></text></g><g><title>pagevec_lru_move_fn (248 samples, 0.01%)</title><rect x="95.0864%" y="517" width="0.0103%" height="15" fill="rgb(248,90,29)" fg:x="2279446" fg:w="248"/><text x="95.3364%" y="527.50"></text></g><g><title>mem_cgroup_charge (260 samples, 0.01%)</title><rect x="95.0970%" y="533" width="0.0108%" height="15" fill="rgb(249,223,7)" fg:x="2279700" fg:w="260"/><text x="95.3470%" y="543.50"></text></g><g><title>handle_mm_fault (4,320 samples, 0.18%)</title><rect x="94.9382%" y="549" width="0.1802%" height="15" fill="rgb(231,119,42)" fg:x="2275894" fg:w="4320"/><text x="95.1882%" y="559.50"></text></g><g><title>do_user_addr_fault (4,670 samples, 0.19%)</title><rect x="94.9270%" y="565" width="0.1948%" height="15" fill="rgb(215,41,35)" fg:x="2275624" fg:w="4670"/><text x="95.1770%" y="575.50"></text></g><g><title>exc_page_fault (4,703 samples, 0.20%)</title><rect x="94.9257%" y="581" width="0.1962%" height="15" fill="rgb(220,44,45)" fg:x="2275593" fg:w="4703"/><text x="95.1757%" y="591.50"></text></g><g><title>asm_exc_page_fault (4,808 samples, 0.20%)</title><rect x="94.9236%" y="597" width="0.2006%" height="15" fill="rgb(253,197,36)" fg:x="2275544" fg:w="4808"/><text x="95.1736%" y="607.50"></text></g><g><title>entry_SYSCALL_64 (2,028 samples, 0.08%)</title><rect x="95.1372%" y="597" width="0.0846%" height="15" fill="rgb(245,225,54)" fg:x="2280664" fg:w="2028"/><text x="95.3872%" y="607.50"></text></g><g><title>_copy_to_user (323 samples, 0.01%)</title><rect x="95.2812%" y="533" width="0.0135%" height="15" fill="rgb(239,94,37)" fg:x="2284117" fg:w="323"/><text x="95.5312%" y="543.50"></text></g><g><title>copy_user_enhanced_fast_string (284 samples, 0.01%)</title><rect x="95.2829%" y="517" width="0.0118%" height="15" fill="rgb(242,217,10)" fg:x="2284156" fg:w="284"/><text x="95.5329%" y="527.50"></text></g><g><title>cp_new_stat (548 samples, 0.02%)</title><rect x="95.2773%" y="549" width="0.0229%" height="15" fill="rgb(250,193,7)" fg:x="2284022" fg:w="548"/><text x="95.5273%" y="559.50"></text></g><g><title>btrfs_getattr (1,264 samples, 0.05%)</title><rect x="95.3106%" y="533" width="0.0527%" height="15" fill="rgb(230,104,19)" fg:x="2284822" fg:w="1264"/><text x="95.5606%" y="543.50"></text></g><g><title>security_inode_getattr (572 samples, 0.02%)</title><rect x="95.3670%" y="533" width="0.0239%" height="15" fill="rgb(230,181,4)" fg:x="2286173" fg:w="572"/><text x="95.6170%" y="543.50"></text></g><g><title>tomoyo_path_perm (386 samples, 0.02%)</title><rect x="95.3748%" y="517" width="0.0161%" height="15" fill="rgb(216,219,49)" fg:x="2286359" fg:w="386"/><text x="95.6248%" y="527.50"></text></g><g><title>__do_sys_newfstat (2,985 samples, 0.12%)</title><rect x="95.2758%" y="565" width="0.1245%" height="15" fill="rgb(254,144,0)" fg:x="2283986" fg:w="2985"/><text x="95.5258%" y="575.50"></text></g><g><title>vfs_fstat (2,401 samples, 0.10%)</title><rect x="95.3001%" y="549" width="0.1002%" height="15" fill="rgb(205,209,38)" fg:x="2284570" fg:w="2401"/><text x="95.5501%" y="559.50"></text></g><g><title>fput_many (343 samples, 0.01%)</title><rect x="95.4182%" y="533" width="0.0143%" height="15" fill="rgb(240,21,42)" fg:x="2287400" fg:w="343"/><text x="95.6682%" y="543.50"></text></g><g><title>task_work_add (247 samples, 0.01%)</title><rect x="95.4222%" y="517" width="0.0103%" height="15" fill="rgb(241,132,3)" fg:x="2287496" fg:w="247"/><text x="95.6722%" y="527.50"></text></g><g><title>__x64_sys_close (761 samples, 0.03%)</title><rect x="95.4042%" y="565" width="0.0317%" height="15" fill="rgb(225,14,2)" fg:x="2287065" fg:w="761"/><text x="95.6542%" y="575.50"></text></g><g><title>filp_close (512 samples, 0.02%)</title><rect x="95.4146%" y="549" width="0.0214%" height="15" fill="rgb(210,141,35)" fg:x="2287314" fg:w="512"/><text x="95.6646%" y="559.50"></text></g><g><title>__x64_sys_execve (270 samples, 0.01%)</title><rect x="95.4360%" y="565" width="0.0113%" height="15" fill="rgb(251,14,44)" fg:x="2287828" fg:w="270"/><text x="95.6860%" y="575.50"></text></g><g><title>do_execveat_common (270 samples, 0.01%)</title><rect x="95.4360%" y="549" width="0.0113%" height="15" fill="rgb(247,48,18)" fg:x="2287828" fg:w="270"/><text x="95.6860%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (6,778 samples, 0.28%)</title><rect x="95.4855%" y="453" width="0.2827%" height="15" fill="rgb(225,0,40)" fg:x="2289013" fg:w="6778"/><text x="95.7355%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,695 samples, 0.28%)</title><rect x="95.4889%" y="437" width="0.2793%" height="15" fill="rgb(221,31,33)" fg:x="2289096" fg:w="6695"/><text x="95.7389%" y="447.50"></text></g><g><title>native_write_msr (6,656 samples, 0.28%)</title><rect x="95.4906%" y="421" width="0.2777%" height="15" fill="rgb(237,42,40)" fg:x="2289135" fg:w="6656"/><text x="95.7406%" y="431.50"></text></g><g><title>finish_task_switch (7,116 samples, 0.30%)</title><rect x="95.4804%" y="469" width="0.2968%" height="15" fill="rgb(233,51,29)" fg:x="2288892" fg:w="7116"/><text x="95.7304%" y="479.50"></text></g><g><title>futex_wait_queue_me (7,954 samples, 0.33%)</title><rect x="95.4597%" y="517" width="0.3318%" height="15" fill="rgb(226,58,20)" fg:x="2288395" fg:w="7954"/><text x="95.7097%" y="527.50"></text></g><g><title>schedule (7,880 samples, 0.33%)</title><rect x="95.4628%" y="501" width="0.3287%" height="15" fill="rgb(208,98,7)" fg:x="2288469" fg:w="7880"/><text x="95.7128%" y="511.50"></text></g><g><title>__schedule (7,865 samples, 0.33%)</title><rect x="95.4634%" y="485" width="0.3281%" height="15" fill="rgb(228,143,44)" fg:x="2288484" fg:w="7865"/><text x="95.7134%" y="495.50"></text></g><g><title>futex_wait (8,102 samples, 0.34%)</title><rect x="95.4565%" y="533" width="0.3380%" height="15" fill="rgb(246,55,38)" fg:x="2288318" fg:w="8102"/><text x="95.7065%" y="543.50"></text></g><g><title>__x64_sys_futex (8,794 samples, 0.37%)</title><rect x="95.4528%" y="565" width="0.3668%" height="15" fill="rgb(247,87,16)" fg:x="2288231" fg:w="8794"/><text x="95.7028%" y="575.50"></text></g><g><title>do_futex (8,754 samples, 0.37%)</title><rect x="95.4545%" y="549" width="0.3652%" height="15" fill="rgb(234,129,42)" fg:x="2288271" fg:w="8754"/><text x="95.7045%" y="559.50"></text></g><g><title>futex_wake (605 samples, 0.03%)</title><rect x="95.7945%" y="533" width="0.0252%" height="15" fill="rgb(220,82,16)" fg:x="2296420" fg:w="605"/><text x="96.0445%" y="543.50"></text></g><g><title>wake_up_q (529 samples, 0.02%)</title><rect x="95.7976%" y="517" width="0.0221%" height="15" fill="rgb(211,88,4)" fg:x="2296496" fg:w="529"/><text x="96.0476%" y="527.50"></text></g><g><title>try_to_wake_up (519 samples, 0.02%)</title><rect x="95.7980%" y="501" width="0.0216%" height="15" fill="rgb(248,151,21)" fg:x="2296506" fg:w="519"/><text x="96.0480%" y="511.50"></text></g><g><title>tlb_finish_mmu (510 samples, 0.02%)</title><rect x="95.8399%" y="501" width="0.0213%" height="15" fill="rgb(238,163,6)" fg:x="2297509" fg:w="510"/><text x="96.0899%" y="511.50"></text></g><g><title>release_pages (387 samples, 0.02%)</title><rect x="95.8450%" y="485" width="0.0161%" height="15" fill="rgb(209,183,11)" fg:x="2297632" fg:w="387"/><text x="96.0950%" y="495.50"></text></g><g><title>unmap_page_range (299 samples, 0.01%)</title><rect x="95.8616%" y="485" width="0.0125%" height="15" fill="rgb(219,37,20)" fg:x="2298030" fg:w="299"/><text x="96.1116%" y="495.50"></text></g><g><title>unmap_region (970 samples, 0.04%)</title><rect x="95.8337%" y="517" width="0.0405%" height="15" fill="rgb(210,158,4)" fg:x="2297360" fg:w="970"/><text x="96.0837%" y="527.50"></text></g><g><title>unmap_vmas (304 samples, 0.01%)</title><rect x="95.8614%" y="501" width="0.0127%" height="15" fill="rgb(221,167,53)" fg:x="2298026" fg:w="304"/><text x="96.1114%" y="511.50"></text></g><g><title>__do_munmap (1,232 samples, 0.05%)</title><rect x="95.8228%" y="533" width="0.0514%" height="15" fill="rgb(237,151,45)" fg:x="2297099" fg:w="1232"/><text x="96.0728%" y="543.50"></text></g><g><title>__vm_munmap (1,257 samples, 0.05%)</title><rect x="95.8226%" y="549" width="0.0524%" height="15" fill="rgb(231,39,3)" fg:x="2297095" fg:w="1257"/><text x="96.0726%" y="559.50"></text></g><g><title>__x64_sys_munmap (1,260 samples, 0.05%)</title><rect x="95.8226%" y="565" width="0.0526%" height="15" fill="rgb(212,167,28)" fg:x="2297094" fg:w="1260"/><text x="96.0726%" y="575.50"></text></g><g><title>do_filp_open (500 samples, 0.02%)</title><rect x="95.8756%" y="533" width="0.0209%" height="15" fill="rgb(232,178,8)" fg:x="2298366" fg:w="500"/><text x="96.1256%" y="543.50"></text></g><g><title>path_openat (497 samples, 0.02%)</title><rect x="95.8758%" y="517" width="0.0207%" height="15" fill="rgb(225,151,20)" fg:x="2298369" fg:w="497"/><text x="96.1258%" y="527.50"></text></g><g><title>__x64_sys_open (525 samples, 0.02%)</title><rect x="95.8753%" y="565" width="0.0219%" height="15" fill="rgb(238,3,37)" fg:x="2298358" fg:w="525"/><text x="96.1253%" y="575.50"></text></g><g><title>do_sys_openat2 (525 samples, 0.02%)</title><rect x="95.8753%" y="549" width="0.0219%" height="15" fill="rgb(251,147,42)" fg:x="2298358" fg:w="525"/><text x="96.1253%" y="559.50"></text></g><g><title>__alloc_fd (571 samples, 0.02%)</title><rect x="95.9077%" y="533" width="0.0238%" height="15" fill="rgb(208,173,10)" fg:x="2299135" fg:w="571"/><text x="96.1577%" y="543.50"></text></g><g><title>___slab_alloc (314 samples, 0.01%)</title><rect x="96.0050%" y="437" width="0.0131%" height="15" fill="rgb(246,225,4)" fg:x="2301468" fg:w="314"/><text x="96.2550%" y="447.50"></text></g><g><title>__slab_alloc (342 samples, 0.01%)</title><rect x="96.0041%" y="453" width="0.0143%" height="15" fill="rgb(248,102,6)" fg:x="2301446" fg:w="342"/><text x="96.2541%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (954 samples, 0.04%)</title><rect x="96.0185%" y="453" width="0.0398%" height="15" fill="rgb(232,6,21)" fg:x="2301791" fg:w="954"/><text x="96.2685%" y="463.50"></text></g><g><title>get_obj_cgroup_from_current (561 samples, 0.02%)</title><rect x="96.0685%" y="437" width="0.0234%" height="15" fill="rgb(221,179,22)" fg:x="2302990" fg:w="561"/><text x="96.3185%" y="447.50"></text></g><g><title>obj_cgroup_charge (254 samples, 0.01%)</title><rect x="96.0919%" y="437" width="0.0106%" height="15" fill="rgb(252,50,20)" fg:x="2303551" fg:w="254"/><text x="96.3419%" y="447.50"></text></g><g><title>kmem_cache_alloc (2,714 samples, 0.11%)</title><rect x="95.9895%" y="469" width="0.1132%" height="15" fill="rgb(222,56,38)" fg:x="2301095" fg:w="2714"/><text x="96.2395%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (949 samples, 0.04%)</title><rect x="96.0631%" y="453" width="0.0396%" height="15" fill="rgb(206,193,29)" fg:x="2302860" fg:w="949"/><text x="96.3131%" y="463.50"></text></g><g><title>apparmor_file_alloc_security (495 samples, 0.02%)</title><rect x="96.1067%" y="453" width="0.0206%" height="15" fill="rgb(239,192,45)" fg:x="2303906" fg:w="495"/><text x="96.3567%" y="463.50"></text></g><g><title>__alloc_file (3,900 samples, 0.16%)</title><rect x="95.9800%" y="485" width="0.1627%" height="15" fill="rgb(254,18,36)" fg:x="2300867" fg:w="3900"/><text x="96.2300%" y="495.50"></text></g><g><title>security_file_alloc (958 samples, 0.04%)</title><rect x="96.1027%" y="469" width="0.0400%" height="15" fill="rgb(221,127,11)" fg:x="2303809" fg:w="958"/><text x="96.3527%" y="479.50"></text></g><g><title>kmem_cache_alloc (364 samples, 0.02%)</title><rect x="96.1275%" y="453" width="0.0152%" height="15" fill="rgb(234,146,35)" fg:x="2304403" fg:w="364"/><text x="96.3775%" y="463.50"></text></g><g><title>alloc_empty_file (4,012 samples, 0.17%)</title><rect x="95.9770%" y="501" width="0.1674%" height="15" fill="rgb(254,201,37)" fg:x="2300797" fg:w="4012"/><text x="96.2270%" y="511.50"></text></g><g><title>errseq_sample (435 samples, 0.02%)</title><rect x="96.1642%" y="485" width="0.0181%" height="15" fill="rgb(211,202,23)" fg:x="2305284" fg:w="435"/><text x="96.4142%" y="495.50"></text></g><g><title>apparmor_file_open (328 samples, 0.01%)</title><rect x="96.1999%" y="469" width="0.0137%" height="15" fill="rgb(237,91,2)" fg:x="2306140" fg:w="328"/><text x="96.4499%" y="479.50"></text></g><g><title>tomoyo_check_open_permission (695 samples, 0.03%)</title><rect x="96.2136%" y="469" width="0.0290%" height="15" fill="rgb(226,228,36)" fg:x="2306468" fg:w="695"/><text x="96.4636%" y="479.50"></text></g><g><title>security_file_open (1,138 samples, 0.05%)</title><rect x="96.1975%" y="485" width="0.0475%" height="15" fill="rgb(213,63,50)" fg:x="2306082" fg:w="1138"/><text x="96.4475%" y="495.50"></text></g><g><title>do_dentry_open (2,394 samples, 0.10%)</title><rect x="96.1452%" y="501" width="0.0999%" height="15" fill="rgb(235,194,19)" fg:x="2304828" fg:w="2394"/><text x="96.3952%" y="511.50"></text></g><g><title>do_truncate (303 samples, 0.01%)</title><rect x="96.2451%" y="501" width="0.0126%" height="15" fill="rgb(207,204,18)" fg:x="2307222" fg:w="303"/><text x="96.4951%" y="511.50"></text></g><g><title>btrfs_dentry_delete (568 samples, 0.02%)</title><rect x="96.2607%" y="485" width="0.0237%" height="15" fill="rgb(248,8,7)" fg:x="2307597" fg:w="568"/><text x="96.5107%" y="495.50"></text></g><g><title>dput (743 samples, 0.03%)</title><rect x="96.2577%" y="501" width="0.0310%" height="15" fill="rgb(223,145,47)" fg:x="2307525" fg:w="743"/><text x="96.5077%" y="511.50"></text></g><g><title>generic_permission (1,252 samples, 0.05%)</title><rect x="96.6149%" y="469" width="0.0522%" height="15" fill="rgb(228,84,11)" fg:x="2316089" fg:w="1252"/><text x="96.8649%" y="479.50"></text></g><g><title>inode_permission.part.0 (4,598 samples, 0.19%)</title><rect x="96.4754%" y="485" width="0.1918%" height="15" fill="rgb(218,76,45)" fg:x="2312744" fg:w="4598"/><text x="96.7254%" y="495.50"></text></g><g><title>security_inode_permission (538 samples, 0.02%)</title><rect x="96.6672%" y="485" width="0.0224%" height="15" fill="rgb(223,80,15)" fg:x="2317343" fg:w="538"/><text x="96.9172%" y="495.50"></text></g><g><title>dput (342 samples, 0.01%)</title><rect x="96.7468%" y="469" width="0.0143%" height="15" fill="rgb(219,218,33)" fg:x="2319251" fg:w="342"/><text x="96.9968%" y="479.50"></text></g><g><title>_raw_spin_lock (2,865 samples, 0.12%)</title><rect x="96.9180%" y="437" width="0.1195%" height="15" fill="rgb(208,51,11)" fg:x="2323355" fg:w="2865"/><text x="97.1680%" y="447.50"></text></g><g><title>__d_lookup (5,541 samples, 0.23%)</title><rect x="96.8093%" y="453" width="0.2311%" height="15" fill="rgb(229,165,39)" fg:x="2320749" fg:w="5541"/><text x="97.0593%" y="463.50"></text></g><g><title>__d_lookup_rcu (3,758 samples, 0.16%)</title><rect x="97.0405%" y="453" width="0.1568%" height="15" fill="rgb(241,100,24)" fg:x="2326290" fg:w="3758"/><text x="97.2905%" y="463.50"></text></g><g><title>lookup_fast (10,463 samples, 0.44%)</title><rect x="96.7611%" y="469" width="0.4365%" height="15" fill="rgb(228,14,23)" fg:x="2319593" fg:w="10463"/><text x="97.0111%" y="479.50"></text></g><g><title>__traverse_mounts (320 samples, 0.01%)</title><rect x="97.2904%" y="453" width="0.0133%" height="15" fill="rgb(247,116,52)" fg:x="2332282" fg:w="320"/><text x="97.5404%" y="463.50"></text></g><g><title>_cond_resched (269 samples, 0.01%)</title><rect x="97.3274%" y="437" width="0.0112%" height="15" fill="rgb(216,149,33)" fg:x="2333169" fg:w="269"/><text x="97.5774%" y="447.50"></text></g><g><title>dput (2,142 samples, 0.09%)</title><rect x="97.3120%" y="453" width="0.0894%" height="15" fill="rgb(238,142,29)" fg:x="2332800" fg:w="2142"/><text x="97.5620%" y="463.50"></text></g><g><title>lockref_put_or_lock (1,503 samples, 0.06%)</title><rect x="97.3387%" y="437" width="0.0627%" height="15" fill="rgb(224,83,40)" fg:x="2333439" fg:w="1503"/><text x="97.5887%" y="447.50"></text></g><g><title>dput (356 samples, 0.01%)</title><rect x="97.4035%" y="437" width="0.0149%" height="15" fill="rgb(234,165,11)" fg:x="2334993" fg:w="356"/><text x="97.6535%" y="447.50"></text></g><g><title>lockref_put_or_lock (270 samples, 0.01%)</title><rect x="97.4071%" y="421" width="0.0113%" height="15" fill="rgb(215,96,23)" fg:x="2335079" fg:w="270"/><text x="97.6571%" y="431.50"></text></g><g><title>nd_jump_root (668 samples, 0.03%)</title><rect x="97.4016%" y="453" width="0.0279%" height="15" fill="rgb(233,179,26)" fg:x="2334946" fg:w="668"/><text x="97.6516%" y="463.50"></text></g><g><title>do_read_cache_page (673 samples, 0.03%)</title><rect x="97.4340%" y="437" width="0.0281%" height="15" fill="rgb(225,129,33)" fg:x="2335723" fg:w="673"/><text x="97.6840%" y="447.50"></text></g><g><title>pagecache_get_page (554 samples, 0.02%)</title><rect x="97.4389%" y="421" width="0.0231%" height="15" fill="rgb(237,49,13)" fg:x="2335842" fg:w="554"/><text x="97.6889%" y="431.50"></text></g><g><title>find_get_entry (491 samples, 0.02%)</title><rect x="97.4416%" y="405" width="0.0205%" height="15" fill="rgb(211,3,31)" fg:x="2335905" fg:w="491"/><text x="97.6916%" y="415.50"></text></g><g><title>page_get_link (794 samples, 0.03%)</title><rect x="97.4294%" y="453" width="0.0331%" height="15" fill="rgb(216,152,19)" fg:x="2335614" fg:w="794"/><text x="97.6794%" y="463.50"></text></g><g><title>touch_atime (442 samples, 0.02%)</title><rect x="97.4634%" y="453" width="0.0184%" height="15" fill="rgb(251,121,35)" fg:x="2336428" fg:w="442"/><text x="97.7134%" y="463.50"></text></g><g><title>__legitimize_mnt (275 samples, 0.01%)</title><rect x="97.4849%" y="421" width="0.0115%" height="15" fill="rgb(210,217,47)" fg:x="2336945" fg:w="275"/><text x="97.7349%" y="431.50"></text></g><g><title>__legitimize_path (685 samples, 0.03%)</title><rect x="97.4836%" y="437" width="0.0286%" height="15" fill="rgb(244,116,22)" fg:x="2336912" fg:w="685"/><text x="97.7336%" y="447.50"></text></g><g><title>lockref_get_not_dead (377 samples, 0.02%)</title><rect x="97.4964%" y="421" width="0.0157%" height="15" fill="rgb(228,17,21)" fg:x="2337220" fg:w="377"/><text x="97.7464%" y="431.50"></text></g><g><title>__legitimize_mnt (387 samples, 0.02%)</title><rect x="97.5174%" y="405" width="0.0161%" height="15" fill="rgb(240,149,34)" fg:x="2337722" fg:w="387"/><text x="97.7674%" y="415.50"></text></g><g><title>__legitimize_path (703 samples, 0.03%)</title><rect x="97.5156%" y="421" width="0.0293%" height="15" fill="rgb(208,125,47)" fg:x="2337681" fg:w="703"/><text x="97.7656%" y="431.50"></text></g><g><title>lockref_get_not_dead (275 samples, 0.01%)</title><rect x="97.5335%" y="405" width="0.0115%" height="15" fill="rgb(249,186,39)" fg:x="2338109" fg:w="275"/><text x="97.7835%" y="415.50"></text></g><g><title>legitimize_links (790 samples, 0.03%)</title><rect x="97.5121%" y="437" width="0.0330%" height="15" fill="rgb(240,220,33)" fg:x="2337597" fg:w="790"/><text x="97.7621%" y="447.50"></text></g><g><title>link_path_walk.part.0 (30,134 samples, 1.26%)</title><rect x="96.2887%" y="501" width="1.2570%" height="15" fill="rgb(243,110,23)" fg:x="2308269" fg:w="30134"/><text x="96.5387%" y="511.50"></text></g><g><title>walk_component (20,522 samples, 0.86%)</title><rect x="96.6897%" y="485" width="0.8561%" height="15" fill="rgb(219,163,46)" fg:x="2317881" fg:w="20522"/><text x="96.9397%" y="495.50"></text></g><g><title>step_into (8,143 samples, 0.34%)</title><rect x="97.2061%" y="469" width="0.3397%" height="15" fill="rgb(216,126,30)" fg:x="2330260" fg:w="8143"/><text x="97.4561%" y="479.50"></text></g><g><title>try_to_unlazy (1,533 samples, 0.06%)</title><rect x="97.4818%" y="453" width="0.0639%" height="15" fill="rgb(208,139,11)" fg:x="2336870" fg:w="1533"/><text x="97.7318%" y="463.50"></text></g><g><title>__d_lookup (1,625 samples, 0.07%)</title><rect x="97.5498%" y="485" width="0.0678%" height="15" fill="rgb(213,118,36)" fg:x="2338499" fg:w="1625"/><text x="97.7998%" y="495.50"></text></g><g><title>lookup_fast (3,388 samples, 0.14%)</title><rect x="97.5458%" y="501" width="0.1413%" height="15" fill="rgb(226,43,17)" fg:x="2338403" fg:w="3388"/><text x="97.7958%" y="511.50"></text></g><g><title>__d_lookup_rcu (1,667 samples, 0.07%)</title><rect x="97.6175%" y="485" width="0.0695%" height="15" fill="rgb(254,217,4)" fg:x="2340124" fg:w="1667"/><text x="97.8675%" y="495.50"></text></g><g><title>may_open (969 samples, 0.04%)</title><rect x="97.6871%" y="501" width="0.0404%" height="15" fill="rgb(210,134,47)" fg:x="2341791" fg:w="969"/><text x="97.9371%" y="511.50"></text></g><g><title>__fget_light (315 samples, 0.01%)</title><rect x="97.7447%" y="485" width="0.0131%" height="15" fill="rgb(237,24,49)" fg:x="2343173" fg:w="315"/><text x="97.9947%" y="495.50"></text></g><g><title>__fget_files (282 samples, 0.01%)</title><rect x="97.7461%" y="469" width="0.0118%" height="15" fill="rgb(251,39,46)" fg:x="2343206" fg:w="282"/><text x="97.9961%" y="479.50"></text></g><g><title>path_init (682 samples, 0.03%)</title><rect x="97.7336%" y="501" width="0.0284%" height="15" fill="rgb(251,220,3)" fg:x="2342906" fg:w="682"/><text x="97.9836%" y="511.50"></text></g><g><title>atime_needs_update (262 samples, 0.01%)</title><rect x="97.8347%" y="485" width="0.0109%" height="15" fill="rgb(228,105,12)" fg:x="2345329" fg:w="262"/><text x="98.0847%" y="495.50"></text></g><g><title>__alloc_pages_nodemask (260 samples, 0.01%)</title><rect x="97.8684%" y="453" width="0.0108%" height="15" fill="rgb(215,196,1)" fg:x="2346138" fg:w="260"/><text x="98.1184%" y="463.50"></text></g><g><title>add_to_page_cache_lru (310 samples, 0.01%)</title><rect x="97.8793%" y="453" width="0.0129%" height="15" fill="rgb(214,33,39)" fg:x="2346398" fg:w="310"/><text x="98.1293%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (267 samples, 0.01%)</title><rect x="97.9315%" y="325" width="0.0111%" height="15" fill="rgb(220,19,52)" fg:x="2347650" fg:w="267"/><text x="98.1815%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath (252 samples, 0.01%)</title><rect x="97.9321%" y="309" width="0.0105%" height="15" fill="rgb(221,78,38)" fg:x="2347665" fg:w="252"/><text x="98.1821%" y="319.50"></text></g><g><title>prepare_to_wait_event (309 samples, 0.01%)</title><rect x="97.9301%" y="341" width="0.0129%" height="15" fill="rgb(253,30,16)" fg:x="2347617" fg:w="309"/><text x="98.1801%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (620 samples, 0.03%)</title><rect x="97.9571%" y="293" width="0.0259%" height="15" fill="rgb(242,65,0)" fg:x="2348264" fg:w="620"/><text x="98.2071%" y="303.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (607 samples, 0.03%)</title><rect x="97.9576%" y="277" width="0.0253%" height="15" fill="rgb(235,201,12)" fg:x="2348277" fg:w="607"/><text x="98.2076%" y="287.50"></text></g><g><title>native_write_msr (604 samples, 0.03%)</title><rect x="97.9578%" y="261" width="0.0252%" height="15" fill="rgb(233,161,9)" fg:x="2348280" fg:w="604"/><text x="98.2078%" y="271.50"></text></g><g><title>finish_task_switch (677 samples, 0.03%)</title><rect x="97.9562%" y="309" width="0.0282%" height="15" fill="rgb(241,207,41)" fg:x="2348243" fg:w="677"/><text x="98.2062%" y="319.50"></text></g><g><title>__btrfs_tree_read_lock (1,510 samples, 0.06%)</title><rect x="97.9253%" y="357" width="0.0630%" height="15" fill="rgb(212,69,46)" fg:x="2347501" fg:w="1510"/><text x="98.1753%" y="367.50"></text></g><g><title>schedule (872 samples, 0.04%)</title><rect x="97.9519%" y="341" width="0.0364%" height="15" fill="rgb(239,69,45)" fg:x="2348139" fg:w="872"/><text x="98.2019%" y="351.50"></text></g><g><title>__schedule (869 samples, 0.04%)</title><rect x="97.9520%" y="325" width="0.0363%" height="15" fill="rgb(242,117,48)" fg:x="2348142" fg:w="869"/><text x="98.2020%" y="335.50"></text></g><g><title>__btrfs_read_lock_root_node (1,550 samples, 0.06%)</title><rect x="97.9251%" y="373" width="0.0647%" height="15" fill="rgb(228,41,36)" fg:x="2347496" fg:w="1550"/><text x="98.1751%" y="383.50"></text></g><g><title>read_block_for_search.isra.0 (365 samples, 0.02%)</title><rect x="98.0149%" y="373" width="0.0152%" height="15" fill="rgb(212,3,32)" fg:x="2349649" fg:w="365"/><text x="98.2649%" y="383.50"></text></g><g><title>btrfs_lookup_file_extent (2,627 samples, 0.11%)</title><rect x="97.9219%" y="405" width="0.1096%" height="15" fill="rgb(233,41,49)" fg:x="2347420" fg:w="2627"/><text x="98.1719%" y="415.50"></text></g><g><title>btrfs_search_slot (2,619 samples, 0.11%)</title><rect x="97.9222%" y="389" width="0.1093%" height="15" fill="rgb(252,170,49)" fg:x="2347428" fg:w="2619"/><text x="98.1722%" y="399.50"></text></g><g><title>btrfs_get_extent (3,420 samples, 0.14%)</title><rect x="97.9054%" y="421" width="0.1427%" height="15" fill="rgb(229,53,26)" fg:x="2347025" fg:w="3420"/><text x="98.1554%" y="431.50"></text></g><g><title>btrfs_do_readpage (3,746 samples, 0.16%)</title><rect x="97.8940%" y="437" width="0.1563%" height="15" fill="rgb(217,157,12)" fg:x="2346750" fg:w="3746"/><text x="98.1440%" y="447.50"></text></g><g><title>btrfs_readpage (3,950 samples, 0.16%)</title><rect x="97.8933%" y="453" width="0.1648%" height="15" fill="rgb(227,17,9)" fg:x="2346734" fg:w="3950"/><text x="98.1433%" y="463.50"></text></g><g><title>do_read_cache_page (4,613 samples, 0.19%)</title><rect x="97.8670%" y="469" width="0.1924%" height="15" fill="rgb(218,84,12)" fg:x="2346104" fg:w="4613"/><text x="98.1170%" y="479.50"></text></g><g><title>pagecache_get_page (826 samples, 0.03%)</title><rect x="98.0594%" y="469" width="0.0345%" height="15" fill="rgb(212,79,24)" fg:x="2350717" fg:w="826"/><text x="98.3094%" y="479.50"></text></g><g><title>find_get_entry (771 samples, 0.03%)</title><rect x="98.0617%" y="453" width="0.0322%" height="15" fill="rgb(217,222,37)" fg:x="2350772" fg:w="771"/><text x="98.3117%" y="463.50"></text></g><g><title>page_get_link (5,591 samples, 0.23%)</title><rect x="97.8608%" y="485" width="0.2332%" height="15" fill="rgb(246,208,8)" fg:x="2345955" fg:w="5591"/><text x="98.1108%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (381 samples, 0.02%)</title><rect x="98.1009%" y="437" width="0.0159%" height="15" fill="rgb(244,133,10)" fg:x="2351710" fg:w="381"/><text x="98.3509%" y="447.50"></text></g><g><title>btrfs_update_inode (433 samples, 0.02%)</title><rect x="98.1006%" y="453" width="0.0181%" height="15" fill="rgb(209,219,41)" fg:x="2351703" fg:w="433"/><text x="98.3506%" y="463.50"></text></g><g><title>btrfs_dirty_inode (696 samples, 0.03%)</title><rect x="98.0966%" y="469" width="0.0290%" height="15" fill="rgb(253,175,45)" fg:x="2351609" fg:w="696"/><text x="98.3466%" y="479.50"></text></g><g><title>touch_atime (764 samples, 0.03%)</title><rect x="98.0950%" y="485" width="0.0319%" height="15" fill="rgb(235,100,37)" fg:x="2351569" fg:w="764"/><text x="98.3450%" y="495.50"></text></g><g><title>step_into (8,770 samples, 0.37%)</title><rect x="97.7624%" y="501" width="0.3658%" height="15" fill="rgb(225,87,19)" fg:x="2343596" fg:w="8770"/><text x="98.0124%" y="511.50"></text></g><g><title>dput (533 samples, 0.02%)</title><rect x="98.1311%" y="485" width="0.0222%" height="15" fill="rgb(217,152,17)" fg:x="2352434" fg:w="533"/><text x="98.3811%" y="495.50"></text></g><g><title>lockref_put_or_lock (373 samples, 0.02%)</title><rect x="98.1377%" y="469" width="0.0156%" height="15" fill="rgb(235,72,13)" fg:x="2352594" fg:w="373"/><text x="98.3877%" y="479.50"></text></g><g><title>terminate_walk (737 samples, 0.03%)</title><rect x="98.1282%" y="501" width="0.0307%" height="15" fill="rgb(233,140,18)" fg:x="2352366" fg:w="737"/><text x="98.3782%" y="511.50"></text></g><g><title>do_filp_open (53,064 samples, 2.21%)</title><rect x="95.9464%" y="533" width="2.2135%" height="15" fill="rgb(207,212,28)" fg:x="2300062" fg:w="53064"/><text x="96.1964%" y="543.50">d..</text></g><g><title>path_openat (52,814 samples, 2.20%)</title><rect x="95.9568%" y="517" width="2.2031%" height="15" fill="rgb(220,130,25)" fg:x="2300312" fg:w="52814"/><text x="96.2068%" y="527.50">p..</text></g><g><title>memset_erms (1,056 samples, 0.04%)</title><rect x="98.1927%" y="501" width="0.0441%" height="15" fill="rgb(205,55,34)" fg:x="2353912" fg:w="1056"/><text x="98.4427%" y="511.50"></text></g><g><title>kmem_cache_alloc (1,628 samples, 0.07%)</title><rect x="98.1789%" y="517" width="0.0679%" height="15" fill="rgb(237,54,35)" fg:x="2353582" fg:w="1628"/><text x="98.4289%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (242 samples, 0.01%)</title><rect x="98.2368%" y="501" width="0.0101%" height="15" fill="rgb(208,67,23)" fg:x="2354968" fg:w="242"/><text x="98.4868%" y="511.50"></text></g><g><title>__virt_addr_valid (376 samples, 0.02%)</title><rect x="98.2735%" y="485" width="0.0157%" height="15" fill="rgb(206,207,50)" fg:x="2355849" fg:w="376"/><text x="98.5235%" y="495.50"></text></g><g><title>__check_object_size (657 samples, 0.03%)</title><rect x="98.2629%" y="501" width="0.0274%" height="15" fill="rgb(213,211,42)" fg:x="2355595" fg:w="657"/><text x="98.5129%" y="511.50"></text></g><g><title>getname_flags.part.0 (2,792 samples, 0.12%)</title><rect x="98.1739%" y="533" width="0.1165%" height="15" fill="rgb(252,197,50)" fg:x="2353462" fg:w="2792"/><text x="98.4239%" y="543.50"></text></g><g><title>strncpy_from_user (1,044 samples, 0.04%)</title><rect x="98.2469%" y="517" width="0.0436%" height="15" fill="rgb(251,211,41)" fg:x="2355210" fg:w="1044"/><text x="98.4969%" y="527.50"></text></g><g><title>kmem_cache_free (447 samples, 0.02%)</title><rect x="98.2904%" y="533" width="0.0186%" height="15" fill="rgb(229,211,5)" fg:x="2356254" fg:w="447"/><text x="98.5404%" y="543.50"></text></g><g><title>__x64_sys_openat (57,889 samples, 2.41%)</title><rect x="95.8972%" y="565" width="2.4148%" height="15" fill="rgb(239,36,31)" fg:x="2298883" fg:w="57889"/><text x="96.1472%" y="575.50">__..</text></g><g><title>do_sys_openat2 (57,807 samples, 2.41%)</title><rect x="95.9006%" y="549" width="2.4114%" height="15" fill="rgb(248,67,31)" fg:x="2298965" fg:w="57807"/><text x="96.1506%" y="559.50">do..</text></g><g><title>__fget_files (1,050 samples, 0.04%)</title><rect x="98.3720%" y="517" width="0.0438%" height="15" fill="rgb(249,55,44)" fg:x="2358210" fg:w="1050"/><text x="98.6220%" y="527.50"></text></g><g><title>__fget_light (1,274 samples, 0.05%)</title><rect x="98.3629%" y="533" width="0.0531%" height="15" fill="rgb(216,82,12)" fg:x="2357993" fg:w="1274"/><text x="98.6129%" y="543.50"></text></g><g><title>__fdget_pos (2,312 samples, 0.10%)</title><rect x="98.3500%" y="549" width="0.0964%" height="15" fill="rgb(242,174,1)" fg:x="2357682" fg:w="2312"/><text x="98.6000%" y="559.50"></text></g><g><title>mutex_lock (723 samples, 0.03%)</title><rect x="98.4163%" y="533" width="0.0302%" height="15" fill="rgb(208,120,29)" fg:x="2359271" fg:w="723"/><text x="98.6663%" y="543.50"></text></g><g><title>fput_many (534 samples, 0.02%)</title><rect x="98.4479%" y="549" width="0.0223%" height="15" fill="rgb(221,105,43)" fg:x="2360030" fg:w="534"/><text x="98.6979%" y="559.50"></text></g><g><title>mutex_unlock (611 samples, 0.03%)</title><rect x="98.4702%" y="549" width="0.0255%" height="15" fill="rgb(234,124,22)" fg:x="2360564" fg:w="611"/><text x="98.7202%" y="559.50"></text></g><g><title>__fsnotify_parent (1,054 samples, 0.04%)</title><rect x="98.5507%" y="533" width="0.0440%" height="15" fill="rgb(212,23,30)" fg:x="2362495" fg:w="1054"/><text x="98.8007%" y="543.50"></text></g><g><title>asm_exc_page_fault (355 samples, 0.01%)</title><rect x="99.0764%" y="469" width="0.0148%" height="15" fill="rgb(219,122,53)" fg:x="2375097" fg:w="355"/><text x="99.3264%" y="479.50"></text></g><g><title>copy_user_enhanced_fast_string (6,595 samples, 0.28%)</title><rect x="98.8172%" y="485" width="0.2751%" height="15" fill="rgb(248,84,24)" fg:x="2368883" fg:w="6595"/><text x="99.0672%" y="495.50"></text></g><g><title>copy_page_to_iter (7,942 samples, 0.33%)</title><rect x="98.7638%" y="501" width="0.3313%" height="15" fill="rgb(245,115,18)" fg:x="2367603" fg:w="7942"/><text x="99.0138%" y="511.50"></text></g><g><title>pagecache_get_page (4,353 samples, 0.18%)</title><rect x="99.0991%" y="501" width="0.1816%" height="15" fill="rgb(227,176,51)" fg:x="2375640" fg:w="4353"/><text x="99.3491%" y="511.50"></text></g><g><title>find_get_entry (3,756 samples, 0.16%)</title><rect x="99.1240%" y="485" width="0.1567%" height="15" fill="rgb(229,63,42)" fg:x="2376237" fg:w="3756"/><text x="99.3740%" y="495.50"></text></g><g><title>xas_load (910 samples, 0.04%)</title><rect x="99.2427%" y="469" width="0.0380%" height="15" fill="rgb(247,202,24)" fg:x="2379083" fg:w="910"/><text x="99.4927%" y="479.50"></text></g><g><title>xas_start (600 samples, 0.03%)</title><rect x="99.2556%" y="453" width="0.0250%" height="15" fill="rgb(244,173,20)" fg:x="2379393" fg:w="600"/><text x="99.5056%" y="463.50"></text></g><g><title>generic_file_buffered_read (16,502 samples, 0.69%)</title><rect x="98.6497%" y="517" width="0.6884%" height="15" fill="rgb(242,81,47)" fg:x="2364867" fg:w="16502"/><text x="98.8997%" y="527.50"></text></g><g><title>touch_atime (1,376 samples, 0.06%)</title><rect x="99.2807%" y="501" width="0.0574%" height="15" fill="rgb(231,185,54)" fg:x="2379993" fg:w="1376"/><text x="99.5307%" y="511.50"></text></g><g><title>atime_needs_update (1,111 samples, 0.05%)</title><rect x="99.2917%" y="485" width="0.0463%" height="15" fill="rgb(243,55,32)" fg:x="2380258" fg:w="1111"/><text x="99.5417%" y="495.50"></text></g><g><title>current_time (615 samples, 0.03%)</title><rect x="99.3124%" y="469" width="0.0257%" height="15" fill="rgb(208,167,19)" fg:x="2380754" fg:w="615"/><text x="99.5624%" y="479.50"></text></g><g><title>new_sync_read (17,960 samples, 0.75%)</title><rect x="98.5952%" y="533" width="0.7492%" height="15" fill="rgb(231,72,35)" fg:x="2363561" fg:w="17960"/><text x="98.8452%" y="543.50"></text></g><g><title>aa_file_perm (328 samples, 0.01%)</title><rect x="99.4127%" y="501" width="0.0137%" height="15" fill="rgb(250,173,51)" fg:x="2383158" fg:w="328"/><text x="99.6627%" y="511.50"></text></g><g><title>apparmor_file_permission (1,225 samples, 0.05%)</title><rect x="99.3755%" y="517" width="0.0511%" height="15" fill="rgb(209,5,22)" fg:x="2382267" fg:w="1225"/><text x="99.6255%" y="527.50"></text></g><g><title>security_file_permission (1,760 samples, 0.07%)</title><rect x="99.3535%" y="533" width="0.0734%" height="15" fill="rgb(250,174,19)" fg:x="2381738" fg:w="1760"/><text x="99.6035%" y="543.50"></text></g><g><title>ksys_read (26,274 samples, 1.10%)</title><rect x="98.3311%" y="565" width="1.0960%" height="15" fill="rgb(217,3,49)" fg:x="2357229" fg:w="26274"/><text x="98.5811%" y="575.50"></text></g><g><title>vfs_read (22,328 samples, 0.93%)</title><rect x="98.4957%" y="549" width="0.9314%" height="15" fill="rgb(218,225,5)" fg:x="2361175" fg:w="22328"/><text x="98.7457%" y="559.50"></text></g><g><title>syscall_enter_from_user_mode (259 samples, 0.01%)</title><rect x="99.4284%" y="565" width="0.0108%" height="15" fill="rgb(236,89,11)" fg:x="2383534" fg:w="259"/><text x="99.6784%" y="575.50"></text></g><g><title>do_mmap (542 samples, 0.02%)</title><rect x="99.4394%" y="549" width="0.0226%" height="15" fill="rgb(206,33,28)" fg:x="2383798" fg:w="542"/><text x="99.6894%" y="559.50"></text></g><g><title>mmap_region (430 samples, 0.02%)</title><rect x="99.4441%" y="533" width="0.0179%" height="15" fill="rgb(241,56,42)" fg:x="2383910" fg:w="430"/><text x="99.6941%" y="543.50"></text></g><g><title>do_syscall_64 (101,013 samples, 4.21%)</title><rect x="95.2516%" y="581" width="4.2137%" height="15" fill="rgb(222,44,11)" fg:x="2283407" fg:w="101013"/><text x="95.5016%" y="591.50">do_sy..</text></g><g><title>vm_mmap_pgoff (627 samples, 0.03%)</title><rect x="99.4392%" y="565" width="0.0262%" height="15" fill="rgb(234,111,20)" fg:x="2383793" fg:w="627"/><text x="99.6892%" y="575.50"></text></g><g><title>btrfs_release_file (557 samples, 0.02%)</title><rect x="99.5521%" y="517" width="0.0232%" height="15" fill="rgb(237,77,6)" fg:x="2386500" fg:w="557"/><text x="99.8021%" y="527.50"></text></g><g><title>dput (362 samples, 0.02%)</title><rect x="99.5753%" y="517" width="0.0151%" height="15" fill="rgb(235,111,23)" fg:x="2387057" fg:w="362"/><text x="99.8253%" y="527.50"></text></g><g><title>kmem_cache_free (318 samples, 0.01%)</title><rect x="99.5904%" y="517" width="0.0133%" height="15" fill="rgb(251,135,29)" fg:x="2387419" fg:w="318"/><text x="99.8404%" y="527.50"></text></g><g><title>security_file_free (347 samples, 0.01%)</title><rect x="99.6211%" y="517" width="0.0145%" height="15" fill="rgb(217,57,1)" fg:x="2388154" fg:w="347"/><text x="99.8711%" y="527.50"></text></g><g><title>apparmor_file_free_security (261 samples, 0.01%)</title><rect x="99.6247%" y="501" width="0.0109%" height="15" fill="rgb(249,119,31)" fg:x="2388240" fg:w="261"/><text x="99.8747%" y="511.50"></text></g><g><title>__fput (2,399 samples, 0.10%)</title><rect x="99.5355%" y="533" width="0.1001%" height="15" fill="rgb(233,164,33)" fg:x="2386103" fg:w="2399"/><text x="99.7855%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (106,445 samples, 4.44%)</title><rect x="95.2218%" y="597" width="4.4403%" height="15" fill="rgb(250,217,43)" fg:x="2282692" fg:w="106445"/><text x="95.4718%" y="607.50">entry..</text></g><g><title>syscall_exit_to_user_mode (4,717 samples, 0.20%)</title><rect x="99.4653%" y="581" width="0.1968%" height="15" fill="rgb(232,154,50)" fg:x="2384420" fg:w="4717"/><text x="99.7153%" y="591.50"></text></g><g><title>exit_to_user_mode_prepare (4,424 samples, 0.18%)</title><rect x="99.4776%" y="565" width="0.1845%" height="15" fill="rgb(227,190,8)" fg:x="2384713" fg:w="4424"/><text x="99.7276%" y="575.50"></text></g><g><title>task_work_run (3,177 samples, 0.13%)</title><rect x="99.5296%" y="549" width="0.1325%" height="15" fill="rgb(209,217,32)" fg:x="2385960" fg:w="3177"/><text x="99.7796%" y="559.50"></text></g><g><title>call_rcu (519 samples, 0.02%)</title><rect x="99.6405%" y="533" width="0.0216%" height="15" fill="rgb(243,203,50)" fg:x="2388618" fg:w="519"/><text x="99.8905%" y="543.50"></text></g><g><title>error_entry (371 samples, 0.02%)</title><rect x="99.6621%" y="597" width="0.0155%" height="15" fill="rgb(232,152,27)" fg:x="2389137" fg:w="371"/><text x="99.9121%" y="607.50"></text></g><g><title>sync_regs (317 samples, 0.01%)</title><rect x="99.6644%" y="581" width="0.0132%" height="15" fill="rgb(240,34,29)" fg:x="2389191" fg:w="317"/><text x="99.9144%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (3,020 samples, 0.13%)</title><rect x="99.6863%" y="549" width="0.1260%" height="15" fill="rgb(215,185,52)" fg:x="2389717" fg:w="3020"/><text x="99.9363%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,971 samples, 0.12%)</title><rect x="99.6883%" y="533" width="0.1239%" height="15" fill="rgb(240,89,49)" fg:x="2389766" fg:w="2971"/><text x="99.9383%" y="543.50"></text></g><g><title>native_write_msr (2,958 samples, 0.12%)</title><rect x="99.6889%" y="517" width="0.1234%" height="15" fill="rgb(225,12,52)" fg:x="2389779" fg:w="2958"/><text x="99.9389%" y="527.50"></text></g><g><title>schedule_tail (3,224 samples, 0.13%)</title><rect x="99.6824%" y="581" width="0.1345%" height="15" fill="rgb(239,128,45)" fg:x="2389624" fg:w="3224"/><text x="99.9324%" y="591.50"></text></g><g><title>finish_task_switch (3,201 samples, 0.13%)</title><rect x="99.6834%" y="565" width="0.1335%" height="15" fill="rgb(211,78,47)" fg:x="2389647" fg:w="3201"/><text x="99.9334%" y="575.50"></text></g><g><title>ret_from_fork (3,383 samples, 0.14%)</title><rect x="99.6797%" y="597" width="0.1411%" height="15" fill="rgb(232,31,21)" fg:x="2389559" fg:w="3383"/><text x="99.9297%" y="607.50"></text></g><g><title>syscall_return_via_sysret (861 samples, 0.04%)</title><rect x="99.8208%" y="597" width="0.0359%" height="15" fill="rgb(222,168,14)" fg:x="2392942" fg:w="861"/><text x="100.0708%" y="607.50"></text></g><g><title>[zig] (170,015 samples, 7.09%)</title><rect x="92.7650%" y="613" width="7.0921%" height="15" fill="rgb(209,128,24)" fg:x="2223797" fg:w="170015"/><text x="93.0150%" y="623.50">[zig]</text></g><g><title>asm_exc_page_fault (889 samples, 0.04%)</title><rect x="99.8575%" y="613" width="0.0371%" height="15" fill="rgb(249,35,13)" fg:x="2393820" fg:w="889"/><text x="100.1075%" y="623.50"></text></g><g><title>unmap_page_range (282 samples, 0.01%)</title><rect x="99.9107%" y="453" width="0.0118%" height="15" fill="rgb(218,7,2)" fg:x="2395096" fg:w="282"/><text x="100.1607%" y="463.50"></text></g><g><title>mmput (370 samples, 0.02%)</title><rect x="99.9071%" y="501" width="0.0154%" height="15" fill="rgb(238,107,27)" fg:x="2395009" fg:w="370"/><text x="100.1571%" y="511.50"></text></g><g><title>exit_mmap (368 samples, 0.02%)</title><rect x="99.9071%" y="485" width="0.0154%" height="15" fill="rgb(217,88,38)" fg:x="2395011" fg:w="368"/><text x="100.1571%" y="495.50"></text></g><g><title>unmap_vmas (283 samples, 0.01%)</title><rect x="99.9107%" y="469" width="0.0118%" height="15" fill="rgb(230,207,0)" fg:x="2395096" fg:w="283"/><text x="100.1607%" y="479.50"></text></g><g><title>begin_new_exec (375 samples, 0.02%)</title><rect x="99.9069%" y="517" width="0.0156%" height="15" fill="rgb(249,64,54)" fg:x="2395006" fg:w="375"/><text x="100.1569%" y="527.50"></text></g><g><title>__x64_sys_execve (443 samples, 0.02%)</title><rect x="99.9056%" y="581" width="0.0185%" height="15" fill="rgb(231,7,11)" fg:x="2394975" fg:w="443"/><text x="100.1556%" y="591.50"></text></g><g><title>do_execveat_common (443 samples, 0.02%)</title><rect x="99.9056%" y="565" width="0.0185%" height="15" fill="rgb(205,149,21)" fg:x="2394975" fg:w="443"/><text x="100.1556%" y="575.50"></text></g><g><title>bprm_execve (443 samples, 0.02%)</title><rect x="99.9056%" y="549" width="0.0185%" height="15" fill="rgb(215,126,34)" fg:x="2394975" fg:w="443"/><text x="100.1556%" y="559.50"></text></g><g><title>load_elf_binary (443 samples, 0.02%)</title><rect x="99.9056%" y="533" width="0.0185%" height="15" fill="rgb(241,132,45)" fg:x="2394975" fg:w="443"/><text x="100.1556%" y="543.50"></text></g><g><title>mmput (834 samples, 0.03%)</title><rect x="99.9254%" y="533" width="0.0348%" height="15" fill="rgb(252,69,32)" fg:x="2395448" fg:w="834"/><text x="100.1754%" y="543.50"></text></g><g><title>exit_mmap (834 samples, 0.03%)</title><rect x="99.9254%" y="517" width="0.0348%" height="15" fill="rgb(232,204,19)" fg:x="2395448" fg:w="834"/><text x="100.1754%" y="527.50"></text></g><g><title>unmap_vmas (649 samples, 0.03%)</title><rect x="99.9331%" y="501" width="0.0271%" height="15" fill="rgb(249,15,47)" fg:x="2395633" fg:w="649"/><text x="100.1831%" y="511.50"></text></g><g><title>unmap_page_range (649 samples, 0.03%)</title><rect x="99.9331%" y="485" width="0.0271%" height="15" fill="rgb(209,227,23)" fg:x="2395633" fg:w="649"/><text x="100.1831%" y="495.50"></text></g><g><title>__x64_sys_exit_group (850 samples, 0.04%)</title><rect x="99.9247%" y="581" width="0.0355%" height="15" fill="rgb(248,92,24)" fg:x="2395433" fg:w="850"/><text x="100.1747%" y="591.50"></text></g><g><title>do_group_exit (850 samples, 0.04%)</title><rect x="99.9247%" y="565" width="0.0355%" height="15" fill="rgb(247,59,2)" fg:x="2395433" fg:w="850"/><text x="100.1747%" y="575.50"></text></g><g><title>do_exit (850 samples, 0.04%)</title><rect x="99.9247%" y="549" width="0.0355%" height="15" fill="rgb(221,30,5)" fg:x="2395433" fg:w="850"/><text x="100.1747%" y="559.50"></text></g><g><title>do_syscall_64 (1,312 samples, 0.05%)</title><rect x="99.9056%" y="597" width="0.0547%" height="15" fill="rgb(208,108,53)" fg:x="2394975" fg:w="1312"/><text x="100.1556%" y="607.50"></text></g><g><title>mmput (365 samples, 0.02%)</title><rect x="99.9630%" y="501" width="0.0152%" height="15" fill="rgb(211,183,26)" fg:x="2396351" fg:w="365"/><text x="100.2130%" y="511.50"></text></g><g><title>exit_mmap (362 samples, 0.02%)</title><rect x="99.9632%" y="485" width="0.0151%" height="15" fill="rgb(232,132,4)" fg:x="2396354" fg:w="362"/><text x="100.2132%" y="495.50"></text></g><g><title>unmap_vmas (274 samples, 0.01%)</title><rect x="99.9668%" y="469" width="0.0114%" height="15" fill="rgb(253,128,37)" fg:x="2396442" fg:w="274"/><text x="100.2168%" y="479.50"></text></g><g><title>unmap_page_range (274 samples, 0.01%)</title><rect x="99.9668%" y="453" width="0.0114%" height="15" fill="rgb(221,58,24)" fg:x="2396442" fg:w="274"/><text x="100.2168%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,997 samples, 0.08%)</title><rect x="99.8953%" y="613" width="0.0833%" height="15" fill="rgb(230,54,45)" fg:x="2394727" fg:w="1997"/><text x="100.1453%" y="623.50"></text></g><g><title>syscall_exit_to_user_mode (437 samples, 0.02%)</title><rect x="99.9604%" y="597" width="0.0182%" height="15" fill="rgb(254,21,18)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="607.50"></text></g><g><title>exit_to_user_mode_prepare (437 samples, 0.02%)</title><rect x="99.9604%" y="581" width="0.0182%" height="15" fill="rgb(221,108,0)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="591.50"></text></g><g><title>arch_do_signal (437 samples, 0.02%)</title><rect x="99.9604%" y="565" width="0.0182%" height="15" fill="rgb(206,95,1)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="575.50"></text></g><g><title>get_signal (437 samples, 0.02%)</title><rect x="99.9604%" y="549" width="0.0182%" height="15" fill="rgb(237,52,5)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="559.50"></text></g><g><title>do_group_exit (437 samples, 0.02%)</title><rect x="99.9604%" y="533" width="0.0182%" height="15" fill="rgb(218,150,34)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="543.50"></text></g><g><title>do_exit (437 samples, 0.02%)</title><rect x="99.9604%" y="517" width="0.0182%" height="15" fill="rgb(235,194,28)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="527.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (377 samples, 0.02%)</title><rect x="99.9786%" y="613" width="0.0157%" height="15" fill="rgb(245,92,18)" fg:x="2396724" fg:w="377"/><text x="100.2286%" y="623.50"></text></g><g><title>all (2,397,237 samples, 100%)</title><rect x="0.0000%" y="645" width="100.0000%" height="15" fill="rgb(253,203,53)" fg:x="0" fg:w="2397237"/><text x="0.2500%" y="655.50"></text></g><g><title>zig (173,702 samples, 7.25%)</title><rect x="92.7541%" y="629" width="7.2459%" height="15" fill="rgb(249,185,47)" fg:x="2223535" fg:w="173702"/><text x="93.0041%" y="639.50">zig</text></g></svg></svg>